aboutsummaryrefslogtreecommitdiff
path: root/tests/figs/plotting/mixed-model-fit-for-nlme-object.svg
blob: df102bbedfa053842ac54a5d27c669813bdc1fa1 (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
<?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='cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3'>
    <rect x='25.10' y='7.17' width='669.80' height='140.97' />
  </clipPath>
</defs>
<line x1='207.22' y1='59.73' x2='225.15' y2='59.73' style='stroke-width: 1.50;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='207.22' y1='71.68' x2='225.15' y2='71.68' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='207.22' y1='83.63' x2='225.15' y2='83.63' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='207.22' y1='95.58' x2='225.15' y2='95.58' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='283.84' y1='59.73' x2='301.76' y2='59.73' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='283.84' y1='71.68' x2='301.76' y2='71.68' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='283.84' y1='83.63' x2='301.76' y2='83.63' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='283.84' y1='95.58' x2='301.76' y2='95.58' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='360.45' y1='59.73' x2='378.38' y2='59.73' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='360.45' y1='71.68' x2='378.38' y2='71.68' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='360.45' y1='83.63' x2='378.38' y2='83.63' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='360.45' y1='95.58' x2='378.38' y2='95.58' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='437.06' y1='59.73' x2='454.99' y2='59.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='437.06' y1='71.68' x2='454.99' y2='71.68' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='437.06' y1='83.63' x2='454.99' y2='83.63' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='437.06' y1='95.58' x2='454.99' y2='95.58' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<circle cx='216.19' cy='71.68' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='216.19,80.15 219.21,85.37 213.17,85.37 216.19,80.15 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='213.02' y1='95.58' x2='219.36' y2='95.58' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='216.19' y1='98.75' x2='216.19' y2='92.41' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='290.56' y1='61.97' x2='295.04' y2='57.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='290.56' y1='57.49' x2='295.04' y2='61.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='289.63,71.68 292.80,68.51 295.97,71.68 292.80,74.85 289.63,71.68 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='292.80,87.12 295.82,81.89 289.78,81.89 292.80,87.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<rect x='290.56' y='93.34' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='290.56' y1='97.82' x2='295.04' y2='93.34' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='290.56' y1='93.34' x2='295.04' y2='97.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='367.17' y1='61.97' x2='371.65' y2='57.49' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='367.17' y1='57.49' x2='371.65' y2='61.97' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='366.24' y1='59.73' x2='372.58' y2='59.73' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='369.41' y1='62.90' x2='369.41' y2='56.56' style='stroke-width: 0.75;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='366.24' y1='71.68' x2='372.58' y2='71.68' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='369.41' y1='74.85' x2='369.41' y2='68.51' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='366.24,71.68 369.41,68.51 372.58,71.68 369.41,74.85 366.24,71.68 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<circle cx='369.41' cy='83.63' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='367.17' y1='83.63' x2='371.65' y2='83.63' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='369.41' y1='85.87' x2='369.41' y2='81.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='369.41,99.07 372.43,92.97 366.39,92.97 369.41,99.07 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='369.41,92.10 372.43,98.20 366.39,98.20 369.41,92.10 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='443.78' y1='59.73' x2='448.27' y2='59.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='446.02' y1='61.97' x2='446.02' y2='57.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<rect x='443.78' y='57.49' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<circle cx='446.02' cy='71.68' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='443.78' y1='73.92' x2='448.27' y2='69.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<line x1='443.78' y1='69.44' x2='448.27' y2='73.92' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polyline points='446.02,81.39 448.27,85.87 443.78,85.87 446.02,81.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<rect x='443.78' y='81.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<polygon points='443.78,97.82 448.27,97.82 448.27,93.34 443.78,93.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)' />
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='234.12' y='63.15' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='47.03px' lengthAdjust='spacingAndGlyphs'>Population</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='234.12' y='75.10' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='234.12' y='87.05' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='234.12' y='99.00' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>3</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='310.73' y='63.15' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='310.73' y='75.10' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>5</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='310.73' y='87.05' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>6</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='310.73' y='99.00' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>7</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='387.34' y='63.15' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>8</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='387.34' y='75.10' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>9</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='387.34' y='87.05' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='387.34' y='99.00' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='10.33px' lengthAdjust='spacingAndGlyphs'>11</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='463.95' y='63.15' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>12</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='463.95' y='75.10' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>13</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='463.95' y='87.05' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>14</text></g>
<g clip-path='url(#cpMjUuMTB8Njk0LjkwfDE0OC4xNHw3LjE3)'><text x='463.95' y='99.00' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>15</text></g>
<defs>
  <clipPath id='cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM='>
    <rect x='49.00' y='174.43' width='285.90' height='340.61' />
  </clipPath>
</defs>
<polyline points='59.59,200.13 61.80,211.08 64.99,225.93 66.21,231.28 70.40,248.56 75.03,265.82 75.80,268.50 81.20,286.11 86.60,301.73 90.48,311.86 92.01,315.64 97.41,328.07 102.81,339.23 108.21,349.29 113.62,358.39 119.02,366.65 121.36,370.00 124.42,374.19 129.82,381.09 135.23,387.43 140.63,393.28 146.03,398.70 151.43,403.73 156.84,408.41 162.24,412.78 167.64,416.88 173.04,420.73 178.45,424.35 183.85,427.76 189.25,430.99 191.95,432.54 194.65,434.04 200.06,436.94 205.46,439.69 210.86,442.30 216.26,444.79 221.67,447.16 227.07,449.42 232.47,451.58 237.87,453.64 243.28,455.61 248.68,457.49 254.08,459.30 258.13,460.60 259.48,461.02 264.89,462.68 270.29,464.26 275.69,465.78 281.09,467.23 286.49,468.63 291.90,469.97 297.30,471.25 302.70,472.48 308.10,473.67 313.51,474.80 318.91,475.89 324.31,476.94 ' style='stroke-width: 1.50;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='59.59' y1='515.04' x2='324.31' y2='515.04' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='59.59' y1='515.04' x2='59.59' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='103.71' y1='515.04' x2='103.71' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='147.83' y1='515.04' x2='147.83' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='191.95' y1='515.04' x2='191.95' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='236.07' y1='515.04' x2='236.07' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='280.19' y1='515.04' x2='280.19' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='324.31' y1='515.04' x2='324.31' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='56.83' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='98.18' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='142.30' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='186.42' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='230.54' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='271.90' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='316.02' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='49.00' y1='502.43' x2='49.00' y2='201.21' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='502.43' x2='43.03' y2='502.43' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='442.18' x2='43.03' y2='442.18' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='381.94' x2='43.03' y2='381.94' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='321.70' x2='43.03' y2='321.70' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='261.45' x2='43.03' y2='261.45' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='201.21' x2='43.03' y2='201.21' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,505.20) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,447.72) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,387.47) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,327.23) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,266.98) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(34.66,209.50) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<polyline points='49.00,515.04 334.90,515.04 334.90,174.43 49.00,174.43 49.00,515.04 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8NTc2LjAwfDE0OS4zMw=='>
    <rect x='0.00' y='149.33' width='360.00' height='426.67' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDE0OS4zMw==)'><text x='181.08' y='560.46' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='21.75px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDE0OS4zMw==)'><text transform='translate(10.76,358.84) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='28.20px' lengthAdjust='spacingAndGlyphs'>parent</text></g>
<defs>
  <clipPath id='cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM='>
    <rect x='49.00' y='174.43' width='285.90' height='340.61' />
  </clipPath>
