Newer
Older
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
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"# Amira Abdel-Rahman\n",
"# (c) Massachusetts Institute of Technology 2020\n",
"\n",
"# tested using julia 1.5.2 and windows Nvidia geforce gtx 1070 Ti"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Include Dependencies"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"using LinearAlgebra\n",
"import JSON\n",
"using StaticArrays, BenchmarkTools\n",
"using Base.Threads\n",
"using CUDA\n",
"import Base: +, * , -, ^\n",
"using Plots\n"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"axialStrain (generic function with 1 method)"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"./julia/include/vector.jl\") #utils for vectors and quaternions\n",
"include(\"./julia/include/material.jl\") #utils for node and edge material\n",
"include(\"./julia/include/export.jl\") #export simulation data to json\n",
"include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n",
"include(\"./julia/include/updateEdges.jl\") #edges properties update\n",
"include(\"./julia/include/externalForces.jl\") #external forces applied to the system\n",
"include(\"./julia/include/forces.jl\") #force integration\n",
"include(\"./julia/include/updateNodes.jl\") #nodes properties update"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Create Geometry"
]
},
{
"cell_type": "code",
"execution_count": 42,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"axialStrain (generic function with 1 method)"
]
},
"execution_count": 42,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"name= \"tutorial\"\n",
"# alternativly you can get a saved setup from an external julia file\n",
"# include(\"./julia/examples/thermalTest.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n",
"# include(\"./julia/examples/poissonTest.jl\") #template for hierarchical voxels with global poisson ratio\n",
"# include(\"./julia/examples/latticeTest.jl\") #template for lattice voxel (small scale)\n",
"# include(\"./julia/examples/latticeTest2.jl\") #template for lattice voxel (big scale with real params)\n",
"# include(\"./julia/examples/rhinoTest.jl\") #template for importing geometry from rhino\n",
"# include(\"./julia/examples/rhinoTestChiral.jl\") #template for importing chiral array\n",
"# include(\"./julia/examples/rover.jl\") #template for importing chiral array\n",
"# include(\"./julia/examples/wing.jl\") #template for importing chiral array\n",
"# include(\"./julia/examples/walkingRobot.jl\") #template for importing chiral array\n",
"include(\"./julia/examples/nonLinearTest.jl\") #template for hierarchical voxels with global poisson ratio\n",
"\n",
"\n",
"\n",
"## rerun these just for sanity check for dynamic loads\n",
"include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n",
"include(\"./julia/include/updateEdges.jl\") #edges properties update\n",
"include(\"./julia/include/forces.jl\") #force integration\n",
"include(\"./julia/include/updateNodes.jl\") #nodes properties update"
]
},
{
"cell_type": "code",
"execution_count": 43,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Loaded rhino3dm.\n",
"Success!\n"
]
},
{
"data": {
"text/plain": [
"Process(`\u001b[4mnode\u001b[24m \u001b[4mapp1.js\u001b[24m \u001b[4mtutorial\u001b[24m`, ProcessExited(0))"
]
},
"execution_count": 43,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#export prev. settings to json\n",
"fileName=\"./json/$(name)Init.json\"\n",
"setup1=Dict()\n",
"setup1[\"setup\"]=setup\n",
"stringdata = JSON.json(setup1)\n",
"open(fileName, \"w\") do f\n",
" write(f, stringdata)\n",
"end\n",
"#run node.js to draw the gerometry using rhino3dm\n",
"mycommand = `node app1.js $(name)`\n",
"run(mycommand)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Run Simulation"
]
},
{
"cell_type": "code",
"execution_count": 44,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"dt: 1.4235251564292887e-5, s: 0.001, mass: 8.0e-6, momentInertiaInverse: 1.8749999999999997e11\n",
"first timestep took 3.051808999 seconds\n",
"ran 45 nodes and 96 edges for 300 time steps took 0.609284299 seconds\n"
]
}
],
"source": [
"folderPath=\"./json/tutorial/\" # make sure this folder exists\n",
"setupSim=getSetup(name);\n",
"runMetavoxelGPULive!(setupSim,folderPath)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"\"coupon\""
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# set name for simulation\n",
"# name= \"tutorial\"\n",
"# name=\"couponHex\"\n",
"name=\"coupon\"\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Plot"
]
},
{
"cell_type": "code",
"execution_count": 45,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"plotDisplacementTroughTimeSteps (generic function with 2 methods)"
]
},
"execution_count": 45,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"include(\"./julia/include/plotViz.jl\") #plotting"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip860\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip860)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip861\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip860)\" d=\"\n",
"M201.876 1486.45 L2352.76 1486.45 L2352.76 123.472 L201.876 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip862\">\n",
" <rect x=\"201\" y=\"123\" width=\"2152\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 216.633,1486.45 216.633,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 677.8,1486.45 677.8,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1138.97,1486.45 1138.97,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1600.13,1486.45 1600.13,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2061.3,1486.45 2061.3,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 216.633,1486.45 216.633,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 677.8,1486.45 677.8,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1138.97,1486.45 1138.97,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1600.13,1486.45 1600.13,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2061.3,1486.45 2061.3,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip860)\" d=\"M 0 0 M216.633 1515.64 Q213.022 1515.64 211.193 1519.2 Q209.388 1522.75 209.388 1529.87 Q209.388 1536.98 211.193 1540.55 Q213.022 1544.09 216.633 1544.09 Q220.267 1544.09 222.073 1540.55 Q223.902 1536.98 223.902 1529.87 Q223.902 1522.75 222.073 1519.2 Q220.267 1515.64 216.633 1515.64 M216.633 1511.93 Q222.443 1511.93 225.499 1516.54 Q228.577 1521.12 228.577 1529.87 Q228.577 1538.6 225.499 1543.21 Q222.443 1547.79 216.633 1547.79 Q210.823 1547.79 207.744 1543.21 Q204.689 1538.6 204.689 1529.87 Q204.689 1521.12 207.744 1516.54 Q210.823 1511.93 216.633 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M654.675 1543.18 L662.313 1543.18 L662.313 1516.82 L654.003 1518.49 L654.003 1514.23 L662.267 1512.56 L666.943 1512.56 L666.943 1543.18 L674.582 1543.18 L674.582 1547.12 L654.675 1547.12 L654.675 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M689.651 1515.64 Q686.04 1515.64 684.212 1519.2 Q682.406 1522.75 682.406 1529.87 Q682.406 1536.98 684.212 1540.55 Q686.04 1544.09 689.651 1544.09 Q693.286 1544.09 695.091 1540.55 Q696.92 1536.98 696.92 1529.87 Q696.92 1522.75 695.091 1519.2 Q693.286 1515.64 689.651 1515.64 M689.651 1511.93 Q695.461 1511.93 698.517 1516.54 Q701.596 1521.12 701.596 1529.87 Q701.596 1538.6 698.517 1543.21 Q695.461 1547.79 689.651 1547.79 Q683.841 1547.79 680.762 1543.21 Q677.707 1538.6 677.707 1529.87 Q677.707 1521.12 680.762 1516.54 Q683.841 1511.93 689.651 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M1120.11 1543.18 L1136.43 1543.18 L1136.43 1547.12 L1114.49 1547.12 L1114.49 1543.18 Q1117.15 1540.43 1121.73 1535.8 Q1126.34 1531.15 1127.52 1529.81 Q1129.76 1527.28 1130.64 1525.55 Q1131.55 1523.79 1131.55 1522.1 Q1131.55 1519.34 1129.6 1517.61 Q1127.68 1515.87 1124.58 1515.87 Q1122.38 1515.87 1119.93 1516.63 Q1117.5 1517.4 1114.72 1518.95 L1114.72 1514.23 Q1117.54 1513.09 1120 1512.51 Q1122.45 1511.93 1124.49 1511.93 Q1129.86 1511.93 1133.05 1514.62 Q1136.25 1517.31 1136.25 1521.8 Q1136.25 1523.93 1135.44 1525.85 Q1134.65 1527.74 1132.54 1530.34 Q1131.96 1531.01 1128.86 1534.23 Q1125.76 1537.42 1120.11 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M1151.5 1515.64 Q1147.89 1515.64 1146.06 1519.2 Q1144.26 1522.75 1144.26 1529.87 Q1144.26 1536.98 1146.06 1540.55 Q1147.89 1544.09 1151.5 1544.09 Q1155.13 1544.09 1156.94 1540.55 Q1158.77 1536.98 1158.77 1529.87 Q1158.77 1522.75 1156.94 1519.2 Q1155.13 1515.64 1151.5 1515.64 M1151.5 1511.93 Q1157.31 1511.93 1160.37 1516.54 Q1163.44 1521.12 1163.44 1529.87 Q1163.44 1538.6 1160.37 1543.21 Q1157.31 1547.79 1151.5 1547.79 Q1145.69 1547.79 1142.61 1543.21 Q1139.56 1538.6 1139.56 1529.87 Q1139.56 1521.12 1142.61 1516.54 Q1145.69 1511.93 1151.5 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M1590.87 1528.49 Q1594.23 1529.2 1596.1 1531.47 Q1598 1533.74 1598 1537.07 Q1598 1542.19 1594.48 1544.99 Q1590.97 1547.79 1584.48 1547.79 Q1582.31 1547.79 1579.99 1547.35 Q1577.7 1546.93 1575.25 1546.08 L1575.25 1541.56 Q1577.19 1542.7 1579.51 1543.28 Q1581.82 1543.86 1584.35 1543.86 Q1588.74 1543.86 1591.04 1542.12 Q1593.35 1540.38 1593.35 1537.07 Q1593.35 1534.02 1591.2 1532.31 Q1589.07 1530.57 1585.25 1530.57 L1581.22 1530.57 L1581.22 1526.73 L1585.43 1526.73 Q1588.88 1526.73 1590.71 1525.36 Q1592.54 1523.97 1592.54 1521.38 Q1592.54 1518.72 1590.64 1517.31 Q1588.77 1515.87 1585.25 1515.87 Q1583.33 1515.87 1581.13 1516.29 Q1578.93 1516.7 1576.29 1517.58 L1576.29 1513.42 Q1578.95 1512.68 1581.27 1512.31 Q1583.6 1511.93 1585.66 1511.93 Q1590.99 1511.93 1594.09 1514.37 Q1597.19 1516.77 1597.19 1520.89 Q1597.19 1523.76 1595.55 1525.75 Q1593.91 1527.72 1590.87 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M1613.07 1515.64 Q1609.46 1515.64 1607.63 1519.2 Q1605.83 1522.75 1605.83 1529.87 Q1605.83 1536.98 1607.63 1540.55 Q1609.46 1544.09 1613.07 1544.09 Q1616.71 1544.09 1618.51 1540.55 Q1620.34 1536.98 1620.34 1529.87 Q1620.34 1522.75 1618.51 1519.2 Q1616.71 1515.64 1613.07 1515.64 M1613.07 1511.93 Q1618.88 1511.93 1621.94 1516.54 Q1625.02 1521.12 1625.02 1529.87 Q1625.02 1538.6 1621.94 1543.21 Q1618.88 1547.79 1613.07 1547.79 Q1607.26 1547.79 1604.18 1543.21 Q1601.13 1538.6 1601.13 1529.87 Q1601.13 1521.12 1604.18 1516.54 Q1607.26 1511.93 1613.07 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M2050.8 1516.63 L2039 1535.08 L2050.8 1535.08 L2050.8 1516.63 M2049.57 1512.56 L2055.45 1512.56 L2055.45 1535.08 L2060.38 1535.08 L2060.38 1538.97 L2055.45 1538.97 L2055.45 1547.12 L2050.8 1547.12 L2050.8 1538.97 L2035.2 1538.97 L2035.2 1534.46 L2049.57 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M2075.45 1515.64 Q2071.84 1515.64 2070.01 1519.2 Q2068.21 1522.75 2068.21 1529.87 Q2068.21 1536.98 2070.01 1540.55 Q2071.84 1544.09 2075.45 1544.09 Q2079.09 1544.09 2080.89 1540.55 Q2082.72 1536.98 2082.72 1529.87 Q2082.72 1522.75 2080.89 1519.2 Q2079.09 1515.64 2075.45 1515.64 M2075.45 1511.93 Q2081.26 1511.93 2084.32 1516.54 Q2087.4 1521.12 2087.4 1529.87 Q2087.4 1538.6 2084.32 1543.21 Q2081.26 1547.79 2075.45 1547.79 Q2069.64 1547.79 2066.56 1543.21 Q2063.51 1538.6 2063.51 1529.87 Q2063.51 1521.12 2066.56 1516.54 Q2069.64 1511.93 2075.45 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.876,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.876,1178.91 2352.76,1178.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.876,909.95 2352.76,909.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.876,640.988 2352.76,640.988 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip862)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.876,372.027 2352.76,372.027 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,1486.45 201.876,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,1447.87 227.686,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,1178.91 227.686,1178.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,909.95 227.686,909.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,640.988 227.686,640.988 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip860)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.876,372.027 227.686,372.027 \n",
" \"/>\n",
"<path clip-path=\"url(#clip860)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M153.931 1433.67 Q150.32 1433.67 148.492 1437.24 Q146.686 1440.78 146.686 1447.91 Q146.686 1455.01 148.492 1458.58 Q150.32 1462.12 153.931 1462.12 Q157.566 1462.12 159.371 1458.58 Q161.2 1455.01 161.2 1447.91 Q161.2 1440.78 159.371 1437.24 Q157.566 1433.67 153.931 1433.67 M153.931 1429.97 Q159.742 1429.97 162.797 1434.57 Q165.876 1439.16 165.876 1447.91 Q165.876 1456.63 162.797 1461.24 Q159.742 1465.82 153.931 1465.82 Q148.121 1465.82 145.043 1461.24 Q141.987 1456.63 141.987 1447.91 Q141.987 1439.16 145.043 1434.57 Q148.121 1429.97 153.931 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M63.9319 1164.71 Q60.3208 1164.71 58.4921 1168.27 Q56.6865 1171.82 56.6865 1178.95 Q56.6865 1186.05 58.4921 1189.62 Q60.3208 1193.16 63.9319 1193.16 Q67.5661 1193.16 69.3717 1189.62 Q71.2004 1186.05 71.2004 1178.95 Q71.2004 1171.82 69.3717 1168.27 Q67.5661 1164.71 63.9319 1164.71 M63.9319 1161.01 Q69.742 1161.01 72.7976 1165.61 Q75.8763 1170.2 75.8763 1178.95 Q75.8763 1187.67 72.7976 1192.28 Q69.742 1196.86 63.9319 1196.86 Q58.1217 1196.86 55.043 1192.28 Q51.9875 1187.67 51.9875 1178.95 Q51.9875 1170.2 55.043 1165.61 Q58.1217 1161.01 63.9319 1161.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M80.9457 1190.31 L85.8299 1190.31 L85.8299 1196.19 L80.9457 1196.19 L80.9457 1190.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M100.899 1164.71 Q97.2882 1164.71 95.4595 1168.27 Q93.6539 1171.82 93.6539 1178.95 Q93.6539 1186.05 95.4595 1189.62 Q97.2882 1193.16 100.899 1193.16 Q104.534 1193.16 106.339 1189.62 Q108.168 1186.05 108.168 1178.95 Q108.168 1171.82 106.339 1168.27 Q104.534 1164.71 100.899 1164.71 M100.899 1161.01 Q106.709 1161.01 109.765 1165.61 Q112.844 1170.2 112.844 1178.95 Q112.844 1187.67 109.765 1192.28 Q106.709 1196.86 100.899 1196.86 Q95.0891 1196.86 92.0104 1192.28 Q88.9549 1187.67 88.9549 1178.95 Q88.9549 1170.2 92.0104 1165.61 Q95.0891 1161.01 100.899 1161.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M127.913 1164.71 Q124.302 1164.71 122.473 1168.27 Q120.668 1171.82 120.668 1178.95 Q120.668 1186.05 122.473 1189.62 Q124.302 1193.16 127.913 1193.16 Q131.547 1193.16 133.353 1189.62 Q135.181 1186.05 135.181 1178.95 Q135.181 1171.82 133.353 1168.27 Q131.547 1164.71 127.913 1164.71 M127.913 1161.01 Q133.723 1161.01 136.779 1165.61 Q139.857 1170.2 139.857 1178.95 Q139.857 1187.67 136.779 1192.28 Q133.723 1196.86 127.913 1196.86 Q122.103 1196.86 119.024 1192.28 Q115.969 1187.67 115.969 1178.95 Q115.969 1170.2 119.024 1165.61 Q122.103 1161.01 127.913 1161.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M144.973 1161.63 L163.329 1161.63 L163.329 1165.57 L149.255 1165.57 L149.255 1174.04 Q150.274 1173.69 151.293 1173.53 Q152.311 1173.34 153.33 1173.34 Q159.117 1173.34 162.496 1176.52 Q165.876 1179.69 165.876 1185.1 Q165.876 1190.68 162.404 1193.78 Q158.931 1196.86 152.612 1196.86 Q150.436 1196.86 148.168 1196.49 Q145.922 1196.12 143.515 1195.38 L143.515 1190.68 Q145.598 1191.82 147.82 1192.37 Q150.043 1192.93 152.519 1192.93 Q156.524 1192.93 158.862 1190.82 Q161.2 1188.71 161.2 1185.1 Q161.2 1181.49 158.862 1179.39 Q156.524 1177.28 152.519 1177.28 Q150.644 1177.28 148.769 1177.7 Q146.918 1178.11 144.973 1178.99 L144.973 1161.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M64.1634 895.749 Q60.5523 895.749 58.7236 899.313 Q56.918 902.855 56.918 909.985 Q56.918 917.091 58.7236 920.656 Q60.5523 924.197 64.1634 924.197 Q67.7976 924.197 69.6031 920.656 Q71.4318 917.091 71.4318 909.985 Q71.4318 902.855 69.6031 899.313 Q67.7976 895.749 64.1634 895.749 M64.1634 892.045 Q69.9735 892.045 73.029 896.651 Q76.1077 901.235 76.1077 909.985 Q76.1077 918.711 73.029 923.318 Q69.9735 927.901 64.1634 927.901 Q58.3532 927.901 55.2745 923.318 Q52.219 918.711 52.219 909.985 Q52.219 901.235 55.2745 896.651 Q58.3532 892.045 64.1634 892.045 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M81.1771 921.35 L86.0614 921.35 L86.0614 927.23 L81.1771 927.23 L81.1771 921.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M101.131 895.749 Q97.5197 895.749 95.691 899.313 Q93.8854 902.855 93.8854 909.985 Q93.8854 917.091 95.691 920.656 Q97.5197 924.197 101.131 924.197 Q104.765 924.197 106.571 920.656 Q108.399 917.091 108.399 909.985 Q108.399 902.855 106.571 899.313 Q104.765 895.749 101.131 895.749 M101.131 892.045 Q106.941 892.045 109.996 896.651 Q113.075 901.235 113.075 909.985 Q113.075 918.711 109.996 923.318 Q106.941 927.901 101.131 927.901 Q95.3206 927.901 92.2419 923.318 Q89.1864 918.711 89.1864 909.985 Q89.1864 901.235 92.2419 896.651 Q95.3206 892.045 101.131 892.045 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M118.955 923.295 L126.594 923.295 L126.594 896.929 L118.283 898.596 L118.283 894.336 L126.547 892.67 L131.223 892.67 L131.223 923.295 L138.862 923.295 L138.862 927.23 L118.955 927.23 L118.955 923.295 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M153.931 895.749 Q150.32 895.749 148.492 899.313 Q146.686 902.855 146.686 909.985 Q146.686 917.091 148.492 920.656 Q150.32 924.197 153.931 924.197 Q157.566 924.197 159.371 920.656 Q161.2 917.091 161.2 909.985 Q161.2 902.855 159.371 899.313 Q157.566 895.749 153.931 895.749 M153.931 892.045 Q159.742 892.045 162.797 896.651 Q165.876 901.235 165.876 909.985 Q165.876 918.711 162.797 923.318 Q159.742 927.901 153.931 927.901 Q148.121 927.901 145.043 923.318 Q141.987 918.711 141.987 909.985 Q141.987 901.235 145.043 896.651 Q148.121 892.045 153.931 892.045 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M65.1587 626.787 Q61.5476 626.787 59.7189 630.352 Q57.9134 633.893 57.9134 641.023 Q57.9134 648.129 59.7189 651.694 Q61.5476 655.236 65.1587 655.236 Q68.793 655.236 70.5985 651.694 Q72.4272 648.129 72.4272 641.023 Q72.4272 633.893 70.5985 630.352 Q68.793 626.787 65.1587 626.787 M65.1587 623.083 Q70.9689 623.083 74.0244 627.69 Q77.1031 632.273 77.1031 641.023 Q77.1031 649.75 74.0244 654.356 Q70.9689 658.939 65.1587 658.939 Q59.3486 658.939 56.2699 654.356 Q53.2143 649.75 53.2143 641.023 Q53.2143 632.273 56.2699 627.69 Q59.3486 623.083 65.1587 623.083 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M82.1725 652.389 L87.0567 652.389 L87.0567 658.268 L82.1725 658.268 L82.1725 652.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M102.126 626.787 Q98.515 626.787 96.6863 630.352 Q94.8808 633.893 94.8808 641.023 Q94.8808 648.129 96.6863 651.694 Q98.515 655.236 102.126 655.236 Q105.76 655.236 107.566 651.694 Q109.395 648.129 109.395 641.023 Q109.395 633.893 107.566 630.352 Q105.76 626.787 102.126 626.787 M102.126 623.083 Q107.936 623.083 110.992 627.69 Q114.07 632.273 114.07 641.023 Q114.07 649.75 110.992 654.356 Q107.936 658.939 102.126 658.939 Q96.316 658.939 93.2373 654.356 Q90.1817 649.75 90.1817 641.023 Q90.1817 632.273 93.2373 627.69 Q96.316 623.083 102.126 623.083 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M119.95 654.333 L127.589 654.333 L127.589 627.967 L119.279 629.634 L119.279 625.375 L127.543 623.708 L132.219 623.708 L132.219 654.333 L139.857 654.333 L139.857 658.268 L119.95 658.268 L119.95 654.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M144.973 623.708 L163.329 623.708 L163.329 627.643 L149.255 627.643 L149.255 636.116 Q150.274 635.768 151.293 635.606 Q152.311 635.421 153.33 635.421 Q159.117 635.421 162.496 638.592 Q165.876 641.764 165.876 647.18 Q165.876 652.759 162.404 655.861 Q158.931 658.939 152.612 658.939 Q150.436 658.939 148.168 658.569 Q145.922 658.199 143.515 657.458 L143.515 652.759 Q145.598 653.893 147.82 654.449 Q150.043 655.004 152.519 655.004 Q156.524 655.004 158.862 652.898 Q161.2 650.791 161.2 647.18 Q161.2 643.569 158.862 641.463 Q156.524 639.356 152.519 639.356 Q150.644 639.356 148.769 639.773 Q146.918 640.19 144.973 641.069 L144.973 623.708 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M64.5337 357.825 Q60.9226 357.825 59.0939 361.39 Q57.2884 364.932 57.2884 372.061 Q57.2884 379.168 59.0939 382.733 Q60.9226 386.274 64.5337 386.274 Q68.168 386.274 69.9735 382.733 Q71.8022 379.168 71.8022 372.061 Q71.8022 364.932 69.9735 361.39 Q68.168 357.825 64.5337 357.825 M64.5337 354.122 Q70.3439 354.122 73.3994 358.728 Q76.4781 363.311 76.4781 372.061 Q76.4781 380.788 73.3994 385.395 Q70.3439 389.978 64.5337 389.978 Q58.7236 389.978 55.6449 385.395 Q52.5893 380.788 52.5893 372.061 Q52.5893 363.311 55.6449 358.728 Q58.7236 354.122 64.5337 354.122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M81.5475 383.427 L86.4318 383.427 L86.4318 389.307 L81.5475 389.307 L81.5475 383.427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M101.501 357.825 Q97.89 357.825 96.0613 361.39 Q94.2558 364.932 94.2558 372.061 Q94.2558 379.168 96.0613 382.733 Q97.89 386.274 101.501 386.274 Q105.135 386.274 106.941 382.733 Q108.77 379.168 108.77 372.061 Q108.77 364.932 106.941 361.39 Q105.135 357.825 101.501 357.825 M101.501 354.122 Q107.311 354.122 110.367 358.728 Q113.445 363.311 113.445 372.061 Q113.445 380.788 110.367 385.395 Q107.311 389.978 101.501 389.978 Q95.691 389.978 92.6123 385.395 Q89.5567 380.788 89.5567 372.061 Q89.5567 363.311 92.6123 358.728 Q95.691 354.122 101.501 354.122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M122.543 385.371 L138.862 385.371 L138.862 389.307 L116.918 389.307 L116.918 385.371 Q119.58 382.617 124.163 377.987 Q128.769 373.334 129.95 371.992 Q132.195 369.469 133.075 367.733 Q133.978 365.973 133.978 364.284 Q133.978 361.529 132.033 359.793 Q130.112 358.057 127.01 358.057 Q124.811 358.057 122.357 358.821 Q119.927 359.585 117.149 361.135 L117.149 356.413 Q119.973 355.279 122.427 354.7 Q124.881 354.122 126.918 354.122 Q132.288 354.122 135.482 356.807 Q138.677 359.492 138.677 363.983 Q138.677 366.112 137.867 368.034 Q137.08 369.932 134.973 372.524 Q134.394 373.196 131.293 376.413 Q128.191 379.608 122.543 385.371 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M153.931 357.825 Q150.32 357.825 148.492 361.39 Q146.686 364.932 146.686 372.061 Q146.686 379.168 148.492 382.733 Q150.32 386.274 153.931 386.274 Q157.566 386.274 159.371 382.733 Q161.2 379.168 161.2 372.061 Q161.2 364.932 159.371 361.39 Q157.566 357.825 153.931 357.825 M153.931 354.122 Q159.742 354.122 162.797 358.728 Q165.876 363.311 165.876 372.061 Q165.876 380.788 162.797 385.395 Q159.742 389.978 153.931 389.978 Q148.121 389.978 145.043 385.395 Q141.987 380.788 141.987 372.061 Q141.987 363.311 145.043 358.728 Q148.121 354.122 153.931 354.122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip860)\" d=\"M 0 0 M1298.46 27.2059 L1282.06 49.2833 L1299.31 72.576 L1290.52 72.576 L1277.32 54.752 L1264.11 72.576 L1255.32 72.576 L1272.94 48.8377 L1256.82 27.2059 L1265.61 27.2059 L1277.64 43.369 L1289.67 27.2059 L1298.46 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip862)\" cx=\"262.75\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"308.866\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"354.983\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"401.1\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"447.216\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"493.333\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"539.45\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"585.566\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"631.683\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"677.8\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"723.916\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"770.033\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"816.149\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"862.266\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"908.383\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"954.499\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1000.62\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1046.73\" cy=\"1001.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1092.85\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1138.97\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1185.08\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1231.2\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1277.32\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1323.43\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1369.55\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1415.67\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1461.78\" cy=\"608.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1507.9\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1554.02\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1600.13\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1646.25\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1692.37\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1738.48\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1784.6\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1830.72\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1876.83\" cy=\"317.137\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1922.95\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"1969.07\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2015.18\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2061.3\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2107.42\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2153.53\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2199.65\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2245.77\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip862)\" cx=\"2291.88\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip900\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip900)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip901\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip900)\" d=\"\n",
"M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip902\">\n",
" <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 189.805,1486.45 189.805,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 656.763,1486.45 656.763,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1123.72,1486.45 1123.72,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1590.68,1486.45 1590.68,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2057.64,1486.45 2057.64,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 189.805,1486.45 189.805,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 656.763,1486.45 656.763,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1123.72,1486.45 1123.72,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1590.68,1486.45 1590.68,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2057.64,1486.45 2057.64,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip900)\" d=\"M 0 0 M189.805 1515.64 Q186.194 1515.64 184.365 1519.2 Q182.559 1522.75 182.559 1529.87 Q182.559 1536.98 184.365 1540.55 Q186.194 1544.09 189.805 1544.09 Q193.439 1544.09 195.244 1540.55 Q197.073 1536.98 197.073 1529.87 Q197.073 1522.75 195.244 1519.2 Q193.439 1515.64 189.805 1515.64 M189.805 1511.93 Q195.615 1511.93 198.67 1516.54 Q201.749 1521.12 201.749 1529.87 Q201.749 1538.6 198.67 1543.21 Q195.615 1547.79 189.805 1547.79 Q183.995 1547.79 180.916 1543.21 Q177.86 1538.6 177.86 1529.87 Q177.86 1521.12 180.916 1516.54 Q183.995 1511.93 189.805 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M633.638 1543.18 L641.277 1543.18 L641.277 1516.82 L632.967 1518.49 L632.967 1514.23 L641.231 1512.56 L645.907 1512.56 L645.907 1543.18 L653.545 1543.18 L653.545 1547.12 L633.638 1547.12 L633.638 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M668.615 1515.64 Q665.004 1515.64 663.175 1519.2 Q661.37 1522.75 661.37 1529.87 Q661.37 1536.98 663.175 1540.55 Q665.004 1544.09 668.615 1544.09 Q672.249 1544.09 674.055 1540.55 Q675.883 1536.98 675.883 1529.87 Q675.883 1522.75 674.055 1519.2 Q672.249 1515.64 668.615 1515.64 M668.615 1511.93 Q674.425 1511.93 677.481 1516.54 Q680.559 1521.12 680.559 1529.87 Q680.559 1538.6 677.481 1543.21 Q674.425 1547.79 668.615 1547.79 Q662.805 1547.79 659.726 1543.21 Q656.67 1538.6 656.67 1529.87 Q656.67 1521.12 659.726 1516.54 Q662.805 1511.93 668.615 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M1104.87 1543.18 L1121.19 1543.18 L1121.19 1547.12 L1099.24 1547.12 L1099.24 1543.18 Q1101.9 1540.43 1106.49 1535.8 Q1111.09 1531.15 1112.27 1529.81 Q1114.52 1527.28 1115.4 1525.55 Q1116.3 1523.79 1116.3 1522.1 Q1116.3 1519.34 1114.36 1517.61 Q1112.44 1515.87 1109.33 1515.87 Q1107.14 1515.87 1104.68 1516.63 Q1102.25 1517.4 1099.47 1518.95 L1099.47 1514.23 Q1102.3 1513.09 1104.75 1512.51 Q1107.21 1511.93 1109.24 1511.93 Q1114.61 1511.93 1117.81 1514.62 Q1121 1517.31 1121 1521.8 Q1121 1523.93 1120.19 1525.85 Q1119.4 1527.74 1117.3 1530.34 Q1116.72 1531.01 1113.62 1534.23 Q1110.52 1537.42 1104.87 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M1136.26 1515.64 Q1132.65 1515.64 1130.82 1519.2 Q1129.01 1522.75 1129.01 1529.87 Q1129.01 1536.98 1130.82 1540.55 Q1132.65 1544.09 1136.26 1544.09 Q1139.89 1544.09 1141.7 1540.55 Q1143.52 1536.98 1143.52 1529.87 Q1143.52 1522.75 1141.7 1519.2 Q1139.89 1515.64 1136.26 1515.64 M1136.26 1511.93 Q1142.07 1511.93 1145.12 1516.54 Q1148.2 1521.12 1148.2 1529.87 Q1148.2 1538.6 1145.12 1543.21 Q1142.07 1547.79 1136.26 1547.79 Q1130.45 1547.79 1127.37 1543.21 Q1124.31 1538.6 1124.31 1529.87 Q1124.31 1521.12 1127.37 1516.54 Q1130.45 1511.93 1136.26 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M1581.42 1528.49 Q1584.78 1529.2 1586.65 1531.47 Q1588.55 1533.74 1588.55 1537.07 Q1588.55 1542.19 1585.03 1544.99 Q1581.51 1547.79 1575.03 1547.79 Q1572.86 1547.79 1570.54 1547.35 Q1568.25 1546.93 1565.8 1546.08 L1565.8 1541.56 Q1567.74 1542.7 1570.05 1543.28 Q1572.37 1543.86 1574.89 1543.86 Q1579.29 1543.86 1581.58 1542.12 Q1583.9 1540.38 1583.9 1537.07 Q1583.9 1534.02 1581.74 1532.31 Q1579.62 1530.57 1575.8 1530.57 L1571.77 1530.57 L1571.77 1526.73 L1575.98 1526.73 Q1579.43 1526.73 1581.26 1525.36 Q1583.09 1523.97 1583.09 1521.38 Q1583.09 1518.72 1581.19 1517.31 Q1579.31 1515.87 1575.8 1515.87 Q1573.87 1515.87 1571.68 1516.29 Q1569.48 1516.7 1566.84 1517.58 L1566.84 1513.42 Q1569.5 1512.68 1571.81 1512.31 Q1574.15 1511.93 1576.21 1511.93 Q1581.54 1511.93 1584.64 1514.37 Q1587.74 1516.77 1587.74 1520.89 Q1587.74 1523.76 1586.1 1525.75 Q1584.45 1527.72 1581.42 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M1603.62 1515.64 Q1600.01 1515.64 1598.18 1519.2 Q1596.37 1522.75 1596.37 1529.87 Q1596.37 1536.98 1598.18 1540.55 Q1600.01 1544.09 1603.62 1544.09 Q1607.25 1544.09 1609.06 1540.55 Q1610.89 1536.98 1610.89 1529.87 Q1610.89 1522.75 1609.06 1519.2 Q1607.25 1515.64 1603.62 1515.64 M1603.62 1511.93 Q1609.43 1511.93 1612.49 1516.54 Q1615.56 1521.12 1615.56 1529.87 Q1615.56 1538.6 1612.49 1543.21 Q1609.43 1547.79 1603.62 1547.79 Q1597.81 1547.79 1594.73 1543.21 Q1591.68 1538.6 1591.68 1529.87 Q1591.68 1521.12 1594.73 1516.54 Q1597.81 1511.93 1603.62 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M2047.14 1516.63 L2035.34 1535.08 L2047.14 1535.08 L2047.14 1516.63 M2045.91 1512.56 L2051.79 1512.56 L2051.79 1535.08 L2056.72 1535.08 L2056.72 1538.97 L2051.79 1538.97 L2051.79 1547.12 L2047.14 1547.12 L2047.14 1538.97 L2031.54 1538.97 L2031.54 1534.46 L2045.91 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M2071.79 1515.64 Q2068.18 1515.64 2066.35 1519.2 Q2064.55 1522.75 2064.55 1529.87 Q2064.55 1536.98 2066.35 1540.55 Q2068.18 1544.09 2071.79 1544.09 Q2075.43 1544.09 2077.23 1540.55 Q2079.06 1536.98 2079.06 1529.87 Q2079.06 1522.75 2077.23 1519.2 Q2075.43 1515.64 2071.79 1515.64 M2071.79 1511.93 Q2077.6 1511.93 2080.66 1516.54 Q2083.74 1521.12 2083.74 1529.87 Q2083.74 1538.6 2080.66 1543.21 Q2077.6 1547.79 2071.79 1547.79 Q2065.98 1547.79 2062.9 1543.21 Q2059.85 1538.6 2059.85 1529.87 Q2059.85 1521.12 2062.9 1516.54 Q2065.98 1511.93 2071.79 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1126.42 2352.76,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,483.503 2352.76,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 174.862,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1447.87 200.997,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1126.42 200.997,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,804.96 200.997,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,483.503 200.997,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,162.047 200.997,162.047 \n",
" \"/>\n",
"<path clip-path=\"url(#clip900)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip900)\" d=\"M 0 0 M1265.96 76.7889 Q1262.8 84.8907 1259.8 87.3618 Q1256.8 89.8329 1251.78 89.8329 L1245.82 89.8329 L1245.82 83.5945 L1250.2 83.5945 Q1253.28 83.5945 1254.98 82.1361 Q1256.68 80.6778 1258.75 75.2496 L1260.08 71.8468 L1241.73 27.2059 L1249.63 27.2059 L1263.81 62.6918 L1277.99 27.2059 L1285.89 27.2059 L1265.96 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip902)\" cx=\"236.501\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"283.196\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"329.892\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"376.588\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"423.284\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"469.98\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"516.676\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"563.371\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"610.067\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"656.763\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"703.459\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"750.155\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"796.851\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"843.546\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"890.242\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"936.938\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"983.634\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1030.33\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1077.03\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1123.72\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1170.42\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1217.11\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1263.81\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1310.5\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1357.2\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1403.9\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1450.59\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1497.29\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1543.98\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1590.68\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1637.38\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1684.07\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1730.77\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1777.46\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1824.16\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1870.85\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1917.55\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"1964.25\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2010.94\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2057.64\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2104.33\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2151.03\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2197.73\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2244.42\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip902)\" cx=\"2291.12\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip940\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip940)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip941\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip940)\" d=\"\n",
"M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip942\">\n",
" <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 189.805,1486.45 189.805,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 656.763,1486.45 656.763,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1123.72,1486.45 1123.72,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1590.68,1486.45 1590.68,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2057.64,1486.45 2057.64,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 189.805,1486.45 189.805,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 656.763,1486.45 656.763,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1123.72,1486.45 1123.72,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1590.68,1486.45 1590.68,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2057.64,1486.45 2057.64,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip940)\" d=\"M 0 0 M189.805 1515.64 Q186.194 1515.64 184.365 1519.2 Q182.559 1522.75 182.559 1529.87 Q182.559 1536.98 184.365 1540.55 Q186.194 1544.09 189.805 1544.09 Q193.439 1544.09 195.244 1540.55 Q197.073 1536.98 197.073 1529.87 Q197.073 1522.75 195.244 1519.2 Q193.439 1515.64 189.805 1515.64 M189.805 1511.93 Q195.615 1511.93 198.67 1516.54 Q201.749 1521.12 201.749 1529.87 Q201.749 1538.6 198.67 1543.21 Q195.615 1547.79 189.805 1547.79 Q183.995 1547.79 180.916 1543.21 Q177.86 1538.6 177.86 1529.87 Q177.86 1521.12 180.916 1516.54 Q183.995 1511.93 189.805 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M633.638 1543.18 L641.277 1543.18 L641.277 1516.82 L632.967 1518.49 L632.967 1514.23 L641.231 1512.56 L645.907 1512.56 L645.907 1543.18 L653.545 1543.18 L653.545 1547.12 L633.638 1547.12 L633.638 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M668.615 1515.64 Q665.004 1515.64 663.175 1519.2 Q661.37 1522.75 661.37 1529.87 Q661.37 1536.98 663.175 1540.55 Q665.004 1544.09 668.615 1544.09 Q672.249 1544.09 674.055 1540.55 Q675.883 1536.98 675.883 1529.87 Q675.883 1522.75 674.055 1519.2 Q672.249 1515.64 668.615 1515.64 M668.615 1511.93 Q674.425 1511.93 677.481 1516.54 Q680.559 1521.12 680.559 1529.87 Q680.559 1538.6 677.481 1543.21 Q674.425 1547.79 668.615 1547.79 Q662.805 1547.79 659.726 1543.21 Q656.67 1538.6 656.67 1529.87 Q656.67 1521.12 659.726 1516.54 Q662.805 1511.93 668.615 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M1104.87 1543.18 L1121.19 1543.18 L1121.19 1547.12 L1099.24 1547.12 L1099.24 1543.18 Q1101.9 1540.43 1106.49 1535.8 Q1111.09 1531.15 1112.27 1529.81 Q1114.52 1527.28 1115.4 1525.55 Q1116.3 1523.79 1116.3 1522.1 Q1116.3 1519.34 1114.36 1517.61 Q1112.44 1515.87 1109.33 1515.87 Q1107.14 1515.87 1104.68 1516.63 Q1102.25 1517.4 1099.47 1518.95 L1099.47 1514.23 Q1102.3 1513.09 1104.75 1512.51 Q1107.21 1511.93 1109.24 1511.93 Q1114.61 1511.93 1117.81 1514.62 Q1121 1517.31 1121 1521.8 Q1121 1523.93 1120.19 1525.85 Q1119.4 1527.74 1117.3 1530.34 Q1116.72 1531.01 1113.62 1534.23 Q1110.52 1537.42 1104.87 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M1136.26 1515.64 Q1132.65 1515.64 1130.82 1519.2 Q1129.01 1522.75 1129.01 1529.87 Q1129.01 1536.98 1130.82 1540.55 Q1132.65 1544.09 1136.26 1544.09 Q1139.89 1544.09 1141.7 1540.55 Q1143.52 1536.98 1143.52 1529.87 Q1143.52 1522.75 1141.7 1519.2 Q1139.89 1515.64 1136.26 1515.64 M1136.26 1511.93 Q1142.07 1511.93 1145.12 1516.54 Q1148.2 1521.12 1148.2 1529.87 Q1148.2 1538.6 1145.12 1543.21 Q1142.07 1547.79 1136.26 1547.79 Q1130.45 1547.79 1127.37 1543.21 Q1124.31 1538.6 1124.31 1529.87 Q1124.31 1521.12 1127.37 1516.54 Q1130.45 1511.93 1136.26 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M1581.42 1528.49 Q1584.78 1529.2 1586.65 1531.47 Q1588.55 1533.74 1588.55 1537.07 Q1588.55 1542.19 1585.03 1544.99 Q1581.51 1547.79 1575.03 1547.79 Q1572.86 1547.79 1570.54 1547.35 Q1568.25 1546.93 1565.8 1546.08 L1565.8 1541.56 Q1567.74 1542.7 1570.05 1543.28 Q1572.37 1543.86 1574.89 1543.86 Q1579.29 1543.86 1581.58 1542.12 Q1583.9 1540.38 1583.9 1537.07 Q1583.9 1534.02 1581.74 1532.31 Q1579.62 1530.57 1575.8 1530.57 L1571.77 1530.57 L1571.77 1526.73 L1575.98 1526.73 Q1579.43 1526.73 1581.26 1525.36 Q1583.09 1523.97 1583.09 1521.38 Q1583.09 1518.72 1581.19 1517.31 Q1579.31 1515.87 1575.8 1515.87 Q1573.87 1515.87 1571.68 1516.29 Q1569.48 1516.7 1566.84 1517.58 L1566.84 1513.42 Q1569.5 1512.68 1571.81 1512.31 Q1574.15 1511.93 1576.21 1511.93 Q1581.54 1511.93 1584.64 1514.37 Q1587.74 1516.77 1587.74 1520.89 Q1587.74 1523.76 1586.1 1525.75 Q1584.45 1527.72 1581.42 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M1603.62 1515.64 Q1600.01 1515.64 1598.18 1519.2 Q1596.37 1522.75 1596.37 1529.87 Q1596.37 1536.98 1598.18 1540.55 Q1600.01 1544.09 1603.62 1544.09 Q1607.25 1544.09 1609.06 1540.55 Q1610.89 1536.98 1610.89 1529.87 Q1610.89 1522.75 1609.06 1519.2 Q1607.25 1515.64 1603.62 1515.64 M1603.62 1511.93 Q1609.43 1511.93 1612.49 1516.54 Q1615.56 1521.12 1615.56 1529.87 Q1615.56 1538.6 1612.49 1543.21 Q1609.43 1547.79 1603.62 1547.79 Q1597.81 1547.79 1594.73 1543.21 Q1591.68 1538.6 1591.68 1529.87 Q1591.68 1521.12 1594.73 1516.54 Q1597.81 1511.93 1603.62 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M2047.14 1516.63 L2035.34 1535.08 L2047.14 1535.08 L2047.14 1516.63 M2045.91 1512.56 L2051.79 1512.56 L2051.79 1535.08 L2056.72 1535.08 L2056.72 1538.97 L2051.79 1538.97 L2051.79 1547.12 L2047.14 1547.12 L2047.14 1538.97 L2031.54 1538.97 L2031.54 1534.46 L2045.91 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M2071.79 1515.64 Q2068.18 1515.64 2066.35 1519.2 Q2064.55 1522.75 2064.55 1529.87 Q2064.55 1536.98 2066.35 1540.55 Q2068.18 1544.09 2071.79 1544.09 Q2075.43 1544.09 2077.23 1540.55 Q2079.06 1536.98 2079.06 1529.87 Q2079.06 1522.75 2077.23 1519.2 Q2075.43 1515.64 2071.79 1515.64 M2071.79 1511.93 Q2077.6 1511.93 2080.66 1516.54 Q2083.74 1521.12 2083.74 1529.87 Q2083.74 1538.6 2080.66 1543.21 Q2077.6 1547.79 2071.79 1547.79 Q2065.98 1547.79 2062.9 1543.21 Q2059.85 1538.6 2059.85 1529.87 Q2059.85 1521.12 2062.9 1516.54 Q2065.98 1511.93 2071.79 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1126.42 2352.76,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,483.503 2352.76,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip942)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 174.862,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1447.87 200.997,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1126.42 200.997,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,804.96 200.997,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,483.503 200.997,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip940)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,162.047 200.997,162.047 \n",
" \"/>\n",
"<path clip-path=\"url(#clip940)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip940)\" d=\"M 0 0 M1246.61 27.2059 L1282.02 27.2059 L1282.02 34.0114 L1253.99 66.6212 L1282.02 66.6212 L1282.02 72.576 L1245.6 72.576 L1245.6 65.7705 L1273.63 33.1607 L1246.61 33.1607 L1246.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip942)\" cx=\"236.501\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"283.196\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"329.892\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"376.588\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"423.284\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"469.98\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"516.676\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"563.371\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"610.067\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"656.763\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"703.459\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"750.155\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"796.851\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"843.546\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"890.242\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"936.938\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"983.634\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1030.33\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1077.03\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1123.72\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1170.42\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1217.11\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1263.81\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1310.5\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1357.2\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1403.9\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1450.59\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1497.29\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1543.98\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1590.68\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1637.38\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1684.07\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1730.77\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1777.46\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1824.16\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1870.85\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1917.55\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"1964.25\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2010.94\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2057.64\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2104.33\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2151.03\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2197.73\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2244.42\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip942)\" cx=\"2291.12\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plotFinalDisplacement(name)"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip980\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip980)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip981\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip980)\" d=\"\n",
"M112.177 1486.45 L2352.76 1486.45 L2352.76 123.472 L112.177 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip982\">\n",
" <rect x=\"112\" y=\"123\" width=\"2242\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 131.553,1486.45 131.553,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 571.919,1486.45 571.919,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.28,1486.45 1012.28,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1452.65,1486.45 1452.65,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1893.01,1486.45 1893.01,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2333.38,1486.45 2333.38,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 131.553,1486.45 131.553,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 571.919,1486.45 571.919,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,1486.45 1012.28,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1452.65,1486.45 1452.65,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1893.01,1486.45 1893.01,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2333.38,1486.45 2333.38,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip980)\" d=\"M 0 0 M131.553 1515.64 Q127.942 1515.64 126.113 1519.2 Q124.308 1522.75 124.308 1529.87 Q124.308 1536.98 126.113 1540.55 Q127.942 1544.09 131.553 1544.09 Q135.187 1544.09 136.993 1540.55 Q138.822 1536.98 138.822 1529.87 Q138.822 1522.75 136.993 1519.2 Q135.187 1515.64 131.553 1515.64 M131.553 1511.93 Q137.363 1511.93 140.419 1516.54 Q143.498 1521.12 143.498 1529.87 Q143.498 1538.6 140.419 1543.21 Q137.363 1547.79 131.553 1547.79 Q125.743 1547.79 122.664 1543.21 Q119.609 1538.6 119.609 1529.87 Q119.609 1521.12 122.664 1516.54 Q125.743 1511.93 131.553 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M548.794 1543.18 L556.433 1543.18 L556.433 1516.82 L548.122 1518.49 L548.122 1514.23 L556.386 1512.56 L561.062 1512.56 L561.062 1543.18 L568.701 1543.18 L568.701 1547.12 L548.794 1547.12 L548.794 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M583.77 1515.64 Q580.159 1515.64 578.331 1519.2 Q576.525 1522.75 576.525 1529.87 Q576.525 1536.98 578.331 1540.55 Q580.159 1544.09 583.77 1544.09 Q587.405 1544.09 589.21 1540.55 Q591.039 1536.98 591.039 1529.87 Q591.039 1522.75 589.21 1519.2 Q587.405 1515.64 583.77 1515.64 M583.77 1511.93 Q589.581 1511.93 592.636 1516.54 Q595.715 1521.12 595.715 1529.87 Q595.715 1538.6 592.636 1543.21 Q589.581 1547.79 583.77 1547.79 Q577.96 1547.79 574.882 1543.21 Q571.826 1538.6 571.826 1529.87 Q571.826 1521.12 574.882 1516.54 Q577.96 1511.93 583.77 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M993.43 1543.18 L1009.75 1543.18 L1009.75 1547.12 L987.805 1547.12 L987.805 1543.18 Q990.467 1540.43 995.05 1535.8 Q999.657 1531.15 1000.84 1529.81 Q1003.08 1527.28 1003.96 1525.55 Q1004.86 1523.79 1004.86 1522.1 Q1004.86 1519.34 1002.92 1517.61 Q1001 1515.87 997.897 1515.87 Q995.698 1515.87 993.245 1516.63 Q990.814 1517.4 988.036 1518.95 L988.036 1514.23 Q990.86 1513.09 993.314 1512.51 Q995.768 1511.93 997.805 1511.93 Q1003.18 1511.93 1006.37 1514.62 Q1009.56 1517.31 1009.56 1521.8 Q1009.56 1523.93 1008.75 1525.85 Q1007.97 1527.74 1005.86 1530.34 Q1005.28 1531.01 1002.18 1534.23 Q999.078 1537.42 993.43 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1024.82 1515.64 Q1021.21 1515.64 1019.38 1519.2 Q1017.57 1522.75 1017.57 1529.87 Q1017.57 1536.98 1019.38 1540.55 Q1021.21 1544.09 1024.82 1544.09 Q1028.45 1544.09 1030.26 1540.55 Q1032.09 1536.98 1032.09 1529.87 Q1032.09 1522.75 1030.26 1519.2 Q1028.45 1515.64 1024.82 1515.64 M1024.82 1511.93 Q1030.63 1511.93 1033.68 1516.54 Q1036.76 1521.12 1036.76 1529.87 Q1036.76 1538.6 1033.68 1543.21 Q1030.63 1547.79 1024.82 1547.79 Q1019.01 1547.79 1015.93 1543.21 Q1012.87 1538.6 1012.87 1529.87 Q1012.87 1521.12 1015.93 1516.54 Q1019.01 1511.93 1024.82 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1443.39 1528.49 Q1446.75 1529.2 1448.62 1531.47 Q1450.52 1533.74 1450.52 1537.07 Q1450.52 1542.19 1447 1544.99 Q1443.48 1547.79 1437 1547.79 Q1434.83 1547.79 1432.51 1547.35 Q1430.22 1546.93 1427.77 1546.08 L1427.77 1541.56 Q1429.71 1542.7 1432.02 1543.28 Q1434.34 1543.86 1436.86 1543.86 Q1441.26 1543.86 1443.55 1542.12 Q1445.87 1540.38 1445.87 1537.07 Q1445.87 1534.02 1443.71 1532.31 Q1441.58 1530.57 1437.77 1530.57 L1433.74 1530.57 L1433.74 1526.73 L1437.95 1526.73 Q1441.4 1526.73 1443.23 1525.36 Q1445.06 1523.97 1445.06 1521.38 Q1445.06 1518.72 1443.16 1517.31 Q1441.28 1515.87 1437.77 1515.87 Q1435.84 1515.87 1433.64 1516.29 Q1431.45 1516.7 1428.81 1517.58 L1428.81 1513.42 Q1431.47 1512.68 1433.78 1512.31 Q1436.12 1511.93 1438.18 1511.93 Q1443.51 1511.93 1446.61 1514.37 Q1449.71 1516.77 1449.71 1520.89 Q1449.71 1523.76 1448.07 1525.75 Q1446.42 1527.72 1443.39 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1465.59 1515.64 Q1461.98 1515.64 1460.15 1519.2 Q1458.34 1522.75 1458.34 1529.87 Q1458.34 1536.98 1460.15 1540.55 Q1461.98 1544.09 1465.59 1544.09 Q1469.22 1544.09 1471.03 1540.55 Q1472.86 1536.98 1472.86 1529.87 Q1472.86 1522.75 1471.03 1519.2 Q1469.22 1515.64 1465.59 1515.64 M1465.59 1511.93 Q1471.4 1511.93 1474.45 1516.54 Q1477.53 1521.12 1477.53 1529.87 Q1477.53 1538.6 1474.45 1543.21 Q1471.4 1547.79 1465.59 1547.79 Q1459.78 1547.79 1456.7 1543.21 Q1453.64 1538.6 1453.64 1529.87 Q1453.64 1521.12 1456.7 1516.54 Q1459.78 1511.93 1465.59 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1882.52 1516.63 L1870.71 1535.08 L1882.52 1535.08 L1882.52 1516.63 M1881.29 1512.56 L1887.17 1512.56 L1887.17 1535.08 L1892.1 1535.08 L1892.1 1538.97 L1887.17 1538.97 L1887.17 1547.12 L1882.52 1547.12 L1882.52 1538.97 L1866.92 1538.97 L1866.92 1534.46 L1881.29 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1907.17 1515.64 Q1903.56 1515.64 1901.73 1519.2 Q1899.92 1522.75 1899.92 1529.87 Q1899.92 1536.98 1901.73 1540.55 Q1903.56 1544.09 1907.17 1544.09 Q1910.8 1544.09 1912.61 1540.55 Q1914.44 1536.98 1914.44 1529.87 Q1914.44 1522.75 1912.61 1519.2 Q1910.8 1515.64 1907.17 1515.64 M1907.17 1511.93 Q1912.98 1511.93 1916.04 1516.54 Q1919.11 1521.12 1919.11 1529.87 Q1919.11 1538.6 1916.04 1543.21 Q1912.98 1547.79 1907.17 1547.79 Q1901.36 1547.79 1898.28 1543.21 Q1895.23 1538.6 1895.23 1529.87 Q1895.23 1521.12 1898.28 1516.54 Q1901.36 1511.93 1907.17 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2310.15 1512.56 L2328.51 1512.56 L2328.51 1516.5 L2314.43 1516.5 L2314.43 1524.97 Q2315.45 1524.62 2316.47 1524.46 Q2317.49 1524.27 2318.51 1524.27 Q2324.29 1524.27 2327.67 1527.44 Q2331.05 1530.62 2331.05 1536.03 Q2331.05 1541.61 2327.58 1544.71 Q2324.11 1547.79 2317.79 1547.79 Q2315.61 1547.79 2313.35 1547.42 Q2311.1 1547.05 2308.69 1546.31 L2308.69 1541.61 Q2310.78 1542.74 2313 1543.3 Q2315.22 1543.86 2317.7 1543.86 Q2321.7 1543.86 2324.04 1541.75 Q2326.38 1539.64 2326.38 1536.03 Q2326.38 1532.42 2324.04 1530.31 Q2321.7 1528.21 2317.7 1528.21 Q2315.82 1528.21 2313.95 1528.62 Q2312.1 1529.04 2310.15 1529.92 L2310.15 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2346.12 1515.64 Q2342.51 1515.64 2340.68 1519.2 Q2338.88 1522.75 2338.88 1529.87 Q2338.88 1536.98 2340.68 1540.55 Q2342.51 1544.09 2346.12 1544.09 Q2349.76 1544.09 2351.56 1540.55 Q2353.39 1536.98 2353.39 1529.87 Q2353.39 1522.75 2351.56 1519.2 Q2349.76 1515.64 2346.12 1515.64 M2346.12 1511.93 Q2351.93 1511.93 2354.99 1516.54 Q2358.07 1521.12 2358.07 1529.87 Q2358.07 1538.6 2354.99 1543.21 Q2351.93 1547.79 2346.12 1547.79 Q2340.31 1547.79 2337.23 1543.21 Q2334.18 1538.6 2334.18 1529.87 Q2334.18 1521.12 2337.23 1516.54 Q2340.31 1511.93 2346.12 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 112.177,1451.73 2352.76,1451.73 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 112.177,1128.62 2352.76,1128.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 112.177,805.498 2352.76,805.498 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 112.177,482.379 2352.76,482.379 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 112.177,159.26 2352.76,159.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,1486.45 112.177,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,1451.73 139.064,1451.73 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,1128.62 139.064,1128.62 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,805.498 139.064,805.498 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,482.379 139.064,482.379 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 112.177,159.26 139.064,159.26 \n",
" \"/>\n",
"<path clip-path=\"url(#clip980)\" d=\"M 0 0 M64.2328 1437.53 Q60.6217 1437.53 58.793 1441.1 Q56.9875 1444.64 56.9875 1451.77 Q56.9875 1458.88 58.793 1462.44 Q60.6217 1465.98 64.2328 1465.98 Q67.867 1465.98 69.6726 1462.44 Q71.5013 1458.88 71.5013 1451.77 Q71.5013 1444.64 69.6726 1441.1 Q67.867 1437.53 64.2328 1437.53 M64.2328 1433.83 Q70.0429 1433.83 73.0985 1438.44 Q76.1772 1443.02 76.1772 1451.77 Q76.1772 1460.5 73.0985 1465.1 Q70.0429 1469.69 64.2328 1469.69 Q58.4226 1469.69 55.344 1465.1 Q52.2884 1460.5 52.2884 1451.77 Q52.2884 1443.02 55.344 1438.44 Q58.4226 1433.83 64.2328 1433.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M59.8578 1141.96 L76.1772 1141.96 L76.1772 1145.9 L54.2328 1145.9 L54.2328 1141.96 Q56.8949 1139.21 61.4782 1134.58 Q66.0846 1129.92 67.2652 1128.58 Q69.5105 1126.06 70.3902 1124.32 Q71.2929 1122.56 71.2929 1120.87 Q71.2929 1118.12 69.3485 1116.38 Q67.4272 1114.65 64.3254 1114.65 Q62.1263 1114.65 59.6726 1115.41 Q57.2421 1116.17 54.4643 1117.73 L54.4643 1113 Q57.2884 1111.87 59.7421 1111.29 Q62.1958 1110.71 64.2328 1110.71 Q69.6031 1110.71 72.7976 1113.4 Q75.992 1116.08 75.992 1120.57 Q75.992 1122.7 75.1818 1124.62 Q74.3948 1126.52 72.2883 1129.11 Q71.7096 1129.79 68.6078 1133 Q65.5059 1136.2 59.8578 1141.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M66.5939 792.292 L54.7884 810.741 L66.5939 810.741 L66.5939 792.292 M65.367 788.218 L71.2466 788.218 L71.2466 810.741 L76.1772 810.741 L76.1772 814.629 L71.2466 814.629 L71.2466 822.778 L66.5939 822.778 L66.5939 814.629 L50.9921 814.629 L50.9921 810.116 L65.367 788.218 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M64.6495 480.516 Q61.5013 480.516 59.6495 482.668 Q57.8208 484.821 57.8208 488.571 Q57.8208 492.298 59.6495 494.474 Q61.5013 496.627 64.6495 496.627 Q67.7976 496.627 69.6263 494.474 Q71.4781 492.298 71.4781 488.571 Q71.4781 484.821 69.6263 482.668 Q67.7976 480.516 64.6495 480.516 M73.9318 465.863 L73.9318 470.122 Q72.1726 469.289 70.367 468.849 Q68.5846 468.409 66.8254 468.409 Q62.1958 468.409 59.7421 471.534 Q57.3115 474.659 56.9643 480.978 Q58.33 478.965 60.3902 477.9 Q62.4504 476.812 64.9272 476.812 Q70.1355 476.812 73.1448 479.983 Q76.1772 483.131 76.1772 488.571 Q76.1772 493.895 73.029 497.113 Q69.8809 500.33 64.6495 500.33 Q58.6541 500.33 55.4828 495.747 Q52.3116 491.14 52.3116 482.414 Q52.3116 474.219 56.2004 469.358 Q60.0893 464.474 66.6402 464.474 Q68.3994 464.474 70.1818 464.821 Q71.9874 465.168 73.9318 465.863 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M64.3254 160.128 Q60.9921 160.128 59.0708 161.911 Q57.1726 163.693 57.1726 166.818 Q57.1726 169.943 59.0708 171.725 Q60.9921 173.508 64.3254 173.508 Q67.6587 173.508 69.58 171.725 Q71.5013 169.92 71.5013 166.818 Q71.5013 163.693 69.58 161.911 Q67.6819 160.128 64.3254 160.128 M59.6495 158.138 Q56.6402 157.397 54.9504 155.337 Q53.2838 153.277 53.2838 150.314 Q53.2838 146.17 56.2236 143.763 Q59.1865 141.355 64.3254 141.355 Q69.4874 141.355 72.4272 143.763 Q75.367 146.17 75.367 150.314 Q75.367 153.277 73.6772 155.337 Q72.0105 157.397 69.0244 158.138 Q72.404 158.925 74.279 161.216 Q76.1772 163.508 76.1772 166.818 Q76.1772 171.841 73.0985 174.526 Q70.0429 177.212 64.3254 177.212 Q58.6078 177.212 55.5291 174.526 Q52.4736 171.841 52.4736 166.818 Q52.4736 163.508 54.3717 161.216 Q56.2699 158.925 59.6495 158.138 M57.9365 150.753 Q57.9365 153.439 59.6032 154.943 Q61.293 156.448 64.3254 156.448 Q67.3346 156.448 69.0244 154.943 Q70.7374 153.439 70.7374 150.753 Q70.7374 148.068 69.0244 146.564 Q67.3346 145.059 64.3254 145.059 Q61.293 145.059 59.6032 146.564 Q57.9365 148.068 57.9365 150.753 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1253.61 27.2059 L1237.21 49.2833 L1254.46 72.576 L1245.67 72.576 L1232.47 54.752 L1219.26 72.576 L1210.47 72.576 L1228.09 48.8377 L1211.97 27.2059 L1220.76 27.2059 L1232.79 43.369 L1244.82 27.2059 L1253.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip982)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 175.59,1311.96 219.626,1139.96 263.663,975.306 307.699,828.81 351.736,702.078 395.772,594.526 439.809,504.867 483.846,431.363 527.882,371.985 571.919,324.601 \n",
" 615.955,287.161 659.992,257.811 704.028,234.948 748.065,217.229 792.101,203.554 836.138,193.037 880.174,184.973 924.211,178.805 968.247,174.098 1012.28,170.512 \n",
" 1056.32,167.784 1100.36,165.712 1144.39,164.14 1188.43,162.949 1232.47,162.047 1276.5,273.981 1320.54,443.898 1364.58,610.596 1408.61,760.045 1452.65,889.836 \n",
" 1496.69,1000.34 1540.72,1092.75 1584.76,1168.71 1628.8,1230.22 1672.83,1279.41 1716.87,1318.33 1760.9,1348.88 1804.94,1372.7 1848.98,1391.17 1893.01,1405.44 \n",
" 1937.05,1416.42 1981.09,1424.85 2025.12,1431.29 2069.16,1436.21 2113.2,1439.96 2157.23,1442.81 2201.27,1444.98 2245.31,1446.63 2289.34,1447.87 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip020\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip020)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip021\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip020)\" d=\"\n",
"M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip022\">\n",
" <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 193.696,1486.45 193.696,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 621.741,1486.45 621.741,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1049.79,1486.45 1049.79,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1477.83,1486.45 1477.83,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1905.88,1486.45 1905.88,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2333.92,1486.45 2333.92,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 193.696,1486.45 193.696,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 621.741,1486.45 621.741,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1049.79,1486.45 1049.79,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1477.83,1486.45 1477.83,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1905.88,1486.45 1905.88,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2333.92,1486.45 2333.92,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip020)\" d=\"M 0 0 M193.696 1515.64 Q190.085 1515.64 188.256 1519.2 Q186.451 1522.75 186.451 1529.87 Q186.451 1536.98 188.256 1540.55 Q190.085 1544.09 193.696 1544.09 Q197.33 1544.09 199.136 1540.55 Q200.964 1536.98 200.964 1529.87 Q200.964 1522.75 199.136 1519.2 Q197.33 1515.64 193.696 1515.64 M193.696 1511.93 Q199.506 1511.93 202.562 1516.54 Q205.64 1521.12 205.64 1529.87 Q205.64 1538.6 202.562 1543.21 Q199.506 1547.79 193.696 1547.79 Q187.886 1547.79 184.807 1543.21 Q181.752 1538.6 181.752 1529.87 Q181.752 1521.12 184.807 1516.54 Q187.886 1511.93 193.696 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M598.616 1543.18 L606.255 1543.18 L606.255 1516.82 L597.945 1518.49 L597.945 1514.23 L606.209 1512.56 L610.885 1512.56 L610.885 1543.18 L618.524 1543.18 L618.524 1547.12 L598.616 1547.12 L598.616 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M633.593 1515.64 Q629.982 1515.64 628.153 1519.2 Q626.348 1522.75 626.348 1529.87 Q626.348 1536.98 628.153 1540.55 Q629.982 1544.09 633.593 1544.09 Q637.227 1544.09 639.033 1540.55 Q640.861 1536.98 640.861 1529.87 Q640.861 1522.75 639.033 1519.2 Q637.227 1515.64 633.593 1515.64 M633.593 1511.93 Q639.403 1511.93 642.459 1516.54 Q645.537 1521.12 645.537 1529.87 Q645.537 1538.6 642.459 1543.21 Q639.403 1547.79 633.593 1547.79 Q627.783 1547.79 624.704 1543.21 Q621.649 1538.6 621.649 1529.87 Q621.649 1521.12 624.704 1516.54 Q627.783 1511.93 633.593 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1030.93 1543.18 L1047.25 1543.18 L1047.25 1547.12 L1025.31 1547.12 L1025.31 1543.18 Q1027.97 1540.43 1032.55 1535.8 Q1037.16 1531.15 1038.34 1529.81 Q1040.59 1527.28 1041.46 1525.55 Q1042.37 1523.79 1042.37 1522.1 Q1042.37 1519.34 1040.42 1517.61 Q1038.5 1515.87 1035.4 1515.87 Q1033.2 1515.87 1030.75 1516.63 Q1028.32 1517.4 1025.54 1518.95 L1025.54 1514.23 Q1028.36 1513.09 1030.82 1512.51 Q1033.27 1511.93 1035.31 1511.93 Q1040.68 1511.93 1043.87 1514.62 Q1047.07 1517.31 1047.07 1521.8 Q1047.07 1523.93 1046.26 1525.85 Q1045.47 1527.74 1043.36 1530.34 Q1042.78 1531.01 1039.68 1534.23 Q1036.58 1537.42 1030.93 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1062.32 1515.64 Q1058.71 1515.64 1056.88 1519.2 Q1055.08 1522.75 1055.08 1529.87 Q1055.08 1536.98 1056.88 1540.55 Q1058.71 1544.09 1062.32 1544.09 Q1065.96 1544.09 1067.76 1540.55 Q1069.59 1536.98 1069.59 1529.87 Q1069.59 1522.75 1067.76 1519.2 Q1065.96 1515.64 1062.32 1515.64 M1062.32 1511.93 Q1068.13 1511.93 1071.19 1516.54 Q1074.27 1521.12 1074.27 1529.87 Q1074.27 1538.6 1071.19 1543.21 Q1068.13 1547.79 1062.32 1547.79 Q1056.51 1547.79 1053.43 1543.21 Q1050.38 1538.6 1050.38 1529.87 Q1050.38 1521.12 1053.43 1516.54 Q1056.51 1511.93 1062.32 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1468.57 1528.49 Q1471.93 1529.2 1473.8 1531.47 Q1475.7 1533.74 1475.7 1537.07 Q1475.7 1542.19 1472.18 1544.99 Q1468.66 1547.79 1462.18 1547.79 Q1460.01 1547.79 1457.69 1547.35 Q1455.4 1546.93 1452.95 1546.08 L1452.95 1541.56 Q1454.89 1542.7 1457.21 1543.28 Q1459.52 1543.86 1462.04 1543.86 Q1466.44 1543.86 1468.73 1542.12 Q1471.05 1540.38 1471.05 1537.07 Q1471.05 1534.02 1468.9 1532.31 Q1466.77 1530.57 1462.95 1530.57 L1458.92 1530.57 L1458.92 1526.73 L1463.13 1526.73 Q1466.58 1526.73 1468.41 1525.36 Q1470.24 1523.97 1470.24 1521.38 Q1470.24 1518.72 1468.34 1517.31 Q1466.47 1515.87 1462.95 1515.87 Q1461.03 1515.87 1458.83 1516.29 Q1456.63 1516.7 1453.99 1517.58 L1453.99 1513.42 Q1456.65 1512.68 1458.97 1512.31 Q1461.3 1511.93 1463.36 1511.93 Q1468.69 1511.93 1471.79 1514.37 Q1474.89 1516.77 1474.89 1520.89 Q1474.89 1523.76 1473.25 1525.75 Q1471.6 1527.72 1468.57 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1490.77 1515.64 Q1487.16 1515.64 1485.33 1519.2 Q1483.53 1522.75 1483.53 1529.87 Q1483.53 1536.98 1485.33 1540.55 Q1487.16 1544.09 1490.77 1544.09 Q1494.41 1544.09 1496.21 1540.55 Q1498.04 1536.98 1498.04 1529.87 Q1498.04 1522.75 1496.21 1519.2 Q1494.41 1515.64 1490.77 1515.64 M1490.77 1511.93 Q1496.58 1511.93 1499.64 1516.54 Q1502.72 1521.12 1502.72 1529.87 Q1502.72 1538.6 1499.64 1543.21 Q1496.58 1547.79 1490.77 1547.79 Q1484.96 1547.79 1481.88 1543.21 Q1478.83 1538.6 1478.83 1529.87 Q1478.83 1521.12 1481.88 1516.54 Q1484.96 1511.93 1490.77 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1895.38 1516.63 L1883.57 1535.08 L1895.38 1535.08 L1895.38 1516.63 M1894.15 1512.56 L1900.03 1512.56 L1900.03 1535.08 L1904.96 1535.08 L1904.96 1538.97 L1900.03 1538.97 L1900.03 1547.12 L1895.38 1547.12 L1895.38 1538.97 L1879.78 1538.97 L1879.78 1534.46 L1894.15 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1920.03 1515.64 Q1916.42 1515.64 1914.59 1519.2 Q1912.79 1522.75 1912.79 1529.87 Q1912.79 1536.98 1914.59 1540.55 Q1916.42 1544.09 1920.03 1544.09 Q1923.67 1544.09 1925.47 1540.55 Q1927.3 1536.98 1927.3 1529.87 Q1927.3 1522.75 1925.47 1519.2 Q1923.67 1515.64 1920.03 1515.64 M1920.03 1511.93 Q1925.84 1511.93 1928.9 1516.54 Q1931.98 1521.12 1931.98 1529.87 Q1931.98 1538.6 1928.9 1543.21 Q1925.84 1547.79 1920.03 1547.79 Q1914.22 1547.79 1911.14 1543.21 Q1908.09 1538.6 1908.09 1529.87 Q1908.09 1521.12 1911.14 1516.54 Q1914.22 1511.93 1920.03 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M2310.69 1512.56 L2329.05 1512.56 L2329.05 1516.5 L2314.98 1516.5 L2314.98 1524.97 Q2315.99 1524.62 2317.01 1524.46 Q2318.03 1524.27 2319.05 1524.27 Q2324.84 1524.27 2328.22 1527.44 Q2331.6 1530.62 2331.6 1536.03 Q2331.6 1541.61 2328.12 1544.71 Q2324.65 1547.79 2318.33 1547.79 Q2316.16 1547.79 2313.89 1547.42 Q2311.64 1547.05 2309.23 1546.31 L2309.23 1541.61 Q2311.32 1542.74 2313.54 1543.3 Q2315.76 1543.86 2318.24 1543.86 Q2322.24 1543.86 2324.58 1541.75 Q2326.92 1539.64 2326.92 1536.03 Q2326.92 1532.42 2324.58 1530.31 Q2322.24 1528.21 2318.24 1528.21 Q2316.36 1528.21 2314.49 1528.62 Q2312.64 1529.04 2310.69 1529.92 L2310.69 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M2346.66 1515.64 Q2343.05 1515.64 2341.23 1519.2 Q2339.42 1522.75 2339.42 1529.87 Q2339.42 1536.98 2341.23 1540.55 Q2343.05 1544.09 2346.66 1544.09 Q2350.3 1544.09 2352.1 1540.55 Q2353.93 1536.98 2353.93 1529.87 Q2353.93 1522.75 2352.1 1519.2 Q2350.3 1515.64 2346.66 1515.64 M2346.66 1511.93 Q2352.48 1511.93 2355.53 1516.54 Q2358.61 1521.12 2358.61 1529.87 Q2358.61 1538.6 2355.53 1543.21 Q2352.48 1547.79 2346.66 1547.79 Q2340.85 1547.79 2337.78 1543.21 Q2334.72 1538.6 2334.72 1529.87 Q2334.72 1521.12 2337.78 1516.54 Q2340.85 1511.93 2346.66 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1126.42 2352.76,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,483.503 2352.76,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip022)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 174.862,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1447.87 200.997,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1126.42 200.997,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,804.96 200.997,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,483.503 200.997,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip020)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,162.047 200.997,162.047 \n",
" \"/>\n",
"<path clip-path=\"url(#clip020)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip020)\" d=\"M 0 0 M1265.96 76.7889 Q1262.8 84.8907 1259.8 87.3618 Q1256.8 89.8329 1251.78 89.8329 L1245.82 89.8329 L1245.82 83.5945 L1250.2 83.5945 Q1253.28 83.5945 1254.98 82.1361 Q1256.68 80.6778 1258.75 75.2496 L1260.08 71.8468 L1241.73 27.2059 L1249.63 27.2059 L1263.81 62.6918 L1277.99 27.2059 L1285.89 27.2059 L1265.96 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip022)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 236.501,1447.87 279.305,1447.87 322.11,1447.87 364.914,1447.87 407.719,1447.87 450.523,1447.87 493.328,1447.87 536.132,1447.87 578.937,1447.87 621.741,1447.87 \n",
" 664.546,1447.87 707.35,1447.87 750.155,1447.87 792.959,1447.87 835.764,1447.87 878.568,1447.87 921.373,1447.87 964.177,1447.87 1006.98,1447.87 1049.79,1447.87 \n",
" 1092.59,1447.87 1135.4,1447.87 1178.2,1447.87 1221,1447.87 1263.81,1447.87 1306.61,1447.87 1349.42,1447.87 1392.22,1447.87 1435.03,1447.87 1477.83,1447.87 \n",
" 1520.64,1447.87 1563.44,1447.87 1606.25,1447.87 1649.05,1447.87 1691.85,1447.87 1734.66,1447.87 1777.46,1447.87 1820.27,1447.87 1863.07,1447.87 1905.88,1447.87 \n",
" 1948.68,1447.87 1991.49,1447.87 2034.29,1447.87 2077.09,1447.87 2119.9,1447.87 2162.7,1447.87 2205.51,1447.87 2248.31,1447.87 2291.12,1447.87 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip060\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip060)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip061\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip060)\" d=\"\n",
"M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip062\">\n",
" <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 193.696,1486.45 193.696,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 621.741,1486.45 621.741,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1049.79,1486.45 1049.79,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1477.83,1486.45 1477.83,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1905.88,1486.45 1905.88,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2333.92,1486.45 2333.92,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 193.696,1486.45 193.696,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 621.741,1486.45 621.741,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1049.79,1486.45 1049.79,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1477.83,1486.45 1477.83,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1905.88,1486.45 1905.88,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2333.92,1486.45 2333.92,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip060)\" d=\"M 0 0 M193.696 1515.64 Q190.085 1515.64 188.256 1519.2 Q186.451 1522.75 186.451 1529.87 Q186.451 1536.98 188.256 1540.55 Q190.085 1544.09 193.696 1544.09 Q197.33 1544.09 199.136 1540.55 Q200.964 1536.98 200.964 1529.87 Q200.964 1522.75 199.136 1519.2 Q197.33 1515.64 193.696 1515.64 M193.696 1511.93 Q199.506 1511.93 202.562 1516.54 Q205.64 1521.12 205.64 1529.87 Q205.64 1538.6 202.562 1543.21 Q199.506 1547.79 193.696 1547.79 Q187.886 1547.79 184.807 1543.21 Q181.752 1538.6 181.752 1529.87 Q181.752 1521.12 184.807 1516.54 Q187.886 1511.93 193.696 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M598.616 1543.18 L606.255 1543.18 L606.255 1516.82 L597.945 1518.49 L597.945 1514.23 L606.209 1512.56 L610.885 1512.56 L610.885 1543.18 L618.524 1543.18 L618.524 1547.12 L598.616 1547.12 L598.616 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M633.593 1515.64 Q629.982 1515.64 628.153 1519.2 Q626.348 1522.75 626.348 1529.87 Q626.348 1536.98 628.153 1540.55 Q629.982 1544.09 633.593 1544.09 Q637.227 1544.09 639.033 1540.55 Q640.861 1536.98 640.861 1529.87 Q640.861 1522.75 639.033 1519.2 Q637.227 1515.64 633.593 1515.64 M633.593 1511.93 Q639.403 1511.93 642.459 1516.54 Q645.537 1521.12 645.537 1529.87 Q645.537 1538.6 642.459 1543.21 Q639.403 1547.79 633.593 1547.79 Q627.783 1547.79 624.704 1543.21 Q621.649 1538.6 621.649 1529.87 Q621.649 1521.12 624.704 1516.54 Q627.783 1511.93 633.593 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1030.93 1543.18 L1047.25 1543.18 L1047.25 1547.12 L1025.31 1547.12 L1025.31 1543.18 Q1027.97 1540.43 1032.55 1535.8 Q1037.16 1531.15 1038.34 1529.81 Q1040.59 1527.28 1041.46 1525.55 Q1042.37 1523.79 1042.37 1522.1 Q1042.37 1519.34 1040.42 1517.61 Q1038.5 1515.87 1035.4 1515.87 Q1033.2 1515.87 1030.75 1516.63 Q1028.32 1517.4 1025.54 1518.95 L1025.54 1514.23 Q1028.36 1513.09 1030.82 1512.51 Q1033.27 1511.93 1035.31 1511.93 Q1040.68 1511.93 1043.87 1514.62 Q1047.07 1517.31 1047.07 1521.8 Q1047.07 1523.93 1046.26 1525.85 Q1045.47 1527.74 1043.36 1530.34 Q1042.78 1531.01 1039.68 1534.23 Q1036.58 1537.42 1030.93 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1062.32 1515.64 Q1058.71 1515.64 1056.88 1519.2 Q1055.08 1522.75 1055.08 1529.87 Q1055.08 1536.98 1056.88 1540.55 Q1058.71 1544.09 1062.32 1544.09 Q1065.96 1544.09 1067.76 1540.55 Q1069.59 1536.98 1069.59 1529.87 Q1069.59 1522.75 1067.76 1519.2 Q1065.96 1515.64 1062.32 1515.64 M1062.32 1511.93 Q1068.13 1511.93 1071.19 1516.54 Q1074.27 1521.12 1074.27 1529.87 Q1074.27 1538.6 1071.19 1543.21 Q1068.13 1547.79 1062.32 1547.79 Q1056.51 1547.79 1053.43 1543.21 Q1050.38 1538.6 1050.38 1529.87 Q1050.38 1521.12 1053.43 1516.54 Q1056.51 1511.93 1062.32 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1468.57 1528.49 Q1471.93 1529.2 1473.8 1531.47 Q1475.7 1533.74 1475.7 1537.07 Q1475.7 1542.19 1472.18 1544.99 Q1468.66 1547.79 1462.18 1547.79 Q1460.01 1547.79 1457.69 1547.35 Q1455.4 1546.93 1452.95 1546.08 L1452.95 1541.56 Q1454.89 1542.7 1457.21 1543.28 Q1459.52 1543.86 1462.04 1543.86 Q1466.44 1543.86 1468.73 1542.12 Q1471.05 1540.38 1471.05 1537.07 Q1471.05 1534.02 1468.9 1532.31 Q1466.77 1530.57 1462.95 1530.57 L1458.92 1530.57 L1458.92 1526.73 L1463.13 1526.73 Q1466.58 1526.73 1468.41 1525.36 Q1470.24 1523.97 1470.24 1521.38 Q1470.24 1518.72 1468.34 1517.31 Q1466.47 1515.87 1462.95 1515.87 Q1461.03 1515.87 1458.83 1516.29 Q1456.63 1516.7 1453.99 1517.58 L1453.99 1513.42 Q1456.65 1512.68 1458.97 1512.31 Q1461.3 1511.93 1463.36 1511.93 Q1468.69 1511.93 1471.79 1514.37 Q1474.89 1516.77 1474.89 1520.89 Q1474.89 1523.76 1473.25 1525.75 Q1471.6 1527.72 1468.57 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1490.77 1515.64 Q1487.16 1515.64 1485.33 1519.2 Q1483.53 1522.75 1483.53 1529.87 Q1483.53 1536.98 1485.33 1540.55 Q1487.16 1544.09 1490.77 1544.09 Q1494.41 1544.09 1496.21 1540.55 Q1498.04 1536.98 1498.04 1529.87 Q1498.04 1522.75 1496.21 1519.2 Q1494.41 1515.64 1490.77 1515.64 M1490.77 1511.93 Q1496.58 1511.93 1499.64 1516.54 Q1502.72 1521.12 1502.72 1529.87 Q1502.72 1538.6 1499.64 1543.21 Q1496.58 1547.79 1490.77 1547.79 Q1484.96 1547.79 1481.88 1543.21 Q1478.83 1538.6 1478.83 1529.87 Q1478.83 1521.12 1481.88 1516.54 Q1484.96 1511.93 1490.77 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1895.38 1516.63 L1883.57 1535.08 L1895.38 1535.08 L1895.38 1516.63 M1894.15 1512.56 L1900.03 1512.56 L1900.03 1535.08 L1904.96 1535.08 L1904.96 1538.97 L1900.03 1538.97 L1900.03 1547.12 L1895.38 1547.12 L1895.38 1538.97 L1879.78 1538.97 L1879.78 1534.46 L1894.15 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1920.03 1515.64 Q1916.42 1515.64 1914.59 1519.2 Q1912.79 1522.75 1912.79 1529.87 Q1912.79 1536.98 1914.59 1540.55 Q1916.42 1544.09 1920.03 1544.09 Q1923.67 1544.09 1925.47 1540.55 Q1927.3 1536.98 1927.3 1529.87 Q1927.3 1522.75 1925.47 1519.2 Q1923.67 1515.64 1920.03 1515.64 M1920.03 1511.93 Q1925.84 1511.93 1928.9 1516.54 Q1931.98 1521.12 1931.98 1529.87 Q1931.98 1538.6 1928.9 1543.21 Q1925.84 1547.79 1920.03 1547.79 Q1914.22 1547.79 1911.14 1543.21 Q1908.09 1538.6 1908.09 1529.87 Q1908.09 1521.12 1911.14 1516.54 Q1914.22 1511.93 1920.03 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M2310.69 1512.56 L2329.05 1512.56 L2329.05 1516.5 L2314.98 1516.5 L2314.98 1524.97 Q2315.99 1524.62 2317.01 1524.46 Q2318.03 1524.27 2319.05 1524.27 Q2324.84 1524.27 2328.22 1527.44 Q2331.6 1530.62 2331.6 1536.03 Q2331.6 1541.61 2328.12 1544.71 Q2324.65 1547.79 2318.33 1547.79 Q2316.16 1547.79 2313.89 1547.42 Q2311.64 1547.05 2309.23 1546.31 L2309.23 1541.61 Q2311.32 1542.74 2313.54 1543.3 Q2315.76 1543.86 2318.24 1543.86 Q2322.24 1543.86 2324.58 1541.75 Q2326.92 1539.64 2326.92 1536.03 Q2326.92 1532.42 2324.58 1530.31 Q2322.24 1528.21 2318.24 1528.21 Q2316.36 1528.21 2314.49 1528.62 Q2312.64 1529.04 2310.69 1529.92 L2310.69 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M2346.66 1515.64 Q2343.05 1515.64 2341.23 1519.2 Q2339.42 1522.75 2339.42 1529.87 Q2339.42 1536.98 2341.23 1540.55 Q2343.05 1544.09 2346.66 1544.09 Q2350.3 1544.09 2352.1 1540.55 Q2353.93 1536.98 2353.93 1529.87 Q2353.93 1522.75 2352.1 1519.2 Q2350.3 1515.64 2346.66 1515.64 M2346.66 1511.93 Q2352.48 1511.93 2355.53 1516.54 Q2358.61 1521.12 2358.61 1529.87 Q2358.61 1538.6 2355.53 1543.21 Q2352.48 1547.79 2346.66 1547.79 Q2340.85 1547.79 2337.78 1543.21 Q2334.72 1538.6 2334.72 1529.87 Q2334.72 1521.12 2337.78 1516.54 Q2340.85 1511.93 2346.66 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1447.87 2352.76,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,1126.42 2352.76,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,804.96 2352.76,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,483.503 2352.76,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip062)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 174.862,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1486.45 174.862,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1447.87 200.997,1447.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,1126.42 200.997,1126.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,804.96 200.997,804.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,483.503 200.997,483.503 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip060)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 174.862,162.047 200.997,162.047 \n",
" \"/>\n",
"<path clip-path=\"url(#clip060)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip060)\" d=\"M 0 0 M1246.61 27.2059 L1282.02 27.2059 L1282.02 34.0114 L1253.99 66.6212 L1282.02 66.6212 L1282.02 72.576 L1245.6 72.576 L1245.6 65.7705 L1273.63 33.1607 L1246.61 33.1607 L1246.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip062)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 236.501,1447.87 279.305,1447.87 322.11,1447.87 364.914,1447.87 407.719,1447.87 450.523,1447.87 493.328,1447.87 536.132,1447.87 578.937,1447.87 621.741,1447.87 \n",
" 664.546,1447.87 707.35,1447.87 750.155,1447.87 792.959,1447.87 835.764,1447.87 878.568,1447.87 921.373,1447.87 964.177,1447.87 1006.98,1447.87 1049.79,1447.87 \n",
" 1092.59,1447.87 1135.4,1447.87 1178.2,1447.87 1221,1447.87 1263.81,1447.87 1306.61,1447.87 1349.42,1447.87 1392.22,1447.87 1435.03,1447.87 1477.83,1447.87 \n",
" 1520.64,1447.87 1563.44,1447.87 1606.25,1447.87 1649.05,1447.87 1691.85,1447.87 1734.66,1447.87 1777.46,1447.87 1820.27,1447.87 1863.07,1447.87 1905.88,1447.87 \n",
" 1948.68,1447.87 1991.49,1447.87 2034.29,1447.87 2077.09,1447.87 2119.9,1447.87 2162.7,1447.87 2205.51,1447.87 2248.31,1447.87 2291.12,1447.87 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},