-
Notifications
You must be signed in to change notification settings - Fork 0
/
1FloorPreMartin.html
4489 lines (4462 loc) · 218 KB
/
1FloorPreMartin.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="modal.css">
<script type="text/javascript" src="modal.js"></script>
<title>Ground Floor </title>
</head>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 750 1334" style="enable-background:new 0 0 750 1334;" xml:space="preserve">
<style type="text/css">
.st0{fill:#CCCCCC;stroke:#231F20;stroke-linecap:round;stroke-miterlimit:10;}
.st1{fill:#CCCCCC;stroke:#000000;stroke-miterlimit:10;}
.st2{fill:#CCCCCC;stroke:#000000;stroke-width:1.0765;}
.st3{fill:#4D4D4D;stroke:#000000;stroke-width:0.9376;}
.st4{fill:none;stroke:#CCCCCC;stroke-width:2;stroke-miterlimit:10;}
.st5{fill:none;stroke:#CCCCCC;stroke-width:3;stroke-miterlimit:10;}
.st6{fill:none;stroke:#FF0000;stroke-miterlimit:10;}
.st7{fill:none;stroke:#FF0000;stroke-miterlimit:10;stroke-dasharray:4.3329,4.3329;}
.st8{fill:#FFFFFF;}
.st9{stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
.st10{fill:#FFFFFF;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
.st11{fill:#5F5F5F;}
.st12{fill:#8F8F8F;}
.st13{fill:#BFBFBF;}
.st14{fill:#030104;}
.st15{fill:#010002;}
.st16{clip-path:url(#SVGID_2_);}
.st17{clip-path:url(#SVGID_4_);fill:#FFFFFF;}
.st18{clip-path:url(#SVGID_6_);}
.st19{clip-path:url(#SVGID_8_);fill:#FFFFFF;}
.st20{clip-path:url(#SVGID_10_);}
.st21{clip-path:url(#SVGID_12_);}
.st22{clip-path:url(#SVGID_490_);}
.st23{clip-path:url(#SVGID_491_);}
.st24{clip-path:url(#SVGID_492_);}
.st25{clip-path:url(#SVGID_493_);}
.st26{clip-path:url(#SVGID_494_);}
.st27{clip-path:url(#SVGID_495_);}
.st28{clip-path:url(#SVGID_496_);}
.st29{clip-path:url(#SVGID_497_);}
.st30{clip-path:url(#SVGID_498_);}
.st31{clip-path:url(#SVGID_499_);}
.st32{clip-path:url(#SVGID_500_);}
.st33{clip-path:url(#SVGID_501_);}
.st34{clip-path:url(#SVGID_502_);}
.st35{clip-path:url(#SVGID_503_);}
.st36{clip-path:url(#SVGID_504_);}
.st37{clip-path:url(#SVGID_505_);}
.st38{clip-path:url(#SVGID_506_);}
.st39{clip-path:url(#SVGID_507_);}
.st40{clip-path:url(#SVGID_508_);}
.st41{clip-path:url(#SVGID_509_);}
.st42{clip-path:url(#SVGID_510_);}
.st43{clip-path:url(#SVGID_511_);}
.st44{clip-path:url(#SVGID_512_);}
.st45{clip-path:url(#SVGID_513_);}
.st46{clip-path:url(#SVGID_514_);}
.st47{clip-path:url(#SVGID_515_);}
.st48{clip-path:url(#SVGID_516_);}
.st49{clip-path:url(#SVGID_517_);}
.st50{clip-path:url(#SVGID_518_);}
.st51{clip-path:url(#SVGID_519_);}
.st52{clip-path:url(#SVGID_520_);}
.st53{clip-path:url(#SVGID_521_);}
.st54{clip-path:url(#SVGID_522_);}
.st55{clip-path:url(#SVGID_523_);}
.st56{clip-path:url(#SVGID_524_);}
.st57{clip-path:url(#SVGID_525_);}
.st58{clip-path:url(#SVGID_526_);}
.st59{clip-path:url(#SVGID_527_);}
.st60{clip-path:url(#SVGID_528_);}
.st61{clip-path:url(#SVGID_529_);}
.st62{clip-path:url(#SVGID_530_);}
.st63{clip-path:url(#SVGID_531_);}
.st64{clip-path:url(#SVGID_532_);}
.st65{clip-path:url(#SVGID_533_);}
.st66{clip-path:url(#SVGID_534_);}
.st67{clip-path:url(#SVGID_535_);}
.st68{clip-path:url(#SVGID_536_);}
.st69{clip-path:url(#SVGID_537_);}
.st70{clip-path:url(#SVGID_538_);}
.st71{clip-path:url(#SVGID_539_);}
.st72{clip-path:url(#SVGID_540_);}
.st73{clip-path:url(#SVGID_541_);}
.st74{clip-path:url(#SVGID_542_);}
.st75{clip-path:url(#SVGID_543_);}
.st76{clip-path:url(#SVGID_544_);}
.st77{clip-path:url(#SVGID_545_);}
.st78{clip-path:url(#SVGID_546_);}
.st79{clip-path:url(#SVGID_547_);}
.st80{clip-path:url(#SVGID_548_);}
.st81{clip-path:url(#SVGID_549_);}
.st82{clip-path:url(#SVGID_550_);}
.st83{clip-path:url(#SVGID_551_);}
.st84{clip-path:url(#SVGID_552_);}
.st85{clip-path:url(#SVGID_553_);}
.st86{clip-path:url(#SVGID_554_);}
.st87{clip-path:url(#SVGID_555_);}
.st88{clip-path:url(#SVGID_556_);}
.st89{clip-path:url(#SVGID_557_);}
.st90{clip-path:url(#SVGID_558_);}
.st91{clip-path:url(#SVGID_559_);}
.st92{clip-path:url(#SVGID_560_);}
.st93{clip-path:url(#SVGID_561_);}
.st94{clip-path:url(#SVGID_562_);}
.st95{clip-path:url(#SVGID_563_);}
.st96{clip-path:url(#SVGID_564_);}
.st97{clip-path:url(#SVGID_565_);}
.st98{clip-path:url(#SVGID_566_);}
.st99{clip-path:url(#SVGID_567_);}
.st100{clip-path:url(#SVGID_568_);}
.st101{clip-path:url(#SVGID_569_);}
.st102{clip-path:url(#SVGID_570_);}
.st103{clip-path:url(#SVGID_571_);}
.st104{clip-path:url(#SVGID_572_);}
.st105{clip-path:url(#SVGID_573_);}
.st106{clip-path:url(#SVGID_574_);}
.st107{clip-path:url(#SVGID_575_);}
.st108{clip-path:url(#SVGID_576_);}
.st109{clip-path:url(#SVGID_577_);}
.st110{clip-path:url(#SVGID_578_);}
.st111{clip-path:url(#SVGID_579_);}
.st112{clip-path:url(#SVGID_580_);}
.st113{clip-path:url(#SVGID_581_);}
.st114{clip-path:url(#SVGID_582_);}
.st115{clip-path:url(#SVGID_583_);}
.st116{clip-path:url(#SVGID_584_);}
.st117{clip-path:url(#SVGID_585_);}
.st118{clip-path:url(#SVGID_586_);}
.st119{clip-path:url(#SVGID_587_);}
.st120{clip-path:url(#SVGID_588_);}
.st121{clip-path:url(#SVGID_589_);}
.st122{clip-path:url(#SVGID_590_);}
.st123{clip-path:url(#SVGID_591_);}
.st124{clip-path:url(#SVGID_592_);}
.st125{clip-path:url(#SVGID_593_);}
.st126{clip-path:url(#SVGID_594_);}
.st127{clip-path:url(#SVGID_595_);}
.st128{clip-path:url(#SVGID_596_);}
.st129{clip-path:url(#SVGID_597_);}
.st130{clip-path:url(#SVGID_598_);}
.st131{clip-path:url(#SVGID_599_);}
.st132{clip-path:url(#SVGID_600_);}
.st133{clip-path:url(#SVGID_601_);}
.st134{clip-path:url(#SVGID_602_);}
.st135{clip-path:url(#SVGID_603_);}
.st136{clip-path:url(#SVGID_604_);}
.st137{clip-path:url(#SVGID_605_);}
.st138{clip-path:url(#SVGID_606_);}
.st139{clip-path:url(#SVGID_607_);}
.st140{clip-path:url(#SVGID_608_);}
.st141{clip-path:url(#SVGID_609_);}
.st142{clip-path:url(#SVGID_610_);}
.st143{clip-path:url(#SVGID_611_);}
.st144{clip-path:url(#SVGID_612_);}
.st145{clip-path:url(#SVGID_613_);}
.st146{clip-path:url(#SVGID_614_);}
.st147{clip-path:url(#SVGID_615_);}
.st148{clip-path:url(#SVGID_616_);}
.st149{clip-path:url(#SVGID_617_);}
.st150{clip-path:url(#SVGID_618_);}
.st151{clip-path:url(#SVGID_619_);}
.st152{clip-path:url(#SVGID_620_);}
.st153{clip-path:url(#SVGID_621_);}
.st154{clip-path:url(#SVGID_622_);}
.st155{clip-path:url(#SVGID_623_);}
.st156{clip-path:url(#SVGID_624_);}
.st157{clip-path:url(#SVGID_625_);}
.st158{clip-path:url(#SVGID_626_);}
.st159{clip-path:url(#SVGID_627_);}
.st160{clip-path:url(#SVGID_628_);}
.st161{clip-path:url(#SVGID_629_);}
.st162{clip-path:url(#SVGID_630_);}
.st163{clip-path:url(#SVGID_631_);}
.st164{clip-path:url(#SVGID_632_);}
.st165{clip-path:url(#SVGID_633_);}
.st166{clip-path:url(#SVGID_634_);}
.st167{clip-path:url(#SVGID_635_);}
.st168{clip-path:url(#SVGID_636_);}
.st169{clip-path:url(#SVGID_637_);}
.st170{clip-path:url(#SVGID_638_);}
.st171{clip-path:url(#SVGID_639_);}
.st172{clip-path:url(#SVGID_640_);}
.st173{clip-path:url(#SVGID_641_);}
.st174{clip-path:url(#SVGID_642_);}
.st175{clip-path:url(#SVGID_643_);}
.st176{clip-path:url(#SVGID_644_);}
.st177{clip-path:url(#SVGID_645_);}
.st178{clip-path:url(#SVGID_646_);}
.st179{clip-path:url(#SVGID_647_);}
.st180{clip-path:url(#SVGID_648_);}
.st181{clip-path:url(#SVGID_649_);}
.st182{clip-path:url(#SVGID_650_);}
.st183{clip-path:url(#SVGID_651_);}
.st184{clip-path:url(#SVGID_652_);}
.st185{clip-path:url(#SVGID_653_);}
.st186{clip-path:url(#SVGID_654_);}
.st187{clip-path:url(#SVGID_655_);}
.st188{clip-path:url(#SVGID_656_);}
.st189{clip-path:url(#SVGID_657_);}
.st190{clip-path:url(#SVGID_658_);}
.st191{clip-path:url(#SVGID_659_);}
.st192{clip-path:url(#SVGID_660_);}
.st193{clip-path:url(#SVGID_661_);}
.st194{clip-path:url(#SVGID_662_);}
.st195{clip-path:url(#SVGID_663_);}
.st196{clip-path:url(#SVGID_664_);}
.st197{clip-path:url(#SVGID_665_);}
.st198{clip-path:url(#SVGID_666_);}
.st199{clip-path:url(#SVGID_667_);}
.st200{clip-path:url(#SVGID_668_);}
.st201{clip-path:url(#SVGID_669_);}
.st202{clip-path:url(#SVGID_670_);}
.st203{clip-path:url(#SVGID_671_);}
.st204{clip-path:url(#SVGID_672_);}
.st205{clip-path:url(#SVGID_673_);}
.st206{clip-path:url(#SVGID_674_);}
.st207{clip-path:url(#SVGID_675_);}
.st208{clip-path:url(#SVGID_676_);}
.st209{clip-path:url(#SVGID_677_);}
.st210{clip-path:url(#SVGID_678_);}
.st211{clip-path:url(#SVGID_679_);}
.st212{clip-path:url(#SVGID_680_);}
.st213{clip-path:url(#SVGID_681_);}
.st214{clip-path:url(#SVGID_682_);}
.st215{clip-path:url(#SVGID_683_);}
.st216{clip-path:url(#SVGID_684_);}
.st217{clip-path:url(#SVGID_685_);}
.st218{clip-path:url(#SVGID_686_);}
.st219{clip-path:url(#SVGID_687_);}
.st220{clip-path:url(#SVGID_688_);}
.st221{clip-path:url(#SVGID_689_);}
.st222{clip-path:url(#SVGID_690_);}
.st223{clip-path:url(#SVGID_691_);}
.st224{clip-path:url(#SVGID_692_);}
.st225{clip-path:url(#SVGID_693_);}
.st226{clip-path:url(#SVGID_694_);}
.st227{clip-path:url(#SVGID_695_);}
.st228{clip-path:url(#SVGID_696_);}
.st229{clip-path:url(#SVGID_697_);}
.st230{clip-path:url(#SVGID_698_);}
.st231{clip-path:url(#SVGID_699_);}
.st232{clip-path:url(#SVGID_700_);}
.st233{clip-path:url(#SVGID_701_);}
.st234{clip-path:url(#SVGID_702_);}
.st235{clip-path:url(#SVGID_703_);}
.st236{clip-path:url(#SVGID_704_);}
.st237{clip-path:url(#SVGID_705_);}
.st238{clip-path:url(#SVGID_706_);}
.st239{clip-path:url(#SVGID_707_);}
.st240{clip-path:url(#SVGID_708_);}
.st241{clip-path:url(#SVGID_709_);}
.st242{clip-path:url(#SVGID_710_);}
.st243{clip-path:url(#SVGID_711_);}
.st244{clip-path:url(#SVGID_712_);}
.st245{clip-path:url(#SVGID_713_);}
.st246{clip-path:url(#SVGID_714_);}
.st247{clip-path:url(#SVGID_715_);}
.st248{clip-path:url(#SVGID_716_);}
.st249{clip-path:url(#SVGID_717_);}
.st250{clip-path:url(#SVGID_718_);}
.st251{clip-path:url(#SVGID_719_);}
.st252{clip-path:url(#SVGID_720_);}
.st253{clip-path:url(#SVGID_721_);}
.st254{clip-path:url(#SVGID_722_);}
.st255{clip-path:url(#SVGID_723_);}
.st256{clip-path:url(#SVGID_724_);}
.st257{clip-path:url(#SVGID_725_);}
.st258{clip-path:url(#SVGID_726_);}
.st259{clip-path:url(#SVGID_727_);}
.st260{clip-path:url(#SVGID_728_);}
.st261{clip-path:url(#SVGID_729_);}
.st262{clip-path:url(#SVGID_730_);}
.st263{clip-path:url(#SVGID_731_);}
.st264{clip-path:url(#SVGID_732_);}
.st265{clip-path:url(#SVGID_733_);}
.st266{clip-path:url(#SVGID_734_);}
.st267{clip-path:url(#SVGID_735_);}
.st268{clip-path:url(#SVGID_736_);}
.st269{clip-path:url(#SVGID_737_);}
.st270{clip-path:url(#SVGID_738_);}
.st271{clip-path:url(#SVGID_739_);}
.st272{clip-path:url(#SVGID_740_);}
.st273{clip-path:url(#SVGID_741_);}
.st274{clip-path:url(#SVGID_742_);}
.st275{clip-path:url(#SVGID_743_);}
.st276{clip-path:url(#SVGID_744_);}
.st277{clip-path:url(#SVGID_745_);}
.st278{clip-path:url(#SVGID_746_);}
.st279{clip-path:url(#SVGID_747_);}
.st280{clip-path:url(#SVGID_748_);}
.st281{clip-path:url(#SVGID_749_);}
.st282{clip-path:url(#SVGID_750_);}
.st283{clip-path:url(#SVGID_751_);}
.st284{clip-path:url(#SVGID_752_);}
.st285{clip-path:url(#SVGID_753_);}
.st286{clip-path:url(#SVGID_754_);}
.st287{clip-path:url(#SVGID_755_);}
.st288{clip-path:url(#SVGID_756_);}
.st289{clip-path:url(#SVGID_757_);}
.st290{clip-path:url(#SVGID_758_);}
.st291{clip-path:url(#SVGID_759_);}
.st292{clip-path:url(#SVGID_760_);}
.st293{clip-path:url(#SVGID_761_);}
.st294{clip-path:url(#SVGID_762_);}
.st295{clip-path:url(#SVGID_763_);}
.st296{clip-path:url(#SVGID_764_);}
.st297{clip-path:url(#SVGID_765_);}
.st298{clip-path:url(#SVGID_766_);}
.st299{clip-path:url(#SVGID_767_);}
.st300{clip-path:url(#SVGID_768_);}
.st301{clip-path:url(#SVGID_769_);}
.st302{clip-path:url(#SVGID_770_);}
.st303{clip-path:url(#SVGID_771_);}
.st304{clip-path:url(#SVGID_772_);}
.st305{clip-path:url(#SVGID_773_);}
.st306{clip-path:url(#SVGID_774_);}
.st307{clip-path:url(#SVGID_775_);}
.st308{clip-path:url(#SVGID_776_);}
.st309{clip-path:url(#SVGID_777_);}
.st310{clip-path:url(#SVGID_778_);}
.st311{clip-path:url(#SVGID_779_);}
.st312{clip-path:url(#SVGID_780_);}
.st313{clip-path:url(#SVGID_781_);}
.st314{clip-path:url(#SVGID_782_);}
.st315{clip-path:url(#SVGID_783_);}
.st316{clip-path:url(#SVGID_784_);}
.st317{clip-path:url(#SVGID_785_);}
.st318{clip-path:url(#SVGID_786_);}
.st319{clip-path:url(#SVGID_787_);}
.st320{clip-path:url(#SVGID_788_);}
.st321{clip-path:url(#SVGID_789_);}
.st322{clip-path:url(#SVGID_790_);}
.st323{clip-path:url(#SVGID_791_);}
.st324{clip-path:url(#SVGID_792_);}
.st325{clip-path:url(#SVGID_793_);}
.st326{clip-path:url(#SVGID_794_);}
.st327{clip-path:url(#SVGID_795_);}
.st328{clip-path:url(#SVGID_796_);}
.st329{clip-path:url(#SVGID_797_);}
.st330{clip-path:url(#SVGID_798_);}
.st331{clip-path:url(#SVGID_799_);}
.st332{clip-path:url(#SVGID_800_);}
.st333{clip-path:url(#SVGID_801_);}
.st334{clip-path:url(#SVGID_802_);}
.st335{clip-path:url(#SVGID_803_);}
.st336{clip-path:url(#SVGID_804_);}
.st337{clip-path:url(#SVGID_805_);}
.st338{clip-path:url(#SVGID_806_);}
.st339{clip-path:url(#SVGID_807_);}
.st340{clip-path:url(#SVGID_808_);}
.st341{clip-path:url(#SVGID_809_);}
.st342{clip-path:url(#SVGID_810_);}
.st343{clip-path:url(#SVGID_811_);}
.st344{clip-path:url(#SVGID_812_);}
.st345{clip-path:url(#SVGID_813_);}
.st346{clip-path:url(#SVGID_814_);}
.st347{clip-path:url(#SVGID_815_);}
.st348{clip-path:url(#SVGID_816_);}
.st349{clip-path:url(#SVGID_817_);}
.st350{clip-path:url(#SVGID_818_);}
.st351{clip-path:url(#SVGID_819_);}
.st352{clip-path:url(#SVGID_820_);}
.st353{clip-path:url(#SVGID_821_);}
.st354{clip-path:url(#SVGID_822_);}
.st355{clip-path:url(#SVGID_823_);}
.st356{clip-path:url(#SVGID_824_);}
.st357{clip-path:url(#SVGID_825_);}
.st358{clip-path:url(#SVGID_826_);}
.st359{clip-path:url(#SVGID_827_);}
.st360{clip-path:url(#SVGID_828_);}
.st361{clip-path:url(#SVGID_829_);}
.st362{clip-path:url(#SVGID_830_);}
.st363{clip-path:url(#SVGID_831_);}
.st364{clip-path:url(#SVGID_832_);}
.st365{clip-path:url(#SVGID_833_);}
.st366{clip-path:url(#SVGID_834_);}
.st367{clip-path:url(#SVGID_835_);}
.st368{clip-path:url(#SVGID_836_);}
.st369{clip-path:url(#SVGID_837_);}
.st370{clip-path:url(#SVGID_838_);}
.st371{clip-path:url(#SVGID_839_);}
.st372{clip-path:url(#SVGID_840_);}
.st373{clip-path:url(#SVGID_841_);}
.st374{clip-path:url(#SVGID_842_);}
.st375{clip-path:url(#SVGID_843_);}
.st376{clip-path:url(#SVGID_844_);}
.st377{clip-path:url(#SVGID_845_);}
.st378{clip-path:url(#SVGID_846_);}
.st379{clip-path:url(#SVGID_847_);}
.st380{clip-path:url(#SVGID_848_);}
.st381{clip-path:url(#SVGID_849_);}
.st382{clip-path:url(#SVGID_850_);}
.st383{clip-path:url(#SVGID_851_);}
.st384{clip-path:url(#SVGID_852_);}
.st385{clip-path:url(#SVGID_853_);}
.st386{clip-path:url(#SVGID_854_);}
.st387{clip-path:url(#SVGID_855_);}
.st388{clip-path:url(#SVGID_856_);}
.st389{clip-path:url(#SVGID_857_);}
.st390{clip-path:url(#SVGID_858_);}
.st391{clip-path:url(#SVGID_859_);}
.st392{clip-path:url(#SVGID_860_);}
.st393{clip-path:url(#SVGID_861_);}
.st394{clip-path:url(#SVGID_862_);}
.st395{clip-path:url(#SVGID_863_);}
.st396{clip-path:url(#SVGID_864_);}
.st397{clip-path:url(#SVGID_865_);}
.st398{clip-path:url(#SVGID_866_);}
.st399{clip-path:url(#SVGID_867_);}
.st400{clip-path:url(#SVGID_868_);}
.st401{clip-path:url(#SVGID_869_);}
.st402{clip-path:url(#SVGID_870_);}
.st403{clip-path:url(#SVGID_871_);}
.st404{clip-path:url(#SVGID_872_);}
.st405{clip-path:url(#SVGID_873_);}
.st406{clip-path:url(#SVGID_874_);}
.st407{clip-path:url(#SVGID_875_);}
.st408{clip-path:url(#SVGID_876_);}
.st409{clip-path:url(#SVGID_877_);}
.st410{clip-path:url(#SVGID_878_);}
.st411{clip-path:url(#SVGID_879_);}
.st412{clip-path:url(#SVGID_880_);}
.st413{clip-path:url(#SVGID_881_);}
.st414{clip-path:url(#SVGID_882_);}
.st415{clip-path:url(#SVGID_883_);}
.st416{clip-path:url(#SVGID_884_);}
.st417{clip-path:url(#SVGID_885_);}
.st418{clip-path:url(#SVGID_886_);}
.st419{clip-path:url(#SVGID_887_);}
.st420{clip-path:url(#SVGID_888_);}
.st421{clip-path:url(#SVGID_889_);}
.st422{clip-path:url(#SVGID_890_);}
.st423{clip-path:url(#SVGID_891_);}
.st424{clip-path:url(#SVGID_892_);}
.st425{clip-path:url(#SVGID_893_);}
.st426{clip-path:url(#SVGID_894_);}
.st427{clip-path:url(#SVGID_895_);}
.st428{clip-path:url(#SVGID_896_);}
.st429{clip-path:url(#SVGID_897_);}
.st430{clip-path:url(#SVGID_898_);}
.st431{clip-path:url(#SVGID_899_);}
.st432{clip-path:url(#SVGID_900_);}
.st433{clip-path:url(#SVGID_901_);}
.st434{clip-path:url(#SVGID_902_);}
.st435{clip-path:url(#SVGID_903_);}
.st436{clip-path:url(#SVGID_904_);}
.st437{clip-path:url(#SVGID_905_);}
.st438{clip-path:url(#SVGID_906_);}
.st439{clip-path:url(#SVGID_907_);}
.st440{clip-path:url(#SVGID_908_);}
.st441{clip-path:url(#SVGID_909_);}
.st442{clip-path:url(#SVGID_910_);}
.st443{clip-path:url(#SVGID_911_);}
.st444{clip-path:url(#SVGID_912_);}
.st445{clip-path:url(#SVGID_913_);}
.st446{clip-path:url(#SVGID_914_);}
.st447{clip-path:url(#SVGID_915_);}
.st448{clip-path:url(#SVGID_916_);}
.st449{clip-path:url(#SVGID_917_);}
.st450{clip-path:url(#SVGID_918_);}
.st451{clip-path:url(#SVGID_919_);}
.st452{clip-path:url(#SVGID_920_);}
.st453{clip-path:url(#SVGID_921_);}
.st454{clip-path:url(#SVGID_922_);}
.st455{clip-path:url(#SVGID_923_);}
.st456{clip-path:url(#SVGID_924_);}
.st457{clip-path:url(#SVGID_925_);}
.st458{clip-path:url(#SVGID_926_);}
.st459{clip-path:url(#SVGID_927_);}
.st460{clip-path:url(#SVGID_928_);}
.st461{clip-path:url(#SVGID_929_);}
.st462{clip-path:url(#SVGID_930_);}
.st463{clip-path:url(#SVGID_931_);}
.st464{clip-path:url(#SVGID_932_);}
.st465{clip-path:url(#SVGID_933_);}
.st466{clip-path:url(#SVGID_934_);}
.st467{clip-path:url(#SVGID_935_);}
.st468{clip-path:url(#SVGID_936_);}
.st469{clip-path:url(#SVGID_937_);}
.st470{clip-path:url(#SVGID_938_);}
.st471{clip-path:url(#SVGID_939_);}
.st472{clip-path:url(#SVGID_940_);}
.st473{clip-path:url(#SVGID_941_);}
.st474{clip-path:url(#SVGID_942_);}
.st475{clip-path:url(#SVGID_943_);}
.st476{clip-path:url(#SVGID_944_);}
.st477{clip-path:url(#SVGID_945_);}
.st478{clip-path:url(#SVGID_946_);}
.st479{clip-path:url(#SVGID_947_);}
.st480{clip-path:url(#SVGID_948_);}
.st481{clip-path:url(#SVGID_949_);}
.st482{clip-path:url(#SVGID_950_);}
.st483{clip-path:url(#SVGID_951_);}
.st484{clip-path:url(#SVGID_952_);}
.st485{clip-path:url(#SVGID_953_);}
.st486{clip-path:url(#SVGID_954_);}
.st487{clip-path:url(#SVGID_955_);}
.st488{clip-path:url(#SVGID_956_);}
.st489{clip-path:url(#SVGID_957_);}
.st490{clip-path:url(#SVGID_958_);}
.st491{clip-path:url(#SVGID_959_);}
.st492{clip-path:url(#SVGID_960_);}
.st493{clip-path:url(#SVGID_961_);}
.st494{clip-path:url(#SVGID_962_);}
.st495{clip-path:url(#SVGID_963_);}
.st496{clip-path:url(#SVGID_964_);}
.st497{clip-path:url(#SVGID_965_);}
.st498{clip-path:url(#SVGID_966_);fill:none;stroke:#000000;stroke-width:0.938;}
.st499{clip-path:url(#SVGID_966_);}
.st500{clip-path:url(#SVGID_966_);fill:#FFFFFF;}
.st501{fill:none;}
.st502{font-family:'Avenir-Book';}
.st503{font-size:10px;}
.st504{font-size:8px;}
.st505{font-size:9px;}
.st506{font-size:4px;}
.st507{font-size:6px;}
</style>
<g id="OUTLINE">
<g>
<ellipse class="st0" cx="405.4" cy="820.5" rx="33.1" ry="22"/>
<rect x="145.5" y="437.5" class="st1" width="74" height="73"/>
<rect x="102.5" y="510.5" class="st1" width="73" height="159"/>
<polygon class="st1" points="85.5,669.5 85.5,788.5 359.4,788.5 359.4,692.5 186.5,692.5 186.9,669.9 "/>
<polygon class="st1" points="359.5,656.5 467.5,656.5 509,698 453.5,698 453.5,820.5 358.5,820.5 358.5,692.5 186.5,692.5
186.5,669.5 309.6,669.5 "/>
<polygon class="st1" points="219.5,437.5 359,437.5 359,533.5 267.7,533.5 267.7,510.5 219.5,510.5 "/>
<path class="st2" d="M407.5,590.5c-0.5-0.9-1.2-2.1-1.9-3.6c-1.2-2.5-5.2-11-6.1-22.2c-1.2-14.5,3.3-26.2,5.5-31.2h-45.5V656h48
V590.5z"/>
<path class="st2" d="M489.5,591.5v-58h-85c-2.5,5.7-7,18.2-5,34c1.3,10.8,5.2,19,8,24H489.5z"/>
<rect x="407.5" y="591.5" class="st2" width="59" height="65"/>
<polygon class="st2" points="489.5,533.5 567.5,533.5 567.5,697.5 508.4,697.5 466.9,656.1 466.9,591.5 489.5,591.5 "/>
<polygon class="st2" points="452.5,697.5 681.5,697.5 681.5,788.5 453,788.5 "/>
<polyline class="st1" points="359.5,657 359.5,533.5 267.5,533.5 267.5,510.5 175.5,510.5 175.5,669.5 308,669.5 "/>
<polygon id="Atrium" class="st3" points="392.5,717.5 424.5,717.5 424.6,725.5 432.5,725.5 432.5,764.5 424.5,764.5 424.5,772.5
392.5,772.5 392.5,764.5 384.5,764.5 384.5,725.5 392.5,725.5 "/>
</g>
<rect x="419.5" y="656.5" class="st1" width="15" height="20"/>
<rect x="313.5" y="674.5" class="st1" width="14" height="18"/>
<rect x="204.5" y="479.5" class="st1" width="15" height="13"/>
<line class="st4" x1="180" y1="510.5" x2="192" y2="510.5"/>
<line class="st5" x1="219.5" y1="496.5" x2="219.5" y2="506.5"/>
<line class="st5" x1="453" y1="755.5" x2="453" y2="731.5"/>
<line class="st5" x1="358" y1="755.5" x2="358" y2="731.5"/>
<line class="st5" x1="472.5" y1="660.5" x2="486.5" y2="675.5"/>
<line class="st5" x1="451" y1="656" x2="463" y2="656"/>
<line class="st5" x1="359.5" y1="540.5" x2="359.5" y2="552.5"/>
<line class="st5" x1="308.5" y1="669.5" x2="358.5" y2="656.5"/>
<line class="st4" x1="438" y1="820.5" x2="373" y2="820.5"/>
<g>
<g>
<line class="st6" x1="308.5" y1="669.5" x2="310.4" y2="669"/>
<line class="st7" x1="314.6" y1="667.9" x2="354.5" y2="657.5"/>
<line class="st6" x1="356.6" y1="657" x2="358.5" y2="656.5"/>
</g>
</g>
</g>
<image style="overflow:visible;opacity:0.13;enable-background:new ;" width="700" height="631" id="butterfly" xlink:href="Pictures/Butterfly_16_transparent_background.png" transform="matrix(0.1351 0 0 0.1351 261.8446 439.6667)">
</image>
<image style="overflow:visible;opacity:0.18;enable-background:new ;" width="600" height="600" id="science" xlink:href="Pictures/scienceatom.png" transform="matrix(0.2149 0 0 0.2149 191 533)">
</image>
<image style="overflow:visible;opacity:0.18;enable-background:new ;" width="300" height="300" id="science" xlink:href="Pictures/wavebackground.png" transform="matrix(0.4000 0 0 0.4000 480 680)">
</image>
<image style="overflow:visible;opacity:0.33;enable-background:new ;" width="128" height="128" xlink:href="Pictures/Marae-icon.png" transform="matrix(0.7917 0 0 0.7917 93.6667 687.6667)">
</image>
<g>
<g id="WAKA" onclick="popup('wakaModal')">
<rect x="205.5" y="740.5" width="20" height="20"/>
<g>
<g>
<path class="st8" d="M215,750.7c0.1,0.1,0.2,0.1,0.3,0.1s0.2,0,0.3-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.3s-0.2-0.1-0.3-0.1
s-0.2,0-0.3,0.1s-0.1,0.2-0.1,0.3S215,750.7,215,750.7z"/>
<path class="st8" d="M207.9,749.1c0.1,0,0.2,0,0.3-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.3s-0.2-0.1-0.3-0.1s-0.2,0-0.3,0.1
s-0.1,0.2-0.1,0.3s0,0.2,0.1,0.3C207.7,749,207.8,749.1,207.9,749.1z"/>
<path class="st8" d="M222.7,749.1c0.1,0,0.2,0,0.3-0.1s0.1-0.2,0.1-0.3s0-0.2-0.1-0.3s-0.2-0.1-0.3-0.1s-0.2,0-0.3,0.1
s-0.1,0.2-0.1,0.3s0,0.2,0.1,0.3C222.5,749,222.6,749.1,222.7,749.1z"/>
<path class="st8" d="M209.1,752h12.4c0.7,0,1.4-0.2,1.9-0.7c0.8-0.7,1.1-1.8,0.8-2.8s-1.1-1.7-2.1-2c-0.1,0-0.2,0-0.3,0.1
s-0.1,0.1-0.2,0.3c-0.2,1.3-1.3,2.2-2.6,2.2h-7.5c-1.3,0-2.4-0.9-2.6-2.2c0-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.1-0.3-0.1
c-1,0.2-1.8,1-2.1,2s0,2.1,0.8,2.8C207.7,751.7,208.4,752,209.1,752z M211.6,750.5l0.7-0.7h0.9l-0.4,0.5c-0.1,0.1-0.1,0.3,0,0.5
l0.4,0.5h-0.9L211.6,750.5z M219.1,750.5l-0.7,0.7h-0.9l0.4-0.5c0.1-0.1,0.1-0.3,0-0.5l-0.4-0.5h0.9L219.1,750.5z M217.1,750.5
l-0.6,0.7h-2.4l-0.6-0.7l0.6-0.7h2.4L217.1,750.5z M222.3,747.3c0.6,0.2,1,0.7,1.1,1.3c0.1,0.4,0.1,0.8-0.1,1.2l-1.3-0.4
l-0.1-1.3C222.1,747.9,222.2,747.6,222.3,747.3z M221.3,749l0.1,0.9c0,0.2,0.1,0.3,0.3,0.3l1.4,0.4l-0.1,0.1
c-0.4,0.4-0.9,0.5-1.4,0.5h-2.1l0.5-0.5c0.1-0.1,0.1-0.4,0-0.5l-0.5-0.5C220.1,749.7,220.8,749.4,221.3,749z M211.2,749.7
l-0.5,0.5c-0.1,0.1-0.1,0.4,0,0.5l0.5,0.5h-2.1c-0.5,0-1-0.2-1.3-0.5c-0.1,0-0.1-0.1-0.2-0.2l1.4-0.4c0.1,0,0.3-0.2,0.3-0.3
l0.1-0.9C209.9,749.4,210.5,749.7,211.2,749.7z M207.1,748.6c0.2-0.6,0.6-1.1,1.1-1.3c0.1,0.3,0.2,0.6,0.4,0.8l-0.1,1.4
l-1.3,0.4C207,749.5,207,749.1,207.1,748.6z"/>
<path class="st8" d="M223.4,752.5c-0.6,0-1,0.3-1.3,0.5c-0.2,0.2-0.4,0.3-0.8,0.3c-0.4,0-0.5-0.1-0.8-0.3s-0.6-0.5-1.3-0.5
c-0.6,0-1,0.3-1.3,0.5c-0.2,0.2-0.4,0.3-0.8,0.3s-0.5-0.1-0.8-0.3s-0.6-0.5-1.3-0.5s-1,0.3-1.3,0.5c-0.2,0.2-0.4,0.3-0.8,0.3
s-0.5-0.1-0.8-0.3s-0.6-0.5-1.3-0.5s-1,0.3-1.3,0.5c-0.2,0.2-0.4,0.3-0.8,0.3c-0.4,0-0.5-0.1-0.8-0.3s-0.6-0.5-1.3-0.5
c-0.2,0-0.4,0.2-0.4,0.4s0.2,0.4,0.4,0.4c0.4,0,0.5,0.1,0.8,0.3s0.6,0.5,1.3,0.5c0.6,0,1-0.3,1.3-0.5c0.2-0.2,0.4-0.3,0.8-0.3
c0.4,0,0.5,0.1,0.8,0.3s0.6,0.5,1.3,0.5c0.6,0,1-0.3,1.3-0.5c0.2-0.2,0.4-0.3,0.8-0.3c0.4,0,0.5,0.1,0.8,0.3s0.6,0.5,1.3,0.5
s1-0.3,1.3-0.5c0.2-0.2,0.4-0.3,0.8-0.3c0.4,0,0.5,0.1,0.8,0.3s0.6,0.5,1.3,0.5c0.6,0,1-0.3,1.3-0.5c0.2-0.2,0.4-0.3,0.8-0.3
c0.2,0,0.4-0.2,0.4-0.4S223.6,752.5,223.4,752.5z"/>
</g>
</g>
</g>
<g id="_x31_877" onclick="popup('eighteenModal')">
<rect x="131.5" y="590.5" width="18" height="18"/>
<g>
<g>
<g>
<g>
<path class="st8" d="M147.3,593.9H136c-0.3,0-0.5,0.2-0.5,0.5v0.5H135c-0.3,0-0.5,0.2-0.5,0.5v0.5H134c-0.3,0-0.5,0.2-0.5,0.5
v9.2c0,0.3,0.2,0.5,0.5,0.5h11.3c0.3,0,0.5-0.2,0.5-0.5V605h0.5c0.3,0,0.5-0.2,0.5-0.5V604h0.5c0.3,0,0.5-0.2,0.5-0.5v-9.2
C147.8,594.1,147.6,593.9,147.3,593.9z M145.4,601.5l-1.2-1.4c-0.1-0.1-0.3-0.1-0.4,0l-1.5,1.7l-4-3.6c-0.1-0.1-0.2-0.1-0.3,0
l-3.8,3.4v-5.1c0-0.1,0.1-0.2,0.2-0.2h10.8c0.1,0,0.2,0.1,0.2,0.2V601.5z M146.1,604.5h-0.2v-8.2c0-0.3-0.2-0.5-0.5-0.5h-10.3
v-0.2c0-0.1,0.1-0.2,0.2-0.2h10.8c0.1,0,0.2,0.1,0.2,0.2v8.7C146.4,604.4,146.3,604.5,146.1,604.5z M147.1,603.6h-0.2v-8.2
c0-0.3-0.2-0.5-0.5-0.5H136v-0.2c0-0.1,0.1-0.2,0.2-0.2H147c0.1,0,0.2,0.1,0.2,0.2v8.7l0,0
C147.3,603.5,147.2,603.6,147.1,603.6z"/>
<path class="st8" d="M142.1,597.7c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9s0.9-0.4,0.9-0.9
C143.1,598.1,142.7,597.7,142.1,597.7z"/>
</g>
</g>
</g>
</g>
</g>
<g id="SpecialExhibitions" onclick="popup('specialModal')">
<rect x="517" y="631" class="st9" width="15" height="15"/>
<g>
<g>
<g>
<g>
<path class="st10" d="M530.2,633.9h-9.4c-0.2,0-0.4,0.2-0.4,0.4v0.4H520c-0.2,0-0.4,0.2-0.4,0.4v0.4h-0.4
c-0.2,0-0.4,0.2-0.4,0.4v7.6c0,0.2,0.2,0.4,0.4,0.4h9.4c0.2,0,0.4-0.2,0.4-0.4v-0.4h0.4c0.2,0,0.4-0.2,0.4-0.4v-0.4h0.4
c0.2,0,0.4-0.2,0.4-0.4v-7.6C530.6,634,530.4,633.9,530.2,633.9z M528.6,640.2l-1-1.2c-0.1-0.1-0.2-0.1-0.3,0l-1.2,1.4l-3.4-3
c-0.1-0.1-0.2-0.1-0.3,0l-3.2,2.8V636c0-0.1,0.1-0.2,0.2-0.2h9c0.1,0,0.2,0.1,0.2,0.2V640.2z M529.2,642.7H529v-6.9
c0-0.2-0.2-0.4-0.4-0.4H520v-0.2c0-0.1,0.1-0.2,0.2-0.2h9c0.1,0,0.2,0.1,0.2,0.2v7.2C529.4,642.6,529.3,642.7,529.2,642.7z
M530,641.9h-0.2V635c0-0.2-0.2-0.4-0.4-0.4h-8.6v-0.2c0-0.1,0.1-0.2,0.2-0.2h9c0.1,0,0.2,0.1,0.2,0.2v7.2l0,0
C530.2,641.8,530.1,641.9,530,641.9z"/>
<path class="st10" d="M525.9,637c-0.4,0-0.8,0.4-0.8,0.8c0,0.4,0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8
C526.7,637.3,526.3,637,525.9,637z"/>
</g>
</g>
</g>
</g>
</g>
<g id="BarclayTheatre" onclick="popup('barclayModal')">
<rect x="430" y="625" width="15" height="15"/>
<g>
<g>
<g>
<g>
<path class="st8" d="M443.2,627.9h-9.4c-0.2,0-0.4,0.2-0.4,0.4v0.4H433c-0.2,0-0.4,0.2-0.4,0.4v0.4h-0.4
c-0.2,0-0.4,0.2-0.4,0.4v7.6c0,0.2,0.2,0.4,0.4,0.4h9.4c0.2,0,0.4-0.2,0.4-0.4v-0.4h0.4c0.2,0,0.4-0.2,0.4-0.4v-0.4h0.4
c0.2,0,0.4-0.2,0.4-0.4v-7.6C443.6,628,443.4,627.9,443.2,627.9z M441.6,634.2l-1-1.2c-0.1-0.1-0.2-0.1-0.3,0l-1.2,1.4l-3.4-3
c-0.1-0.1-0.2-0.1-0.3,0l-3.2,2.8V630c0-0.1,0.1-0.2,0.2-0.2h9c0.1,0,0.2,0.1,0.2,0.2L441.6,634.2L441.6,634.2z M442.2,636.7
H442v-6.9c0-0.2-0.2-0.4-0.4-0.4H433v-0.2c0-0.1,0.1-0.2,0.2-0.2h9c0.1,0,0.2,0.1,0.2,0.2v7.2
C442.4,636.6,442.3,636.7,442.2,636.7z M443,635.9h-0.2V629c0-0.2-0.2-0.4-0.4-0.4h-8.6v-0.2c0-0.1,0.1-0.2,0.2-0.2h9
c0.1,0,0.2,0.1,0.2,0.2v7.2l0,0C443.2,635.8,443.1,635.9,443,635.9z"/>
<path class="st8" d="M438.9,631c-0.4,0-0.8,0.4-0.8,0.8c0,0.4,0.4,0.8,0.8,0.8s0.8-0.4,0.8-0.8
C439.7,631.3,439.3,631,438.9,631z"/>
</g>
</g>
</g>
</g>
</g>
<g id="WARRIOR" onclick="popup('pacificModal')">
<g id="svgg_1_">
<path id="path0_1_" d="M553,755v10h10h10v-10v-10h-10h-10V755 M558.2,747.2c0.1,0.1,0.7,0.1,0.8,0.1c0.1-0.1,0.6,0,0.7,0.1
c0.1,0.1,0.2,0.1,0.2,0.1c0.1,0,0.3,0.1,0.4,0.2c0.1,0.2,0.2,0.2,0.3,0.2h0.2h0.2c0,0,0,0,0.1,0.1s0.2,0.1,0.4,0.1
s0.4,0.1,0.5,0.1h0.1c0.2,0,0.5,0.1,0.6,0.1c0.1,0.1,0.1,0.1,0.3,0.1c0.4,0,0.4,0,0.5,0.1s0.1,0.1,0.3,0.1s0.4,0.1,0.4,0.1
c0.1,0.1,0.1,0.1,0.2,0.1c0.2,0,0.4,0.1,0.5,0.1c0.1,0.1,0.2,0.1,0.3,0.1c0.2,0,0.4,0.1,0.4,0.1s0.1,0,0.3,0.1
c0.4,0,0.4,0.1,0.4,0.1c0.1,0.1,0.2,0.1,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0.1,0.3,0.1s0.2,0.1,0.4,0.1
s0.2,0,0.3,0.1s0.1,0.1,0.3,0.1c0.3,0,0.5,0.1,0.5,0.2c0,0,0.1,0,0.4,0.1c0.2,0,0.3,0.1,0.3,0.3c0,0.4-0.1,0.6-0.3,0.5
c-0.1,0-0.2-0.1-0.4-0.1s-0.3,0-0.4-0.1c-0.1-0.1-0.1-0.1-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.1H568c-0.4,0-0.6-0.1-0.6-0.2
c0,0-0.1-0.1-0.3-0.1s-0.4-0.1-0.4-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c-0.2,0-0.4-0.1-0.5-0.1c-0.1-0.1-0.2-0.1-0.3-0.1
s-0.3,0-0.4-0.1c0,0-0.1,0-0.1-0.1c-0.1,0-0.4-0.1-0.5,0c0,0,0,0.2,0.1,0.3s0.1,0.2,0.1,0.8s0,0.7-0.1,0.8c0,0,0,0-0.1,0.2
c0,0.1,0,0.1-0.1,0.2c-0.1,0-0.1,0.1-0.1,0.1v0.1c0,0-0.1,0.1-0.2,0.2l-0.1,0.1c0,0-0.1,0-0.1,0.1l-0.1,0.1c0,0-0.1,0-0.1,0.1
l-0.1,0.1c-0.1,0-0.2,0.1-0.3,0.1l-0.1,0.1c-0.2,0-0.3,0.1-0.8,0.1s-0.6,0-0.5,0c0,0,0.1,0,0.2,0c0.2,0,0.2,0.1,0.3,0.1
c0,0,0.1,0.1,0.2,0.1c0.2,0,0.3,0.1,0.3,0.2c0,0,0,0,0.1,0s0.3,0.1,0.3,0.2l0.1,0.1c0.1,0,0.2,0.1,0.2,0.1s0,0,0.1,0
s0.3,0.1,0.3,0.2c0,0,0,0.1,0.1,0.1h0.1c0,0,0,0,0.1,0.1s0,0.1,0.1,0.1s0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.1,0.2,0.1
c0,0,0.1,0,0.1,0.1l0.1,0.1h0.2c0.3-0.1,0.6-0.1,1-0.1c0.5,0,0.8,0,0.9-0.1c0.4-0.2,0.7-0.1,0.7,0.3c0,0.3,0,0.8,0,0.9
c-0.1,0.1-0.2,0.2-0.8,0.2c-0.3,0-0.7,0-0.8,0.1c-0.2,0.1-0.5,0.1-1.2,0.1c-0.4,0-0.5,0-0.6-0.1l-0.1-0.1l0,0c0,0,0,0-0.1,0
s0,0,0,0s0,0-0.1,0s-0.1,0-0.1-0.1c0,0,0,0-0.1,0l0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1l-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1
c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.1-0.1l-0.1-0.1c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.3-0.1-0.3,0c0,0,0,0.1-0.1,0.1
c0,0-0.1,0.1-0.1,0.3c0,0.3-0.1,0.4-0.1,0.5c-0.1,0.1-0.1,0.2-0.1,0.4s0,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.1,0.4s0,0.2,0.1,0.4
c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1l0.1,0.1
c0,0,0.1,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2l0.1,0.1l0.1,0.1c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1
c0,0,0,0.1,0.1,0.1l0.1,0.1c0,0,0.1,0.1,0.2,0.2c0,0,0.1,0.1,0.1,0.2s0,0.1,0,0.1s0.1,0.1,0.1,0.2c0,0,0,0.1,0.1,0.1l0.1,0.1
l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0,0,0,0.1c0,0,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.1s0.1,0.1,0.1,0.2
c0,0,0,0.1,0.1,0.1l0.1,0.1c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1c0,0.1,0.1,0.1,0.1,0.1c0.1,0,0.1,0.1,0.1,0.2
c-0.1,0.1-0.1,0.1-0.9,0.1h-0.7l-0.1-0.1c-0.1-0.1-0.2-0.2-0.2-0.2v-0.1c0,0-0.2-0.1-0.2-0.2c0,0,0-0.1-0.1-0.1l-0.1-0.1
l-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c0,0-0.1,0-0.1-0.1c0,0-0.1-0.1-0.2-0.2c0,0-0.1-0.1-0.1-0.2c0,0,0-0.1-0.1-0.1
s-0.1-0.1-0.1-0.2l0,0c-0.1,0-0.1-0.1-0.2-0.2c0,0,0-0.1-0.1-0.1s-0.1-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2
c-0.1,0-0.1-0.1-0.1-0.1v-0.1c0,0-0.1-0.1-0.2-0.2c0,0,0-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0-0.1,0-0.1-0.1l0,0
c0,0,0-0.1-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1s-0.1-0.1-0.1-0.2c0,0,0,0-0.1,0s-0.1-0.1-0.1-0.2l0,0c-0.1,0-0.2-0.1-0.2-0.1
c0-0.1-0.1-0.1-0.3-0.1s-0.3-0.1-0.3-0.1s-0.1-0.1-0.2-0.1c-0.2,0-0.2-0.5,0-0.6c0,0,0.1-0.1,0.1-0.3s0.1-0.3,0.1-0.3l0,0
c0-0.1,0.4-0.1,0.5,0s0.2,0.1,0.2,0s0-0.2,0.1-0.3s0.1-0.1,0.1-0.5c0-0.2,0-0.2,0.1-0.3s0.1-0.2,0.1-0.4c0-0.1,0.1-0.3,0.1-0.4
c0.1-0.1,0.1-0.3,0-0.3s-0.2,0-0.2-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.2,0-0.3-0.1c0,0-0.1,0-0.2,0h-0.1v0.1
c0,0.1,0,0.1,0,0.2c0,0.1-0.1,0.3-0.1,0.4c0,0-0.1,0.1-0.1,0.3c0,0.3-0.1,0.3-0.1,0.4l-0.1,0.1c0,0.4-0.1,0.5-0.1,0.5
c-0.1,0.1-0.1,0.1-0.1,0.3s-0.1,0.4-0.1,0.4c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.2-0.1,0.3-0.1,0.3s-0.1,0-0.1,0.1s-0.1,0.4-0.2,0.4
l0,0c0,0.1-0.1,0.3-0.1,0.3s-0.1,0.1-0.1,0.2c0,0.1-0.1,0.1-0.1,0.2c-0.1,0.1-0.1,0.2-0.1,0.2s0,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2
c0,0.1-0.1,0.2-0.2,0.2c-0.1,0-0.1,0.3-0.1,1.8v1.5l0,0l0,0h-0.6c-0.6,0-0.6,0-0.6,0c-0.1-0.1-0.1-3.7,0-3.8l0.1-0.1
c0,0,0,0,0.1-0.1v-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.1s0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2s0.1-0.1,0.1-0.2
c0-0.1,0-0.1,0.1-0.2c0.1-0.1,0.1-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2
c0.1,0,0.1-0.1,0.1-0.1c0-0.2,0.1-0.4,0.1-0.5s0.1-0.1,0.1-0.2c0-0.3,0.1-0.4,0.1-0.5c0,0,0-0.1,0.1-0.2c0-0.3,0.1-0.4,0.1-0.5
c0.1-0.1,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.1-0.4c0,0,0-0.1,0.1-0.1c0-0.4,0.1-0.5,0.1-0.5c0.1-0.1,0.1-0.9,0-0.9l-0.1-0.1v-0.1
v-0.1c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.2-0.3-0.2-0.3s0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2
c-0.1,0-0.1-0.1-0.1-0.2c0,0,0-0.1-0.1-0.2c-0.2-0.2-0.2-0.7,0-0.9c0,0,0.1-0.1,0.1-0.2c0-0.2,0.1-0.3,0.1-0.4l0.1-0.1
c0.1-0.4,0.1-0.4,0.1-0.5c0,0,0.1-0.1,0.1-0.4c0-0.1,0-0.2-0.1-0.2c0,0,0,0-0.1-0.1s-0.1-0.1-0.4-0.1c-0.3,0-0.4-0.2-0.3-0.6
C557.8,747.1,558.1,747,558.2,747.2 M560.1,748.6c-0.1,0-0.1,0-0.1,0.2s-0.1,0.3-0.1,0.4c0,0.1-0.1,0.1-0.1,0.4
c0,0.2-0.1,0.3-0.1,0.3c-0.1,0.1-0.2,0.8,0,0.9c0.1,0,0.1,0.2,0.1,0.3s0,0.1,0.1,0.1c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.1
s0.2,0.3,0.2,0.3s0,0,0,0.1c0.1,0,0.1,0.1,0.1,0.2c0,0.1,0,0.1,0.1,0.2l0.1,0.1c0,0.1,0,0.1,0.1,0.1s0.2,0.1,0.2,0.1l0.1,0.1
c0,0,0.1,0,0.2,0s0.2,0,0.2,0h0.1c0-0.1,0-0.1-0.1-0.1c0,0-0.1,0-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0,0,0-0.1-0.1l-0.1-0.1v-0.1
c-0.1,0-0.2-0.2-0.2-0.3c0,0,0-0.1-0.1-0.1l-0.1-0.1c0-0.2-0.1-0.3-0.1-0.7c0-0.5,0-0.8,0.1-0.8c0,0,0,0,0.1-0.1
c0-0.2,0.1-0.2,0.1-0.3l0.1-0.1c0-0.1,0-0.1,0.2-0.2c0.1-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.1-0.1s0.1-0.1,0.1-0.1
c0.2-0.1,0-0.3-0.2-0.3c-0.1,0-0.3,0-0.4-0.1c0,0-0.1,0-0.1-0.1C560.7,748.6,560.4,748.6,560.1,748.6 M562.6,750.1
c-0.1,0-0.1,0-0.2,0.1c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0-0.1,0-0.1,0.1s-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.4,0,0.6
c0,0,0.1,0.1,0.1,0.2c0.1,0.2,0.1,0.2,0.1,0.2c0.1,0,0.3,0.1,0.3,0.2c0.1,0.1,0.1,0.1,0.3,0.1h0.2l0.1-0.1l0.1-0.1h0.1h0.1
c0,0,0,0,0.1-0.1c0,0,0-0.1,0.1-0.1v-0.1c0,0,0,0,0.1-0.1l0.1-0.1v-0.2V751l-0.1-0.1l-0.1-0.1v-0.1v-0.1l0,0h-0.1h-0.1
c0,0-0.1,0-0.1-0.1C562.9,750.1,562.8,750.1,562.6,750.1 M561.5,753L561.5,753c0.2,0.1,0.2,0.1,0.3,0.1s0.1,0,0,0h-0.1
C561.7,753,561.5,753,561.5,753"/>
<path id="path1_1_" class="st11" d="M557.9,747.1c-0.1,0.1-0.2,0.3-0.2,0.5s0.1,0.3,0.3,0.3c0.3,0,0.3,0,0.4,0.1l0.1,0.1
c0,0,0.1,0.1,0.1,0.2c0,0.3-0.1,0.4-0.1,0.4c-0.1,0.1-0.1,0.1-0.1,0.5c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.1,0.4
c0,0.1,0,0.2-0.1,0.2c-0.2,0.2-0.2,0.7,0,0.9c0,0.1,0.1,0.1,0.1,0.2c0,0.1,0.1,0.2,0.1,0.2s0.1,0.1,0.1,0.2
c0,0.1,0.1,0.2,0.1,0.2s0.1,0,0.1,0.1s0.1,0.3,0.2,0.3l0.1,0.1v0.1v0.1l0.1,0.1c0.1,0.1,0.1,0.8,0,0.9c-0.1,0.1-0.1,0.2-0.1,0.5
c0,0.1,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.3-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.5c0,0.1,0,0.1-0.1,0.2
c-0.1,0.1-0.1,0.2-0.1,0.5c0,0.1,0,0.2-0.1,0.2c-0.1,0.1-0.1,0.3-0.1,0.5c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.1-0.1,0.2
c0,0.1-0.1,0.2-0.1,0.2s-0.1,0.1-0.1,0.2c0,0.1-0.1,0.1-0.1,0.2c-0.1,0.1-0.1,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.2
s-0.1,0.1-0.1,0.2c0,0.1,0,0.1-0.1,0.2l-0.1,0.1c0,0,0,0,0,0.1v0.1c0,0,0,0.1-0.1,0.1c0,0,0,0-0.1,0.1s-0.1,3.7,0,3.8
c0,0,0.1,0,0.6,0h0.6l0,0l0,0V761c0-1.5,0-1.8,0.1-1.8c0,0,0.1-0.1,0.2-0.2c0-0.1,0.1-0.2,0.1-0.2l0.1-0.1c0,0,0.1-0.1,0.1-0.2
c0,0,0.1-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.2c0.1-0.1,0.1-0.2,0.1-0.3l0,0c0.1,0,0.2-0.2,0.2-0.4c0,0,0,0,0.1-0.1
c0.1,0,0.1-0.1,0.1-0.3c0-0.1,0-0.2,0.1-0.2c0.1-0.1,0.1-0.2,0.1-0.4c0-0.1,0-0.2,0.1-0.3s0.1-0.1,0.1-0.5c0-0.1,0-0.1,0.1-0.1
c0.1-0.1,0.1-0.1,0.1-0.4c0-0.2,0-0.2,0.1-0.3s0.1-0.3,0.1-0.4c0,0,0-0.1,0-0.2v-0.1h0.1c0,0,0.1,0,0.2,0c0.1,0,0.3,0.1,0.3,0.1
c0.1,0,0.1,0,0.2,0.1l0.2,0.1c0.1,0,0.1,0.2,0,0.3s-0.1,0.3-0.1,0.4c0,0.1,0,0.3-0.1,0.4c0,0.1-0.1,0.1-0.1,0.3
c-0.1,0.4-0.1,0.4-0.1,0.5c-0.1,0.1-0.1,0.2-0.1,0.3s-0.1,0.1-0.2,0c-0.1-0.1-0.5-0.1-0.5,0l0,0c-0.1,0-0.1,0.2-0.1,0.3
s0,0.3-0.1,0.3c-0.2,0.2-0.2,0.6,0,0.6c0.1,0,0.2,0.1,0.2,0.1s0.2,0.1,0.3,0.1c0.2,0,0.3,0.1,0.3,0.1s0.1,0.1,0.2,0.1l0,0
c0,0.1,0.1,0.2,0.1,0.2h0.1l0.1,0.2c0,0,0.1,0,0.1,0.1s0.1,0.1,0.1,0.1l0,0c0,0,0,0,0.1,0.1s0.1,0.1,0.1,0.1l0.1,0.1l0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1c0,0,0.1,0.2,0.2,0.2c0,0,0,0,0,0.1c0,0,0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.1
l0.1,0.1c0,0.1,0.1,0.1,0.1,0.1s0,0,0.1,0.1c0,0.1,0.1,0.1,0.2,0.2l0,0c0,0.1,0,0.1,0.1,0.2l0.1,0.1c0,0,0.1,0.1,0.1,0.2
c0.1,0.1,0.2,0.2,0.2,0.2s0,0,0.1,0.1c0.1,0,0.1,0.1,0.1,0.2c0,0,0,0.1,0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0.1,0.2,0.2,0.2
c0,0,0,0,0,0.1s0,0.1,0.2,0.2l0.1,0.1h0.7c0.8,0,0.9,0,0.9-0.1s0-0.1-0.1-0.2l-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1l-0.1-0.1
c0-0.1-0.1-0.1-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.2-0.1-0.2s0,0-0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.2V761
l-0.1-0.1c0,0,0-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.2-0.1-0.2s0,0,0-0.1s-0.1-0.1-0.1-0.2
c-0.1-0.1-0.2-0.2-0.2-0.2l-0.1-0.1c0,0,0,0-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1
l-0.1-0.1c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0,0,0-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1
s-0.1,0-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.4c0-0.3,0-0.4,0.1-0.4c0.1-0.1,0.1-0.1,0.1-0.4
c0-0.2,0.1-0.3,0.1-0.4c0.1-0.1,0.1-0.2,0.1-0.5c0-0.2,0-0.2,0.1-0.3l0.1-0.1c0-0.1,0.2-0.1,0.3,0s0.1,0.1,0.2,0.1
c0,0,0.1,0,0.1,0.1l0.1,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.1c0,0,0.1,0,0.1,0.1l0.1,0.1h0.1l0,0c0,0,0,0,0.1,0
l0.1,0.1h0.1l0,0c0,0,0,0,0.1,0s0,0,0,0s0.1,0,0.1,0.1c0.1,0.1,0.2,0.1,0.6,0.1c0.8,0,1.1-0.1,1.2-0.1c0.1,0,0.5-0.1,0.8-0.1
c0.5,0,0.7,0,0.8-0.2c0-0.1,0-0.7,0-0.9c-0.1-0.4-0.3-0.5-0.7-0.3c-0.1,0-0.4,0.1-0.9,0.1c-0.4,0-0.6,0-1,0.1h-0.2l-0.1-0.1
l-0.1-0.1c-0.1,0-0.1,0-0.2-0.1c0-0.1-0.2-0.2-0.3-0.2c0,0,0,0-0.1-0.1s0-0.1-0.1-0.1h-0.1l-0.1-0.1c0,0-0.2-0.2-0.3-0.2
c0,0,0,0-0.1,0c0-0.1-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1-0.1c0,0-0.2-0.1-0.3-0.2h-0.1c0-0.1-0.1-0.1-0.3-0.2c-0.1,0-0.1,0-0.2-0.1
c-0.1-0.1-0.1-0.1-0.3-0.1c-0.1,0-0.1,0-0.2,0c-0.1,0,0,0,0.5,0c0.4,0,0.6,0,0.8-0.1c0,0,0.1,0,0.1-0.1c0.1-0.1,0.1-0.1,0.3-0.1
c0,0,0.1,0,0.1-0.1l0.1-0.1l0.1-0.1l0.1-0.1c0,0,0,0,0.1-0.1s0.2-0.2,0.2-0.2s0,0,0-0.1s0-0.1,0.1-0.1s0.1-0.1,0.1-0.2
c0.1-0.2,0.1-0.2,0.1-0.2c0.1,0,0.1-0.2,0.1-0.8s0-0.7-0.1-0.8s-0.1-0.3-0.1-0.3s0.4,0,0.5,0c0,0,0.1,0,0.1,0.1
c0.1,0,0.3,0.1,0.4,0.1c0.1,0,0.3,0,0.3,0.1c0.1,0.1,0.3,0.1,0.5,0.1c0.1,0,0.2,0,0.2,0.1c0,0,0.2,0.1,0.4,0.1s0.3,0.1,0.3,0.1
c0,0.1,0.2,0.1,0.6,0.2c0.1,0,0.1,0,0.1,0c0.1,0.1,0.2,0.1,0.3,0.1c0.3,0,0.4,0.1,0.5,0.1c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0,0.4,0.1
c0.2,0.1,0.3,0,0.3-0.5c0-0.2,0-0.3-0.3-0.3c-0.2,0-0.4-0.1-0.4-0.1c0-0.1-0.3-0.1-0.5-0.2c-0.2,0-0.2,0-0.3-0.1
s-0.1-0.1-0.3-0.1s-0.4-0.1-0.4-0.1s-0.2-0.1-0.3-0.1c-0.3,0-0.4-0.1-0.4-0.1c-0.1-0.1-0.3-0.1-0.4-0.1c-0.2,0-0.3,0-0.4-0.1
c-0.1-0.1-0.1-0.1-0.4-0.1c-0.2,0-0.3,0-0.3-0.1s-0.2-0.1-0.4-0.1c-0.1,0-0.3,0-0.3-0.1c-0.1-0.1-0.3-0.1-0.5-0.1
c-0.1,0-0.2,0-0.2-0.1c0,0-0.2-0.1-0.4-0.1s-0.2,0-0.3-0.1s-0.2-0.1-0.5-0.1c-0.2,0-0.2,0-0.3-0.1s-0.4-0.1-0.6-0.1H562
c-0.1-0.1-0.3-0.1-0.5-0.1s-0.3,0-0.4-0.1l-0.1-0.1c0,0-0.1,0-0.2,0s-0.2,0-0.2,0c-0.1,0-0.2-0.1-0.3-0.2
c-0.1-0.1-0.2-0.2-0.4-0.2c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.6-0.2-0.7-0.1c-0.1,0.1-0.7,0-0.8-0.1
C558.2,747.1,558,747.1,557.9,747.1 M558.6,747.3c0.1,0,0.2,0,0.2,0s0.2,0,0.3,0c0.1-0.1,0.4-0.1,0.6,0.1c0.1,0,0.1,0.1,0.2,0.1
c0.2,0,0.3,0.1,0.4,0.2c0.1,0.2,0.2,0.2,0.4,0.2s0.3,0.1,0.4,0.1c0.1,0,0.1,0.1,0.1,0.1h0.1c0,0,0.1,0,0.2,0
c0.2,0,0.3,0.1,0.4,0.1c0,0,0.2,0.1,0.5,0.1c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0.1,0.4,0.1
c0.1,0.1,0.3,0.1,0.5,0.1c0.1,0,0.2,0,0.2,0.1c0.2,0.1,0.2,0.1,0.4,0.1s0.3,0.1,0.4,0.1c0,0,0.1,0,0.2,0.1c0.1,0,0.2,0,0.3,0.1
c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.2,0.1,0.3,0.1c0.3,0,0.3,0.1,0.5,0.1c0.1,0.1,0.3,0.1,0.4,0.1c0.1,0,0.3,0.1,0.3,0.1
s0.2,0.1,0.3,0.1c0.3,0.1,0.4,0.1,0.5,0.1s0.2,0.1,0.4,0.1s0.3,0.1,0.4,0.1c0.1,0,0.2,0.1,0.5,0.1c0.1,0,0.2,0,0.3,0.1
c0.2,0.1,0.3,0.1,0.4,0.1c0.4,0,0.5,0.1,0.4,0.4c0,0.1,0,0.2-0.1,0.3v0.1H570c-0.3,0-0.5-0.1-0.6-0.1c0,0-0.2-0.1-0.3-0.1
c-0.3-0.1-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.1-0.4-0.1s-0.3-0.1-0.4-0.1c-0.1-0.1-0.3-0.1-0.5-0.1c-0.1,0-0.2,0-0.2-0.1
c-0.2-0.1-0.2-0.1-0.4-0.1s-0.3-0.1-0.4-0.1c-0.1,0-0.1-0.1-0.5-0.1c-0.1,0-0.2-0.1-0.3-0.1s-0.2-0.1-0.3-0.1s-0.2,0-0.3-0.1
c-0.1,0-0.1,0-0.2,0h-0.1c0,0,0,0-0.1,0h-0.1c0,0,0,0.1,0.1,0.1c0,0,0,0,0,0.1v0.1v0.1c0,0.1,0.1,0.2,0.1,0.2
c0.2,0.3,0.2,1,0,1.4c0,0.1-0.1,0.2-0.1,0.2s-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.2l-0.1,0.1c0,0,0,0-0.1,0.1
c0,0-0.1,0-0.1,0.1l-0.1,0.1l-0.1,0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1,0-0.2,0.1-0.2,0.1c-0.2,0.1-0.3,0.1-0.7,0.1s-0.6,0-0.6-0.1
c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1l-0.1-0.1c-0.1-0.1-0.5-0.5-0.5-0.5s0-0.1-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.3
c0,0,0-0.1-0.1-0.2c-0.1-0.2-0.1-0.2-0.1-0.6c0-0.4,0-0.5,0.1-0.7c0,0,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.2-0.3c0,0,0,0,0-0.1
s0.1-0.1,0.1-0.1l0.1-0.1l0.1-0.1l0.1-0.1l0.1-0.1c0.1,0,0.1-0.1,0.1-0.2c0-0.1-0.1-0.1-0.3-0.2c-0.2,0-0.3,0-0.3-0.1l0,0l0,0
c0,0-0.2-0.1-0.3-0.1s-0.2,0-0.2,0c-0.3-0.1-0.4,0-0.4,0.2c-0.1,0.2-0.1,0.3-0.1,0.4c0,0.1-0.1,0.2-0.1,0.4
c0,0.1-0.1,0.2-0.1,0.3s-0.1,0.2-0.1,0.2c0,0.1,0,0.2-0.1,0.2c-0.1,0.3-0.1,0.4,0,0.5c0,0.1,0,0.1,0,0.1l0.1,0.2
c0,0,0.1,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0,0.1,0.1,0.2,0.1,0.2s0.1,0.1,0.1,0.2s0.1,0.2,0.1,0.2
s0.1,0.1,0.1,0.2c0.1,0.2,0.2,0.4,0.4,0.5c0.1,0,0.1,0.1,0.1,0.1s0.2,0.1,0.3,0.1l0.3,0.1c0,0,0.1,0,0.2,0.1c0,0,0.1,0,0.2,0
c0.1,0,0.2,0,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.2,0,0.3,0.1,0.3,0.1c0.1,0,0.2,0.1,0.3,0.1s0.2,0.1,0.3,0.1l0.1,0.1
c0.1,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1l0.1,0.1c0,0,0.1,0.1,0.2,0.1s0.1,0.1,0.2,0.1l0.1,0.1c0.1,0,0.1,0.1,0.1,0.1
l0.1,0.1c0,0,0.1,0.1,0.2,0.1s0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.1c0.1,0,0.5,0,0.7-0.1
c0.2,0,0.5-0.1,0.9-0.1c0.3,0,0.5,0,0.8-0.1c0.1,0,0.1,0,0.2,0.1c0,0.1,0.1,0.1,0.1,0.4c0.1,0.8,0.1,0.8-1.1,0.9
c-0.3,0-0.6,0-0.8,0.1c-0.8,0.2-1.2,0.2-1.4,0l-0.1-0.1l-0.2-0.1c0,0-0.1,0-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1
c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1s-0.1-0.1-0.1-0.1l-0.1-0.1c-0.3-0.3-0.5-0.2-0.6,0.3c-0.1,0.3-0.1,0.4-0.1,0.5
s-0.1,0.2-0.1,0.4c0,0.1-0.1,0.3-0.1,0.5c-0.1,0.3-0.1,0.7-0.1,0.8c0,0,0,0,0,0.1s0.1,0.1,0.3,0.3c0.1,0.1,0.1,0.1,0.1,0.1
s0,0.1,0.1,0.1s0.1,0.1,0.1,0.1s0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.2c0.2,0.2,0.4,0.5,0.5,0.6s0.1,0.1,0.1,0.1s0,0.1,0.1,0.1
c0.1,0.1,0.3,0.3,0.3,0.4l0.1,0.1c0,0,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1l0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1l0.1,0.1c0,0.1,0.1,0.2,0.2,0.2l0.1,0.1c0,0,0,0.1,0.1,0.1s0.1,0.1,0.1,0.1l0,0l0,0c0,0,0,0.1,0.1,0.1
c0.2,0.2,0.3,0.3,0.3,0.4c0,0,0,0.1,0.1,0.1l0.1,0.1l0.1,0.1c0.1,0.1,0,0.2-0.8,0.2h-0.6l-0.1-0.1l-0.1-0.1l-0.1-0.1
c0-0.1-0.1-0.1-0.1-0.2c0,0,0,0,0-0.1s0-0.1-0.1-0.1s-0.1-0.1-0.1-0.2l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2
c0-0.1-0.1-0.1-0.1-0.2l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1
c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.2l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0,0-0.1-0.1-0.1s-0.1-0.1-0.1-0.1
s0-0.1-0.1-0.1s-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.1s0-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1
c0-0.1-0.3-0.3-0.4-0.3c0,0-0.1,0-0.2,0s-0.2-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1s-0.2-0.1-0.2-0.2c0-0.1,0.1-0.2,0.1-0.2
s0-0.1,0.1-0.1c0.1-0.3,0.1-0.3,0.1-0.4c0,0,0-0.1,0.1-0.1s0.1-0.1,0.1-0.1c0-0.1,0.2-0.1,0.3,0c0.2,0.1,0.3,0.1,0.4,0
c0.1-0.3,0.1-0.3,0.2-0.5c0-0.1,0.1-0.3,0.1-0.4c0.1-0.1,0.1-0.2,0.1-0.5c0-0.1,0.1-0.3,0.1-0.3c0.1-0.1,0.1-0.4,0.1-0.4
c0-0.1-0.3-0.2-0.5-0.3c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.4-0.1-0.4,0.1c0,0.3-0.1,0.3-0.1,0.4c0,0.1-0.1,0.2-0.1,0.3
c0,0.2-0.1,0.4-0.1,0.5s-0.1,0.1-0.1,0.2s0,0.1,0,0.1s0,0.1,0,0.2c0,0.1,0,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.4
c0,0.1,0,0.1-0.1,0.3c0,0.1-0.1,0.2-0.1,0.2c0,0.2-0.1,0.3-0.1,0.3l-0.1,0.1c-0.1,0.1-0.1,0.3-0.1,0.3s-0.1,0.1-0.1,0.2
c0,0,0,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.1,0.3c0,0,0,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2
c0,0.1-0.1,0.1-0.1,0.2l-0.1,0.1c0,0,0,0.2,0,1.6c0,1.1,0,1.6,0,1.6c0,0.1-0.1,0.1-0.6,0.1s-0.6,0-0.6-0.1c0,0,0-3.4,0-3.5
c0,0,0-0.1,0.1-0.2l0.1-0.1c0,0,0.1-0.2,0.1-0.3c0,0,0-0.1,0.1-0.1c0.1-0.1,0.1-0.2,0.1-0.2s0.1-0.2,0.1-0.3c0,0,0-0.1,0.1-0.1
c0.1-0.1,0.1-0.2,0.1-0.2c0-0.1,0.1-0.1,0.1-0.2v-0.1c0-0.1,0.1-0.2,0.1-0.3c0,0,0.1-0.2,0.1-0.3c0,0,0-0.1,0.1-0.2
c0.1-0.2,0.1-0.3,0.1-0.3c0-0.1,0.1-0.3,0.1-0.4c0-0.1,0.1-0.2,0.1-0.3s0.1-0.4,0.1-0.4s0.1-0.2,0.1-0.4c0-0.1,0-0.2,0.1-0.4
c0,0,0-0.1,0.1-0.2c0-0.2,0.1-0.3,0.1-0.4c0.1-0.1,0.1-0.2,0.1-0.3s0-0.2,0.1-0.3c0-0.1,0-0.3,0-0.4v-0.1c0-0.1-0.1-0.2-0.1-0.2
s-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2s-0.1-0.1-0.1-0.3c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.3c0,0-0.1-0.1-0.1-0.2
c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2c-0.1-0.2-0.1-0.4,0-0.7c0-0.1,0.1-0.2,0.1-0.4c0-0.1,0.1-0.2,0.1-0.3
s0.1-0.2,0.1-0.3s0.1-0.3,0.1-0.4c0-0.1,0.1-0.2,0.1-0.4v-0.1c0-0.1,0-0.1-0.1-0.2c-0.1-0.1-0.2-0.1-0.5-0.2
c-0.3,0-0.4-0.1-0.4-0.3C557.8,747.2,557.9,747.2,558.6,747.3 M560.5,748.6c0.1,0,0.2,0,0.2,0.1l0.1,0.1c0.1,0,0.3,0.1,0.4,0.1
c0.2,0,0.4,0.2,0.2,0.3c-0.1,0-0.1,0-0.1,0.1l-0.1,0.1c0,0-0.1,0.1-0.2,0.1c-0.2,0.2-0.2,0.2-0.2,0.2s0,0.1-0.1,0.1
c-0.1,0.1-0.1,0.1-0.1,0.3c0,0.1,0,0.1-0.1,0.1s-0.1,0.3-0.1,0.8c0,0.4,0,0.4,0.1,0.7c0,0,0,0.1,0.1,0.1l0.1,0.1
c0,0.1,0.1,0.3,0.2,0.3c0,0,0,0,0,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0.1,0,0.1,0.1s0.1,0.1,0.1,0.1c0.1,0,0.1,0,0.1,0.1
c0,0,0,0-0.1,0c0,0-0.1,0-0.2,0s-0.2,0-0.2,0s-0.1,0-0.1-0.1c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.1-0.1c0,0,0-0.1-0.1-0.1
c-0.1-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2s0,0,0-0.1s-0.1-0.3-0.2-0.3c0,0-0.1,0-0.1-0.1s-0.1-0.3-0.1-0.3
c-0.1,0-0.1-0.1-0.1-0.1c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.1-0.8,0-0.9c0,0,0.1-0.1,0.1-0.3s0.1-0.3,0.1-0.4
c0.1-0.1,0.1-0.1,0.1-0.4c0-0.3,0-0.2,0.1-0.2C560.2,748.6,560.3,748.6,560.5,748.6 M562.4,750c0,0-0.1,0.1-0.2,0.1
s-0.1,0.1-0.2,0.1c0,0-0.1,0-0.1,0.1c0,0,0,0.1-0.1,0.1c-0.1,0.2-0.2,0.7-0.1,0.8c0,0,0.1,0.2,0.2,0.2l0.1,0.1
c0,0,0.1,0.1,0.2,0.1c0.2,0.1,0.7,0.1,0.9,0l0.1-0.1c0.1,0,0.1-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.1c0.2-0.2,0.2-0.7,0-0.9
c0,0,0-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1C563,750,562.6,750,562.4,750 M563,750.2C563,750.2,563.1,750.2,563,750.2
c0.1,0.1,0.2,0.1,0.2,0.1h0.1l0,0v0.1v0.1c0,0,0,0,0.1,0.1l0.1,0.1v0.2v0.2l-0.1,0.1l-0.1,0.1c0,0,0,0,0,0.1c0,0,0,0.1-0.1,0.1
c0,0,0,0.1-0.1,0.1H563h-0.1c0,0-0.1,0-0.1,0.1l-0.1,0.1h-0.2c-0.2,0-0.2,0-0.3-0.1s-0.3-0.2-0.3-0.2s0,0-0.1-0.2
c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.4,0-0.6c0.1-0.1,0.1-0.2,0.1-0.3c0,0,0-0.1,0.1-0.1s0.2-0.1,0.3-0.2
C562.5,750.1,562.9,750.1,563,750.2 M561.7,753L561.7,753C561.9,753,561.9,753,561.7,753c0,0.1-0.2,0.1-0.2,0
C561.4,753,561.6,752.9,561.7,753"/>
<path id="path2_1_" class="st12" d="M558,747.2c-0.1,0-0.2,0.1-0.2,0.3s0.1,0.3,0.4,0.3c0.3,0,0.4,0.1,0.5,0.2
c0.1,0.1,0.1,0.1,0.1,0.2v0.1c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.2-0.1,0.3s-0.1,0.2-0.1,0.3
c0,0.2-0.1,0.3-0.1,0.4c-0.1,0.3-0.1,0.5,0,0.7c0,0.1,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2
c0,0.1,0.1,0.2,0.1,0.3l0.1,0.1c0.1,0.1,0.1,0.3,0.1,0.3s0.1,0.1,0.1,0.2c0,0.1,0.1,0.2,0.1,0.2s0.1,0.1,0.1,0.2v0.1
c0,0.1,0,0.2,0,0.4c0,0.1,0,0.2-0.1,0.3c0,0.2,0,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.2-0.1,0.2
c-0.1,0.2-0.1,0.2-0.1,0.4s-0.1,0.4-0.1,0.4s-0.1,0.3-0.1,0.4c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.3-0.1,0.4c0,0.1,0,0.2-0.1,0.3
c0,0.1-0.1,0.2-0.1,0.2c0,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.2-0.1,0.3v0.1c-0.1,0.1-0.1,0.2-0.1,0.2c0,0.1-0.1,0.1-0.1,0.2l-0.1,0.1
c0,0-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0.2c0,0,0,0.1-0.1,0.1c0,0.1-0.1,0.2-0.1,0.3c0,0,0,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2
c0,0.1,0,3.5,0,3.5c0,0.1,0.1,0.1,0.6,0.1s0.6,0,0.6-0.1c0,0,0-0.5,0-1.6c0-1.4,0-1.6,0-1.6l0.1-0.1c0,0,0.1-0.1,0.1-0.2
c0-0.1,0.1-0.1,0.1-0.2l0.1-0.1c0,0,0.1-0.2,0.1-0.3c0,0,0.1-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2s0-0.1,0.1-0.1
c0.1-0.2,0.1-0.2,0.1-0.2s0.1-0.1,0.1-0.3c0,0,0-0.1,0.1-0.1c0.1-0.1,0.1-0.2,0.1-0.3s0-0.2,0.1-0.2c0.1-0.2,0.1-0.2,0.1-0.3
c0-0.2,0.1-0.3,0.1-0.4c0,0,0-0.1,0.1-0.2c0-0.1,0-0.1,0-0.2v-0.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.1-0.2,0.1-0.5
c0-0.1,0.1-0.2,0.1-0.3c0.1-0.1,0.1-0.2,0.1-0.4s0.2-0.2,0.4-0.1c0.1,0,0.2,0.1,0.3,0.1c0.2,0,0.5,0.2,0.5,0.3s0,0.3-0.1,0.4
c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.3-0.1,0.3-0.1,0.5c0,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.2-0.2,0.5c-0.1,0.1-0.2,0.2-0.4,0
c-0.1-0.1-0.3-0.1-0.3,0c0,0,0,0-0.1,0.1s-0.1,0.1-0.1,0.1c0,0.1,0,0.1-0.1,0.4c0,0,0,0.1-0.1,0.1c0,0.1-0.1,0.1-0.1,0.2
c0,0.1,0,0.1,0.2,0.2c0.1,0,0.2,0.1,0.3,0.1s0.2,0.1,0.2,0.1s0.1,0,0.2,0c0.1,0,0.3,0.2,0.4,0.3c0,0,0,0.1,0.1,0.1l0.1,0.1
l0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1c0,0.1,0.1,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.1s0,0.1,0.1,0.1s0.1,0.1,0.1,0.1
s0,0.1,0.1,0.1s0.1,0.1,0.1,0.1s0,0.1,0.1,0.1s0.1,0.1,0.1,0.1s0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1
s0.1,0.1,0.1,0.1l0.1,0.1c0.1,0.1,0.1,0.1,0.1,0.1s0,0,0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0.1,0.1,0.1,0.2
c0,0.1,0.1,0.1,0.1,0.2l0.1,0.1l0.1,0.1c0,0,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.1s0,0,0,0.1c0.1,0.1,0.1,0.1,0.1,0.2l0.1,0.1l0.1,0.1
l0.1,0.1h0.6c0.8,0,0.9,0,0.8-0.2l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0-0.2-0.2-0.3-0.4l-0.1-0.1l0,0l0,0c0,0,0-0.1-0.1-0.1
s-0.1-0.1-0.1-0.1s0-0.1-0.1-0.1c0,0-0.1-0.1-0.2-0.2c0-0.1-0.1-0.1-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1l-0.1-0.1
c0,0,0-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2s-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.3-0.4
c-0.1-0.1-0.1-0.1-0.1-0.1s0-0.1-0.1-0.1c-0.1-0.1-0.3-0.4-0.5-0.6c0,0-0.1-0.1-0.1-0.2l-0.1-0.1c0,0,0-0.1-0.1-0.1
s-0.1-0.1-0.1-0.1s0-0.1-0.1-0.1c-0.2-0.2-0.2-0.3-0.3-0.3v-0.1c-0.1,0,0-0.5,0.1-0.8c0.1-0.2,0.1-0.3,0.1-0.5s0.1-0.3,0.1-0.4
c0-0.1,0.1-0.2,0.1-0.5c0-0.2,0.1-0.3,0.2-0.4c0.1,0,0.2,0.1,0.3,0.2l0.1,0.1l0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1
l0.1,0.1c0.1,0,0.1,0.1,0.1,0.1l0.1,0.1l0.1,0.1l0.2,0.1c0,0,0.1,0,0.1,0.1c0.2,0.2,0.5,0.2,1.4,0c0.1,0,0.4-0.1,0.8-0.1
c1.3-0.1,1.3-0.1,1.1-0.9c0-0.3-0.1-0.3-0.1-0.4c-0.1-0.1-0.1-0.1-0.2-0.1c-0.3,0-0.6,0.1-0.8,0.1c-0.4,0-0.7,0.1-0.9,0.1
s-0.5,0.1-0.7,0.1c-0.1,0-0.1,0-0.2-0.1c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.2-0.1s-0.1-0.1-0.2-0.1l-0.1-0.1l-0.1-0.1
c-0.1,0-0.1-0.1-0.1-0.1s-0.1-0.1-0.2-0.1s-0.1-0.1-0.2-0.1s-0.1-0.1-0.1-0.1s-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1
c-0.1,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1s-0.1-0.1-0.3-0.1c-0.1,0-0.1-0.1-0.2-0.1
c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2-0.1-0.2-0.1s-0.2-0.1-0.3-0.1c0,0-0.2-0.1-0.3-0.1c0,0-0.1,0-0.1-0.1
c-0.1-0.1-0.3-0.3-0.4-0.5c0-0.1-0.1-0.2-0.1-0.2s-0.1-0.1-0.1-0.2s-0.1-0.2-0.1-0.2s-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2
s-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.2-0.1-0.2v-0.1c-0.1-0.1,0-0.2,0-0.5c0-0.1,0-0.2,0.1-0.2
c0-0.1,0-0.2,0.1-0.2c0-0.1,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.1-0.4c0,0,0.1-0.1,0.1-0.4c0-0.2,0.1-0.2,0.4-0.2c0.1,0,0.2,0,0.2,0
c0.2,0,0.3,0.1,0.3,0.1l0,0l0,0c0,0,0,0,0.3,0.1c0.3,0,0.3,0.1,0.3,0.2c0,0.1,0,0.2-0.1,0.2l-0.1,0.1l-0.1,0.1l-0.1,0.1l-0.1,0.1
l-0.1,0.1v0.1c-0.1,0.1-0.1,0.2-0.2,0.3c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.1,0.3-0.1,0.7s0,0.4,0.1,0.6c0,0.1,0.1,0.1,0.1,0.2
c0,0.1,0.1,0.2,0.2,0.3l0.1,0.1c0,0.1,0.4,0.5,0.5,0.5l0.1,0.1c0,0,0.1,0.1,0.3,0.1c0.1,0,0.2,0.1,0.2,0.1
c0.1,0.1,0.2,0.1,0.6,0.1c0.4,0,0.4,0,0.7-0.1c0.1,0,0.2-0.1,0.2-0.1c0.1,0,0.2-0.1,0.2-0.1l0.1-0.1l0.1-0.1l0.1-0.1
c0,0,0,0,0.1-0.1l0.1-0.1c0,0,0.1-0.1,0.1-0.2c0,0,0.1-0.1,0.1-0.2c0,0,0.1-0.1,0.1-0.2c0,0,0.1-0.1,0.1-0.2c0.2-0.3,0.2-1,0-1.4
c0-0.1-0.1-0.2-0.1-0.2c0-0.1,0-0.1,0-0.1v-0.1c0-0.1,0-0.1,0-0.1s-0.1,0-0.1-0.1c0,0,0,0,0.1,0h0.1c0,0,0,0,0.1,0
c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0.1c0.1,0,0.2,0.1,0.3,0.1s0.2,0.1,0.3,0.1c0.3,0.1,0.4,0.1,0.5,0.1s0.2,0.1,0.4,0.1
s0.3,0.1,0.4,0.1c0.1,0,0.2,0.1,0.2,0.1c0.2,0,0.4,0.1,0.5,0.1c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0.1,0.4,0.1c0.1,0,0.2,0.1,0.4,0.1
c0.1,0,0.2,0.1,0.3,0.1s0.3,0.1,0.6,0.1h0.2v-0.1l0.1-0.1c0-0.4,0-0.4-0.4-0.5c-0.1,0-0.2,0-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.1
c-0.2,0-0.4-0.1-0.5-0.1s-0.2-0.1-0.4-0.1s-0.3-0.1-0.4-0.1c-0.1,0-0.2-0.1-0.5-0.1c-0.1,0-0.3-0.1-0.3-0.1
c-0.1,0-0.2-0.1-0.3-0.1c-0.2,0-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.1-0.5-0.1c-0.1,0-0.2,0-0.3-0.1c0,0-0.1,0-0.2-0.1
c-0.1,0-0.2,0-0.3-0.1c-0.1,0-0.1,0-0.2-0.1c-0.1,0-0.2-0.1-0.4-0.1s-0.3-0.1-0.4-0.1c-0.1,0-0.2-0.1-0.2-0.1
c-0.2,0-0.3-0.1-0.5-0.1c-0.1,0-0.2-0.1-0.4-0.1s-0.3,0-0.4-0.1c-0.1,0-0.2-0.1-0.2-0.1c-0.3-0.1-0.4-0.1-0.5-0.1
c0,0-0.2-0.1-0.4-0.1c-0.1,0-0.2,0-0.2,0h-0.1c0,0-0.1,0-0.1-0.1c-0.1-0.1-0.2-0.1-0.4-0.1s-0.2,0-0.4-0.2
c-0.1-0.1-0.3-0.2-0.4-0.2c0,0-0.1,0-0.2-0.1c-0.3-0.1-0.5-0.2-0.6-0.1c-0.1,0.1-0.3,0.1-0.3,0c0,0-0.2-0.1-0.4-0.1
C558.2,747.2,558.1,747.2,558,747.2 M558.4,747.3c0.1,0,0.2,0.1,0.3,0.1c0.1,0.1,0.3,0.1,0.4,0c0.1-0.1,0.3-0.1,0.5,0
c0.1,0,0.2,0.1,0.4,0.1c0.1,0,0.2,0.1,0.2,0.1c0,0.1,0.2,0.3,0.4,0.3s0.3,0.1,0.4,0.1c0.1,0,0.2,0.1,0.3,0.1
c0.3,0.1,0.5,0.1,0.6,0.1s0.2,0.1,0.3,0.1c0.2,0,0.3,0.1,0.4,0.1c0.1,0,0.2,0.1,0.5,0.1c0.1,0,0.2,0.1,0.3,0.1s0.2,0.1,0.3,0.1
c0.2,0,0.4,0.1,0.4,0.1s0.2,0.1,0.3,0.1c0,0,0.2,0,0.4,0.1h0.1c0,0,0.2,0.1,0.5,0.1c0.1,0,0.2,0,0.2,0c0.1,0,0.3,0.1,0.3,0.1
s0.2,0,0.4,0.1c0.1,0,0.1,0,0.2,0.1s0.2,0.1,0.2,0.1c0.3,0,0.4,0.1,0.5,0.1c0.1,0.1,0.2,0.1,0.5,0.1c0.1,0,0.2,0,0.3,0.1
s0.2,0.1,0.4,0.1s0.2,0,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1c0.1,0,0.3,0.1,0.4,0.1c0.1,0,0.2,0.1,0.3,0.1c0.4,0.1,0.5,0.1,0.5,0.2
c0,0.1,0,0.3,0,0.4c-0.1,0.1-0.5,0-0.7-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.2,0-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.1-0.4-0.1
s-0.3-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.2,0-0.4-0.1-0.4-0.1s-0.2-0.1-0.3-0.1s-0.4-0.1-0.5-0.1h-0.1l0,0c0,0-0.1,0-0.2,0
c-0.3-0.1-0.4-0.1-0.4-0.1c-0.1-0.1-0.4-0.1-0.5-0.1s-0.2-0.1-0.3-0.1c-0.1-0.1-0.2-0.1-0.3,0s-0.1,0.1,0,0.2
c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2l0.1,0.2v0.4c0,0.4,0,0.5-0.1,0.5c0,0-0.1,0.2-0.1,0.3l-0.1,0.3c0,0,0,0-0.1,0.1
c0,0.1-0.1,0.2-0.4,0.5c0,0-0.1,0.1-0.2,0.1l-0.1,0.1c-0.1,0.1-0.2,0.1-0.3,0.1l-0.2,0.1h-0.1c-0.4,0.1-0.7,0-0.9-0.1
c-0.1,0-0.2-0.1-0.2-0.1c-0.1,0-0.2-0.1-0.3-0.1l-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1s-0.1-0.1-0.1-0.1c-0.2-0.1-0.2-0.3-0.3-0.3
l-0.1-0.1c0,0-0.1-0.2-0.1-0.3c0,0-0.1-0.1-0.1-0.2c-0.1-0.2-0.1-0.5-0.1-0.8c0-0.2,0-0.2,0.1-0.4c0-0.1,0.1-0.2,0.1-0.2
c0-0.1,0.1-0.2,0.1-0.2s0.1-0.1,0.1-0.2l0.1-0.1l0.1-0.1l0.1-0.1c0,0,0.1,0,0.1-0.1l0.1-0.1c0.1-0.1,0.2-0.1,0.2-0.2V749l0,0
c0,0-0.1-0.1-0.2-0.1c-0.2,0-0.4-0.1-0.4-0.1c-0.1-0.1-0.1-0.1-0.5-0.1c-0.1,0-0.2,0-0.2-0.1c-0.3-0.1-0.4,0-0.4,0.3
c0,0.1,0,0.1-0.1,0.2c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.5c0,0.1,0,0.1-0.1,0.2
c0,0.1-0.1,0.3,0,0.3c0,0.1,0.1,0.2,0.1,0.2s0,0,0,0.1l0,0l0,0l0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2
s0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.2,0.2,0.3c0,0,0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.2c0,0.1,0.1,0.2,0.1,0.2l0.1,0.1l0.1,0.1h0.1
c0,0,0.1,0.1,0.3,0.1s0.2,0.1,0.3,0.1c0.1,0.1,0.1,0.1,0.4,0.1c0.1,0,0.2,0.1,0.2,0.1s0.2,0.1,0.3,0.1s0.2,0,0.2,0.1
c0.1,0.1,0.1,0.1,0.4,0.1c0.1,0,0.2,0.1,0.2,0.1l0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0,0.1,0.1
c0,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0.1,0,0.2,0.1c0.1,0.1,0.2,0.1,0.3,0.1c0,0,0,0,0.1,0.1
s0.1,0.1,0.4,0.1c0.3,0,0.5,0,0.8-0.1c0.1,0,0.4-0.1,0.9-0.1c0.2,0,0.4,0,0.5,0s0.2,0,0.2,0.3c0,0.1,0,0.3,0.1,0.4
c0.1,0.3,0.1,0.4-0.1,0.4c-0.2,0.1-0.5,0.1-1.1,0.2c-0.6,0-0.7,0-1.1,0.1c-0.5,0.1-0.8,0.1-0.9,0l-0.1-0.1c0,0-0.1,0-0.1-0.1
c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1l-0.1-0.1c0,0-0.1,0-0.1-0.1c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1
s-0.1-0.1-0.1-0.1l-0.1-0.1c-0.1-0.1-0.3-0.2-0.4-0.2c-0.2,0-0.3,0.2-0.3,0.6c0,0.1,0,0.1-0.1,0.2c-0.1,0.1-0.1,0.3-0.1,0.3
c0,0.1-0.1,0.3-0.1,0.5c0,0.1-0.1,0.3-0.1,0.4c0,0,0,0.1,0,0.2c-0.1,0.2,0,0.4,0,0.4l0,0c0,0,0,0.1,0.1,0.1
c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0.1,0.1,0.2,0.2,0.3,0.4c0,0,0.1,0.1,0.2,0.2
c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1s0.1,0.1,0.1,0.1l0.1,0.1c0,0,0.1,0,0.1,0.1s0,0.1,0.1,0.1l0.1,0.1l0.1,0.1
c0,0,0.1,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.1,0.1,0.2c0,0,0,0,0.1,0.1l0.1,0.1c0,0.1,0.1,0.2,0.2,0.2l0,0
c0,0,0.1,0.1,0.1,0.2l0.1,0.1c0,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.2l0.1,0.1l0.1,0.1
c0,0,0,0.1,0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1c0.1,0.1,0.2,0.2,0.2,0.3s-0.1,0.1-0.8,0.1h-0.6l-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.2
c0,0,0-0.1-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.2-0.1-0.2s0,0,0-0.1l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2s-0.1-0.1-0.1-0.2l-0.1-0.1
l-0.1-0.1v-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.1s0-0.1-0.1-0.1s-0.1-0.1-0.1-0.1
s0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1l-0.1-0.1l-0.1-0.1c0-0.1-0.1-0.2-0.2-0.2c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.2
s-0.1-0.1-0.1-0.1s-0.1-0.1-0.1-0.2c-0.1-0.1-0.1-0.1-0.1-0.1l-0.1-0.1c0,0,0,0-0.1-0.1s-0.1-0.1-0.1-0.1l-0.1-0.1
c0-0.1-0.1-0.1-0.1-0.1s-0.1,0-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c-0.2,0-0.3-0.1-0.3-0.1c-0.1-0.1-0.2-0.1-0.4-0.1
s-0.2-0.1-0.1-0.3c0-0.1,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.3-0.5c0,0,0,0,0.1,0c0.2,0.1,0.5,0.1,0.6,0c0,0,0,0,0-0.1
c0,0,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.1-0.4c0-0.1,0.1-0.2,0.1-0.3c0.1-0.3,0.1-0.4,0.1-0.5c0.1-0.1,0.1-0.3,0.1-0.5
s-0.2-0.3-0.5-0.4c-0.1,0-0.2-0.1-0.2-0.1c-0.3-0.2-0.5-0.1-0.5,0.1c0,0.1,0,0.2-0.1,0.2l-0.1,0.1c0,0-0.1,0.2-0.1,0.3
s-0.1,0.2-0.1,0.3c-0.1,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.2-0.1,0.2
c0,0.1-0.1,0.1-0.1,0.2v0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.2l-0.1,0.1c0,0-0.1,0.1-0.1,0.2
c0,0-0.1,0.1-0.1,0.2c-0.1,0.1-0.2,0.2-0.2,0.3c0,0,0,0.1-0.1,0.1c0,0.1-0.1,0.1-0.1,0.2v0.1l0,0c0,0,0,0.1-0.1,0.1l-0.1,0.1
c0,0,0,0.1-0.1,0.1s0,0.1,0,0.1s0,0-0.1,0.1s-0.1,0.1-0.1,1.8v1.6l0,0c-0.1,0.1-1,0.1-1.1,0l0,0v-1.7c0-1.8,0-1.8,0.1-1.9
l0.1-0.1l0.1-0.2l0.1-0.2c0,0,0-0.1,0.1-0.1c0.1-0.1,0.1-0.2,0.1-0.3c0,0,0-0.1,0.1-0.1c0,0,0.1-0.1,0.1-0.2
c0-0.1,0.1-0.2,0.1-0.2s0.1-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.2c0,0,0.1-0.2,0.1-0.3c0,0,0-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.3
c0.1-0.3,0.1-0.4,0.1-0.5s0.1-0.1,0.1-0.2c0-0.1,0.1-0.5,0.1-0.5s0.1-0.1,0.1-0.5c0-0.1,0.1-0.2,0.1-0.3s0.1-0.2,0.1-0.3
c0-0.2,0.1-0.3,0.1-0.4c0-0.1,0.1-0.2,0.1-0.3c0-0.2,0-0.3,0.1-0.4c0.1-0.1,0-0.2,0-0.3c0,0-0.1-0.1-0.1-0.2
c0-0.1-0.1-0.2-0.1-0.2s-0.1-0.1-0.1-0.2l-0.1-0.1l-0.1-0.1c0,0,0,0,0-0.1c0,0,0-0.1-0.1-0.1c0,0,0-0.1-0.1-0.1
c-0.1-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2s-0.1-0.1-0.1-0.2c0-0.1-0.1-0.3-0.1-0.3c-0.1,0-0.1-0.3-0.1-0.4c0,0,0,0,0-0.1
s0,0,0-0.1c0,0,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.1-0.3s0.1-0.1,0.1-0.2c0-0.2,0.1-0.3,0.1-0.4c0-0.1,0.1-0.1,0.1-0.3
c0.1-0.3,0.1-0.4,0.1-0.4V748l-0.1-0.1c-0.1-0.1-0.1-0.2-0.4-0.2c-0.4,0-0.5-0.1-0.5-0.4c0-0.2,0-0.2,0.1-0.2
C558.1,747.3,558.1,747.3,558.4,747.3 M562.4,750L562.4,750l-0.2,0.2c-0.1,0-0.1,0.1-0.2,0.2c0,0,0,0.1-0.1,0.1
c-0.2,0.2-0.2,0.8,0,1l0.1,0.1c0,0.1,0.1,0.1,0.1,0.1s0.1,0.1,0.2,0.1c0.1,0.1,0.2,0.1,0.3,0.1c0.2,0,0.3,0,0.6,0
c0,0,0.1,0,0.1-0.1s0.1-0.1,0.1-0.1c0.1,0,0.1-0.1,0.1-0.1c0-0.1,0.1-0.1,0.1-0.2c0.2-0.2,0.1-0.8,0-0.9l-0.1-0.1
c0,0-0.1-0.1-0.2-0.2l-0.1-0.1C563.1,750,562.6,749.9,562.4,750 M563,750.1c0.1,0,0.1,0.1,0.2,0.1l0.1,0.1c0.1,0,0.1,0.1,0.1,0.1
s0,0.1,0.1,0.1c0.2,0.2,0.2,0.7,0,0.9l-0.1,0.1c0,0.1-0.1,0.1-0.1,0.1l-0.1,0.1c-0.2,0.2-0.6,0.2-0.9,0c-0.1,0-0.1-0.1-0.2-0.1
l-0.1-0.1c0-0.1-0.1-0.2-0.2-0.2c-0.1-0.1-0.1-0.7,0.1-0.8l0.1-0.1c0-0.1,0.1-0.1,0.1-0.1s0.1,0,0.2-0.1
C562.5,750,562.8,750,563,750.1"/>
<path id="path3_1_" class="st13" d="M558,747.3c-0.1,0-0.1,0.1-0.1,0.2c0,0.2,0.1,0.3,0.5,0.4c0.2,0,0.3,0.1,0.4,0.2l0.1,0.1v0.1
c0,0.1-0.1,0.1-0.1,0.4c0,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0.4c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.1-0.1,0.2-0.1,0.3
s-0.1,0.3-0.1,0.3s0,0,0,0.1s0,0,0,0.1c-0.1,0.1,0,0.4,0.1,0.4c0,0,0.1,0.1,0.1,0.3c0,0.1,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.2
c0,0.1,0.1,0.2,0.1,0.2l0.1,0.1c0,0,0,0.1,0.1,0.1v0.1c0,0,0,0,0.1,0.1l0.1,0.1c0,0.1,0.1,0.2,0.1,0.2s0.1,0.1,0.1,0.2
c0,0.1,0.1,0.2,0.1,0.2c0.1,0.1,0.1,0.2,0,0.3c0,0.1-0.1,0.2-0.1,0.4c0,0.1-0.1,0.2-0.1,0.3s-0.1,0.2-0.1,0.4
c0,0.1-0.1,0.2-0.1,0.3s-0.1,0.2-0.1,0.3c-0.1,0.3-0.1,0.4-0.1,0.5c0,0-0.1,0.4-0.1,0.5c0,0,0,0.1-0.1,0.2
c-0.1,0.1-0.1,0.2-0.1,0.5c0,0.1-0.1,0.2-0.1,0.3s-0.1,0.2-0.1,0.2c0,0.1-0.1,0.2-0.1,0.3c0,0-0.1,0.1-0.1,0.2
c0,0.1-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.2c0,0.1-0.1,0.2-0.1,0.2l-0.1,0.1c0,0.1-0.1,0.2-0.1,0.3s-0.1,0.1-0.1,0.1l-0.1,0.2
l-0.1,0.2c0,0,0,0.1-0.1,0.1c-0.1,0.1-0.1,0.1-0.1,1.9v1.7l0,0c0.1,0.1,1,0.1,1.1,0l0,0v-1.5c0-1.7,0-1.6,0.1-1.8l0.1-0.1
c0,0,0,0,0-0.1s0-0.1,0.1-0.1l0.1-0.1l0.1-0.1l0,0c0,0,0,0,0-0.1c0,0,0-0.1,0.1-0.2c0-0.1,0.1-0.1,0.1-0.1s0.1-0.2,0.2-0.3
c0,0,0.1-0.1,0.1-0.2c0,0,0.1-0.1,0.1-0.2l0.1-0.1c0.1-0.1,0.1-0.2,0.1-0.2s0.1-0.1,0.1-0.2c0-0.1,0-0.1,0-0.2s0-0.1,0-0.1
s0-0.1,0.1-0.2c0-0.1,0.1-0.2,0.1-0.2c0-0.2,0.1-0.3,0.1-0.4c0.1-0.1,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.1-0.4
c0-0.1,0.1-0.2,0.1-0.3s0.1-0.2,0.1-0.3l0.1-0.1c0,0,0-0.1,0.1-0.2c0-0.3,0.2-0.3,0.5-0.1c0.1,0,0.2,0.1,0.2,0.1
c0.4,0.1,0.5,0.2,0.5,0.4s-0.1,0.4-0.1,0.5s-0.1,0.2-0.1,0.5c0,0.1,0,0.2-0.1,0.3s-0.1,0.2-0.1,0.4s-0.1,0.3-0.1,0.3s0,0,0,0.1
c-0.1,0.1-0.4,0.2-0.6,0h-0.1c-0.2,0.2-0.2,0.3-0.3,0.5c0,0.1-0.1,0.2-0.1,0.3c-0.1,0.2-0.1,0.2,0.1,0.3c0.2,0,0.3,0.1,0.4,0.1
c0.1,0.1,0.2,0.1,0.3,0.1s0.1,0,0.2,0.1l0.1,0.1c0,0,0.1,0,0.1,0.1s0.1,0.1,0.1,0.1l0.1,0.1l0.1,0.1l0.1,0.1c0,0,0,0.1,0.1,0.1
c0.1,0.1,0.1,0.1,0.1,0.2l0.1,0.1c0,0,0.1,0.1,0.1,0.2c0,0,0,0.1,0.1,0.1c0,0,0.1,0.1,0.2,0.2c0,0,0,0.1,0.1,0.1l0.1,0.1l0.1,0.1
c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1c0.1,0.1,0.1,0.1,0.1,0.1s0,0.1,0.1,0.1c0.1,0.1,0.1,0.1,0.1,0.2l0.1,0.1l0.1,0.1
c0,0.1,0.1,0.1,0.1,0.1s0,0,0,0.1l0.1,0.1l0.1,0.1c0,0,0.1,0.1,0.1,0.2c0.1,0.1,0.1,0.1,0.1,0.2s0.1,0.1,0.1,0.1l0.1,0.1v0.1
c0,0,0.1,0.1,0.1,0.2l0.1,0.1l0.1,0.1c0,0,0.1,0.1,0.2,0.2l0.1,0.1h0.6c0.6,0,0.8,0,0.8-0.1c0,0-0.1-0.2-0.2-0.3l-0.1-0.1
l-0.1-0.1l-0.1-0.1c0,0,0,0-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2l-0.1-0.1c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.2-0.2-0.2
c0-0.1-0.1-0.1-0.1-0.1s-0.1-0.1-0.1-0.2l0,0c0,0-0.1-0.1-0.2-0.2l-0.1-0.1l-0.1-0.1c0,0,0-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.2
s-0.1-0.1-0.1-0.2L564,760l-0.1-0.1l-0.1-0.1c0,0,0,0-0.1-0.1c-0.1,0-0.1-0.1-0.1-0.1s0-0.1-0.1-0.1s-0.1-0.1-0.1-0.1
s0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.2c-0.1-0.2-0.2-0.3-0.3-0.4l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1l-0.1-0.1
c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.1-0.1-0.1-0.1l0,0c-0.1,0-0.1-0.2,0-0.4c0-0.1,0-0.2,0-0.2c0-0.1,0.1-0.3,0.1-0.4
c0.1-0.1,0.1-0.4,0.1-0.5s0-0.2,0.1-0.3c0,0,0.1-0.1,0.1-0.2c0.1-0.5,0.1-0.6,0.3-0.6c0,0,0.3,0.1,0.4,0.2l0.1,0.1l0.1,0.1
c0,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.2,0.1l0.1,0.1c0,0,0.1,0,0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.2,0.1,0.2,0.1l0.1,0.1
c0,0,0.1,0,0.1,0.1c0.1,0.1,0.4,0.2,0.9,0c0.3-0.1,0.5-0.1,1.1-0.1c0.7,0,0.9-0.1,1.1-0.2c0.1-0.1,0.1-0.1,0.1-0.4
c0-0.1,0-0.3-0.1-0.4c0-0.2-0.1-0.3-0.2-0.3c0,0-0.2,0-0.5,0c-0.5,0-0.8,0.1-0.9,0.1c-0.7,0.2-1.2,0.2-1.3,0c0,0,0-0.1-0.1-0.1
s-0.2-0.1-0.3-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1-0.1l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.2-0.1c-0.1,0-0.1-0.1-0.2-0.1
l-0.1-0.1c0,0-0.2-0.1-0.3-0.2c0,0-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1-0.1c0,0-0.1-0.1-0.2-0.1c-0.2-0.1-0.3-0.1-0.4-0.1
c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.3-0.1-0.3-0.1s-0.1-0.1-0.2-0.1c-0.2,0-0.3-0.1-0.4-0.1c-0.1-0.1-0.2-0.1-0.3-0.1
s-0.3-0.1-0.3-0.1s0,0-0.1,0l-0.1-0.1l-0.1-0.1c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2l-0.1-0.1c0-0.1-0.1-0.3-0.2-0.3
c0,0-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2c0-0.1-0.1-0.1-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2l0,0l0,0c0,0,0,0,0-0.1l-0.1-0.2
c0,0,0-0.2,0-0.3c0,0,0-0.1,0.1-0.2c0.1-0.3,0.1-0.3,0.1-0.5c0-0.1,0.1-0.2,0.1-0.3c0-0.2,0.1-0.3,0.1-0.4c0-0.1,0.1-0.1,0.1-0.2
c0-0.3,0.2-0.4,0.4-0.3c0,0,0.1,0,0.2,0.1c0.4,0.1,0.5,0.1,0.5,0.1s0.2,0.1,0.4,0.1c0.1,0,0.2,0.1,0.2,0.1l0,0v0.1
c0,0.1-0.1,0.2-0.2,0.2l-0.1,0.1l-0.1,0.1l-0.1,0.1l-0.1,0.1l-0.1,0.1c0,0-0.1,0.1-0.1,0.2c0,0-0.1,0.1-0.1,0.2
c0,0.1-0.1,0.2-0.1,0.2c-0.1,0.2-0.1,0.2-0.1,0.4c0,0.3,0,0.6,0.1,0.8c0,0.1,0.1,0.2,0.1,0.2c0,0.1,0.1,0.2,0.1,0.3l0.1,0.1
c0,0.1,0.1,0.2,0.3,0.3l0.1,0.1c0,0,0.1,0.1,0.2,0.1c0.1,0,0.1,0.1,0.1,0.1c0,0.1,0.2,0.1,0.3,0.1c0,0,0.2,0,0.2,0.1
c0.2,0.1,0.6,0.1,0.9,0.1c0.1,0,0.1,0,0.1,0l0.2-0.1c0.1,0,0.2-0.1,0.3-0.1l0.1-0.1c0,0,0.1-0.1,0.2-0.1c0.3-0.3,0.4-0.4,0.4-0.5
s0.1-0.1,0.1-0.1s0.1-0.2,0.1-0.3c0,0,0.1-0.2,0.1-0.3c0.1,0,0.1-0.2,0.1-0.5v-0.4l-0.1-0.2c0-0.1-0.1-0.2-0.1-0.2
c0-0.1,0-0.2-0.1-0.3s-0.1-0.2,0-0.2c0,0,0.2,0,0.3,0c0,0,0.2,0.1,0.3,0.1s0.4,0.1,0.5,0.1s0.1,0,0.4,0.1c0.1,0,0.2,0,0.2,0l0,0
c0,0,0,0,0.1,0c0,0,0.4,0.1,0.5,0.1s0.3,0.1,0.3,0.1s0.2,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.2,0.1,0.3,0.1
c0.2,0,0.3,0.1,0.4,0.1c0.1,0.1,0.2,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.2,0.1,0.7,0.2,0.7,0.1c0.1-0.1,0.1-0.3,0-0.4
c-0.1-0.1-0.1-0.1-0.5-0.2c-0.1,0-0.2-0.1-0.3-0.1c-0.1-0.1-0.3-0.1-0.4-0.1c-0.1,0-0.3,0-0.4-0.1c-0.1-0.1-0.2-0.1-0.4-0.1
s-0.3-0.1-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.3,0-0.3-0.1-0.5-0.1c-0.1-0.1-0.3-0.1-0.5-0.1c-0.1,0-0.1,0-0.2-0.1
s-0.2-0.1-0.2-0.1c-0.2,0-0.3-0.1-0.4-0.1c0,0-0.2-0.1-0.3-0.1c0,0-0.1,0-0.2,0c-0.3-0.1-0.5-0.1-0.5-0.1s0,0-0.1,0
c-0.2,0-0.4-0.1-0.4-0.1c-0.1,0-0.3-0.1-0.3-0.1s-0.2-0.1-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.1s-0.2-0.1-0.3-0.1
c-0.3,0-0.4-0.1-0.5-0.1c-0.1-0.1-0.2-0.1-0.4-0.1c-0.1,0-0.2-0.1-0.3-0.1c-0.1-0.1-0.2-0.1-0.6-0.1c-0.1,0-0.2,0-0.3-0.1
s-0.2-0.1-0.4-0.1s-0.4-0.2-0.4-0.3c0,0-0.1-0.1-0.2-0.1c-0.2,0-0.3-0.1-0.4-0.1c-0.2-0.1-0.4-0.1-0.5,0s-0.3,0.1-0.4,0
c0,0-0.1-0.1-0.3-0.1C558.1,747.3,558.1,747.3,558,747.3 M558.3,747.4C558.4,747.4,558.4,747.4,558.3,747.4
c0.2,0.3,0.8,0.3,0.8,0.1c0-0.1,0.1-0.1,0.3,0c0.1,0.1,0.1,0.1,0.4,0.1c0.2,0,0.2,0,0.2,0.1c0.1,0.3,0.2,0.4,0.5,0.4
c0.1,0,0.1,0,0.2,0.1c0.1,0.1,0.2,0.1,0.5,0.1c0.2,0,0.2,0,0.3,0.1s0.1,0.1,0.5,0.1c0.1,0,0.2,0,0.2,0.1c0.1,0.1,0.2,0.1,0.5,0.1
s0.3,0,0.3,0.1c0.1,0.1,0.2,0.1,0.4,0.1s0.3,0,0.3,0.1c0.1,0.1,0.2,0.1,0.4,0.1s0.2,0,0.3,0c0.1,0.1,0.2,0.2,0.4,0.2
s0.3,0,0.4,0.1c0.1,0.1,0.2,0.1,0.5,0.1c0.2,0,0.2,0,0.2,0.1c0.1,0.1,0.2,0.1,0.5,0.1c0.2,0,0.3,0,0.3,0.1s0.1,0.1,0.3,0.1
c0.3,0,0.4,0,0.5,0.1s0.2,0.1,0.4,0.1s0.2,0,0.3,0.1c0,0,0.2,0.1,0.3,0.1c0.2,0,0.3,0,0.3,0.1s0.2,0.1,0.5,0.1
c0.2,0,0.2,0,0.3,0.1l0.1,0.1c0.1,0,0.1,0,0.1,0.2v0.1h-0.1c-0.2,0-0.3,0-0.4-0.1c0-0.1-0.1-0.1-0.5-0.1c-0.2,0-0.2,0-0.3-0.1
s-0.2-0.1-0.5-0.1c-0.2,0-0.3,0-0.3-0.1s-0.2-0.1-0.4-0.1s-0.3,0-0.4-0.1c-0.1-0.1-0.2-0.1-0.4-0.1s-0.2,0-0.3,0
c-0.1-0.1-0.2-0.2-0.4-0.2s-0.3,0-0.4-0.1c-0.1-0.1-0.2-0.1-0.5-0.1c-0.2,0-0.2,0-0.3-0.1s-0.4-0.2-0.5-0.1
c-0.1,0.1,0,0.4,0.1,0.5c0,0,0,0.1,0.1,0.2c0,0.2,0.1,0.3,0.1,0.4c0.1,0.1,0.1,0.5,0,0.6v0.1v0.1c0,0,0,0.1,0,0.2
c0,0.2,0,0.2-0.1,0.2s-0.1,0.2-0.1,0.3v0.1c-0.1,0-0.1,0.1-0.1,0.1c0,0.1,0,0.1-0.1,0.1s-0.1,0.1-0.1,0.1s0,0-0.1,0.1
c-0.1,0-0.3,0.1-0.3,0.1s-0.1,0.1-0.2,0.1c-0.2,0-0.4,0.1-0.5,0.1c0,0.1-0.5,0-0.6,0c-0.1-0.1-0.2-0.1-0.4-0.1s-0.2,0-0.3-0.1
c0-0.1-0.1-0.1-0.3-0.1c0,0-0.1,0-0.1-0.1s-0.1-0.1-0.1-0.1s-0.1,0-0.1-0.1s-0.1-0.2-0.2-0.2c0,0,0,0-0.1-0.1
c0-0.1-0.1-0.2-0.1-0.3c-0.1-0.1-0.1-0.1-0.1-0.2c0-0.2,0-0.3-0.1-0.4c-0.1-0.1-0.1-0.5,0-0.6c0.1-0.2,0.1-0.3,0.1-0.4
c0-0.1,0-0.1,0.1-0.2c0.1-0.1,0.2-0.2,0.2-0.3s0-0.1,0.1-0.1s0.1-0.1,0.1-0.2l0,0c0.1,0,0.2-0.1,0.2-0.1s0-0.1,0.1-0.1
s0.2-0.1,0.2-0.1V749c0.1-0.2,0-0.3-0.4-0.3c-0.1,0-0.2,0-0.2,0c-0.1-0.1-0.2-0.1-0.5-0.2c-0.2,0-0.2,0-0.3-0.1
c-0.1-0.2-0.5-0.1-0.6,0.1c0,0.2-0.1,0.3-0.1,0.3c-0.1,0-0.1,0.2-0.1,0.4s0,0.2-0.1,0.3s-0.1,0.2-0.1,0.3s0,0.3-0.1,0.3
s-0.1,0.5,0,0.5c0,0,0,0,0.1,0.1c0,0.1,0.1,0.2,0.1,0.3c0,0,0.1,0,0.1,0.2c0,0.1,0.1,0.2,0.1,0.2s0.1,0.1,0.1,0.2