</defs>
<circle cx='59.59' cy='204.22' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='206.93' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='212.35' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='205.42' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='238.56' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='241.87' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='267.17' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='262.05' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='298.20' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='297.90' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='362.96' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='367.48' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='430.74' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='423.51' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='452.73' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='456.04' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='468.69' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='469.90' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,210.46 64.99,224.49 66.21,229.55 70.40,245.95 75.03,262.38 75.80,264.93 81.20,281.77 86.60,296.76 90.48,306.51 92.01,310.16 97.41,322.18 102.81,333.00 108.21,342.78 113.62,351.66 119.02,359.75 121.36,363.03 124.42,367.14 129.82,373.94 135.23,380.19 140.63,385.98 146.03,391.35 151.43,396.34 156.84,401.01 162.24,405.38 167.64,409.48 173.04,413.35 178.45,416.99 183.85,420.43 189.25,423.70 191.95,425.27 194.65,426.80 200.06,429.74 205.46,432.55 210.86,435.22 216.26,437.78 221.67,440.21 227.07,442.55 232.47,444.78 237.87,446.92 243.28,448.97 248.68,450.94 254.08,452.83 258.13,454.20 259.48,454.65 264.89,456.39 270.29,458.07 275.69,459.68 281.09,461.23 286.49,462.73 291.90,464.16 297.30,465.55 302.70,466.88 308.10,468.16 313.51,469.39 318.91,470.58 324.31,471.73 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,202.84 62.61,208.07 56.57,208.07 59.59,202.84 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,194.11 62.61,199.33 56.57,199.33 59.59,194.11 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,207.96 64.82,213.19 58.78,213.19 61.80,207.96 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,207.66 64.82,212.89 58.78,212.89 61.80,207.66 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,222.42 69.23,227.65 63.19,227.65 66.21,222.42 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,225.73 69.23,230.96 63.19,230.96 66.21,225.73 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,255.86 78.05,261.08 72.02,261.08 75.03,255.86 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,243.51 78.05,248.73 72.02,248.73 75.03,243.51 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,287.79 93.49,293.01 87.46,293.01 90.48,287.79 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,301.94 93.49,307.17 87.46,307.17 90.48,301.94 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,342.31 124.38,347.54 118.34,347.54 121.36,342.31 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,353.75 124.38,358.98 118.34,358.98 121.36,353.75 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,401.65 194.97,406.88 188.93,406.88 191.95,401.65 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,411.89 194.97,417.12 188.93,417.12 191.95,411.89 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,437.19 261.15,442.42 255.11,442.42 258.13,437.19 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,446.83 261.15,452.06 255.11,452.06 258.13,446.83 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,470.33 327.33,475.56 321.29,475.56 324.31,470.33 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,449.54 327.33,454.77 321.29,454.77 324.31,449.54 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,209.35 64.99,221.94 66.21,226.50 70.40,241.32 75.03,256.27 75.80,258.60 81.20,274.05 86.60,287.92 90.48,297.00 92.01,300.41 97.41,311.70 102.81,321.94 108.21,331.26 113.62,339.79 119.02,347.60 121.36,350.79 124.42,354.80 129.82,361.45 135.23,367.61 140.63,373.35 146.03,378.69 151.43,383.70 156.84,388.40 162.24,392.82 167.64,397.00 173.04,400.94 178.45,404.68 183.85,408.24 189.25,411.62 191.95,413.25 194.65,414.84 200.06,417.91 205.46,420.85 210.86,423.67 216.26,426.36 221.67,428.95 227.07,431.43 232.47,433.82 237.87,436.12 243.28,438.33 248.68,440.45 254.08,442.50 258.13,443.99 259.48,444.48 264.89,446.39 270.29,448.22 275.69,450.00 281.09,451.71 286.49,453.37 291.90,454.97 297.30,456.51 302.70,458.00 308.10,459.44 313.51,460.84 318.91,462.19 324.31,463.49 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='205.42' x2='62.76' y2='205.42' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='208.59' x2='59.59' y2='202.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='210.54' x2='62.76' y2='210.54' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='213.71' x2='59.59' y2='207.37' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='207.23' x2='64.97' y2='207.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='210.40' x2='61.80' y2='204.06' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='216.87' x2='64.97' y2='216.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='220.04' x2='61.80' y2='213.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='227.41' x2='69.38' y2='227.41' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='230.58' x2='66.21' y2='224.24' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='222.59' x2='69.38' y2='222.59' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='225.76' x2='66.21' y2='219.42' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='256.03' x2='78.20' y2='256.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='259.20' x2='75.03' y2='252.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='255.43' x2='78.20' y2='255.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='258.59' x2='75.03' y2='252.26' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='304.22' x2='93.65' y2='304.22' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='307.39' x2='90.48' y2='301.05' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='305.73' x2='93.65' y2='305.73' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='308.90' x2='90.48' y2='302.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='356.94' x2='124.53' y2='356.94' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='360.11' x2='121.36' y2='353.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='360.85' x2='124.53' y2='360.85' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='364.02' x2='121.36' y2='357.68' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='438.87' x2='195.12' y2='438.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='442.04' x2='191.95' y2='435.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='432.55' x2='195.12' y2='432.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='435.71' x2='191.95' y2='429.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='462.37' x2='261.30' y2='462.37' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='465.54' x2='258.13' y2='459.20' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='465.38' x2='261.30' y2='465.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='468.55' x2='258.13' y2='462.21' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='474.11' x2='327.48' y2='474.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='477.28' x2='324.31' y2='470.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='483.15' x2='327.48' y2='483.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='486.32' x2='324.31' y2='479.98' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,209.38 64.99,222.13 66.21,226.79 70.40,242.08 75.03,257.74 75.80,260.21 81.20,276.71 86.60,291.75 90.48,301.72 92.01,305.49 97.41,318.07 102.81,329.59 108.21,340.18 113.62,349.92 119.02,358.90 121.36,362.57 124.42,367.19 129.82,374.86 135.23,381.97 140.63,388.57 146.03,394.70 151.43,400.42 156.84,405.75 162.24,410.73 167.64,415.39 173.04,419.76 178.45,423.85 183.85,427.70 189.25,431.32 191.95,433.05 194.65,434.73 200.06,437.95 205.46,440.99 210.86,443.85 216.26,446.57 221.67,449.14 227.07,451.57 232.47,453.88 237.87,456.07 243.28,458.15 248.68,460.12 254.08,462.00 258.13,463.35 259.48,463.79 264.89,465.49 270.29,467.11 275.69,468.65 281.09,470.13 286.49,471.53 291.90,472.87 297.30,474.14 302.70,475.36 308.10,476.53 313.51,477.64 318.91,478.70 324.31,479.72 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='202.54' x2='61.83' y2='198.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='198.06' x2='61.83' y2='202.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='208.57' x2='61.83' y2='204.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='204.09' x2='61.83' y2='208.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='206.46' x2='64.04' y2='201.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='201.98' x2='64.04' y2='206.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='220.62' x2='64.04' y2='216.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='216.13' x2='64.04' y2='220.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='228.15' x2='68.45' y2='223.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='223.66' x2='68.45' y2='228.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='226.34' x2='68.45' y2='221.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='221.86' x2='68.45' y2='226.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='258.57' x2='77.27' y2='254.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='254.09' x2='77.27' y2='258.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='272.13' x2='77.27' y2='267.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='267.64' x2='77.27' y2='272.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='310.98' x2='92.72' y2='306.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='306.50' x2='92.72' y2='310.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='316.71' x2='92.72' y2='312.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='312.22' x2='92.72' y2='316.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='368.22' x2='123.60' y2='363.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='363.73' x2='123.60' y2='368.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='381.17' x2='123.60' y2='376.69' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='376.69' x2='123.60' y2='381.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='448.64' x2='194.19' y2='444.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='444.16' x2='194.19' y2='448.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='450.75' x2='194.19' y2='446.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='446.27' x2='194.19' y2='450.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='482.08' x2='260.37' y2='477.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='477.60' x2='260.37' y2='482.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='480.87' x2='260.37' y2='476.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='476.39' x2='260.37' y2='480.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='495.03' x2='326.55' y2='490.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='490.55' x2='326.55' y2='495.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='498.34' x2='326.55' y2='493.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='493.86' x2='326.55' y2='498.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,210.02 64.99,223.68 66.21,228.68 70.40,245.11 75.03,261.98 75.80,264.64 81.20,282.46 86.60,298.73 90.48,309.53 92.01,313.62 97.41,327.24 102.81,339.72 108.21,351.18 113.62,361.70 119.02,371.38 121.36,375.33 124.42,380.29 129.82,388.50 135.23,396.08 140.63,403.08 146.03,409.56 151.43,415.55 156.84,421.10 162.24,426.25 167.64,431.03 173.04,435.47 178.45,439.60 183.85,443.45 189.25,447.03 191.95,448.73 194.65,450.37 200.06,453.49 205.46,456.41 210.86,459.13 216.26,461.67 221.67,464.06 227.07,466.29 232.47,468.38 237.87,470.34 243.28,472.18 248.68,473.90 254.08,475.52 258.13,476.67 259.48,477.04 264.89,478.48 270.29,479.82 275.69,481.09 281.09,482.28 286.49,483.40 291.90,484.46 297.30,485.45 302.70,486.39 308.10,487.27 313.51,488.11 318.91,488.89 324.31,489.63 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,195.18 59.59,192.01 62.76,195.18 59.59,198.35 56.42,195.18 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,203.62 59.59,200.45 62.76,203.62 59.59,206.78 56.42,203.62 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,216.57 61.80,213.40 64.97,216.57 61.80,219.74 58.63,216.57 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,208.43 61.80,205.27 64.97,208.43 61.80,211.60 58.63,208.43 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,250.30 66.21,247.14 69.38,250.30 66.21,253.47 63.04,250.30 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,254.52 66.21,251.35 69.38,254.52 66.21,257.69 63.04,254.52 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,291.87 75.03,288.70 78.20,291.87 75.03,295.04 71.86,291.87 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,283.44 75.03,280.27 78.20,283.44 75.03,286.61 71.86,283.44 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,320.19 90.48,317.02 93.65,320.19 90.48,323.36 87.31,320.19 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,325.01 90.48,321.84 93.65,325.01 90.48,328.18 87.31,325.01 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,372.60 121.36,369.43 124.53,372.60 121.36,375.77 118.19,372.60 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,380.43 121.36,377.26 124.53,380.43 121.36,383.60 118.19,380.43 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,429.83 191.95,426.67 195.12,429.83 191.95,433.00 188.78,429.83 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,431.64 191.95,428.47 195.12,431.64 191.95,434.81 188.78,431.64 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,467.19 258.13,464.02 261.30,467.19 258.13,470.36 254.96,467.19 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,456.34 258.13,453.17 261.30,456.34 258.13,459.51 254.96,456.34 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,475.02 324.31,471.85 327.48,475.02 324.31,478.19 321.14,475.02 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,487.37 324.31,484.20 327.48,487.37 324.31,490.54 321.14,487.37 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,216.17 64.99,236.61 66.21,243.62 70.40,265.01 75.03,284.59 75.80,287.47 81.20,305.54 86.60,320.36 90.48,329.44 92.01,332.74 97.41,343.29 102.81,352.44 108.21,360.52 113.62,367.76 119.02,374.34 121.36,377.01 124.42,380.37 129.82,385.96 135.23,391.18 140.63,396.09 146.03,400.71 151.43,405.09 156.84,409.25 162.24,413.20 167.64,416.97 173.04,420.57 178.45,424.01 183.85,427.30 189.25,430.44 191.95,431.97 194.65,433.45 200.06,436.34 205.46,439.09 210.86,441.74 216.26,444.27 221.67,446.69 227.07,449.02 232.47,451.25 237.87,453.38 243.28,455.42 248.68,457.38 254.08,459.26 258.13,460.62 259.48,461.06 264.89,462.78 270.29,464.43 275.69,466.02 281.09,467.53 286.49,468.99 291.90,470.38 297.30,471.72 302.70,473.00 308.10,474.22 313.51,475.40 318.91,476.52 324.31,477.60 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,199.27 62.61,194.04 56.57,194.04 59.59,199.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,205.90 62.61,200.67 56.57,200.67 59.59,205.90 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,203.49 64.82,198.26 58.78,198.26 61.80,203.49 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,213.73 64.82,208.50 58.78,208.50 61.80,213.73 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,237.83 69.23,232.60 63.19,232.60 66.21,237.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,220.96 69.23,215.73 63.19,215.73 66.21,220.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,262.53 78.05,257.30 72.02,257.30 75.03,262.53 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,265.54 78.05,260.31 72.02,260.31 75.03,265.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,296.56 93.49,291.34 87.46,291.34 90.48,296.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,295.96 93.49,290.73 87.46,290.73 90.48,295.96 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,356.51 124.38,351.28 118.34,351.28 121.36,356.51 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,347.17 124.38,341.94 118.34,341.94 121.36,347.17 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,420.07 194.97,414.84 188.93,414.84 191.95,420.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,410.13 194.97,404.90 188.93,404.90 191.95,410.13 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,435.73 261.15,430.50 255.11,430.50 258.13,435.73 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,436.63 261.15,431.41 255.11,431.41 258.13,436.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,452.90 327.33,447.67 321.29,447.67 324.31,452.90 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,461.63 327.33,456.41 321.29,456.41 324.31,461.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,209.41 64.99,222.05 66.21,226.61 70.40,241.42 75.03,256.28 75.80,258.59 81.20,273.86 86.60,287.49 90.48,296.38 92.01,299.70 97.41,310.68 102.81,320.59 108.21,329.57 113.62,337.73 119.02,345.19 121.36,348.22 124.42,352.03 129.82,358.32 135.23,364.14 140.63,369.54 146.03,374.56 151.43,379.25 156.84,383.65 162.24,387.79 167.64,391.70 173.04,395.39 178.45,398.89 183.85,402.22 189.25,405.40 191.95,406.93 194.65,408.43 200.06,411.32 205.46,414.10 210.86,416.76 216.26,419.33 221.67,421.79 227.07,424.16 232.47,426.45 237.87,428.66 243.28,430.80 248.68,432.86 254.08,434.85 258.13,436.31 259.48,436.79 264.89,438.66 270.29,440.47 275.69,442.23 281.09,443.93 286.49,445.58 291.90,447.18 297.30,448.74 302.70,450.24 308.10,451.71 313.51,453.13 318.91,454.51 324.31,455.85 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='198.36' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='202.84' x2='61.83' y2='198.36' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='198.36' x2='61.83' y2='202.84' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='199.87' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='204.35' x2='61.83' y2='199.87' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='199.87' x2='61.83' y2='204.35' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='207.70' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='212.18' x2='64.04' y2='207.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='207.70' x2='64.04' y2='212.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='219.75' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='224.23' x2='64.04' y2='219.75' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='219.75' x2='64.04' y2='224.23' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='235.41' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='239.89' x2='68.45' y2='235.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='235.41' x2='68.45' y2='239.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='239.33' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='243.81' x2='68.45' y2='239.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='239.33' x2='68.45' y2='243.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='286.92' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='291.40' x2='77.27' y2='286.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='286.92' x2='77.27' y2='291.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='293.85' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='298.33' x2='77.27' y2='293.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='293.85' x2='77.27' y2='298.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='347.47' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='351.95' x2='92.72' y2='347.47' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='347.47' x2='92.72' y2='351.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='347.17' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='351.65' x2='92.72' y2='347.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='347.17' x2='92.72' y2='351.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='423.08' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='427.56' x2='123.60' y2='423.08' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='423.08' x2='123.60' y2='427.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='410.42' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='414.91' x2='123.60' y2='410.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='410.42' x2='123.60' y2='414.91' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='467.96' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='472.44' x2='194.19' y2='467.96' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='467.96' x2='194.19' y2='472.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='471.57' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='476.05' x2='194.19' y2='471.57' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='471.57' x2='194.19' y2='476.05' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='476.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='480.87' x2='260.37' y2='476.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='476.39' x2='260.37' y2='480.87' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='489.95' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='494.43' x2='260.37' y2='489.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='489.95' x2='260.37' y2='494.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='492.06' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='496.54' x2='326.55' y2='492.06' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='492.06' x2='326.55' y2='496.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='498.98' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='503.47' x2='326.55' y2='498.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='498.98' x2='326.55' y2='503.47' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,215.96 64.99,237.06 66.21,244.56 70.40,268.40 75.03,291.57 75.80,295.10 81.20,317.94 86.60,337.56 90.48,349.94 92.01,354.49 97.41,369.16 102.81,381.93 108.21,393.11 113.62,402.93 119.02,411.60 121.36,415.04 124.42,419.28 129.82,426.13 135.23,432.26 140.63,437.76 146.03,442.72 151.43,447.21 156.84,451.29 162.24,455.00 167.64,458.39 173.04,461.50 178.45,464.35 183.85,466.98 189.25,469.40 191.95,470.54 194.65,471.63 200.06,473.70 205.46,475.61 210.86,477.39 216.26,479.04 221.67,480.58 227.07,482.00 232.47,483.33 237.87,484.57 243.28,485.73 248.68,486.81 254.08,487.81 258.13,488.52 259.48,488.75 264.89,489.63 270.29,490.45 275.69,491.22 281.09,491.93 286.49,492.60 291.90,493.23 297.30,493.82 302.70,494.37 308.10,494.88 313.51,495.36 318.91,495.81 324.31,496.23 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='192.30' x2='61.83' y2='187.82' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='187.82' x2='61.83' y2='192.30' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='190.06' x2='62.76' y2='190.06' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='193.23' x2='59.59' y2='186.89' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='197.42' x2='61.83' y2='192.94' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='192.94' x2='61.83' y2='197.42' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='195.18' x2='62.76' y2='195.18' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='198.35' x2='59.59' y2='192.01' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='224.83' x2='64.04' y2='220.35' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='220.35' x2='64.04' y2='224.83' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='222.59' x2='64.97' y2='222.59' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='225.76' x2='61.80' y2='219.42' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='215.80' x2='64.04' y2='211.31' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='211.31' x2='64.04' y2='215.80' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='213.56' x2='64.97' y2='213.56' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='216.72' x2='61.80' y2='210.39' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='257.97' x2='68.45' y2='253.49' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='253.49' x2='68.45' y2='257.97' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='255.73' x2='69.38' y2='255.73' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='258.90' x2='66.21' y2='252.56' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='254.96' x2='68.45' y2='250.47' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='250.47' x2='68.45' y2='254.96' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='252.71' x2='69.38' y2='252.71' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='255.88' x2='66.21' y2='249.55' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='306.16' x2='77.27' y2='301.68' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='301.68' x2='77.27' y2='306.16' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='303.92' x2='78.20' y2='303.92' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='307.09' x2='75.03' y2='300.75' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='291.71' x2='77.27' y2='287.22' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='287.22' x2='77.27' y2='291.71' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='289.46' x2='78.20' y2='289.46' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='292.63' x2='75.03' y2='286.29' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='349.24' x2='92.72' y2='344.76' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='344.76' x2='92.72' y2='349.24' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='347.00' x2='93.65' y2='347.00' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='350.17' x2='90.48' y2='343.83' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='356.47' x2='92.72' y2='351.99' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='351.99' x2='92.72' y2='356.47' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='354.23' x2='93.65' y2='354.23' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='357.40' x2='90.48' y2='351.06' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='397.43' x2='123.60' y2='392.95' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='392.95' x2='123.60' y2='397.43' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='395.19' x2='124.53' y2='395.19' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='398.36' x2='121.36' y2='392.02' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='390.21' x2='123.60' y2='385.72' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='385.72' x2='123.60' y2='390.21' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='387.96' x2='124.53' y2='387.96' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='391.13' x2='121.36' y2='384.80' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='439.30' x2='194.19' y2='434.82' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='434.82' x2='194.19' y2='439.30' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='437.06' x2='195.12' y2='437.06' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='440.23' x2='191.95' y2='433.89' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='438.10' x2='194.19' y2='433.62' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='433.62' x2='194.19' y2='438.10' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='435.86' x2='195.12' y2='435.86' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='439.03' x2='191.95' y2='432.69' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='457.08' x2='260.37' y2='452.60' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='452.60' x2='260.37' y2='457.08' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='454.84' x2='261.30' y2='454.84' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='458.01' x2='258.13' y2='451.67' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='472.74' x2='260.37' y2='468.26' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='468.26' x2='260.37' y2='472.74' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='470.50' x2='261.30' y2='470.50' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='473.67' x2='258.13' y2='467.33' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='482.68' x2='326.55' y2='478.20' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='478.20' x2='326.55' y2='482.68' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='480.44' x2='327.48' y2='480.44' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='483.61' x2='324.31' y2='477.27' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='482.98' x2='326.55' y2='478.50' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='478.50' x2='326.55' y2='482.98' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='480.74' x2='327.48' y2='480.74' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='483.91' x2='324.31' y2='477.57' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,219.24 64.99,243.39 66.21,251.60 70.40,276.41 75.03,298.68 75.80,301.92 81.20,321.89 86.60,337.78 90.48,347.24 92.01,350.63 97.41,361.22 102.81,370.11 108.21,377.73 113.62,384.36 119.02,390.24 121.36,392.60 124.42,395.53 129.82,400.36 135.23,404.80 140.63,408.93 146.03,412.80 151.43,416.44 156.84,419.89 162.24,423.17 167.64,426.30 173.04,429.28 178.45,432.13 183.85,434.86 189.25,437.48 191.95,438.75 194.65,439.99 200.06,442.40 205.46,444.71 210.86,446.94 216.26,449.07 221.67,451.13 227.07,453.10 232.47,455.00 237.87,456.82 243.28,458.57 248.68,460.26 254.08,461.88 258.13,463.05 259.48,463.44 264.89,464.93 270.29,466.37 275.69,467.76 281.09,469.09 286.49,470.37 291.90,471.60 297.30,472.79 302.70,473.93 308.10,475.02 313.51,476.07 318.91,477.09 324.31,478.06 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='196.99' x2='62.76' y2='196.99' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='200.16' x2='59.59' y2='193.82' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,196.99 59.59,193.82 62.76,196.99 59.59,200.16 56.42,196.99 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='211.15' x2='62.76' y2='211.15' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='214.31' x2='59.59' y2='207.98' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,211.15 59.59,207.98 62.76,211.15 59.59,214.31 56.42,211.15 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='218.07' x2='64.97' y2='218.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='221.24' x2='61.80' y2='214.90' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,218.07 61.80,214.90 64.97,218.07 61.80,221.24 58.63,218.07 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='208.74' x2='64.97' y2='208.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='211.91' x2='61.80' y2='205.57' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,208.74 61.80,205.57 64.97,208.74 61.80,211.91 58.63,208.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='239.76' x2='69.38' y2='239.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='242.93' x2='66.21' y2='236.59' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,239.76 66.21,236.59 69.38,239.76 66.21,242.93 63.04,239.76 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='243.08' x2='69.38' y2='243.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='246.24' x2='66.21' y2='239.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,243.08 66.21,239.91 69.38,243.08 66.21,246.24 63.04,243.08 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='280.73' x2='78.20' y2='280.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='283.90' x2='75.03' y2='277.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,280.73 75.03,277.56 78.20,280.73 75.03,283.90 71.86,280.73 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='280.13' x2='78.20' y2='280.13' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='283.30' x2='75.03' y2='276.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,280.13 75.03,276.96 78.20,280.13 75.03,283.30 71.86,280.13 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='332.54' x2='93.65' y2='332.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='335.71' x2='90.48' y2='329.37' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,332.54 90.48,329.37 93.65,332.54 90.48,335.71 87.31,332.54 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='334.05' x2='93.65' y2='334.05' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='337.21' x2='90.48' y2='330.88' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,334.05 90.48,330.88 93.65,334.05 90.48,337.21 87.31,334.05 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='390.68' x2='124.53' y2='390.68' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='393.84' x2='121.36' y2='387.51' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,390.68 121.36,387.51 124.53,390.68 121.36,393.84 118.19,390.68 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='394.89' x2='124.53' y2='394.89' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='398.06' x2='121.36' y2='391.72' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,394.89 121.36,391.72 124.53,394.89 121.36,398.06 118.19,394.89 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='441.28' x2='195.12' y2='441.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='444.45' x2='191.95' y2='438.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,441.28 191.95,438.11 195.12,441.28 191.95,444.45 188.78,441.28 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='436.46' x2='195.12' y2='436.46' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='439.63' x2='191.95' y2='433.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,436.46 191.95,433.29 195.12,436.46 191.95,439.63 188.78,436.46 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='459.96' x2='261.30' y2='459.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='463.13' x2='258.13' y2='456.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,459.96 258.13,456.79 261.30,459.96 258.13,463.13 254.96,459.96 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='452.73' x2='261.30' y2='452.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='455.90' x2='258.13' y2='449.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,452.73 258.13,449.56 261.30,452.73 258.13,455.90 254.96,452.73 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='473.81' x2='327.48' y2='473.81' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='476.98' x2='324.31' y2='470.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,473.81 324.31,470.64 327.48,473.81 324.31,476.98 321.14,473.81 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='485.86' x2='327.48' y2='485.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='489.03' x2='324.31' y2='482.69' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,485.86 324.31,482.69 327.48,485.86 324.31,489.03 321.14,485.86 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,214.74 64.99,234.04 66.21,240.84 70.40,262.29 75.03,282.84 75.80,285.95 81.20,305.87 86.60,322.74 90.48,333.28 92.01,337.13 97.41,349.48 102.81,360.16 108.21,369.46 113.62,377.64 119.02,384.87 121.36,387.75 124.42,391.32 129.82,397.12 135.23,402.37 140.63,407.15 146.03,411.55 151.43,415.60 156.84,419.36 162.24,422.88 167.64,426.16 173.04,429.26 178.45,432.18 183.85,434.95 189.25,437.57 191.95,438.84 194.65,440.07 200.06,442.45 205.46,444.72 210.86,446.90 216.26,448.98 221.67,450.97 227.07,452.89 232.47,454.72 237.87,456.48 243.28,458.18 248.68,459.81 254.08,461.37 258.13,462.51 259.48,462.88 264.89,464.33 270.29,465.73 275.69,467.07 281.09,468.36 286.49,469.61 291.90,470.81 297.30,471.96 302.70,473.07 308.10,474.15 313.51,475.18 318.91,476.17 324.31,477.13 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='197.89' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='197.89' x2='61.83' y2='197.89' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='200.13' x2='59.59' y2='195.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='199.70' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='199.70' x2='61.83' y2='199.70' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='201.94' x2='59.59' y2='197.46' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='202.11' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='202.11' x2='64.04' y2='202.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='204.35' x2='61.80' y2='199.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='221.09' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='221.09' x2='64.04' y2='221.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='223.33' x2='61.80' y2='218.85' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='222.89' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='222.89' x2='68.45' y2='222.89' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='225.13' x2='66.21' y2='220.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='225.91' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='225.91' x2='68.45' y2='225.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='228.15' x2='66.21' y2='223.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='253.92' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='253.92' x2='77.27' y2='253.92' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='256.16' x2='75.03' y2='251.68' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='249.40' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='249.40' x2='77.27' y2='249.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='251.64' x2='75.03' y2='247.16' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='296.99' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='296.99' x2='92.72' y2='296.99' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='299.24' x2='90.48' y2='294.75' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='292.78' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='292.78' x2='92.72' y2='292.78' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='295.02' x2='90.48' y2='290.54' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='356.94' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='356.94' x2='123.60' y2='356.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='359.18' x2='121.36' y2='354.70' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='350.91' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='350.91' x2='123.60' y2='350.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='353.15' x2='121.36' y2='348.67' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='417.18' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='417.18' x2='194.19' y2='417.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='419.42' x2='191.95' y2='414.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='416.88' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='416.88' x2='194.19' y2='416.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='419.12' x2='191.95' y2='414.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='459.05' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='459.05' x2='260.37' y2='459.05' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='461.29' x2='258.13' y2='456.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='468.99' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='468.99' x2='260.37' y2='468.99' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='471.23' x2='258.13' y2='466.75' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='476.52' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='476.52' x2='326.55' y2='476.52' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='478.77' x2='324.31' y2='474.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='475.92' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='475.92' x2='326.55' y2='475.92' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='478.16' x2='324.31' y2='473.68' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,208.53 64.99,220.16 66.21,224.43 70.40,238.48 75.03,252.97 75.80,255.26 81.20,270.65 86.60,284.80 90.48,294.23 92.01,297.82 97.41,309.82 102.81,320.90 108.21,331.15 113.62,340.64 119.02,349.45 121.36,353.07 124.42,357.64 129.82,365.26 135.23,372.36 140.63,378.99 146.03,385.18 151.43,390.99 156.84,396.43 162.24,401.54 167.64,406.34 173.04,410.85 178.45,415.11 183.85,419.13 189.25,422.92 191.95,424.74 194.65,426.51 200.06,429.90 205.46,433.12 210.86,436.16 216.26,439.06 221.67,441.80 227.07,444.41 232.47,446.90 237.87,449.26 243.28,451.51 248.68,453.65 254.08,455.70 258.13,457.17 259.48,457.65 264.89,459.51 270.29,461.29 275.69,462.98 281.09,464.61 286.49,466.16 291.90,467.64 297.30,469.06 302.70,470.42 308.10,471.72 313.51,472.96 318.91,474.15 324.31,475.29 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,204.69 62.61,198.59 56.57,198.59 59.59,204.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,197.72 62.61,203.82 56.57,203.82 59.59,197.72 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,208.61 62.61,202.51 56.57,202.51 59.59,208.61 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,201.64 62.61,207.74 56.57,207.74 59.59,201.64 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,217.94 64.82,211.85 58.78,211.85 61.80,217.94 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,210.97 64.82,217.07 58.78,217.07 61.80,210.97 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,215.23 64.82,209.13 58.78,209.13 61.80,215.23 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,208.26 64.82,214.36 58.78,214.36 61.80,208.26 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,218.55 69.23,212.45 63.19,212.45 66.21,218.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,211.58 69.23,217.68 63.19,217.68 66.21,211.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,216.44 69.23,210.34 63.19,210.34 66.21,216.44 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,209.47 69.23,215.57 63.19,215.57 66.21,209.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,253.79 78.05,247.69 72.02,247.69 75.03,253.79 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,246.82 78.05,252.92 72.02,252.92 75.03,246.82 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,243.55 78.05,237.45 72.02,237.45 75.03,243.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,236.58 78.05,242.68 72.02,242.68 75.03,236.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,288.13 93.49,282.03 87.46,282.03 90.48,288.13 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,281.16 93.49,287.26 87.46,287.26 90.48,281.16 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,285.42 93.49,279.32 87.46,279.32 90.48,285.42 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,278.45 93.49,284.55 87.46,284.55 90.48,278.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,339.34 124.38,333.24 118.34,333.24 121.36,339.34 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,332.37 124.38,338.47 118.34,338.47 121.36,332.37 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,342.05 124.38,335.95 118.34,335.95 121.36,342.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,335.08 124.38,341.18 118.34,341.18 121.36,335.08 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,402.59 194.97,396.50 188.93,396.50 191.95,402.59 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,395.62 194.97,401.72 188.93,401.72 191.95,395.62 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,410.73 194.97,404.63 188.93,404.63 191.95,410.73 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,403.76 194.97,409.86 188.93,409.86 191.95,403.76 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,444.77 261.15,438.67 255.11,438.67 258.13,444.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,437.80 261.15,443.89 255.11,443.89 258.13,437.80 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,440.55 261.15,434.45 255.11,434.45 258.13,440.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,433.58 261.15,439.68 255.11,439.68 258.13,433.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,464.95 327.33,458.85 321.29,458.85 324.31,464.95 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,457.98 327.33,464.08 321.29,464.08 324.31,457.98 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,461.63 327.33,455.54 321.29,455.54 324.31,461.63 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,454.66 327.33,460.76 321.29,460.76 324.31,454.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,207.41 64.99,217.51 66.21,221.23 70.40,233.50 75.03,246.21 75.80,248.22 81.20,261.81 86.60,274.36 90.48,282.78 92.01,285.98 97.41,296.75 102.81,306.76 108.21,316.06 113.62,324.73 119.02,332.83 121.36,336.17 124.42,340.39 129.82,347.47 135.23,354.12 140.63,360.36 146.03,366.23 151.43,371.76 156.84,376.98 162.24,381.91 167.64,386.58 173.04,391.00 178.45,395.19 183.85,399.18 189.25,402.97 191.95,404.80 194.65,406.58 200.06,410.02 205.46,413.31 210.86,416.44 216.26,419.44 221.67,422.31 227.07,425.06 232.47,427.70 237.87,430.22 243.28,432.65 248.68,434.98 254.08,437.22 258.13,438.85 259.48,439.38 264.89,441.45 270.29,443.44 275.69,445.37 281.09,447.22 286.49,449.00 291.90,450.73 297.30,452.39 302.70,453.99 308.10,455.54 313.51,457.03 318.91,458.48 324.31,459.87 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='205.12' x2='61.83' y2='205.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='207.36' x2='59.59' y2='202.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='202.88' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='201.51' x2='61.83' y2='201.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='203.75' x2='59.59' y2='199.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='199.27' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='205.12' x2='64.04' y2='205.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='207.36' x2='61.80' y2='202.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='202.88' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='214.76' x2='64.04' y2='214.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='217.00' x2='61.80' y2='212.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='212.52' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='228.01' x2='68.45' y2='228.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='230.26' x2='66.21' y2='225.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='225.77' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='226.21' x2='68.45' y2='226.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='228.45' x2='66.21' y2='223.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='223.97' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='253.62' x2='77.27' y2='253.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='255.86' x2='75.03' y2='251.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='251.38' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='252.41' x2='77.27' y2='252.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='254.65' x2='75.03' y2='250.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='250.17' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='299.10' x2='92.72' y2='299.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='301.34' x2='90.48' y2='296.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='296.86' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='294.89' x2='92.72' y2='294.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='297.13' x2='90.48' y2='292.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='292.65' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='352.42' x2='123.60' y2='352.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='354.66' x2='121.36' y2='350.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='350.18' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='369.59' x2='123.60' y2='369.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='371.83' x2='121.36' y2='367.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='367.35' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='424.11' x2='194.19' y2='424.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='426.35' x2='191.95' y2='421.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='421.87' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='423.51' x2='194.19' y2='423.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='425.75' x2='191.95' y2='421.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='421.27' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='462.37' x2='260.37' y2='462.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='464.61' x2='258.13' y2='460.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='460.13' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='466.58' x2='260.37' y2='466.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='468.82' x2='258.13' y2='464.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='464.34' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='472.01' x2='326.55' y2='472.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='474.25' x2='324.31' y2='469.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='469.76' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='477.43' x2='326.55' y2='477.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='479.67' x2='324.31' y2='475.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='475.19' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,209.04 64.99,221.34 66.21,225.84 70.40,240.62 75.03,255.77 75.80,258.16 81.20,274.15 86.60,288.76 90.48,298.46 92.01,302.13 97.41,314.38 102.81,325.64 108.21,336.00 113.62,345.55 119.02,354.37 121.36,357.98 124.42,362.53 129.82,370.09 135.23,377.12 140.63,383.65 146.03,389.74 151.43,395.43 156.84,400.74 162.24,405.72 167.64,410.39 173.04,414.77 178.45,418.89 183.85,422.77 189.25,426.44 191.95,428.19 194.65,429.89 200.06,433.16 205.46,436.25 210.86,439.17 216.26,441.95 221.67,444.58 227.07,447.09 232.47,449.46 237.87,451.72 243.28,453.88 248.68,455.93 254.08,457.88 258.13,459.29 259.48,459.75 264.89,461.53 270.29,463.22 275.69,464.85 281.09,466.39 286.49,467.88 291.90,469.29 297.30,470.65 302.70,471.94 308.10,473.18 313.51,474.37 318.91,475.51 324.31,476.60 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='195.48' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='197.72' x2='61.83' y2='193.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='193.24' x2='61.83' y2='197.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='194.88' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='197.12' x2='61.83' y2='192.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='192.64' x2='61.83' y2='197.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='205.42' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='207.66' x2='64.04' y2='203.18' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='203.18' x2='64.04' y2='207.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='221.39' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='223.63' x2='64.04' y2='219.15' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='219.15' x2='64.04' y2='223.63' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='215.36' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='217.60' x2='68.45' y2='213.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='213.12' x2='68.45' y2='217.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='233.14' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='235.38' x2='68.45' y2='230.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='230.89' x2='68.45' y2='235.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='265.37' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='267.61' x2='77.27' y2='263.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='263.13' x2='77.27' y2='267.61' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='269.28' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='271.52' x2='77.27' y2='267.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='267.04' x2='77.27' y2='271.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='309.34' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='311.59' x2='92.72' y2='307.10' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='307.10' x2='92.72' y2='311.59' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='311.45' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='313.69' x2='92.72' y2='309.21' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='309.21' x2='92.72' y2='313.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='371.40' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='373.64' x2='123.60' y2='369.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='369.16' x2='123.60' y2='373.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='380.13' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='382.37' x2='123.60' y2='377.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='377.89' x2='123.60' y2='382.37' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='439.17' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='441.41' x2='194.19' y2='436.93' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='436.93' x2='194.19' y2='441.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='437.06' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='439.30' x2='194.19' y2='434.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='434.82' x2='194.19' y2='439.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='458.75' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='460.99' x2='260.37' y2='456.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='456.51' x2='260.37' y2='460.99' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='457.25' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='459.49' x2='260.37' y2='455.00' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='455.00' x2='260.37' y2='459.49' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='483.45' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='485.69' x2='326.55' y2='481.21' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='481.21' x2='326.55' y2='485.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='496.71' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='498.95' x2='326.55' y2='494.47' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='494.47' x2='326.55' y2='498.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,210.86 64.99,225.49 66.21,230.79 70.40,247.97 75.03,265.26 75.80,267.95 81.20,285.76 86.60,301.68 90.48,312.07 92.01,315.96 97.41,328.81 102.81,340.41 108.21,350.90 113.62,360.44 119.02,369.13 121.36,372.65 124.42,377.07 129.82,384.34 135.23,391.03 140.63,397.20 146.03,402.91 151.43,408.19 156.84,413.11 162.24,417.68 167.64,421.96 173.04,425.95 178.45,429.70 183.85,433.22 189.25,436.53 191.95,438.11 194.65,439.65 200.06,442.60 205.46,445.38 210.86,448.01 216.26,450.50 221.67,452.86 227.07,455.11 232.47,457.24 237.87,459.26 243.28,461.18 248.68,463.02 254.08,464.76 258.13,466.02 259.48,466.42 264.89,468.01 270.29,469.52 275.69,470.96 281.09,472.34 286.49,473.65 291.90,474.90 297.30,476.10 302.70,477.24 308.10,478.34 313.51,479.38 318.91,480.38 324.31,481.33 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,195.65 61.83,200.13 57.35,200.13 59.59,195.65 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='195.65' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,201.07 61.83,205.55 57.35,205.55 59.59,201.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='201.07' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,201.07 64.04,205.55 59.56,205.55 61.80,201.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='201.07' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,210.41 64.04,214.89 59.56,214.89 61.80,210.41 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='210.41' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,227.28 68.45,231.76 63.97,231.76 66.21,227.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='227.28' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,229.39 68.45,233.87 63.97,233.87 66.21,229.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='229.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,273.07 77.27,277.55 72.79,277.55 75.03,273.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='273.07' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,268.85 77.27,273.33 72.79,273.33 75.03,268.85 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='268.85' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,313.43 92.72,317.91 88.23,317.91 90.48,313.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='313.43' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,310.42 92.72,314.90 88.23,314.90 90.48,310.42 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='310.42' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,379.10 123.60,383.58 119.12,383.58 121.36,379.10 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='379.10' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,380.60 123.60,385.08 119.12,385.08 121.36,380.60 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='380.60' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,445.06 194.19,449.55 189.71,449.55 191.95,445.06 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='445.06' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,433.62 194.19,438.10 189.71,438.10 191.95,433.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='433.62' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,464.34 260.37,468.82 255.89,468.82 258.13,464.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='464.34' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,472.17 260.37,476.66 255.89,476.66 258.13,472.17 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='472.17' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,494.77 326.55,499.25 322.07,499.25 324.31,494.77 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='494.77' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,480.31 326.55,484.79 322.07,484.79 324.31,480.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='480.31' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,211.55 64.99,227.06 66.21,232.66 70.40,250.78 75.03,268.94 75.80,271.75 81.20,290.34 86.60,306.88 90.48,317.62 92.01,321.63 97.41,334.85 102.81,346.72 108.21,357.42 113.62,367.10 119.02,375.89 121.36,379.45 124.42,383.90 129.82,391.21 135.23,397.91 140.63,404.07 146.03,409.74 151.43,414.99 156.84,419.85 162.24,424.37 167.64,428.58 173.04,432.50 178.45,436.17 183.85,439.60 189.25,442.83 191.95,444.37 194.65,445.86 200.06,448.71 205.46,451.39 210.86,453.92 216.26,456.32 221.67,458.58 227.07,460.72 232.47,462.74 237.87,464.66 243.28,466.48 248.68,468.20 254.08,469.84 258.13,471.02 259.48,471.40 264.89,472.88 270.29,474.28 275.69,475.61 281.09,476.88 286.49,478.09 291.90,479.24 297.30,480.33 302.70,481.37 308.10,482.36 313.51,483.31 318.91,484.21 324.31,485.06 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='57.35,209.17 61.83,209.17 61.83,204.69 57.35,204.69 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='57.35,189.29 61.83,189.29 61.83,184.81 57.35,184.81 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='59.56,202.24 64.04,202.24 64.04,197.76 59.56,197.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='59.56,208.57 64.04,208.57 64.04,204.09 59.56,204.09 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='63.97,232.97 68.45,232.97 68.45,228.48 63.97,228.48 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='63.97,229.65 68.45,229.65 68.45,225.17 63.97,225.17 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='72.79,276.95 77.27,276.95 77.27,272.46 72.79,272.46 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='72.79,278.45 77.27,278.45 77.27,273.97 72.79,273.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='88.23,317.31 92.72,317.31 92.72,312.83 88.23,312.83 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='88.23,321.83 92.72,321.83 92.72,317.35 88.23,317.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='119.12,370.32 123.60,370.32 123.60,365.84 119.12,365.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='119.12,360.99 123.60,360.99 123.60,356.50 119.12,356.50 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='189.71,422.44 194.19,422.44 194.19,417.95 189.71,417.95 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='189.71,442.62 194.19,442.62 194.19,438.14 189.71,438.14 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='255.89,450.15 260.37,450.15 260.37,445.67 255.89,445.67 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='255.89,438.40 260.37,438.40 260.37,433.92 255.89,433.92 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='322.07,460.69 326.55,460.69 326.55,456.21 322.07,456.21 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='322.07,472.44 326.55,472.44 326.55,467.96 322.07,467.96 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,200.13 61.80,212.14 64.99,228.20 66.21,233.92 70.40,252.14 75.03,269.93 75.80,272.65 81.20,290.30 86.60,305.56 90.48,315.26 92.01,318.84 97.41,330.46 102.81,340.69 108.21,349.74 113.62,357.82 119.02,365.06 121.36,367.97 124.42,371.59 129.82,377.53 135.23,382.96 140.63,387.95 146.03,392.56 151.43,396.84 156.84,400.84 162.24,404.59 167.64,408.12 173.04,411.46 178.45,414.62 183.85,417.62 189.25,420.49 191.95,421.87 194.65,423.22 200.06,425.84 205.46,428.35 210.86,430.75 216.26,433.07 221.67,435.30 227.07,437.44 232.47,439.51 237.87,441.51 243.28,443.43 248.68,445.29 254.08,447.09 258.13,448.40 259.48,448.83 264.89,450.51 270.29,452.14 275.69,453.71 281.09,455.24 286.49,456.71 291.90,458.14 297.30,459.52 302.70,460.86 308.10,462.15 313.51,463.41 318.91,464.62 324.31,465.80 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<defs>
  <clipPath id='cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz'>
    <rect x='409.00' y='174.43' width='285.90' height='340.61' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='419.59' y1='515.04' x2='683.37' y2='515.04' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='419.59' y1='515.04' x2='419.59' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='472.35' y1='515.04' x2='472.35' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='525.10' y1='515.04' x2='525.10' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='577.86' y1='515.04' x2='577.86' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='630.62' y1='515.04' x2='630.62' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='683.37' y1='515.04' x2='683.37' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='416.83' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='466.82' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='519.57' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='572.33' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='625.09' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='11.06px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='675.08' y='536.56' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='16.59px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<line x1='409.00' y1='512.98' x2='409.00' y2='176.50' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='512.98' x2='403.03' y2='512.98' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='428.86' x2='403.03' y2='428.86' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='344.74' x2='403.03' y2='344.74' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='260.62' x2='403.03' y2='260.62' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='176.50' x2='403.03' y2='176.50' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,517.40) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,433.28) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,347.50) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,263.38) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,179.26) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polyline points='409.00,515.04 694.90,515.04 694.90,174.43 409.00,174.43 409.00,515.04 ' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MTQ5LjMz'>
    <rect x='360.00' y='149.33' width='360.00' height='426.67' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MTQ5LjMz)'><text x='530.93' y='560.46' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='42.05px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MTQ5LjMz)'><text transform='translate(370.76,392.87) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='96.27px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz'>
    <rect x='409.00' y='174.43' width='285.90' height='340.61' />
  </clipPath>
