aboutsummaryrefslogtreecommitdiff
path: root/tests/figs/plotting/mixed-model-fit-for-nlme-object.svg
blob: 23bf722c562dd335a819d4e552a5676de0f44a5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
<?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,198.58 61.80,209.22 64.99,223.62 66.21,228.79 70.40,245.46 75.03,262.04 75.80,264.60 81.20,281.44 86.60,296.33 90.48,305.95 92.01,309.54 97.41,321.33 102.81,331.89 108.21,341.41 113.62,350.02 119.02,357.85 121.36,361.02 124.42,365.00 129.82,371.56 135.23,377.61 140.63,383.21 146.03,388.42 151.43,393.27 156.84,397.81 162.24,402.08 167.64,406.10 173.04,409.89 178.45,413.48 183.85,416.88 189.25,420.12 191.95,421.68 194.65,423.21 200.06,426.15 205.46,428.96 210.86,431.64 216.26,434.21 221.67,436.68 227.07,439.04 232.47,441.31 237.87,443.49 243.28,445.59 248.68,447.61 254.08,449.55 258.13,450.95 259.48,451.41 264.89,453.21 270.29,454.94 275.69,456.61 281.09,458.22 286.49,459.77 291.90,461.26 297.30,462.70 302.70,464.09 308.10,465.43 313.51,466.72 318.91,467.97 324.31,469.17 ' 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='199.76' 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='441.90' x2='43.03' y2='441.90' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='381.36' x2='43.03' y2='381.36' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='320.83' x2='43.03' y2='320.83' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='260.29' x2='43.03' y2='260.29' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='49.00' y1='199.76' x2='43.03' y2='199.76' 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.43) 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,386.89) 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,326.36) 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,265.83) 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,208.06) 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='207.02' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='196.13' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='220.95' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='204.91' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='230.33' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='235.78' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='262.41' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='263.32' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='306.30' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='311.75' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='375.01' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='373.79' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='445.22' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='447.65' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='471.56' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='473.37' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='494.26' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='493.05' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,209.15 64.99,223.62 66.21,228.88 70.40,246.02 75.03,263.41 75.80,266.13 81.20,284.22 86.60,300.53 90.48,311.26 92.01,315.29 97.41,328.68 102.81,340.86 108.21,351.95 113.62,362.09 119.02,371.38 121.36,375.17 124.42,379.91 129.82,387.76 135.23,394.99 140.63,401.68 146.03,407.87 151.43,413.61 156.84,418.94 162.24,423.89 167.64,428.51 173.04,432.82 178.45,436.85 183.85,440.61 189.25,444.14 191.95,445.81 194.65,447.44 200.06,450.54 205.46,453.45 210.86,456.18 216.26,458.75 221.67,461.16 227.07,463.44 232.47,465.58 237.87,467.60 243.28,469.50 248.68,471.30 254.08,472.99 258.13,474.20 259.48,474.59 264.89,476.10 270.29,477.52 275.69,478.86 281.09,480.14 286.49,481.34 291.90,482.47 297.30,483.54 302.70,484.56 308.10,485.52 313.51,486.43 318.91,487.28 324.31,488.09 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,195.06 62.61,200.29 56.57,200.29 59.59,195.06 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,202.63 62.61,207.86 56.57,207.86 59.59,202.63 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,206.26 64.82,211.49 58.78,211.49 61.80,206.26 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,208.99 64.82,214.21 58.78,214.21 61.80,208.99 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,231.69 69.23,236.91 63.19,236.91 66.21,231.69 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,233.20 69.23,238.43 63.19,238.43 66.21,233.20 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,281.02 78.05,286.25 72.02,286.25 75.03,281.02 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,263.16 78.05,268.39 72.02,268.39 75.03,263.16 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,307.96 93.49,313.19 87.46,313.19 90.48,307.96 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,308.26 93.49,313.49 87.46,313.49 90.48,308.26 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,387.56 124.38,392.79 118.34,392.79 121.36,387.56 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,377.57 124.38,382.80 118.34,382.80 121.36,377.57 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,451.12 194.97,456.35 188.93,456.35 191.95,451.12 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,434.78 194.97,440.01 188.93,440.01 191.95,434.78 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,474.73 261.15,479.96 255.11,479.96 258.13,474.73 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,454.75 261.15,459.98 255.11,459.98 258.13,454.75 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,491.08 327.33,496.30 321.29,496.30 324.31,491.08 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,476.85 327.33,482.08 321.29,482.08 324.31,476.85 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,210.63 64.99,226.93 66.21,232.80 70.40,251.71 75.03,270.53 75.80,273.44 81.20,292.57 86.60,309.46 90.48,320.37 92.01,324.44 97.41,337.77 102.81,349.67 108.21,360.35 113.62,369.96 119.02,378.64 121.36,382.15 124.42,386.52 129.82,393.69 135.23,400.25 140.63,406.25 146.03,411.78 151.43,416.88 156.84,421.60 162.24,425.98 167.64,430.05 173.04,433.85 178.45,437.41 183.85,440.73 189.25,443.85 191.95,445.34 194.65,446.79 200.06,449.55 205.46,452.15 210.86,454.61 216.26,456.93 221.67,459.13 227.07,461.21 232.47,463.18 237.87,465.05 243.28,466.82 248.68,468.51 254.08,470.10 258.13,471.25 259.48,471.62 264.89,473.07 270.29,474.44 275.69,475.75 281.09,477.00 286.49,478.18 291.90,479.31 297.30,480.39 302.70,481.41 308.10,482.39 313.51,483.32 318.91,484.20 324.31,485.05 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='188.86' x2='62.76' y2='188.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='192.03' x2='59.59' y2='185.69' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='204.00' x2='62.76' y2='204.00' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='207.17' x2='59.59' y2='200.83' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='211.26' x2='64.97' y2='211.26' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='214.43' x2='61.80' y2='208.09' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='207.93' x2='64.97' y2='207.93' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='211.10' x2='61.80' y2='204.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='241.23' x2='69.38' y2='241.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='244.39' x2='66.21' y2='238.06' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='242.74' x2='69.38' y2='242.74' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='245.91' x2='66.21' y2='239.57' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='276.94' x2='78.20' y2='276.94' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='280.11' x2='75.03' y2='273.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='277.55' x2='78.20' y2='277.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='280.72' x2='75.03' y2='274.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='325.97' x2='93.65' y2='325.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='329.14' x2='90.48' y2='322.80' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='338.38' x2='93.65' y2='338.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='341.55' x2='90.48' y2='335.21' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='398.31' x2='124.53' y2='398.31' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='401.48' x2='121.36' y2='395.14' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='397.40' x2='124.53' y2='397.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='400.57' x2='121.36' y2='394.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='467.32' x2='195.12' y2='467.32' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='470.49' x2='191.95' y2='464.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='477.01' x2='195.12' y2='477.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='480.17' x2='191.95' y2='473.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='477.91' x2='261.30' y2='477.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='481.08' x2='258.13' y2='474.74' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='473.98' x2='261.30' y2='473.98' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='477.15' x2='258.13' y2='470.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='495.77' x2='327.48' y2='495.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='498.94' x2='324.31' y2='492.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='483.06' x2='327.48' y2='483.06' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='486.23' x2='324.31' y2='479.89' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,211.96 64.99,230.07 66.21,236.59 70.40,257.60 75.03,278.50 75.80,281.73 81.20,302.93 86.60,321.59 90.48,333.60 92.01,338.06 97.41,352.64 102.81,365.57 108.21,377.07 113.62,387.33 119.02,396.51 121.36,400.18 124.42,404.74 129.82,412.15 135.23,418.83 140.63,424.87 146.03,430.35 151.43,435.33 156.84,439.88 162.24,444.04 167.64,447.85 173.04,451.35 178.45,454.57 183.85,457.54 189.25,460.29 191.95,461.59 194.65,462.84 200.06,465.20 205.46,467.40 210.86,469.44 216.26,471.35 221.67,473.14 227.07,474.80 232.47,476.36 237.87,477.82 243.28,479.20 248.68,480.48 254.08,481.69 258.13,482.55 259.48,482.83 264.89,483.90 270.29,484.91 275.69,485.86 281.09,486.76 286.49,487.60 291.90,488.40 297.30,489.15 302.70,489.87 308.10,490.54 313.51,491.17 318.91,491.77 324.31,492.34 ' 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='199.28' x2='61.83' y2='194.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='194.79' x2='61.83' y2='199.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='194.13' x2='61.83' y2='189.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='189.65' x2='61.83' y2='194.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='212.59' x2='64.04' y2='208.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='208.11' x2='64.04' y2='212.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='208.66' x2='64.04' y2='204.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='204.18' x2='64.04' y2='208.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='237.11' x2='68.45' y2='232.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='232.63' x2='68.45' y2='237.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='231.06' x2='68.45' y2='226.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='226.58' x2='68.45' y2='231.06' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='261.02' x2='77.27' y2='256.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='256.54' x2='77.27' y2='261.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='261.02' x2='77.27' y2='256.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='256.54' x2='77.27' y2='261.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='307.94' x2='92.72' y2='303.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='303.45' x2='92.72' y2='307.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='295.53' x2='92.72' y2='291.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='291.04' x2='92.72' y2='295.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='336.69' x2='123.60' y2='332.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='332.21' x2='123.60' y2='336.69' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='345.77' x2='123.60' y2='341.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='341.29' x2='123.60' y2='345.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='400.25' x2='194.19' y2='395.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='395.77' x2='194.19' y2='400.25' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='391.77' x2='194.19' y2='387.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='387.29' x2='194.19' y2='391.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='430.21' x2='260.37' y2='425.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='425.73' x2='260.37' y2='430.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='428.10' x2='260.37' y2='423.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='423.61' x2='260.37' y2='428.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='451.10' x2='326.55' y2='446.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='446.62' x2='326.55' y2='451.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='450.49' x2='326.55' y2='446.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='446.01' x2='326.55' y2='450.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,209.22 64.99,223.31 66.21,228.29 70.40,244.01 75.03,259.18 75.80,261.49 81.20,276.36 86.60,289.14 90.48,297.23 92.01,300.22 97.41,309.93 102.81,318.51 108.21,326.18 113.62,333.10 119.02,339.40 121.36,341.97 124.42,345.18 129.82,350.53 135.23,355.52 140.63,360.20 146.03,364.61 151.43,368.79 156.84,372.77 162.24,376.56 167.64,380.21 173.04,383.70 178.45,387.07 183.85,390.32 189.25,393.45 191.95,394.98 194.65,396.48 200.06,399.42 205.46,402.26 210.86,405.02 216.26,407.70 221.67,410.30 227.07,412.82 232.47,415.27 237.87,417.65 243.28,419.96 248.68,422.21 254.08,424.40 258.13,426.00 259.48,426.52 264.89,428.59 270.29,430.60 275.69,432.56 281.09,434.46 286.49,436.31 291.90,438.10 297.30,439.85 302.70,441.56 308.10,443.21 313.51,444.82 318.91,446.39 324.31,447.91 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,194.92 59.59,191.75 62.76,194.92 59.59,198.09 56.42,194.92 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,199.76 59.59,196.59 62.76,199.76 59.59,202.93 56.42,199.76 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,211.56 61.80,208.39 64.97,211.56 61.80,214.73 58.63,211.56 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,218.22 61.80,215.05 64.97,218.22 61.80,221.39 58.63,218.22 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,225.18 66.21,222.01 69.38,225.18 66.21,228.35 63.04,225.18 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,223.37 66.21,220.20 69.38,223.37 66.21,226.54 63.04,223.37 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,254.54 75.03,251.37 78.20,254.54 75.03,257.71 71.86,254.54 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,265.74 75.03,262.57 78.20,265.74 75.03,268.91 71.86,265.74 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,293.28 90.48,290.12 93.65,293.28 90.48,296.45 87.31,293.28 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,308.72 90.48,305.55 93.65,308.72 90.48,311.89 87.31,308.72 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,364.41 121.36,361.24 124.53,364.41 121.36,367.58 118.19,364.41 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,348.67 121.36,345.50 124.53,348.67 121.36,351.84 118.19,348.67 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,421.01 191.95,417.84 195.12,421.01 191.95,424.18 188.78,421.01 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,426.76 191.95,423.59 195.12,426.76 191.95,429.93 188.78,426.76 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,446.44 258.13,443.27 261.30,446.44 258.13,449.60 254.96,446.44 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,441.59 258.13,438.42 261.30,441.59 258.13,444.76 254.96,441.59 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,457.63 324.31,454.47 327.48,457.63 324.31,460.80 321.14,457.63 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,460.96 324.31,457.79 327.48,460.96 324.31,464.13 321.14,460.96 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,208.59 64.99,222.23 66.21,227.16 70.40,243.16 75.03,259.23 75.80,261.73 81.20,278.25 86.60,292.98 90.48,302.57 92.01,306.16 97.41,317.99 102.81,328.63 108.21,338.24 113.62,346.95 119.02,354.86 121.36,358.07 124.42,362.08 129.82,368.68 135.23,374.75 140.63,380.34 146.03,385.51 151.43,390.31 156.84,394.77 162.24,398.94 167.64,402.84 173.04,406.51 178.45,409.96 183.85,413.23 189.25,416.31 191.95,417.79 194.65,419.24 200.06,422.02 205.46,424.68 210.86,427.21 216.26,429.63 221.67,431.94 227.07,434.16 232.47,436.29 237.87,438.34 243.28,440.31 248.68,442.21 254.08,444.04 258.13,445.37 259.48,445.80 264.89,447.51 270.29,449.15 275.69,450.74 281.09,452.28 286.49,453.77 291.90,455.21 297.30,456.60 302.70,457.95 308.10,459.26 313.51,460.52 318.91,461.75 324.31,462.94 ' 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,207.18 62.61,201.95 56.57,201.95 59.59,207.18 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,207.78 62.61,202.56 56.57,202.56 59.59,207.78 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,211.42 64.82,206.19 58.78,206.19 61.80,211.42 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,209.00 64.82,203.77 58.78,203.77 61.80,209.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,220.50 69.23,215.27 63.19,215.27 66.21,220.50 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,225.95 69.23,220.72 63.19,220.72 66.21,225.95 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,258.03 78.05,252.80 72.02,252.80 75.03,258.03 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,255.30 78.05,250.08 72.02,250.08 75.03,255.30 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,298.28 93.49,293.06 87.46,293.06 90.48,298.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,306.46 93.49,301.23 87.46,301.23 90.48,306.46 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,370.62 124.38,365.39 118.34,365.39 121.36,370.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,365.48 124.38,360.25 118.34,360.25 121.36,365.48 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,428.43 194.97,423.20 188.93,423.20 191.95,428.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,429.04 194.97,423.81 188.93,423.81 191.95,429.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,455.67 261.15,450.44 255.11,450.44 258.13,455.67 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,459.91 261.15,454.68 255.11,454.68 258.13,459.91 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,476.56 327.33,471.33 321.29,471.33 324.31,476.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,478.37 327.33,473.14 321.29,473.14 324.31,478.37 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,208.01 64.99,220.95 66.21,225.66 70.40,241.05 75.03,256.71 75.80,259.16 81.20,275.52 86.60,290.33 90.48,300.09 92.01,303.77 97.41,315.99 102.81,327.14 108.21,337.32 113.62,346.66 119.02,355.23 121.36,358.73 124.42,363.13 129.82,370.42 135.23,377.17 140.63,383.42 146.03,389.24 151.43,394.67 156.84,399.73 162.24,404.47 167.64,408.91 173.04,413.09 178.45,417.02 183.85,420.72 189.25,424.22 191.95,425.89 194.65,427.53 200.06,430.66 205.46,433.63 210.86,436.45 216.26,439.13 221.67,441.69 227.07,444.12 232.47,446.44 237.87,448.65 243.28,450.76 248.68,452.78 254.08,454.71 258.13,456.10 259.48,456.56 264.89,458.33 270.29,460.02 275.69,461.65 281.09,463.21 286.49,464.70 291.90,466.13 297.30,467.51 302.70,468.83 308.10,470.10 313.51,471.32 318.91,472.49 324.31,473.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='187.23' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='191.71' x2='61.83' y2='187.23' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='187.23' x2='61.83' y2='191.71' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='200.24' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='204.72' x2='61.83' y2='200.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='200.24' x2='61.83' y2='204.72' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='210.84' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='215.32' x2='64.04' y2='210.84' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='210.84' x2='64.04' y2='215.32' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='199.94' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='204.42' x2='64.04' y2='199.94' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='199.94' x2='64.04' y2='204.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='227.18' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='231.66' x2='68.45' y2='227.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='227.18' x2='68.45' y2='231.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='222.04' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='226.52' x2='68.45' y2='222.04' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='222.04' x2='68.45' y2='226.52' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='251.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='255.88' x2='77.27' y2='251.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='251.39' x2='77.27' y2='255.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='241.71' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='246.19' x2='77.27' y2='241.71' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='241.71' x2='77.27' y2='246.19' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='272.28' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='276.76' x2='92.72' y2='272.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='272.28' x2='92.72' y2='276.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='281.06' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='285.54' x2='92.72' y2='281.06' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='281.06' x2='92.72' y2='285.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='336.14' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='340.62' x2='123.60' y2='336.14' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='336.14' x2='123.60' y2='340.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='339.47' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='343.95' x2='123.60' y2='339.47' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='339.47' x2='123.60' y2='343.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='391.53' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='396.01' x2='194.19' y2='391.53' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='391.53' x2='194.19' y2='396.01' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='398.79' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='403.28' x2='194.19' y2='398.79' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='398.79' x2='194.19' y2='403.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='430.88' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='435.36' x2='260.37' y2='430.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='430.88' x2='260.37' y2='435.36' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='436.33' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='440.81' x2='260.37' y2='436.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='436.33' x2='260.37' y2='440.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='458.42' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='462.90' x2='326.55' y2='458.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='458.42' x2='326.55' y2='462.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='449.95' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='454.43' x2='326.55' y2='449.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='449.95' x2='326.55' y2='454.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,206.68 64.99,217.78 66.21,221.81 70.40,234.95 75.03,248.30 75.80,250.39 81.20,264.31 86.60,276.91 90.48,285.23 92.01,288.37 97.41,298.83 102.81,308.41 108.21,317.23 113.62,325.37 119.02,332.92 121.36,336.02 124.42,339.93 129.82,346.49 135.23,352.62 140.63,358.38 146.03,363.81 151.43,368.93 156.84,373.78 162.24,378.39 167.64,382.76 173.04,386.93 178.45,390.91 183.85,394.71 189.25,398.35 191.95,400.12 194.65,401.84 200.06,405.19 205.46,408.40 210.86,411.50 216.26,414.47 221.67,417.33 227.07,420.09 232.47,422.75 237.87,425.32 243.28,427.80 248.68,430.19 254.08,432.50 258.13,434.18 259.48,434.73 264.89,436.88 270.29,438.97 275.69,440.99 281.09,442.93 286.49,444.82 291.90,446.64 297.30,448.41 302.70,450.12 308.10,451.77 313.51,453.37 318.91,454.92 324.31,456.42 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='198.37' x2='61.83' y2='193.89' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='193.89' x2='61.83' y2='198.37' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='196.13' x2='62.76' y2='196.13' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='199.30' x2='59.59' y2='192.96' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='208.66' x2='61.83' y2='204.18' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='204.18' x2='61.83' y2='208.66' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='206.42' x2='62.76' y2='206.42' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='209.59' x2='59.59' y2='203.25' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='208.96' x2='64.04' y2='204.48' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='204.48' x2='64.04' y2='208.96' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='206.72' x2='64.97' y2='206.72' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='209.89' x2='61.80' y2='203.55' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='215.62' x2='64.04' y2='211.14' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='211.14' x2='64.04' y2='215.62' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='213.38' x2='64.97' y2='213.38' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='216.55' x2='61.80' y2='210.21' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='239.83' x2='68.45' y2='235.35' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='235.35' x2='68.45' y2='239.83' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='237.59' x2='69.38' y2='237.59' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='240.76' x2='66.21' y2='234.42' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='232.87' x2='68.45' y2='228.39' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='228.39' x2='68.45' y2='232.87' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='230.63' x2='69.38' y2='230.63' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='233.80' x2='66.21' y2='227.46' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='277.97' x2='77.27' y2='273.49' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='273.49' x2='77.27' y2='277.97' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='275.73' x2='78.20' y2='275.73' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='278.90' x2='75.03' y2='272.56' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='277.06' x2='77.27' y2='272.58' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='272.58' x2='77.27' y2='277.06' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='274.82' x2='78.20' y2='274.82' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='277.99' x2='75.03' y2='271.65' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='305.82' x2='92.72' y2='301.33' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='301.33' x2='92.72' y2='305.82' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='303.58' x2='93.65' y2='303.58' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='306.74' x2='90.48' y2='300.41' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='310.05' x2='92.72' y2='305.57' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='305.57' x2='92.72' y2='310.05' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='307.81' x2='93.65' y2='307.81' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='310.98' x2='90.48' y2='304.64' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='369.38' x2='123.60' y2='364.90' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='364.90' x2='123.60' y2='369.38' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='367.14' x2='124.53' y2='367.14' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='370.31' x2='121.36' y2='363.97' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='374.83' x2='123.60' y2='370.34' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='370.34' x2='123.60' y2='374.83' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='372.58' x2='124.53' y2='372.58' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='375.75' x2='121.36' y2='369.42' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='429.31' x2='194.19' y2='424.82' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='424.82' x2='194.19' y2='429.31' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='427.06' x2='195.12' y2='427.06' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='430.23' x2='191.95' y2='423.90' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='415.99' x2='194.19' y2='411.51' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='411.51' x2='194.19' y2='415.99' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='413.75' x2='195.12' y2='413.75' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='416.92' x2='191.95' y2='410.58' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='447.16' x2='260.37' y2='442.68' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='442.68' x2='260.37' y2='447.16' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='444.92' x2='261.30' y2='444.92' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='448.09' x2='258.13' y2='441.75' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='457.45' x2='260.37' y2='452.97' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='452.97' x2='260.37' y2='457.45' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='455.21' x2='261.30' y2='455.21' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='458.38' x2='258.13' y2='452.04' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='464.42' x2='326.55' y2='459.93' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='459.93' x2='326.55' y2='464.42' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='462.17' x2='327.48' y2='462.17' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='465.34' x2='324.31' y2='459.01' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='465.02' x2='326.55' y2='460.54' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='460.54' x2='326.55' y2='465.02' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='462.78' x2='327.48' y2='462.78' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='465.95' x2='324.31' y2='459.61' style='stroke-width: 0.75;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,210.59 64.99,226.66 66.21,232.38 70.40,250.62 75.03,268.43 75.80,271.16 81.20,288.84 86.60,304.16 90.48,313.89 92.01,317.48 97.41,329.14 102.81,339.41 108.21,348.51 113.62,356.62 119.02,363.89 121.36,366.82 124.42,370.46 129.82,376.43 135.23,381.89 140.63,386.90 146.03,391.54 151.43,395.84 156.84,399.86 162.24,403.63 167.64,407.18 173.04,410.53 178.45,413.71 183.85,416.73 189.25,419.61 191.95,421.00 194.65,422.36 200.06,424.99 205.46,427.51 210.86,429.93 216.26,432.26 221.67,434.50 227.07,436.65 232.47,438.73 237.87,440.74 243.28,442.68 248.68,444.55 254.08,446.36 258.13,447.68 259.48,448.11 264.89,449.81 270.29,451.44 275.69,453.03 281.09,454.56 286.49,456.05 291.90,457.48 297.30,458.88 302.70,460.22 308.10,461.53 313.51,462.80 318.91,464.02 324.31,465.21 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='202.79' x2='62.76' y2='202.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='205.96' x2='59.59' y2='199.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,202.79 59.59,199.62 62.76,202.79 59.59,205.96 56.42,202.79 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='56.42' y1='187.05' x2='62.76' y2='187.05' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='190.22' x2='59.59' y2='183.88' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='56.42,187.05 59.59,183.88 62.76,187.05 59.59,190.22 56.42,187.05 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='213.08' x2='64.97' y2='213.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='216.25' x2='61.80' y2='209.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,213.08 61.80,209.91 64.97,213.08 61.80,216.25 58.63,213.08 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='58.63' y1='219.74' x2='64.97' y2='219.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='222.91' x2='61.80' y2='216.57' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='58.63,219.74 61.80,216.57 64.97,219.74 61.80,222.91 58.63,219.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='226.09' x2='69.38' y2='226.09' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='229.26' x2='66.21' y2='222.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,226.09 66.21,222.92 69.38,226.09 66.21,229.26 63.04,226.09 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.04' y1='234.57' x2='69.38' y2='234.57' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='237.74' x2='66.21' y2='231.40' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='63.04,234.57 66.21,231.40 69.38,234.57 66.21,237.74 63.04,234.57 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='265.74' x2='78.20' y2='265.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='268.91' x2='75.03' y2='262.57' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,265.74 75.03,262.57 78.20,265.74 75.03,268.91 71.86,265.74 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='71.86' y1='267.56' x2='78.20' y2='267.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='270.73' x2='75.03' y2='264.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='71.86,267.56 75.03,264.39 78.20,267.56 75.03,270.73 71.86,267.56 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='310.84' x2='93.65' y2='310.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='314.01' x2='90.48' y2='307.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,310.84 90.48,307.67 93.65,310.84 90.48,314.01 87.31,310.84 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='87.31' y1='312.35' x2='93.65' y2='312.35' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='315.52' x2='90.48' y2='309.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='87.31,312.35 90.48,309.18 93.65,312.35 90.48,315.52 87.31,312.35 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='373.79' x2='124.53' y2='373.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='376.96' x2='121.36' y2='370.63' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,373.79 121.36,370.63 124.53,373.79 121.36,376.96 118.19,373.79 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='118.19' y1='377.12' x2='124.53' y2='377.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='380.29' x2='121.36' y2='373.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='118.19,377.12 121.36,373.96 124.53,377.12 121.36,380.29 118.19,377.12 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='433.12' x2='195.12' y2='433.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='436.29' x2='191.95' y2='429.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,433.12 191.95,429.95 195.12,433.12 191.95,436.29 188.78,433.12 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='188.78' y1='437.96' x2='195.12' y2='437.96' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='441.13' x2='191.95' y2='434.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='188.78,437.96 191.95,434.79 195.12,437.96 191.95,441.13 188.78,437.96 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='470.35' x2='261.30' y2='470.35' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='473.52' x2='258.13' y2='467.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,470.35 258.13,467.18 261.30,470.35 258.13,473.52 254.96,470.35 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='254.96' y1='453.40' x2='261.30' y2='453.40' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='456.57' x2='258.13' y2='450.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='254.96,453.40 258.13,450.23 261.30,453.40 258.13,456.57 254.96,453.40 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='482.45' x2='327.48' y2='482.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='485.62' x2='324.31' y2='479.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,482.45 324.31,479.28 327.48,482.45 324.31,485.62 321.14,482.45 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='321.14' y1='488.51' x2='327.48' y2='488.51' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='491.68' x2='324.31' y2='485.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='321.14,488.51 324.31,485.34 327.48,488.51 324.31,491.68 321.14,488.51 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,209.98 64.99,225.40 66.21,230.94 70.40,248.82 75.03,266.62 75.80,269.37 81.20,287.48 86.60,303.49 90.48,313.85 92.01,317.72 97.41,330.41 102.81,341.79 108.21,352.04 113.62,361.30 119.02,369.72 121.36,373.13 124.42,377.39 129.82,384.41 135.23,390.87 140.63,396.83 146.03,402.34 151.43,407.46 156.84,412.23 162.24,416.69 167.64,420.86 173.04,424.77 178.45,428.45 183.85,431.92 189.25,435.19 191.95,436.76 194.65,438.29 200.06,441.22 205.46,444.00 210.86,446.63 216.26,449.13 221.67,451.51 227.07,453.78 232.47,455.93 237.87,457.99 243.28,459.94 248.68,461.81 254.08,463.59 258.13,464.87 259.48,465.29 264.89,466.91 270.29,468.46 275.69,469.94 281.09,471.35 286.49,472.70 291.90,473.99 297.30,475.23 302.70,476.40 308.10,477.53 313.51,478.61 318.91,479.64 324.31,480.63 ' 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='190.68' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='190.68' x2='61.83' y2='190.68' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='192.92' x2='59.59' y2='188.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='195.52' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='195.52' x2='61.83' y2='195.52' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='197.76' x2='59.59' y2='193.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='202.48' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='202.48' x2='64.04' y2='202.48' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='204.72' x2='61.80' y2='200.24' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='205.21' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='205.21' x2='64.04' y2='205.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='207.45' x2='61.80' y2='202.97' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='226.09' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='226.09' x2='68.45' y2='226.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='228.33' x2='66.21' y2='223.85' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='222.16' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='222.16' x2='68.45' y2='222.16' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='224.40' x2='66.21' y2='219.92' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='255.15' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='255.15' x2='77.27' y2='255.15' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='257.39' x2='75.03' y2='252.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='256.96' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='256.96' x2='77.27' y2='256.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='259.21' x2='75.03' y2='254.72' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='299.04' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='299.04' x2='92.72' y2='299.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='301.28' x2='90.48' y2='296.79' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='289.65' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='289.65' x2='92.72' y2='289.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='291.89' x2='90.48' y2='287.41' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='354.12' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='354.12' x2='123.60' y2='354.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='356.36' x2='121.36' y2='351.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='343.83' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='343.83' x2='123.60' y2='343.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='346.07' x2='121.36' y2='341.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='423.43' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='423.43' x2='194.19' y2='423.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='425.67' x2='191.95' y2='421.19' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='405.88' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='405.88' x2='194.19' y2='405.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='408.12' x2='191.95' y2='403.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='450.07' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='450.07' x2='260.37' y2='450.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='452.31' x2='258.13' y2='447.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='451.88' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='451.88' x2='260.37' y2='451.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='454.12' x2='258.13' y2='449.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='471.86' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='471.86' x2='326.55' y2='471.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='474.10' x2='324.31' y2='469.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='467.02' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='467.02' x2='326.55' y2='467.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='469.26' x2='324.31' y2='464.78' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,207.67 64.99,220.09 66.21,224.59 70.40,239.25 75.03,254.06 75.80,256.38 81.20,271.77 86.60,285.64 90.48,294.76 92.01,298.19 97.41,309.60 102.81,320.01 108.21,329.54 113.62,338.31 119.02,346.39 121.36,349.70 124.42,353.88 129.82,360.83 135.23,367.31 140.63,373.37 146.03,379.05 151.43,384.38 156.84,389.41 162.24,394.15 167.64,398.64 173.04,402.89 178.45,406.93 183.85,410.76 189.25,414.42 191.95,416.18 194.65,417.90 200.06,421.22 205.46,424.39 210.86,427.42 216.26,430.32 221.67,433.10 227.07,435.76 232.47,438.31 237.87,440.76 243.28,443.10 248.68,445.35 254.08,447.52 258.13,449.08 259.48,449.59 264.89,451.59 270.29,453.51 275.69,455.35 281.09,457.12 286.49,458.82 291.90,460.46 297.30,462.03 302.70,463.55 308.10,465.01 313.51,466.41 318.91,467.76 324.31,469.06 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,192.05 62.61,185.95 56.57,185.95 59.59,192.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,185.08 62.61,191.17 56.57,191.17 59.59,185.08 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,202.94 62.61,196.84 56.57,196.84 59.59,202.94 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,195.97 62.61,202.07 56.57,202.07 59.59,195.97 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,196.89 64.82,190.79 58.78,190.79 61.80,196.89 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,189.92 64.82,196.02 58.78,196.02 61.80,189.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,205.36 64.82,199.26 58.78,199.26 61.80,205.36 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,198.39 64.82,204.49 58.78,204.49 61.80,198.39 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,210.51 69.23,204.41 63.19,204.41 66.21,210.51 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,203.54 69.23,209.64 63.19,209.64 66.21,203.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,210.81 69.23,204.71 63.19,204.71 66.21,210.81 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,203.84 69.23,209.94 63.19,209.94 66.21,203.84 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,232.60 78.05,226.51 72.02,226.51 75.03,232.60 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,225.63 78.05,231.73 72.02,231.73 75.03,225.63 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,226.55 78.05,220.45 72.02,220.45 75.03,226.55 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,219.58 78.05,225.68 72.02,225.68 75.03,219.58 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,245.92 93.49,239.82 87.46,239.82 90.48,245.92 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,238.95 93.49,245.05 87.46,245.05 90.48,238.95 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,257.42 93.49,251.32 87.46,251.32 90.48,257.42 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,250.45 93.49,256.55 87.46,256.55 90.48,250.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,282.54 124.38,276.45 118.34,276.45 121.36,282.54 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,275.57 124.38,281.67 118.34,281.67 121.36,275.57 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,293.74 124.38,287.64 118.34,287.64 121.36,293.74 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,286.77 124.38,292.87 118.34,292.87 121.36,286.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,325.83 194.97,319.73 188.93,319.73 191.95,325.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,318.86 194.97,324.95 188.93,324.95 191.95,318.86 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,330.67 194.97,324.57 188.93,324.57 191.95,330.67 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,323.70 194.97,329.80 188.93,329.80 191.95,323.70 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,355.49 261.15,349.39 255.11,349.39 258.13,355.49 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,348.52 261.15,354.62 255.11,354.62 258.13,348.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,372.74 261.15,366.64 255.11,366.64 258.13,372.74 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,365.77 261.15,371.87 255.11,371.87 258.13,365.77 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,390.90 327.33,384.80 321.29,384.80 324.31,390.90 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,383.93 327.33,390.03 321.29,390.03 324.31,383.93 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,389.69 327.33,383.59 321.29,383.59 324.31,389.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,382.72 327.33,388.82 321.29,388.82 324.31,382.72 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,203.14 64.99,209.42 66.21,211.71 70.40,219.24 75.03,226.96 75.80,228.17 81.20,236.35 86.60,243.85 90.48,248.87 92.01,250.78 97.41,257.20 102.81,263.18 108.21,268.78 113.62,274.03 119.02,278.99 121.36,281.05 124.42,283.68 129.82,288.14 135.23,292.39 140.63,296.45 146.03,300.35 151.43,304.11 156.84,307.72 162.24,311.22 167.64,314.60 173.04,317.89 178.45,321.08 183.85,324.19 189.25,327.21 191.95,328.70 194.65,330.16 200.06,333.05 205.46,335.87 210.86,338.62 216.26,341.32 221.67,343.97 227.07,346.56 232.47,349.10 237.87,351.59 243.28,354.04 248.68,356.44 254.08,358.80 258.13,360.54 259.48,361.12 264.89,363.39 270.29,365.63 275.69,367.83 281.09,369.99 286.49,372.12 291.90,374.21 297.30,376.26 302.70,378.28 308.10,380.27 313.51,382.22 318.91,384.15 324.31,386.04 ' 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='206.12' x2='61.83' y2='206.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='208.36' x2='59.59' y2='203.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='203.87' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='198.85' x2='61.83' y2='198.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.59' y1='201.09' x2='59.59' y2='196.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='196.61' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='202.48' x2='64.04' y2='202.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='204.72' x2='61.80' y2='200.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='200.24' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='210.05' x2='64.04' y2='210.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='61.80' y1='212.29' x2='61.80' y2='207.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='207.81' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='238.50' x2='68.45' y2='238.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='240.74' x2='66.21' y2='236.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='236.26' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='239.71' x2='68.45' y2='239.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='66.21' y1='241.95' x2='66.21' y2='237.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='237.47' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='269.37' x2='77.27' y2='269.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='271.61' x2='75.03' y2='267.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='267.13' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='266.65' x2='77.27' y2='266.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='75.03' y1='268.89' x2='75.03' y2='264.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='264.41' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='324.16' x2='92.72' y2='324.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='326.40' x2='90.48' y2='321.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='321.92' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='318.71' x2='92.72' y2='318.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='90.48' y1='320.95' x2='90.48' y2='316.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='316.47' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='363.20' x2='123.60' y2='363.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='365.44' x2='121.36' y2='360.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='360.96' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='384.69' x2='123.60' y2='384.69' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='121.36' y1='386.93' x2='121.36' y2='382.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='382.45' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='422.22' x2='194.19' y2='422.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='424.46' x2='191.95' y2='419.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='419.98' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='431.00' x2='194.19' y2='431.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='191.95' y1='433.24' x2='191.95' y2='428.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='428.76' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='453.09' x2='260.37' y2='453.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='455.34' x2='258.13' y2='450.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='450.85' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='449.46' x2='260.37' y2='449.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='258.13' y1='451.70' x2='258.13' y2='447.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='447.22' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='469.44' x2='326.55' y2='469.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='471.68' x2='324.31' y2='467.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='467.20' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='467.93' x2='326.55' y2='467.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='324.31' y1='470.17' x2='324.31' y2='465.68' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='465.68' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,211.25 64.99,228.16 66.21,234.18 70.40,253.33 75.03,272.00 75.80,274.85 81.20,293.31 86.60,309.24 90.48,319.33 92.01,323.05 97.41,335.08 102.81,345.63 108.21,354.93 113.62,363.18 119.02,370.55 121.36,373.50 124.42,377.17 129.82,383.15 135.23,388.59 140.63,393.57 146.03,398.15 151.43,402.39 156.84,406.33 162.24,410.01 167.64,413.46 173.04,416.71 178.45,419.77 183.85,422.68 189.25,425.45 191.95,426.78 194.65,428.08 200.06,430.60 205.46,433.00 210.86,435.31 216.26,437.52 221.67,439.65 227.07,441.69 232.47,443.66 237.87,445.56 243.28,447.39 248.68,449.16 254.08,450.86 258.13,452.10 259.48,452.51 264.89,454.10 270.29,455.64 275.69,457.13 281.09,458.56 286.49,459.95 291.90,461.30 297.30,462.60 302.70,463.86 308.10,465.08 313.51,466.26 318.91,467.41 324.31,468.51 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='189.77' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='192.01' x2='61.83' y2='187.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='187.53' x2='61.83' y2='192.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='59.59' cy='201.27' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='203.51' x2='61.83' y2='199.03' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='57.35' y1='199.03' x2='61.83' y2='203.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='213.68' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='215.92' x2='64.04' y2='211.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='211.44' x2='64.04' y2='215.92' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='61.80' cy='207.63' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='209.87' x2='64.04' y2='205.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='59.56' y1='205.39' x2='64.04' y2='209.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='224.28' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='226.52' x2='68.45' y2='222.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='222.04' x2='68.45' y2='226.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='66.21' cy='232.45' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='234.69' x2='68.45' y2='230.21' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='63.97' y1='230.21' x2='68.45' y2='234.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='253.94' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='256.18' x2='77.27' y2='251.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='251.70' x2='77.27' y2='256.18' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='75.03' cy='253.64' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='255.88' x2='77.27' y2='251.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='72.79' y1='251.39' x2='77.27' y2='255.88' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='295.10' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='297.34' x2='92.72' y2='292.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='292.86' x2='92.72' y2='297.34' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='90.48' cy='302.67' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='304.91' x2='92.72' y2='300.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='88.23' y1='300.43' x2='92.72' y2='304.91' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='370.47' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='372.71' x2='123.60' y2='368.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='368.22' x2='123.60' y2='372.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='121.36' cy='368.35' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='370.59' x2='123.60' y2='366.11' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='119.12' y1='366.11' x2='123.60' y2='370.59' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='435.54' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='437.78' x2='194.19' y2='433.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='433.30' x2='194.19' y2='437.78' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='191.95' cy='445.22' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='447.47' x2='194.19' y2='442.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='189.71' y1='442.98' x2='194.19' y2='447.47' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='474.28' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='476.52' x2='260.37' y2='472.04' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='472.04' x2='260.37' y2='476.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='258.13' cy='484.27' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='486.51' x2='260.37' y2='482.03' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='255.89' y1='482.03' x2='260.37' y2='486.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='491.23' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='493.47' x2='326.55' y2='488.99' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='488.99' x2='326.55' y2='493.47' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<circle cx='324.31' cy='490.32' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='492.56' x2='326.55' y2='488.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<line x1='322.07' y1='488.08' x2='326.55' y2='492.56' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,207.82 64.99,220.64 66.21,225.34 70.40,240.84 75.03,256.84 75.80,259.37 81.20,276.39 86.60,292.04 90.48,302.49 92.01,306.45 97.41,319.73 102.81,331.98 108.21,343.30 113.62,353.76 119.02,363.44 121.36,367.41 124.42,372.41 129.82,380.74 135.23,388.46 140.63,395.64 146.03,402.31 151.43,408.53 156.84,414.32 162.24,419.71 167.64,424.75 173.04,429.45 178.45,433.84 183.85,437.94 189.25,441.78 191.95,443.61 194.65,445.38 200.06,448.74 205.46,451.90 210.86,454.85 216.26,457.63 221.67,460.23 227.07,462.67 232.47,464.97 237.87,467.12 243.28,469.15 248.68,471.05 254.08,472.84 258.13,474.12 259.48,474.53 264.89,476.12 270.29,477.61 275.69,479.01 281.09,480.34 286.49,481.58 291.90,482.76 297.30,483.86 302.70,484.91 308.10,485.89 313.51,486.82 318.91,487.69 324.31,488.51 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,193.89 61.83,198.37 57.35,198.37 59.59,193.89 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='193.89' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,192.98 61.83,197.46 57.35,197.46 59.59,192.98 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='57.35' y='192.98' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,216.28 64.04,220.77 59.56,220.77 61.80,216.28 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='216.28' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='61.80,225.67 64.04,230.15 59.56,230.15 61.80,225.67 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='59.56' y='225.67' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,240.80 68.45,245.28 63.97,245.28 66.21,240.80 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='240.80' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='66.21,243.83 68.45,248.31 63.97,248.31 66.21,243.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='63.97' y='243.83' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,300.43 77.27,304.91 72.79,304.91 75.03,300.43 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='300.43' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='75.03,310.72 77.27,315.20 72.79,315.20 75.03,310.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='72.79' y='310.72' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,353.70 92.72,358.18 88.23,358.18 90.48,353.70 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='353.70' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='90.48,356.12 92.72,360.60 88.23,360.60 90.48,356.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='88.23' y='356.12' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,396.07 123.60,400.55 119.12,400.55 121.36,396.07 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='396.07' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='121.36,412.72 123.60,417.20 119.12,417.20 121.36,412.72 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='119.12' y='412.72' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,444.80 194.19,449.28 189.71,449.28 191.95,444.80 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='444.80' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='191.95,455.70 194.19,460.18 189.71,460.18 191.95,455.70 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='189.71' y='455.70' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,473.86 260.37,478.34 255.89,478.34 258.13,473.86 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='473.86' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='258.13,466.29 260.37,470.77 255.89,470.77 258.13,466.29 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='255.89' y='466.29' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,476.88 326.55,481.36 322.07,481.36 324.31,476.88 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='476.88' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='324.31,480.52 326.55,485.00 322.07,485.00 324.31,480.52 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<rect x='322.07' y='480.52' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,217.83 64.99,242.67 66.21,251.26 70.40,277.69 75.03,302.07 75.80,305.67 81.20,328.16 86.60,346.40 90.48,357.37 92.01,361.30 97.41,373.61 102.81,383.87 108.21,392.52 113.62,399.91 119.02,406.29 121.36,408.80 124.42,411.87 129.82,416.80 135.23,421.21 140.63,425.19 146.03,428.82 151.43,432.16 156.84,435.25 162.24,438.13 167.64,440.83 173.04,443.37 178.45,445.78 183.85,448.05 189.25,450.22 191.95,451.26 194.65,452.28 200.06,454.25 205.46,456.13 210.86,457.93 216.26,459.66 221.67,461.31 227.07,462.90 232.47,464.42 237.87,465.88 243.28,467.29 248.68,468.63 254.08,469.93 258.13,470.87 259.48,471.18 264.89,472.37 270.29,473.52 275.69,474.63 281.09,475.69 286.49,476.72 291.90,477.70 297.30,478.65 302.70,479.56 308.10,480.43 313.51,481.27 318.91,482.08 324.31,482.86 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='57.35,200.49 61.83,200.49 61.83,196.01 57.35,196.01 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='57.35,204.42 61.83,204.42 61.83,199.94 57.35,199.94 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='59.56,216.53 64.04,216.53 64.04,212.05 59.56,212.05 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='59.56,219.86 64.04,219.86 64.04,215.38 59.56,215.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='63.97,251.34 68.45,251.34 68.45,246.85 63.97,246.85 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='63.97,250.43 68.45,250.43 68.45,245.95 63.97,245.95 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='72.79,301.58 77.27,301.58 77.27,297.10 72.79,297.10 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='72.79,295.83 77.27,295.83 77.27,291.35 72.79,291.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='88.23,335.78 92.72,335.78 92.72,331.30 88.23,331.30 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='88.23,341.83 92.72,341.83 92.72,337.35 88.23,337.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='119.12,383.60 123.60,383.60 123.60,379.12 119.12,379.12 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='119.12,387.54 123.60,387.54 123.60,383.06 119.12,383.06 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='189.71,422.65 194.19,422.65 194.19,418.17 189.71,418.17 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='189.71,430.21 194.19,430.21 194.19,425.73 189.71,425.73 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='255.89,439.60 260.37,439.60 260.37,435.11 255.89,435.11 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='255.89,446.86 260.37,446.86 260.37,442.38 255.89,442.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='322.07,445.65 326.55,445.65 326.55,441.17 322.07,441.17 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polygon points='322.07,453.52 326.55,453.52 326.55,449.04 322.07,449.04 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDkuMDB8MzM0LjkwfDUxNS4wNHwxNzQuNDM=)' />
<polyline points='59.59,198.58 61.80,215.99 64.99,238.42 66.21,246.16 70.40,269.95 75.03,291.81 75.80,295.03 81.20,315.07 86.60,331.19 90.48,340.82 92.01,344.25 97.41,354.93 102.81,363.74 108.21,371.09 113.62,377.29 119.02,382.59 121.36,384.66 124.42,387.19 129.82,391.22 135.23,394.81 140.63,398.04 146.03,400.98 151.43,403.69 156.84,406.22 162.24,408.59 167.64,410.83 173.04,412.96 178.45,415.00 183.85,416.96 189.25,418.85 191.95,419.77 194.65,420.68 200.06,422.45 205.46,424.17 210.86,425.84 216.26,427.48 221.67,429.07 227.07,430.62 232.47,432.14 237.87,433.62 243.28,435.06 248.68,436.48 254.08,437.87 258.13,438.88 259.48,439.22 264.89,440.55 270.29,441.84 275.69,443.11 281.09,444.36 286.49,445.57 291.90,446.76 297.30,447.93 302.70,449.07 308.10,450.19 313.51,451.28 318.91,452.35 324.31,453.40 ' 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.29' 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.33' y1='515.04' x2='472.33' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='525.07' y1='515.04' x2='525.07' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='577.81' y1='515.04' x2='577.81' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='630.55' y1='515.04' x2='630.55' y2='521.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='683.29' y1='515.04' x2='683.29' 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.80' 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.54' 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.28' 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.02' 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='674.99' 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='492.82' x2='409.00' y2='196.66' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='492.82' x2='403.03' y2='492.82' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='443.46' x2='403.03' y2='443.46' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='394.10' x2='403.03' y2='394.10' 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='295.38' x2='403.03' y2='295.38' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='246.02' x2='403.03' y2='246.02' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='409.00' y1='196.66' x2='403.03' y2='196.66' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,497.24) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-3</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,447.88) 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,398.52) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='8.84px' lengthAdjust='spacingAndGlyphs'>-1</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,298.14) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(394.66,248.78) 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,199.42) rotate(-90)' style='font-size: 9.96px; font-family: Liberation Sans;' textLength='5.53px' lengthAdjust='spacingAndGlyphs'>3</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='416.67' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='323.80' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='675.11' cy='445.30' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='675.11' cy='308.58' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='657.92' cy='357.12' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='657.92' cy='403.55' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='627.84' cy='336.25' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='627.84' cy='343.99' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='586.15' cy='302.47' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='586.15' cy='348.90' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='530.47' cy='343.36' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='530.47' cy='333.04' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='468.92' cy='339.71' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='468.92' cy='360.35' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='444.19' cy='322.25' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='444.19' cy='337.73' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='432.08' cy='397.27' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='432.08' cy='386.95' r='2.24pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,340.96 687.33,346.18 681.29,346.18 684.31,340.96 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,405.45 687.33,410.67 681.29,410.67 684.31,405.45 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='673.82,333.75 676.84,338.98 670.80,338.98 673.82,333.75 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='673.82,356.97 676.84,362.20 670.80,362.20 673.82,356.97 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='654.50,361.48 657.52,366.71 651.48,366.71 654.50,361.48 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='654.50,374.38 657.52,379.61 651.48,379.61 654.50,374.38 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='621.63,460.35 624.65,465.58 618.61,465.58 621.63,460.35 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='621.63,308.15 624.65,313.38 618.61,313.38 621.63,308.15 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='578.20,265.15 581.22,270.38 575.19,270.38 578.20,265.15 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='578.20,267.73 581.22,272.96 575.19,272.96 578.20,267.73 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='524.39,417.10 527.40,422.33 521.37,422.33 524.39,417.10 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='524.39,331.97 527.40,337.20 521.37,337.20 524.39,331.97 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='469.33,420.21 472.35,425.44 466.31,425.44 469.33,420.21 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='469.33,280.91 472.35,286.14 466.31,286.14 469.33,280.91 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='446.75,400.61 449.77,405.84 443.74,405.84 446.75,400.61 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='446.75,230.35 449.77,235.58 443.74,235.58 446.75,230.35 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='434.74,422.35 437.76,427.58 431.72,427.58 434.74,422.35 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='434.74,301.10 437.76,306.33 431.72,306.33 434.74,301.10 ' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='261.89' x2='687.48' y2='261.89' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='265.06' x2='684.31' y2='258.72' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='390.87' x2='687.48' y2='390.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='394.04' x2='684.31' y2='387.71' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='669.49' y1='338.82' x2='675.83' y2='338.82' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.66' y1='341.99' x2='672.66' y2='335.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='669.49' y1='310.44' x2='675.83' y2='310.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.66' y1='313.61' x2='672.66' y2='307.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='648.03' y1='384.28' x2='654.37' y2='384.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='651.20' y1='387.45' x2='651.20' y2='381.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='648.03' y1='397.18' x2='654.37' y2='397.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='651.20' y1='400.35' x2='651.20' y2='394.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='611.52' y1='331.44' x2='617.85' y2='331.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='614.69' y1='334.61' x2='614.69' y2='328.27' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='611.52' y1='336.60' x2='617.85' y2='336.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='614.69' y1='339.77' x2='614.69' y2='333.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='563.51' y1='279.75' x2='569.85' y2='279.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='566.68' y1='282.92' x2='566.68' y2='276.58' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='563.51' y1='385.51' x2='569.85' y2='385.51' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='566.68' y1='388.68' x2='566.68' y2='382.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='505.50' y1='328.78' x2='511.84' y2='328.78' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='508.67' y1='331.95' x2='508.67' y2='325.61' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='505.50' y1='321.04' x2='511.84' y2='321.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='508.67' y1='324.21' x2='508.67' y2='317.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='452.01' y1='393.60' x2='458.34' y2='393.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='455.18' y1='396.77' x2='455.18' y2='390.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='452.01' y1='476.15' x2='458.34' y2='476.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='455.18' y1='479.32' x2='455.18' y2='472.98' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='433.74' y1='305.18' x2='440.08' y2='305.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='436.91' y1='308.35' x2='436.91' y2='302.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='433.74' y1='271.65' x2='440.08' y2='271.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='436.91' y1='274.82' x2='436.91' y2='268.48' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='425.21' y1='373.99' x2='431.55' y2='373.99' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='428.38' y1='377.16' x2='428.38' y2='370.82' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='425.21' y1='265.64' x2='431.55' y2='265.64' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='428.38' y1='268.81' x2='428.38' y2='262.47' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='333.78' x2='686.55' y2='329.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='329.30' x2='686.55' y2='333.78' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='289.93' x2='686.55' y2='285.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='285.45' x2='686.55' y2='289.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.80' y1='356.60' x2='677.28' y2='352.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.80' y1='352.12' x2='677.28' y2='356.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.80' y1='323.07' x2='677.28' y2='318.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='672.80' y1='318.59' x2='677.28' y2='323.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='656.19' y1='403.09' x2='660.68' y2='398.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='656.19' y1='398.60' x2='660.68' y2='403.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='656.19' y1='351.49' x2='660.68' y2='347.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='656.19' y1='347.01' x2='660.68' y2='351.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='629.28' y1='343.55' x2='633.76' y2='339.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='629.28' y1='339.07' x2='633.76' y2='343.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='629.28' y1='343.55' x2='633.76' y2='339.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='629.28' y1='339.07' x2='633.76' y2='343.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='596.12' y1='419.09' x2='600.61' y2='414.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='596.12' y1='414.61' x2='600.61' y2='419.09' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='596.12' y1='313.32' x2='600.61' y2='308.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='596.12' y1='308.84' x2='600.61' y2='313.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='557.15' y1='282.91' x2='561.63' y2='278.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='557.15' y1='278.43' x2='561.63' y2='282.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='557.15' y1='360.30' x2='561.63' y2='355.82' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='557.15' y1='355.82' x2='561.63' y2='360.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='510.96' y1='372.79' x2='515.45' y2='368.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='510.96' y1='368.31' x2='515.45' y2='372.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='510.96' y1='300.56' x2='515.45' y2='296.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='510.96' y1='296.08' x2='515.45' y2='300.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='483.94' y1='363.81' x2='488.42' y2='359.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='483.94' y1='359.33' x2='488.42' y2='363.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='483.94' y1='345.75' x2='488.42' y2='341.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='483.94' y1='341.27' x2='488.42' y2='345.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.85' y1='355.04' x2='469.33' y2='350.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.85' y1='350.56' x2='469.33' y2='355.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.85' y1='349.88' x2='469.33' y2='345.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.85' y1='345.40' x2='469.33' y2='349.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,313.48 684.31,310.32 687.48,313.48 684.31,316.65 681.14,313.48 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,354.76 684.31,351.59 687.48,354.76 684.31,357.93 681.14,354.76 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='672.42,370.07 675.59,366.90 678.76,370.07 675.59,373.24 672.42,370.07 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='672.42,426.83 675.59,423.66 678.76,426.83 675.59,430.00 672.42,426.83 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='656.25,327.90 659.42,324.73 662.59,327.90 659.42,331.07 656.25,327.90 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='656.25,312.42 659.42,309.26 662.59,312.42 659.42,315.59 656.25,312.42 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='628.31,304.82 631.48,301.65 634.65,304.82 631.48,307.99 628.31,304.82 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='628.31,400.27 631.48,397.10 634.65,400.27 631.48,403.44 628.31,400.27 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='590.54,265.58 593.71,262.41 596.88,265.58 593.71,268.75 590.54,265.58 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='590.54,397.14 593.71,393.97 596.88,397.14 593.71,400.31 590.54,397.14 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='542.20,398.81 545.36,395.64 548.53,398.81 545.36,401.98 542.20,398.81 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='542.20,264.67 545.36,261.50 548.53,264.67 545.36,267.84 542.20,264.67 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='490.16,372.15 493.33,368.98 496.50,372.15 493.33,375.32 490.16,372.15 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='490.16,421.17 493.33,418.00 496.50,421.17 493.33,424.34 490.16,421.17 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='466.14,353.83 469.30,350.66 472.47,353.83 469.30,357.00 466.14,353.83 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='466.14,312.55 469.30,309.38 472.47,312.55 469.30,315.72 466.14,312.55 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='450.83,299.51 454.00,296.34 457.16,299.51 454.00,302.68 450.83,299.51 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='450.83,327.88 454.00,324.72 457.16,327.88 454.00,331.05 450.83,327.88 ' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,391.78 687.33,386.55 681.29,386.55 684.31,391.78 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,396.94 687.33,391.71 681.29,391.71 684.31,396.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='676.10,347.59 679.12,342.36 673.09,342.36 676.10,347.59 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='676.10,326.95 679.12,321.73 673.09,321.73 676.10,326.95 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='660.73,274.56 663.74,269.33 657.71,269.33 660.73,274.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='660.73,320.99 663.74,315.76 657.71,315.76 660.73,320.99 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='633.67,329.75 636.69,324.52 630.65,324.52 633.67,329.75 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='633.67,306.54 636.69,301.31 630.65,301.31 633.67,306.54 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='595.87,303.10 598.89,297.87 592.86,297.87 595.87,303.10 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='595.87,372.75 598.89,367.52 592.86,367.52 595.87,372.75 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='544.79,419.85 547.80,414.62 541.77,414.62 544.79,419.85 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='544.79,376.00 547.80,370.77 541.77,370.77 544.79,376.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='486.27,340.14 489.29,334.91 483.25,334.91 486.27,340.14 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='486.27,345.30 489.29,340.07 483.25,340.07 486.27,345.30 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='459.95,314.83 462.97,309.60 456.93,309.60 459.95,314.83 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='459.95,350.94 462.97,345.72 456.93,345.72 459.95,350.94 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='444.69,343.57 447.71,338.34 441.68,338.34 444.69,343.57 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='444.69,359.04 447.71,353.82 441.68,353.82 444.69,359.04 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='264.81' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='269.29' x2='686.55' y2='264.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='264.81' x2='686.55' y2='269.29' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='375.74' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='380.22' x2='686.55' y2='375.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='375.74' x2='686.55' y2='380.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='675.01' y='396.99' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='675.01' y1='401.47' x2='679.50' y2='396.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='675.01' y1='396.99' x2='679.50' y2='401.47' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='675.01' y='304.12' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='675.01' y1='308.61' x2='679.50' y2='304.12' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='675.01' y1='304.12' x2='679.50' y2='308.61' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='661.84' y='407.40' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.84' y1='411.88' x2='666.32' y2='407.40' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.84' y1='407.40' x2='666.32' y2='411.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='661.84' y='363.55' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.84' y1='368.03' x2='666.32' y2='363.55' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.84' y1='363.55' x2='666.32' y2='368.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='638.76' y='387.99' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='638.76' y1='392.48' x2='643.24' y2='387.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='638.76' y1='387.99' x2='643.24' y2='392.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='638.76' y='305.44' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='638.76' y1='309.93' x2='643.24' y2='305.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='638.76' y1='305.44' x2='643.24' y2='309.93' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='606.58' y='251.22' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='606.58' y1='255.70' x2='611.07' y2='251.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='606.58' y1='251.22' x2='611.07' y2='255.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='606.58' y='326.03' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='606.58' y1='330.51' x2='611.07' y2='326.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='606.58' y1='326.03' x2='611.07' y2='330.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='562.33' y='362.65' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='562.33' y1='367.13' x2='566.82' y2='362.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='562.33' y1='362.65' x2='566.82' y2='367.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='562.33' y='391.03' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='562.33' y1='395.51' x2='566.82' y2='391.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='562.33' y1='391.03' x2='566.82' y2='395.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='506.49' y='288.42' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='506.49' y1='292.90' x2='510.97' y2='288.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='506.49' y1='288.42' x2='510.97' y2='292.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='506.49' y='350.33' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='506.49' y1='354.81' x2='510.97' y2='350.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='506.49' y1='350.33' x2='510.97' y2='354.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='476.81' y='333.47' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='476.81' y1='337.95' x2='481.30' y2='333.47' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='476.81' y1='333.47' x2='481.30' y2='337.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='476.81' y='379.90' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='476.81' y1='384.38' x2='481.30' y2='379.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='476.81' y1='379.90' x2='481.30' y2='384.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='457.44' y='378.67' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='457.44' y1='383.15' x2='461.92' y2='378.67' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='457.44' y1='378.67' x2='461.92' y2='383.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='457.44' y='306.44' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='457.44' y1='310.92' x2='461.92' y2='306.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='457.44' y1='306.44' x2='461.92' y2='310.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='326.04' x2='686.55' y2='321.56' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='321.56' x2='686.55' y2='326.04' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='323.80' x2='687.48' y2='323.80' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='326.97' x2='684.31' y2='320.63' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='413.75' x2='686.55' y2='409.27' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='409.27' x2='686.55' y2='413.75' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='411.51' x2='687.48' y2='411.51' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='414.68' x2='684.31' y2='408.34' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.61' y1='313.97' x2='676.09' y2='309.49' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.61' y1='309.49' x2='676.09' y2='313.97' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='670.68' y1='311.73' x2='677.02' y2='311.73' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.85' y1='314.90' x2='673.85' y2='308.56' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.61' y1='370.72' x2='676.09' y2='366.24' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.61' y1='366.24' x2='676.09' y2='370.72' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='670.68' y1='368.48' x2='677.02' y2='368.48' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.85' y1='371.65' x2='673.85' y2='365.31' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='652.63' y1='391.41' x2='657.11' y2='386.93' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='652.63' y1='386.93' x2='657.11' y2='391.41' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='651.70' y1='389.17' x2='658.04' y2='389.17' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='654.87' y1='392.34' x2='654.87' y2='386.00' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='652.63' y1='332.08' x2='657.11' y2='327.60' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='652.63' y1='327.60' x2='657.11' y2='332.08' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='651.70' y1='329.84' x2='658.04' y2='329.84' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='654.87' y1='333.01' x2='654.87' y2='326.67' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='621.22' y1='409.18' x2='625.70' y2='404.69' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='621.22' y1='404.69' x2='625.70' y2='409.18' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='620.29' y1='406.93' x2='626.63' y2='406.93' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='623.46' y1='410.10' x2='623.46' y2='403.77' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='621.22' y1='401.44' x2='625.70' y2='396.95' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='621.22' y1='396.95' x2='625.70' y2='401.44' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='620.29' y1='399.20' x2='626.63' y2='399.20' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='623.46' y1='402.37' x2='623.46' y2='396.03' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='581.62' y1='259.11' x2='586.10' y2='254.62' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='581.62' y1='254.62' x2='586.10' y2='259.11' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='580.69' y1='256.86' x2='587.03' y2='256.86' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='583.86' y1='260.03' x2='583.86' y2='253.70' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='581.62' y1='295.22' x2='586.10' y2='290.74' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='581.62' y1='290.74' x2='586.10' y2='295.22' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='580.69' y1='292.98' x2='587.03' y2='292.98' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='583.86' y1='296.15' x2='583.86' y2='289.81' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='535.50' y1='349.67' x2='539.98' y2='345.19' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='535.50' y1='345.19' x2='539.98' y2='349.67' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='534.57' y1='347.43' x2='540.91' y2='347.43' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='537.74' y1='350.60' x2='537.74' y2='344.26' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='535.50' y1='396.11' x2='539.98' y2='391.63' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='535.50' y1='391.63' x2='539.98' y2='396.11' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='534.57' y1='393.87' x2='540.91' y2='393.87' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='537.74' y1='397.04' x2='537.74' y2='390.70' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='488.30' y1='398.69' x2='492.78' y2='394.21' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='488.30' y1='394.21' x2='492.78' y2='398.69' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='487.37' y1='396.45' x2='493.71' y2='396.45' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='490.54' y1='399.62' x2='490.54' y2='393.28' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='488.30' y1='285.18' x2='492.78' y2='280.70' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='488.30' y1='280.70' x2='492.78' y2='285.18' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='487.37' y1='282.94' x2='493.71' y2='282.94' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='490.54' y1='286.11' x2='490.54' y2='279.77' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='465.05' y1='323.47' x2='469.53' y2='318.99' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='465.05' y1='318.99' x2='469.53' y2='323.47' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.12' y1='321.23' x2='470.46' y2='321.23' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='467.29' y1='324.40' x2='467.29' y2='318.06' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='465.05' y1='411.18' x2='469.53' y2='406.69' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='465.05' y1='406.69' x2='469.53' y2='411.18' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='464.12' y1='408.93' x2='470.46' y2='408.93' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='467.29' y1='412.10' x2='467.29' y2='405.77' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.78' y1='321.12' x2='454.26' y2='316.63' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.78' y1='316.63' x2='454.26' y2='321.12' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='448.85' y1='318.88' x2='455.19' y2='318.88' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='452.02' y1='322.04' x2='452.02' y2='315.71' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.78' y1='326.28' x2='454.26' y2='321.79' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.78' y1='321.79' x2='454.26' y2='326.28' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='448.85' y1='324.04' x2='455.19' y2='324.04' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='452.02' y1='327.20' x2='452.02' y2='320.87' style='stroke-width: 0.75;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='380.56' x2='687.48' y2='380.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='383.73' x2='684.31' y2='377.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,380.56 684.31,377.39 687.48,380.56 684.31,383.73 681.14,380.56 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='681.14' y1='246.41' x2='687.48' y2='246.41' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='249.58' x2='684.31' y2='243.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='681.14,246.41 684.31,243.24 687.48,246.41 684.31,249.58 681.14,246.41 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.22' y1='371.16' x2='677.56' y2='371.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.39' y1='374.33' x2='674.39' y2='367.99' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='671.22,371.16 674.39,367.99 677.56,371.16 674.39,374.33 671.22,371.16 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.22' y1='427.91' x2='677.56' y2='427.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.39' y1='431.08' x2='674.39' y2='424.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='671.22,427.91 674.39,424.75 677.56,427.91 674.39,431.08 671.22,427.91 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='652.95' y1='303.40' x2='659.29' y2='303.40' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='656.12' y1='306.57' x2='656.12' y2='300.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='652.95,303.40 656.12,300.24 659.29,303.40 656.12,306.57 652.95,303.40 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='652.95' y1='375.64' x2='659.29' y2='375.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='656.12' y1='378.80' x2='656.12' y2='372.47' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='652.95,375.64 656.12,372.47 659.29,375.64 656.12,378.80 652.95,375.64 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='621.87' y1='337.25' x2='628.21' y2='337.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='625.04' y1='340.42' x2='625.04' y2='334.09' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='621.87,337.25 625.04,334.09 628.21,337.25 625.04,340.42 621.87,337.25 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='621.87' y1='352.73' x2='628.21' y2='352.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='625.04' y1='355.90' x2='625.04' y2='349.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='621.87,352.73 625.04,349.56 628.21,352.73 625.04,355.90 621.87,352.73 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='580.72' y1='319.07' x2='587.06' y2='319.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='583.89' y1='322.24' x2='583.89' y2='315.90' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='580.72,319.07 583.89,315.90 587.06,319.07 583.89,322.24 580.72,319.07 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='580.72' y1='331.97' x2='587.06' y2='331.97' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='583.89' y1='335.14' x2='583.89' y2='328.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='580.72,331.97 583.89,328.80 587.06,331.97 583.89,335.14 580.72,331.97 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='529.08' y1='350.44' x2='535.41' y2='350.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='532.25' y1='353.61' x2='532.25' y2='347.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='529.08,350.44 532.25,347.27 535.41,350.44 532.25,353.61 529.08,350.44 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='529.08' y1='378.82' x2='535.41' y2='378.82' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='532.25' y1='381.99' x2='532.25' y2='375.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='529.08,378.82 532.25,375.65 535.41,378.82 532.25,381.99 529.08,378.82 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.63' y1='313.68' x2='479.97' y2='313.68' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='476.80' y1='316.85' x2='476.80' y2='310.51' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='473.63,313.68 476.80,310.51 479.97,313.68 476.80,316.85 473.63,313.68 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='473.63' y1='354.95' x2='479.97' y2='354.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='476.80' y1='358.12' x2='476.80' y2='351.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='473.63,354.95 476.80,351.79 479.97,354.95 476.80,358.12 473.63,354.95 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.15' y1='391.42' x2='455.48' y2='391.42' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='452.32' y1='394.58' x2='452.32' y2='388.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='449.15,391.42 452.32,388.25 455.48,391.42 452.32,394.58 449.15,391.42 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.15' y1='246.95' x2='455.48' y2='246.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='452.32' y1='250.12' x2='452.32' y2='243.78' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='449.15,246.95 452.32,243.78 455.48,246.95 452.32,250.12 449.15,246.95 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='435.42' y1='360.30' x2='441.76' y2='360.30' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.59' y1='363.47' x2='438.59' y2='357.13' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='435.42,360.30 438.59,357.13 441.76,360.30 438.59,363.47 435.42,360.30 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='435.42' y1='411.89' x2='441.76' y2='411.89' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='438.59' y1='415.06' x2='438.59' y2='408.72' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='435.42,411.89 438.59,408.72 441.76,411.89 438.59,415.06 435.42,411.89 ' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='277.37' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='277.37' x2='686.55' y2='277.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='279.61' x2='684.31' y2='275.13' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='318.64' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='318.64' x2='686.55' y2='318.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='320.88' x2='684.31' y2='316.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='676.40' cy='300.53' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.15' y1='300.53' x2='678.64' y2='300.53' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.40' y1='302.77' x2='676.40' y2='298.29' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='676.40' cy='323.75' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.15' y1='323.75' x2='678.64' y2='323.75' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='676.40' y1='325.99' x2='676.40' y2='321.51' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='661.66' cy='357.54' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='659.41' y1='357.54' x2='663.90' y2='357.54' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.66' y1='359.79' x2='661.66' y2='355.30' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='661.66' cy='324.01' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='659.41' y1='324.01' x2='663.90' y2='324.01' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='661.66' y1='326.25' x2='661.66' y2='321.77' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='635.98' cy='353.97' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='633.73' y1='353.97' x2='638.22' y2='353.97' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='635.98' y1='356.21' x2='635.98' y2='351.73' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='635.98' cy='369.45' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='633.73' y1='369.45' x2='638.22' y2='369.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='635.98' y1='371.69' x2='635.98' y2='367.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='600.52' cy='381.20' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='598.28' y1='381.20' x2='602.76' y2='381.20' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='600.52' y1='383.44' x2='600.52' y2='378.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='600.52' cy='301.23' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='598.28' y1='301.23' x2='602.76' y2='301.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='600.52' y1='303.47' x2='600.52' y2='298.99' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='552.65' cy='382.38' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.41' y1='382.38' x2='554.89' y2='382.38' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='552.65' y1='384.63' x2='552.65' y2='380.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='552.65' cy='294.68' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='550.41' y1='294.68' x2='554.89' y2='294.68' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='552.65' y1='296.92' x2='552.65' y2='292.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='494.74' cy='406.58' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='492.50' y1='406.58' x2='496.98' y2='406.58' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='494.74' y1='408.82' x2='494.74' y2='404.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='494.74' cy='256.96' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='492.50' y1='256.96' x2='496.98' y2='256.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='494.74' y1='259.20' x2='494.74' y2='254.72' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='466.07' cy='353.14' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='463.83' y1='353.14' x2='468.31' y2='353.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='466.07' y1='355.38' x2='466.07' y2='350.90' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='466.07' cy='368.62' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='463.83' y1='368.62' x2='468.31' y2='368.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='466.07' y1='370.86' x2='466.07' y2='366.38' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='448.67' cy='368.64' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='446.43' y1='368.64' x2='450.91' y2='368.64' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='448.67' y1='370.88' x2='448.67' y2='366.40' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='448.67' cy='327.36' r='2.24pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='446.43' y1='327.36' x2='450.91' y2='327.36' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='448.67' y1='329.61' x2='448.67' y2='325.12' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,262.80 687.33,256.70 681.29,256.70 684.31,262.80 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,255.83 687.33,261.93 681.29,261.93 684.31,255.83 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,355.66 687.33,349.57 681.29,349.57 684.31,355.66 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,348.69 687.33,354.79 681.29,354.79 684.31,348.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='680.34,265.24 683.36,259.14 677.32,259.14 680.34,265.24 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='680.34,258.27 683.36,264.37 677.32,264.37 680.34,258.27 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='680.34,337.47 683.36,331.37 677.32,331.37 680.34,337.47 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='680.34,330.50 683.36,336.60 677.32,336.60 680.34,330.50 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='672.88,308.27 675.89,302.17 669.86,302.17 672.88,308.27 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='672.88,301.30 675.89,307.40 669.86,307.40 672.88,301.30 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='672.88,310.85 675.89,304.75 669.86,304.75 672.88,310.85 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='672.88,303.88 675.89,309.98 669.86,309.98 672.88,303.88 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='659.59,366.65 662.61,360.55 656.57,360.55 659.59,366.65 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='659.59,359.68 662.61,365.78 656.57,365.78 659.59,359.68 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='659.59,315.06 662.61,308.96 656.57,308.96 659.59,315.06 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='659.59,308.09 662.61,314.19 656.57,314.19 659.59,308.09 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='640.50,293.37 643.52,287.27 637.48,287.27 640.50,293.37 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='640.50,286.40 643.52,292.50 637.48,292.50 640.50,286.40 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='640.50,391.40 643.52,385.30 637.48,385.30 640.50,391.40 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='640.50,384.43 643.52,390.53 637.48,390.53 640.50,384.43 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='612.46,331.25 615.48,325.15 609.45,325.15 612.46,331.25 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='612.46,324.28 615.48,330.38 609.45,330.38 612.46,324.28 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='612.46,426.69 615.48,420.60 609.45,420.60 612.46,426.69 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='612.46,419.72 615.48,425.82 609.45,425.82 612.46,419.72 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='570.95,294.05 573.97,287.95 567.94,287.95 570.95,294.05 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='570.95,287.08 573.97,293.18 567.94,293.18 570.95,287.08 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='570.95,335.32 573.97,329.22 567.94,329.22 570.95,335.32 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='570.95,328.35 573.97,334.45 567.94,334.45 570.95,328.35 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='543.21,275.45 546.23,269.35 540.19,269.35 543.21,275.45 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='543.21,268.48 546.23,274.58 540.19,274.58 543.21,268.48 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='543.21,422.49 546.23,416.40 540.19,416.40 543.21,422.49 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='543.21,415.52 546.23,421.62 540.19,421.62 543.21,415.52 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='521.00,359.97 524.02,353.87 517.98,353.87 521.00,359.97 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='521.00,353.00 524.02,359.10 517.98,359.10 521.00,353.00 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='521.00,349.65 524.02,343.55 517.98,343.55 521.00,349.65 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='521.00,342.68 524.02,348.78 517.98,348.78 521.00,342.68 ' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='408.93' x2='686.55' y2='408.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='411.17' x2='684.31' y2='406.69' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='406.69' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='347.02' x2='686.55' y2='347.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='684.31' y1='349.26' x2='684.31' y2='344.78' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='344.78' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.04' y1='270.07' x2='675.52' y2='270.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.28' y1='272.31' x2='673.28' y2='267.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='671.04' y='267.83' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='671.04' y1='334.56' x2='675.52' y2='334.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='673.28' y1='336.80' x2='673.28' y2='332.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='671.04' y='332.32' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='651.06' y1='381.60' x2='655.54' y2='381.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='653.30' y1='383.84' x2='653.30' y2='379.36' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='651.06' y='379.36' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='651.06' y1='391.92' x2='655.54' y2='391.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='653.30' y1='394.16' x2='653.30' y2='389.68' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='651.06' y='389.68' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='618.11' y1='322.39' x2='622.59' y2='322.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='620.35' y1='324.63' x2='620.35' y2='320.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='618.11' y='320.15' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='618.11' y1='299.17' x2='622.59' y2='299.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='620.35' y1='301.41' x2='620.35' y2='296.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='618.11' y='296.93' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='576.87' y1='385.89' x2='581.36' y2='385.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='579.12' y1='388.14' x2='579.12' y2='383.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='576.87' y='383.65' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='576.87' y1='339.46' x2='581.36' y2='339.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='579.12' y1='341.70' x2='579.12' y2='337.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='576.87' y='337.22' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='529.68' y1='256.96' x2='534.16' y2='256.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='531.92' y1='259.20' x2='531.92' y2='254.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='529.68' y='254.72' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='529.68' y1='440.12' x2='534.16' y2='440.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='531.92' y1='442.36' x2='531.92' y2='437.88' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='529.68' y='437.88' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='483.26' y1='305.89' x2='487.74' y2='305.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='485.50' y1='308.13' x2='485.50' y2='303.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='483.26' y='303.65' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='483.26' y1='380.70' x2='487.74' y2='380.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='485.50' y1='382.94' x2='485.50' y2='378.46' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='483.26' y='378.46' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='461.20' y1='353.19' x2='465.68' y2='353.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='463.44' y1='355.43' x2='463.44' y2='350.95' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='461.20' y='350.95' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='461.20' y1='322.24' x2='465.68' y2='322.24' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='463.44' y1='324.48' x2='463.44' y2='320.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='461.20' y='320.00' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='446.90' y1='352.63' x2='451.38' y2='352.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.14' y1='354.87' x2='449.14' y2='350.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='446.90' y='350.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='446.90' y1='339.73' x2='451.38' y2='339.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='449.14' y1='341.97' x2='449.14' y2='337.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='446.90' y='337.49' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='269.63' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='271.87' x2='686.55' y2='267.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='267.39' x2='686.55' y2='271.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='684.31' cy='367.66' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='369.90' x2='686.55' y2='365.42' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='682.07' y1='365.42' x2='686.55' y2='369.90' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='676.26' cy='394.67' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.02' y1='396.91' x2='678.50' y2='392.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.02' y1='392.43' x2='678.50' y2='396.91' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='676.26' cy='343.08' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.02' y1='345.32' x2='678.50' y2='340.84' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='674.02' y1='340.84' x2='678.50' y2='345.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='661.00' cy='335.70' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='658.76' y1='337.94' x2='663.25' y2='333.46' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='658.76' y1='333.46' x2='663.25' y2='337.94' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='661.00' cy='405.35' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='658.76' y1='407.60' x2='663.25' y2='403.11' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='658.76' y1='403.11' x2='663.25' y2='407.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='633.56' cy='319.98' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='631.31' y1='322.22' x2='635.80' y2='317.74' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='631.31' y1='317.74' x2='635.80' y2='322.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='633.56' cy='317.40' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='631.31' y1='319.64' x2='635.80' y2='315.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='631.31' y1='315.16' x2='635.80' y2='319.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='593.79' cy='281.77' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='591.55' y1='284.01' x2='596.03' y2='279.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='591.55' y1='279.53' x2='596.03' y2='284.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='593.79' cy='346.27' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='591.55' y1='348.51' x2='596.03' y2='344.02' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='591.55' y1='344.02' x2='596.03' y2='348.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='537.22' cy='370.75' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='534.98' y1='372.99' x2='539.46' y2='368.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='534.98' y1='368.51' x2='539.46' y2='372.99' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='537.22' cy='352.69' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='534.98' y1='354.93' x2='539.46' y2='350.45' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='534.98' y1='350.45' x2='539.46' y2='354.93' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='470.84' cy='275.97' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='468.60' y1='278.22' x2='473.08' y2='273.73' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='468.60' y1='273.73' x2='473.08' y2='278.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='470.84' cy='358.52' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='468.60' y1='360.76' x2='473.08' y2='356.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='468.60' y1='356.28' x2='473.08' y2='360.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='444.26' cy='346.13' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='442.02' y1='348.38' x2='446.50' y2='343.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='442.02' y1='343.89' x2='446.50' y2='348.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='444.26' cy='431.26' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='442.02' y1='433.50' x2='446.50' y2='429.02' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='442.02' y1='429.02' x2='446.50' y2='433.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='431.71' cy='367.89' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.47' y1='370.13' x2='433.96' y2='365.65' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.47' y1='365.65' x2='433.96' y2='370.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<circle cx='431.71' cy='360.15' r='2.24pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.47' y1='362.39' x2='433.96' y2='357.91' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<line x1='429.47' y1='357.91' x2='433.96' y2='362.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,321.56 686.55,326.04 682.07,326.04 684.31,321.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='321.56' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='684.31,313.82 686.55,318.30 682.07,318.30 684.31,313.82 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='682.07' y='313.82' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='667.54,348.39 669.78,352.87 665.30,352.87 667.54,348.39 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='665.30' y='348.39' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='667.54,428.36 669.78,432.84 665.30,432.84 667.54,428.36 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='665.30' y='428.36' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='638.42,272.45 640.66,276.93 636.18,276.93 638.42,272.45 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='636.18' y='272.45' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='638.42,298.24 640.66,302.73 636.18,302.73 638.42,298.24 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='636.18' y='298.24' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='594.15,347.62 596.40,352.10 591.91,352.10 594.15,347.62 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='591.91' y='347.62' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='594.15,435.32 596.40,439.81 591.91,439.81 594.15,435.32 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='591.91' y='435.32' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='545.97,330.27 548.21,334.75 543.73,334.75 545.97,330.27 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='543.73' y='330.27' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='545.97,350.91 548.21,355.39 543.73,355.39 545.97,350.91 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='543.73' y='350.91' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='501.17,253.12 503.41,257.60 498.93,257.60 501.17,253.12 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='498.93' y='253.12' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='501.17,395.00 503.41,399.48 498.93,399.48 501.17,395.00 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='498.93' y='395.00' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='464.17,306.51 466.41,311.00 461.93,311.00 464.17,306.51 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='461.93' y='306.51' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='464.17,399.38 466.41,403.86 461.93,403.86 464.17,399.38 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='461.93' y='399.38' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='447.09,387.06 449.33,391.54 444.85,391.54 447.09,387.06 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='444.85' y='387.06' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='447.09,322.56 449.33,327.05 444.85,327.05 447.09,322.56 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='444.85' y='322.56' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='436.64,310.65 438.88,315.14 434.40,315.14 436.64,310.65 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='434.40' y='310.65' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polyline points='436.64,341.61 438.88,346.09 434.40,346.09 436.64,341.61 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<rect x='434.40' y='341.61' width='4.48' height='4.48' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='682.07,344.10 686.55,344.10 686.55,339.62 682.07,339.62 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='682.07,377.64 686.55,377.64 686.55,373.16 682.07,373.16 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='666.91,332.47 671.39,332.47 671.39,327.99 666.91,327.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='666.91,360.85 671.39,360.85 671.39,356.37 666.91,356.37 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='640.62,371.97 645.10,371.97 645.10,367.49 640.62,367.49 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='640.62,364.23 645.10,364.23 645.10,359.75 640.62,359.75 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='600.85,411.16 605.33,411.16 605.33,406.68 600.85,406.68 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='600.85,362.14 605.33,362.14 605.33,357.66 600.85,357.66 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='558.15,284.93 562.63,284.93 562.63,280.45 558.15,280.45 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='558.15,336.53 562.63,336.53 562.63,332.05 558.15,332.05 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='519.95,318.85 524.44,318.85 524.44,314.37 519.95,314.37 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='519.95,352.39 524.44,352.39 524.44,347.91 519.95,347.91 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='489.37,352.39 493.85,352.39 493.85,347.90 489.37,347.90 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='489.37,416.88 493.85,416.88 493.85,412.40 489.37,412.40 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='472.71,333.95 477.20,333.95 477.20,329.47 472.71,329.47 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='472.71,395.86 477.20,395.86 477.20,391.38 472.71,391.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='460.07,261.85 464.55,261.85 464.55,257.36 460.07,257.36 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
<polygon points='460.07,328.92 464.55,328.92 464.55,324.44 460.07,324.44 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpNDA5LjAwfDY5NC45MHw1MTUuMDR8MTc0LjQz)' />
</svg>

Contact - Imprint