</defs>
<line x1='409.00' y1='344.74' x2='694.90' y2='344.74' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='373.74' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='392.99' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='675.27' cy='358.19' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='675.27' cy='309.00' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='658.55' cy='408.66' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='658.55' cy='432.18' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='629.80' cy='378.77' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='629.80' cy='342.41' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='591.16' cy='285.72' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='591.16' cy='283.58' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='541.66' cy='344.24' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='541.66' cy='376.32' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='487.16' cy='383.57' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='487.16' cy='332.24' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='461.82' cy='334.27' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='461.82' cy='357.79' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='446.48' cy='323.18' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='446.48' cy='331.74' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,385.22 687.33,390.45 681.29,390.45 684.31,385.22 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,323.20 687.33,328.43 681.29,328.43 684.31,323.20 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='676.24,356.11 679.25,361.34 673.22,361.34 676.24,356.11 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='676.24,353.97 679.25,359.20 673.22,359.20 676.24,353.97 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='661.22,337.02 664.24,342.25 658.20,342.25 661.22,337.02 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='661.22,360.54 664.24,365.77 658.20,365.77 661.22,360.54 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='635.15,363.08 638.17,368.30 632.14,368.30 635.15,363.08 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='635.15,275.39 638.17,280.62 632.14,280.62 635.15,275.39 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='599.49,300.60 602.51,305.83 596.47,305.83 599.49,300.60 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='599.49,401.11 602.51,406.34 596.47,406.34 599.49,401.11 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='552.38,305.75 555.40,310.98 549.36,310.98 552.38,305.75 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='552.38,387.02 555.40,392.25 549.36,392.25 552.38,387.02 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='497.69,283.67 500.71,288.89 494.67,288.89 497.69,283.67 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='497.69,356.38 500.71,361.61 494.67,361.61 497.69,356.38 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='470.76,317.72 473.78,322.95 467.75,322.95 470.76,317.72 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='470.76,386.16 473.78,391.39 467.75,391.39 470.76,386.16 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='453.69,414.55 456.71,419.78 450.67,419.78 453.69,414.55 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='453.69,266.98 456.71,272.21 450.67,272.21 453.69,266.98 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='382.29' x2='687.48' y2='382.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='385.46' x2='684.31' y2='379.12' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='418.65' x2='687.48' y2='418.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='421.82' x2='684.31' y2='415.48' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.05' y1='329.50' x2='679.39' y2='329.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.22' y1='332.67' x2='676.22' y2='326.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.05' y1='397.93' x2='679.39' y2='397.93' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.22' y1='401.10' x2='676.22' y2='394.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='657.80' y1='349.18' x2='664.14' y2='349.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='660.97' y1='352.34' x2='660.97' y2='346.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='657.80' y1='314.96' x2='664.14' y2='314.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='660.97' y1='318.13' x2='660.97' y2='311.79' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='630.70' y1='332.57' x2='637.03' y2='332.57' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='633.86' y1='335.74' x2='633.86' y2='329.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='630.70' y1='328.30' x2='637.03' y2='328.30' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='633.86' y1='331.47' x2='633.86' y2='325.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='592.18' y1='362.50' x2='598.52' y2='362.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.35' y1='365.67' x2='595.35' y2='359.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='592.18' y1='373.20' x2='598.52' y2='373.20' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.35' y1='376.37' x2='595.35' y2='370.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='538.89' y1='304.73' x2='545.23' y2='304.73' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='542.06' y1='307.89' x2='542.06' y2='301.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='538.89' y1='332.53' x2='545.23' y2='332.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='542.06' y1='335.70' x2='542.06' y2='329.36' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='477.17' y1='386.04' x2='483.51' y2='386.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='480.34' y1='389.21' x2='480.34' y2='382.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='477.17' y1='341.13' x2='483.51' y2='341.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='480.34' y1='344.30' x2='480.34' y2='337.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='450.64' y1='337.76' x2='456.98' y2='337.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='453.81' y1='340.93' x2='453.81' y2='334.59' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='450.64' y1='359.14' x2='456.98' y2='359.14' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='453.81' y1='362.31' x2='453.81' y2='355.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='436.31' y1='304.97' x2='442.65' y2='304.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.48' y1='308.14' x2='439.48' y2='301.80' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='436.31' y1='369.13' x2='442.65' y2='369.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.48' y1='372.29' x2='439.48' y2='365.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='348.18' x2='686.55' y2='343.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='343.70' x2='686.55' y2='348.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='390.95' x2='686.55' y2='386.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='386.47' x2='686.55' y2='390.95' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.41' y1='305.80' x2='677.90' y2='301.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.41' y1='301.32' x2='677.90' y2='305.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.41' y1='406.31' x2='677.90' y2='401.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.41' y1='401.83' x2='677.90' y2='406.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='657.07' y1='327.30' x2='661.56' y2='322.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='657.07' y1='322.81' x2='661.56' y2='327.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='657.07' y1='314.46' x2='661.56' y2='309.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='657.07' y1='309.98' x2='661.56' y2='314.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='627.91' y1='306.83' x2='632.39' y2='302.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='627.91' y1='302.35' x2='632.39' y2='306.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='627.91' y1='403.07' x2='632.39' y2='398.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='627.91' y1='398.59' x2='632.39' y2='403.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='586.27' y1='341.37' x2='590.75' y2='336.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='586.27' y1='336.89' x2='590.75' y2='341.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='586.27' y1='382.00' x2='590.75' y2='377.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='586.27' y1='377.52' x2='590.75' y2='382.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='528.65' y1='280.55' x2='533.13' y2='276.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='528.65' y1='276.07' x2='533.13' y2='280.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='528.65' y1='372.51' x2='533.13' y2='368.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='528.65' y1='368.03' x2='533.13' y2='372.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.37' y1='330.43' x2='468.85' y2='325.95' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.37' y1='325.95' x2='468.85' y2='330.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.37' y1='345.40' x2='468.85' y2='340.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.37' y1='340.92' x2='468.85' y2='345.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.91' y1='369.45' x2='444.39' y2='364.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.91' y1='364.97' x2='444.39' y2='369.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.91' y1='360.90' x2='444.39' y2='356.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.91' y1='356.42' x2='444.39' y2='360.90' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='428.56' y1='369.40' x2='433.04' y2='364.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='428.56' y1='364.91' x2='433.04' y2='369.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='428.56' y1='392.92' x2='433.04' y2='388.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='428.56' y1='388.44' x2='433.04' y2='392.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,309.58 684.31,306.41 687.48,309.58 684.31,312.75 681.14,309.58 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,369.46 684.31,366.29 687.48,369.46 684.31,372.63 681.14,369.46 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='667.10,347.54 670.27,344.37 673.44,347.54 670.27,350.71 667.10,347.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='667.10,289.80 670.27,286.63 673.44,289.80 670.27,292.97 667.10,289.80 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='643.06,392.19 646.23,389.02 649.40,392.19 646.23,395.36 643.06,392.19 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='643.06,422.13 646.23,418.96 649.40,422.13 646.23,425.30 643.06,422.13 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='607.18,396.46 610.35,393.29 613.52,396.46 610.35,399.63 607.18,396.46 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='607.18,336.58 610.35,333.41 613.52,336.58 610.35,339.75 607.18,336.58 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='567.91,279.04 571.08,275.88 574.25,279.04 571.08,282.21 567.91,279.04 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='567.91,313.26 571.08,310.09 574.25,313.26 571.08,316.43 567.91,313.26 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='526.25,313.43 529.42,310.26 532.59,313.43 529.42,316.60 526.25,313.43 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='526.25,369.03 529.42,365.86 532.59,369.03 529.42,372.20 526.25,369.03 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='478.13,329.61 481.30,326.44 484.47,329.61 481.30,332.78 478.13,329.61 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='478.13,342.44 481.30,339.27 484.47,342.44 481.30,345.61 478.13,342.44 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='453.04,391.39 456.21,388.22 459.38,391.39 456.21,394.56 453.04,391.39 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='453.04,314.40 456.21,311.23 459.38,314.40 456.21,317.57 453.04,314.40 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='438.16,326.38 441.33,323.21 444.50,326.38 441.33,329.55 438.16,326.38 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='438.16,414.07 441.33,410.90 444.50,414.07 441.33,417.23 438.16,414.07 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,317.34 687.33,312.11 681.29,312.11 684.31,317.34 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,364.39 687.33,359.16 681.29,359.16 684.31,364.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='676.19,281.40 679.20,276.17 673.17,276.17 676.19,281.40 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='676.19,354.11 679.20,348.88 673.17,348.88 676.19,354.11 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='661.12,403.08 664.14,397.86 658.11,397.86 661.12,403.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='661.12,283.32 664.14,278.09 658.11,278.09 661.12,283.32 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='635.15,367.85 638.17,362.62 632.13,362.62 635.15,367.85 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='635.15,389.23 638.17,384.01 632.13,384.01 635.15,389.23 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='600.03,324.80 603.05,319.58 597.01,319.58 600.03,324.80 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='600.03,320.53 603.05,315.30 597.01,315.30 600.03,320.53 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='554.63,382.29 557.65,377.06 551.61,377.06 554.63,382.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='554.63,315.99 557.65,310.76 551.61,310.76 554.63,315.99 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='503.22,416.76 506.24,411.53 500.20,411.53 503.22,416.76 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='503.22,346.18 506.24,340.96 500.20,340.96 503.22,346.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='477.49,319.36 480.51,314.14 474.48,314.14 477.49,319.36 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='477.49,325.78 480.51,320.55 474.48,320.55 477.49,325.78 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='460.38,302.51 463.40,297.28 457.36,297.28 460.38,302.51 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='460.38,364.53 463.40,359.30 457.36,359.30 460.38,364.53 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='345.83' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='350.32' x2='686.55' y2='345.83' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='345.83' x2='686.55' y2='350.32' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='356.53' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='361.01' x2='686.55' y2='356.53' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='356.53' x2='686.55' y2='361.01' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='668.21' y='299.79' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='668.21' y1='304.27' x2='672.70' y2='299.79' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='668.21' y1='299.79' x2='672.70' y2='304.27' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='668.21' y='385.34' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='668.21' y1='389.82' x2='672.70' y2='385.34' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='668.21' y1='385.34' x2='672.70' y2='389.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='643.16' y='293.44' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='643.16' y1='297.92' x2='647.65' y2='293.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='643.16' y1='293.44' x2='647.65' y2='297.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='643.16' y='321.24' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='643.16' y1='325.72' x2='647.65' y2='321.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='643.16' y1='321.24' x2='647.65' y2='325.72' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='602.00' y='325.40' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='602.00' y1='329.89' x2='606.48' y2='325.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='602.00' y1='325.40' x2='606.48' y2='329.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='602.00' y='374.59' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='602.00' y1='379.07' x2='606.48' y2='374.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='602.00' y1='374.59' x2='606.48' y2='379.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='550.89' y='340.87' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.89' y1='345.35' x2='555.37' y2='340.87' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.89' y1='340.87' x2='555.37' y2='345.35' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='550.89' y='338.73' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.89' y1='343.21' x2='555.37' y2='338.73' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.89' y1='338.73' x2='555.37' y2='343.21' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='493.88' y='415.46' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='493.88' y1='419.94' x2='498.36' y2='415.46' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='493.88' y1='415.46' x2='498.36' y2='419.94' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='493.88' y='325.64' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='493.88' y1='330.12' x2='498.36' y2='325.64' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='493.88' y1='325.64' x2='498.36' y2='330.12' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='445.28' y='340.11' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='445.28' y1='344.59' x2='449.76' y2='340.11' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='445.28' y1='340.11' x2='449.76' y2='344.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='445.28' y='365.77' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='445.28' y1='370.25' x2='449.76' y2='365.77' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='445.28' y1='365.77' x2='449.76' y2='370.25' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='429.53' y='272.28' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.53' y1='276.76' x2='434.01' y2='272.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.53' y1='272.28' x2='434.01' y2='276.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='429.53' y='368.52' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.53' y1='373.00' x2='434.01' y2='368.52' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.53' y1='368.52' x2='434.01' y2='373.00' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='422.78' y='328.76' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='422.78' y1='333.25' x2='427.26' y2='328.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='422.78' y1='328.76' x2='427.26' y2='333.25' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='422.78' y='377.95' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='422.78' y1='382.43' x2='427.26' y2='377.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='422.78' y1='377.95' x2='427.26' y2='382.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='275.47' x2='686.55' y2='270.98' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='270.98' x2='686.55' y2='275.47' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='273.22' x2='687.48' y2='273.22' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='276.39' x2='684.31' y2='270.05' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='311.82' x2='686.55' y2='307.34' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='307.34' x2='686.55' y2='311.82' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='309.58' x2='687.48' y2='309.58' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='312.75' x2='684.31' y2='306.41' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='665.34' y1='370.77' x2='669.82' y2='366.29' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='665.34' y1='366.29' x2='669.82' y2='370.77' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='664.41' y1='368.53' x2='670.75' y2='368.53' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='667.58' y1='371.70' x2='667.58' y2='365.36' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='665.34' y1='306.61' x2='669.82' y2='302.13' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='665.34' y1='302.13' x2='669.82' y2='306.61' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='664.41' y1='304.37' x2='670.75' y2='304.37' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='667.58' y1='307.54' x2='667.58' y2='301.20' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='637.00' y1='376.30' x2='641.49' y2='371.82' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='637.00' y1='371.82' x2='641.49' y2='376.30' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='636.08' y1='374.06' x2='642.41' y2='374.06' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='639.24' y1='377.23' x2='639.24' y2='370.89' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='637.00' y1='354.91' x2='641.49' y2='350.43' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='637.00' y1='350.43' x2='641.49' y2='354.91' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='636.08' y1='352.67' x2='642.41' y2='352.67' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='639.24' y1='355.84' x2='639.24' y2='349.50' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.77' y1='384.19' x2='600.25' y2='379.71' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.77' y1='379.71' x2='600.25' y2='384.19' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='594.84' y1='381.95' x2='601.18' y2='381.95' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='598.01' y1='385.12' x2='598.01' y2='378.78' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.77' y1='281.54' x2='600.25' y2='277.06' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.77' y1='277.06' x2='600.25' y2='281.54' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='594.84' y1='279.30' x2='601.18' y2='279.30' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='598.01' y1='282.47' x2='598.01' y2='276.13' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='553.25' y1='345.23' x2='557.73' y2='340.75' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='553.25' y1='340.75' x2='557.73' y2='345.23' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='552.32' y1='342.99' x2='558.66' y2='342.99' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='555.49' y1='346.16' x2='555.49' y2='339.82' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='553.25' y1='396.55' x2='557.73' y2='392.07' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='553.25' y1='392.07' x2='557.73' y2='396.55' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='552.32' y1='394.31' x2='558.66' y2='394.31' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='555.49' y1='397.48' x2='555.49' y2='391.14' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='513.53' y1='365.39' x2='518.01' y2='360.91' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='513.53' y1='360.91' x2='518.01' y2='365.39' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='512.60' y1='363.15' x2='518.94' y2='363.15' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='515.77' y1='366.32' x2='515.77' y2='359.98' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='513.53' y1='314.07' x2='518.01' y2='309.58' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='513.53' y1='309.58' x2='518.01' y2='314.07' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='512.60' y1='311.82' x2='518.94' y2='311.82' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='515.77' y1='314.99' x2='515.77' y2='308.66' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.12' y1='335.04' x2='477.60' y2='330.55' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.12' y1='330.55' x2='477.60' y2='335.04' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='472.19' y1='332.80' x2='478.53' y2='332.80' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='475.36' y1='335.96' x2='475.36' y2='329.63' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.12' y1='326.48' x2='477.60' y2='322.00' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.12' y1='322.00' x2='477.60' y2='326.48' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='472.19' y1='324.24' x2='478.53' y2='324.24' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='475.36' y1='327.41' x2='475.36' y2='321.07' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='451.83' y1='288.65' x2='456.32' y2='284.17' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='451.83' y1='284.17' x2='456.32' y2='288.65' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='450.91' y1='286.41' x2='457.24' y2='286.41' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='454.07' y1='289.58' x2='454.07' y2='283.24' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='451.83' y1='399.86' x2='456.32' y2='395.38' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='451.83' y1='395.38' x2='456.32' y2='399.86' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='450.91' y1='397.62' x2='457.24' y2='397.62' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='454.07' y1='400.79' x2='454.07' y2='394.45' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.69' y1='363.88' x2='443.17' y2='359.40' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.69' y1='359.40' x2='443.17' y2='363.88' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='437.76' y1='361.64' x2='444.10' y2='361.64' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='440.93' y1='364.81' x2='440.93' y2='358.47' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.69' y1='366.02' x2='443.17' y2='361.54' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.69' y1='361.54' x2='443.17' y2='366.02' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='437.76' y1='363.78' x2='444.10' y2='363.78' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='440.93' y1='366.95' x2='440.93' y2='360.61' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='322.41' x2='687.48' y2='322.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='325.58' x2='684.31' y2='319.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,322.41 684.31,319.24 687.48,322.41 684.31,325.58 681.14,322.41 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='422.93' x2='687.48' y2='422.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='426.10' x2='684.31' y2='419.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,422.93 684.31,419.76 687.48,422.93 684.31,426.10 681.14,422.93 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='668.35' y1='368.43' x2='674.69' y2='368.43' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.52' y1='371.60' x2='671.52' y2='365.26' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='668.35,368.43 671.52,365.26 674.69,368.43 671.52,371.60 668.35,368.43 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='668.35' y1='302.13' x2='674.69' y2='302.13' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.52' y1='305.30' x2='671.52' y2='298.97' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='668.35,302.13 671.52,298.97 674.69,302.13 671.52,305.30 668.35,302.13 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='645.49' y1='337.06' x2='651.83' y2='337.06' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='648.66' y1='340.23' x2='648.66' y2='333.89' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='645.49,337.06 648.66,333.89 651.83,337.06 648.66,340.23 645.49,337.06 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='645.49' y1='360.58' x2='651.83' y2='360.58' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='648.66' y1='363.75' x2='648.66' y2='357.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='645.49,360.58 648.66,357.41 651.83,360.58 648.66,363.75 645.49,360.58 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='608.72' y1='329.74' x2='615.05' y2='329.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='611.88' y1='332.91' x2='611.88' y2='326.57' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='608.72,329.74 611.88,326.57 615.05,329.74 611.88,332.91 608.72,329.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='608.72' y1='325.46' x2='615.05' y2='325.46' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='611.88' y1='328.63' x2='611.88' y2='322.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='608.72,325.46 611.88,322.29 615.05,325.46 611.88,328.63 608.72,325.46 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='564.55' y1='339.49' x2='570.89' y2='339.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='567.72' y1='342.66' x2='567.72' y2='336.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='564.55,339.49 567.72,336.32 570.89,339.49 567.72,342.66 564.55,339.49 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='564.55' y1='350.18' x2='570.89' y2='350.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='567.72' y1='353.35' x2='567.72' y2='347.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='564.55,350.18 567.72,347.02 570.89,350.18 567.72,353.35 564.55,350.18 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='516.85' y1='365.49' x2='523.18' y2='365.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='520.01' y1='368.66' x2='520.01' y2='362.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='516.85,365.49 520.01,362.32 523.18,365.49 520.01,368.66 516.85,365.49 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='516.85' y1='395.43' x2='523.18' y2='395.43' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='520.01' y1='398.60' x2='520.01' y2='392.26' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='516.85,395.43 520.01,392.26 523.18,395.43 520.01,398.60 516.85,395.43 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='472.11' y1='362.10' x2='478.45' y2='362.10' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='475.28' y1='365.27' x2='475.28' y2='358.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='472.11,362.10 475.28,358.93 478.45,362.10 475.28,365.27 472.11,362.10 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='472.11' y1='327.88' x2='478.45' y2='327.88' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='475.28' y1='331.05' x2='475.28' y2='324.71' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='472.11,327.88 475.28,324.71 478.45,327.88 475.28,331.05 472.11,327.88 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='451.38' y1='326.62' x2='457.72' y2='326.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='454.55' y1='329.79' x2='454.55' y2='323.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='451.38,326.62 454.55,323.45 457.72,326.62 454.55,329.79 451.38,326.62 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='451.38' y1='275.29' x2='457.72' y2='275.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='454.55' y1='278.46' x2='454.55' y2='272.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='451.38,275.29 454.55,272.12 457.72,275.29 454.55,278.46 451.38,275.29 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.58' y1='321.19' x2='444.92' y2='321.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='441.75' y1='324.36' x2='441.75' y2='318.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='438.58,321.19 441.75,318.02 444.92,321.19 441.75,324.36 438.58,321.19 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.58' y1='406.73' x2='444.92' y2='406.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='441.75' y1='409.90' x2='441.75' y2='403.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='438.58,406.73 441.75,403.56 444.92,406.73 441.75,409.90 438.58,406.73 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='328.83' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='328.83' x2='686.55' y2='328.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='331.07' x2='684.31' y2='326.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='341.66' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='341.66' x2='686.55' y2='341.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='343.90' x2='684.31' y2='339.42' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='676.96' cy='299.15' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.72' y1='299.15' x2='679.20' y2='299.15' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.96' y1='301.40' x2='676.96' y2='296.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='676.96' cy='433.89' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.72' y1='433.89' x2='679.20' y2='433.89' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.96' y1='436.13' x2='676.96' y2='431.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='663.04' cy='333.86' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='660.80' y1='333.86' x2='665.28' y2='333.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='663.04' y1='336.11' x2='663.04' y2='331.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='663.04' cy='355.25' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='660.80' y1='355.25' x2='665.28' y2='355.25' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='663.04' y1='357.49' x2='663.04' y2='353.01' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='638.04' cy='351.50' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='635.80' y1='351.50' x2='640.29' y2='351.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='638.04' y1='353.74' x2='638.04' y2='349.26' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='638.04' cy='319.42' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='635.80' y1='319.42' x2='640.29' y2='319.42' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='638.04' y1='321.66' x2='638.04' y2='317.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='601.91' cy='364.34' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='599.67' y1='364.34' x2='604.15' y2='364.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='601.91' y1='366.58' x2='601.91' y2='362.10' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='601.91' cy='334.40' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='599.67' y1='334.40' x2='604.15' y2='334.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='601.91' y1='336.64' x2='601.91' y2='332.16' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='550.38' cy='372.19' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='548.14' y1='372.19' x2='552.63' y2='372.19' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.38' y1='374.43' x2='550.38' y2='369.95' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='550.38' cy='329.42' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='548.14' y1='329.42' x2='552.63' y2='329.42' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.38' y1='331.66' x2='550.38' y2='327.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='487.62' cy='291.09' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='485.38' y1='291.09' x2='489.87' y2='291.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='487.62' y1='293.33' x2='487.62' y2='288.85' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='487.62' cy='288.95' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='485.38' y1='288.95' x2='489.87' y2='288.95' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='487.62' y1='291.19' x2='487.62' y2='286.71' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='459.23' cy='358.12' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='456.99' y1='358.12' x2='461.47' y2='358.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='459.23' y1='360.36' x2='459.23' y2='355.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='459.23' cy='428.69' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='456.99' y1='428.69' x2='461.47' y2='428.69' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='459.23' y1='430.94' x2='459.23' y2='426.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='443.36' cy='353.49' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='441.12' y1='353.49' x2='445.60' y2='353.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='443.36' y1='355.73' x2='443.36' y2='351.25' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='443.36' cy='349.21' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='441.12' y1='349.21' x2='445.60' y2='349.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='443.36' y1='351.45' x2='443.36' y2='346.97' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,355.84 687.33,349.74 681.29,349.74 684.31,355.84 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,348.87 687.33,354.97 681.29,354.97 684.31,348.87 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,383.64 687.33,377.54 681.29,377.54 684.31,383.64 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,376.67 687.33,382.77 681.29,382.77 684.31,376.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='677.94,398.29 680.96,392.19 674.92,392.19 677.94,398.29 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='677.94,391.32 680.96,397.42 674.92,397.42 677.94,391.32 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='677.94,379.04 680.96,372.94 674.92,372.94 677.94,379.04 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='677.94,372.07 680.96,378.17 674.92,378.17 677.94,372.07 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='665.84,304.46 668.86,298.37 662.82,298.37 665.84,304.46 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='665.84,297.49 668.86,303.59 662.82,303.59 665.84,297.49 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='665.84,289.49 668.86,283.40 662.82,283.40 665.84,289.49 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='665.84,282.52 668.86,288.62 662.82,288.62 665.84,282.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='643.97,377.32 646.98,371.22 640.95,371.22 643.97,377.32 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='643.97,370.35 646.98,376.45 640.95,376.45 643.97,370.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='643.97,304.61 646.98,298.51 640.95,298.51 643.97,304.61 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='643.97,297.64 646.98,303.73 640.95,303.73 643.97,297.64 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='611.94,361.48 614.96,355.38 608.92,355.38 611.94,361.48 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='611.94,354.51 614.96,360.61 608.92,360.61 611.94,354.51 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='611.94,342.24 614.96,336.14 608.92,336.14 611.94,342.24 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='611.94,335.27 614.96,341.36 608.92,341.36 611.94,335.27 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='565.19,346.00 568.21,339.90 562.17,339.90 565.19,346.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='565.19,339.03 568.21,345.13 562.17,345.13 565.19,339.03 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='565.19,365.25 568.21,359.15 562.17,359.15 565.19,365.25 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='565.19,358.28 568.21,364.38 562.17,364.38 565.19,358.28 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='505.09,307.83 508.11,301.73 502.07,301.73 505.09,307.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='505.09,300.86 508.11,306.96 502.07,306.96 505.09,300.86 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='505.09,365.58 508.11,359.48 502.07,359.48 505.09,365.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='505.09,358.61 508.11,364.70 502.07,364.70 505.09,358.61 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='475.27,365.52 478.29,359.42 472.25,359.42 475.27,365.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='475.27,358.55 478.29,364.65 472.25,364.65 475.27,358.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='475.27,335.58 478.29,329.48 472.25,329.48 475.27,335.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='475.27,328.61 478.29,334.71 472.25,334.71 475.27,328.61 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='456.86,359.52 459.88,353.43 453.84,353.43 456.86,359.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='456.86,352.55 459.88,358.65 453.84,358.65 456.86,352.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='456.86,336.00 459.88,329.90 453.84,329.90 456.86,336.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='456.86,329.03 459.88,335.13 453.84,335.13 456.86,329.03 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='380.15' x2='686.55' y2='380.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='382.40' x2='684.31' y2='377.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='377.91' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='354.49' x2='686.55' y2='354.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='356.73' x2='684.31' y2='352.25' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='352.25' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.27' y1='316.90' x2='678.75' y2='316.90' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.51' y1='319.14' x2='676.51' y2='314.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='674.27' y='314.66' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.27' y1='385.33' x2='678.75' y2='385.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.51' y1='387.57' x2='676.51' y2='383.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='674.27' y='383.09' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='659.56' y1='360.16' x2='664.04' y2='360.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.80' y1='362.40' x2='661.80' y2='357.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='659.56' y='357.92' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='659.56' y1='347.33' x2='664.04' y2='347.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.80' y1='349.57' x2='661.80' y2='345.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='659.56' y='345.09' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='633.35' y1='329.46' x2='637.83' y2='329.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='635.59' y1='331.70' x2='635.59' y2='327.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='633.35' y='327.22' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='633.35' y1='320.90' x2='637.83' y2='320.90' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='635.59' y1='323.14' x2='635.59' y2='318.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='633.35' y='318.66' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.97' y1='349.31' x2='600.45' y2='349.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='598.21' y1='351.55' x2='598.21' y2='347.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='595.97' y='347.07' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='595.97' y1='319.37' x2='600.45' y2='319.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='598.21' y1='321.61' x2='598.21' y2='317.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='595.97' y='317.13' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='543.84' y1='305.25' x2='548.33' y2='305.25' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='546.08' y1='307.49' x2='546.08' y2='303.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='543.84' y='303.01' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='543.84' y1='427.15' x2='548.33' y2='427.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='546.08' y1='429.39' x2='546.08' y2='424.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='543.84' y='424.91' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='482.36' y1='315.80' x2='486.85' y2='315.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='484.61' y1='318.04' x2='484.61' y2='313.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='482.36' y='313.56' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='482.36' y1='311.52' x2='486.85' y2='311.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='484.61' y1='313.76' x2='484.61' y2='309.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='482.36' y='309.28' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='455.13' y1='366.59' x2='459.61' y2='366.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='457.37' y1='368.83' x2='457.37' y2='364.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='455.13' y='364.35' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='455.13' y1='396.53' x2='459.61' y2='396.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='457.37' y1='398.77' x2='457.37' y2='394.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='455.13' y='394.29' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.97' y1='312.13' x2='444.45' y2='312.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='442.21' y1='314.37' x2='442.21' y2='309.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='439.97' y='309.89' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='439.97' y1='350.63' x2='444.45' y2='350.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='442.21' y1='352.87' x2='442.21' y2='348.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='439.97' y='348.38' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='311.72' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='313.96' x2='686.55' y2='309.48' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='309.48' x2='686.55' y2='313.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='307.44' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='309.68' x2='686.55' y2='305.20' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='305.20' x2='686.55' y2='309.68' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='674.92' cy='306.11' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.67' y1='308.36' x2='677.16' y2='303.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.67' y1='303.87' x2='677.16' y2='308.36' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='674.92' cy='419.46' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.67' y1='421.70' x2='677.16' y2='417.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.67' y1='417.22' x2='677.16' y2='421.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='657.47' cy='235.24' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='655.23' y1='237.49' x2='659.71' y2='233.00' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='655.23' y1='233.00' x2='659.71' y2='237.49' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='657.47' cy='361.42' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='655.23' y1='363.66' x2='659.71' y2='359.18' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='655.23' y1='359.18' x2='659.71' y2='363.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='627.28' cy='345.52' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='625.04' y1='347.77' x2='629.53' y2='343.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='625.04' y1='343.28' x2='629.53' y2='347.77' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='627.28' cy='373.33' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='625.04' y1='375.57' x2='629.53' y2='371.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='625.04' y1='371.09' x2='629.53' y2='375.57' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='586.29' cy='325.39' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='584.05' y1='327.63' x2='588.53' y2='323.15' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='584.05' y1='323.15' x2='588.53' y2='327.63' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='586.29' cy='340.36' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='584.05' y1='342.60' x2='588.53' y2='338.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='584.05' y1='338.12' x2='588.53' y2='342.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='533.24' cy='335.82' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='531.00' y1='338.06' x2='535.48' y2='333.58' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='531.00' y1='333.58' x2='535.48' y2='338.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='533.24' cy='397.84' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='531.00' y1='400.08' x2='535.48' y2='395.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='531.00' y1='395.60' x2='535.48' y2='400.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='475.91' cy='352.25' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.67' y1='354.49' x2='478.15' y2='350.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.67' y1='350.01' x2='478.15' y2='354.49' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='475.91' cy='337.28' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.67' y1='339.52' x2='478.15' y2='335.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.67' y1='335.04' x2='478.15' y2='339.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='451.48' cy='293.17' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.24' y1='295.41' x2='453.72' y2='290.93' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.24' y1='290.93' x2='453.72' y2='295.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='451.48' cy='282.48' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.24' y1='284.72' x2='453.72' y2='280.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.24' y1='280.24' x2='453.72' y2='284.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='438.07' cy='359.80' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='435.83' y1='362.04' x2='440.31' y2='357.56' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='435.83' y1='357.56' x2='440.31' y2='362.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='438.07' cy='453.90' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='435.83' y1='456.14' x2='440.31' y2='451.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='435.83' y1='451.66' x2='440.31' y2='456.14' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,326.59 686.55,331.07 682.07,331.07 684.31,326.59 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='326.59' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,365.08 686.55,369.56 682.07,369.56 684.31,365.08 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='365.08' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='674.32,284.05 676.56,288.53 672.08,288.53 674.32,284.05 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='672.08' y='284.05' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='674.32,350.35 676.56,354.83 672.08,354.83 674.32,350.35 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='672.08' y='350.35' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='655.83,320.21 658.07,324.69 653.59,324.69 655.83,320.21 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='653.59' y='320.21' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='655.83,335.18 658.07,339.66 653.59,339.66 655.83,335.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='653.59' y='335.18' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='624.06,387.73 626.30,392.21 621.82,392.21 624.06,387.73 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='621.82' y='387.73' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='624.06,357.79 626.30,362.27 621.82,362.27 624.06,357.79 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='621.82' y='357.79' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='581.43,328.66 583.67,333.15 579.19,333.15 581.43,328.66 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='579.19' y='328.66' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='581.43,307.28 583.67,311.76 579.19,311.76 581.43,307.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='579.19' y='307.28' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='527.28,355.88 529.52,360.37 525.04,360.37 527.28,355.88 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='525.04' y='355.88' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='527.28,366.58 529.52,371.06 525.04,371.06 527.28,366.58 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='525.04' y='366.58' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='470.44,363.37 472.68,367.86 468.20,367.86 470.44,363.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='468.20' y='363.37' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='470.44,282.11 472.68,286.59 468.20,286.59 470.44,282.11 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='468.20' y='282.11' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='447.10,311.03 449.34,315.51 444.86,315.51 447.10,311.03 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='444.86' y='311.03' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='447.10,366.63 449.34,371.11 444.86,371.11 447.10,366.63 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='444.86' y='366.63' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='434.80,427.31 437.04,431.79 432.56,431.79 434.80,427.31 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='432.56' y='427.31' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='434.80,324.66 437.04,329.14 432.56,329.14 434.80,324.66 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='432.56' y='324.66' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='682.07,395.23 686.55,395.23 686.55,390.74 682.07,390.74 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='682.07,254.08 686.55,254.08 686.55,249.60 682.07,249.60 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='671.55,260.76 676.04,260.76 676.04,256.28 671.55,256.28 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='671.55,305.68 676.04,305.68 676.04,301.19 671.55,301.19 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='652.48,324.28 656.96,324.28 656.96,319.80 652.48,319.80 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='652.48,300.76 656.96,300.76 656.96,296.28 652.48,296.28 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='620.95,380.88 625.43,380.88 625.43,376.40 620.95,376.40 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='620.95,391.57 625.43,391.57 625.43,387.09 620.95,387.09 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='581.25,345.59 585.73,345.59 585.73,341.11 581.25,341.11 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='581.25,377.67 585.73,377.67 585.73,373.19 581.25,373.19 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='535.10,347.79 539.58,347.79 539.58,343.31 535.10,343.31 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='535.10,281.49 539.58,281.49 539.58,277.01 535.10,277.01 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='487.90,335.10 492.38,335.10 492.38,330.62 487.90,330.62 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='487.90,478.39 492.38,478.39 492.38,473.91 487.90,473.91 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='464.66,343.47 469.14,343.47 469.14,338.98 464.66,338.98 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='464.66,260.06 469.14,260.06 469.14,255.58 464.66,255.58 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='449.43,294.81 453.91,294.81 453.91,290.33 449.43,290.33 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='449.43,378.22 453.91,378.22 453.91,373.74 449.43,373.74 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
</svg>

Contact - Imprint