-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
5750 lines (5695 loc) · 702 KB
/
index.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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Open source nesting for laser cutters, plasma cutters and other CNC machines.">
<link rel="shortcut icon" href="/favicon32.gif" type="image/x-icon" sizes="32x32" />
<link rel="shortcut icon" href="/favicon16.gif" type="image/x-icon" sizes="16x16" />
<link rel="canonical" href="https://www.deepnest.net/">
<title>deepnest-next - deepnest - open source nesting software</title>
<!-- Bootstrap Core CSS -->
<link href="/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- Theme CSS -->
<link href="/font/stylesheet.css" rel="stylesheet">
<link href="/deepnest2.css" rel="stylesheet">
<style>
/* Modal-Overlay */
.modal-overlay {
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
}
/* Modal-Box */
.modalBody {
background: white;
padding: 30px;
border-radius: 8px;
max-width: 90vh;
min-width: 50vh;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-height: 90vh;
overflow-x: auto;
}
/* Schließen-Button */
.modal-close {
margin-top: 10px;
padding: 10px 20px;
background: #f44336;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
</style>
<script src="https://cdn.cookiehub.eu/c2/7bf24f81.js"></script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function(event) {
var cpm = {};
window.cookiehub.load(cpm);
});
</script>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<img src="/img/logo.svg" alt="deepnest logo"
style="display: inline-block; width: 2.4em; margin: 0 0.5em 0 0; position: relative; top: -0.1em" />deepnest.net
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
<li>
<a class="page-scroll" href="#quickstart">Quickstart</a>
</li>
<li>
<a class="page-scroll" href="#download">Download</a>
</li>
<li>
<a class="page-scroll" href="#sponsoring">Sponsoring</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading">Open source nesting software</h1>
<p class="intro-text">
deepnest is an open source nesting application, great for laser cutters, plasma cutters, and other CNC
machines.
</p>
</div>
<div class="col-md-8 col-md-offset-2" style="margin-top: 1em">
<a class="page-scroll btn btn-default btn-lg download" href="#download">Download deepnest <span
class="dl_version">-not loaded-</span></a>
<br />Available for Windows, Mac and Linux<br />
<br /><a class="github-button" href="https://github.com/deepnest-next/deepnest" data-color-scheme="no-preference: light; light: light; dark: dark;" data-size="large" data-show-count="true" aria-label="Star deepnest-next/deepnest on GitHub">Star</a>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/deepnest-next/deepnest/fork" data-color-scheme="no-preference: light; light: light; dark: dark;" data-size="large" data-show-count="true" aria-label="Fork deepnest-next/deepnest on GitHub">Fork</a>
<br /><a href="https://discord.gg/7Df2vJr"><img src="https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white" \></a>
</div>
</div>
<div class="row">
<a href="#about" class="btn btn-circle page-scroll" style="position: relative; top: 3em;">
<i class="fa fa-angle-down animated"></i>
</a>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="container content-section">
<div class="row">
<div class="col-lg-4 nestcol">
<svg xmlns="http://www.w3.org/2000/svg" id="nestsvg" class="default" width="100%" height="100%"
viewBox="0 0 648 704.75">
<g id="sheet0" data-index="0" class="sheet active" transform="translate(-12.75 -660.75)">
<polygon points="12.75 660.75 655 660.75 655 1350 12.75 1350" stroke="#ffffff" fill="none"></polygon>
</g>
<g id="part0" class="part active"
style="transform: translate(472.11449778159175px, 588.4230281998805px) rotate(180deg)">
<polygon fill="url(#part1hatch)" stroke="#ffffff" stroke-width="0.1"
points="264 260.849 264 588.423 472.115 588.423 472.115 466.173 307.581 466.173 307.581 277.006 472.115 277.006 472.115 260.849"
fill-opacity="0.5"></polygon>
<polygon points="306.75 482.673 456.25 482.673 456.25 572.173 306.75 572.173" fill="#404247"
stroke="#ffffff"></polygon>
</g>
<g id="part24" class="part active"
style="transform: translate(586.0717408999999px, -161.09737510000002px) rotate(90deg)">
<path id="_x36_3-Science_x5F_Centre" fill="url(#part25hatch)" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 488.63399999999996 280.125 L 525.1724999999999 263.06775 C 525.1724999999999 263.06775 532.85925 286.53075 535.7782499999998 298.5495 C 539.0939999999999 312.20025000000004 541.6987499999999 326.067 543.5917499999999 340.02375 C 545.5065 354.1245 547.0484999999999 368.349 547.1624999999999 382.59675000000004 C 547.2734999999999 396.5295 545.7457499999998 410.43600000000004 544.3364999999999 424.28774999999996 C 543.0052499999999 437.37749999999994 541.4332499999998 450.46574999999996 539.0219999999998 463.3785 C 536.9167499999999 474.64725 534.5024999999998 485.8995 531.0494999999999 496.782 C 525.8362499999998 513.213 518.6159999999999 528.84 511.90049999999985 544.63425 C 508.02224999999976 553.7549999999999 499.6964999999998 571.71225 499.6964999999998 571.71225 L 488.7524999999998 586.07175 L 488.63399999999996 280.125 z"
fill-opacity="0.5"></path>
</g>
<g id="part145" class="part active" style="transform: translate(461.348992px, -157.8015107px) rotate(90deg)">
<path id="path5360_2_" fill="url(#part146hatch)" stroke="#ffffff" stroke-width="0.1"
d="M 174.05175 445.48425000000003 L 174.05174999999997 415.53824999999995 L 203.21475000000004 314.4255 L 221.97750000000002 314.4255 L 251.13975 415.53825000000006 L 251.13975 445.48425000000003 L 174.05175 445.48425000000003"
fill-opacity="0.5"></path>
<path id="path5366_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 235.69425 418.38225 L 241.94850000000002 418.38225 L 241.94850000000002 414.21375 L 235.69425 414.21375 L 235.69425 418.3829999999999">
</path>
<path id="path5376_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 235.69425 428.80649999999997 L 241.94850000000002 428.80649999999997 L 241.94850000000002 424.63575000000003 L 235.69425 424.63575000000003 L 235.69425 428.8065">
</path>
<path id="path5386_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 235.69425 439.23 L 241.94850000000002 439.23 L 241.94850000000002 435.06000000000006 L 235.69425 435.06000000000006 L 235.69425 439.23075000000006">
</path>
<path id="path5396_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 179.2395 418.38225 L 185.49374999999998 418.38225 L 185.49374999999998 414.21375 L 179.2395 414.21375 L 179.2395 418.3829999999999">
</path>
<path id="path5406_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 179.2395 428.80649999999997 L 185.49374999999998 428.80649999999997 L 185.49374999999998 424.63575000000003 L 179.2395 424.63575000000003 L 179.2395 428.8065">
</path>
<path id="path5416_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 179.2395 439.23 L 185.49374999999998 439.23 L 185.49374999999998 435.06000000000006 L 179.2395 435.06000000000006 L 179.2395 439.23075000000006">
</path>
<path id="path5428_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 221.14350000000002 330.58275 L 204.048 330.58275 L 204.048 324.849 L 221.14350000000002 324.849 L 221.14350000000002 330.58275">
</path>
<path id="path5364_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 235.69425 414.21375 L 235.69425 414.21375"></path>
<path id="path5374_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 235.69425 424.63575000000003 L 235.69425 424.63575000000003"></path>
<path id="path5384_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 235.69425 435.06000000000006 L 235.69425 435.06000000000006"></path>
<path id="path5394_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 179.2395 414.21375 L 179.2395 414.21375"></path>
<path id="path5404_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 179.2395 424.63575000000003 L 179.2395 424.63575000000003"></path>
<path id="path5414_2_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 179.2395 435.06000000000006 L 179.2395 435.06000000000006"></path>
</g>
<line class="merged active" x1="15.864742000000035" x2="15.864742000000039" y1="93.33823930000005"
y2="16.250239299999976"></line>
<line class="merged active" x1="15.864742000000035" x2="15.864742000000039" y1="93.33823930000005"
y2="16.250239299999976"></line>
<line class="merged active" x1="0.864742000000035" x2="265.810742000000005" y1="329" y2="329"></line>
<line class="merged active" x1="15.864742000000035" x2="15.864742000000039" y1="93.33823930000005"
y2="16.250239299999976"></line>
<line class="merged active" x1="15.864742000000035" x2="45.810742000000005" y1="16.250239299999976"
y2="16.250239299999976"></line>
<line class="merged active" x1="15.864742000000035" x2="15.864742000000039" y1="93.33823930000005"
y2="16.250239299999976"></line>
<line class="merged active" x1="15.864742000000035" x2="45.810742000000005" y1="16.250239299999976"
y2="16.250239299999976"></line>
<g id="part144" class="part active"
style="transform: translate(257.38725410000006px, 567.7342435px) rotate(180deg)">
<path id="path5360_1_" fill="url(#part145hatch)" stroke="#ffffff" stroke-width="0.1"
d="M 92.85375 445.48425000000003 L 92.85374999999999 415.53824999999995 L 122.01675 314.4255 L 140.77949999999998 314.4255 L 169.94175 415.53825000000006 L 169.94175 445.48425000000003 L 92.85375 445.48425000000003"
fill-opacity="0.5"></path>
<path id="path5366_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 154.49625 418.38225 L 160.74975 418.38225 L 160.74975 414.21375 L 154.4955 414.21375 L 154.49625 418.3829999999999">
</path>
<path id="path5376_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 154.49625 428.80649999999997 L 160.74975 428.80649999999997 L 160.74975 424.63575000000003 L 154.4955 424.63575000000003 L 154.49625 428.8065">
</path>
<path id="path5386_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 154.49625 439.23 L 160.74975 439.23 L 160.74975 435.06000000000006 L 154.4955 435.06000000000006 L 154.49625 439.23075000000006">
</path>
<path id="path5396_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 98.04150000000001 418.38225 L 104.29575 418.38225 L 104.29575 414.21375 L 98.04150000000001 414.21375 L 98.04150000000001 418.3829999999999">
</path>
<path id="path5406_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 98.04150000000001 428.80649999999997 L 104.29575 428.80649999999997 L 104.29575 424.63575000000003 L 98.04150000000001 424.63575000000003 L 98.04150000000001 428.8065">
</path>
<path id="path5416_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 98.04150000000001 439.23 L 104.29575 439.23 L 104.29575 435.06000000000006 L 98.04150000000001 435.06000000000006 L 98.04150000000001 439.23075000000006">
</path>
<path id="path5428_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 139.94549999999998 330.58275 L 122.85000000000001 330.58275 L 122.85000000000001 324.849 L 139.9455 324.849 L 139.94549999999998 330.58275">
</path>
<path id="path5364_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 154.49625 414.21375 L 154.49625 414.21375"></path>
<path id="path5374_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 154.49625 424.63575000000003 L 154.49625 424.63575000000003"></path>
<path id="path5384_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 154.49625 435.06000000000006 L 154.49625 435.06000000000006"></path>
<path id="path5394_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 98.04150000000001 414.21375 L 98.04150000000001 414.21375"></path>
<path id="path5404_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 98.04150000000001 424.63575000000003 L 98.04150000000001 424.63575000000003"></path>
<path id="path5414_1_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 98.04150000000001 435.06000000000006 L 98.04150000000001 435.06000000000006"></path>
</g>
<line class="merged active" x1="164.53350408159167" x2="87.4455041" y1="122.24999350000007"
y2="122.24999350000007"></line>
<line class="merged active" x1="164.53350410000002" x2="164.53350410000002" y1="122.24999350000007"
y2="152.1959935"></line>
<g id="part143" class="part active"
style="transform: translate(97.91475410000005px, 567.7342435px) rotate(180deg)">
<path id="path5360" fill="url(#part144hatch)" stroke="#ffffff" stroke-width="0.1"
d="M 10.469249999999999 445.48425000000003 L 10.469249999999999 415.53825000000006 L 39.63225 314.4255 L 58.39425 314.4255 L 87.55725000000001 415.53825000000006 L 87.55725000000001 445.48425000000003 L 10.469249999999999 445.48425000000003"
fill-opacity="0.5"></path>
<path id="path5396" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 15.657 418.38225 L 21.91125 418.38225 L 21.91125 414.21375 L 15.656999999999998 414.21375 L 15.657 418.3829999999999">
</path>
<path id="path5406" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 15.657 428.80649999999997 L 21.91125 428.80649999999997 L 21.91125 424.63575000000003 L 15.656999999999998 424.63575000000003 L 15.657 428.8065">
</path>
<path id="path5416" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 15.657 439.23 L 21.91125 439.23 L 21.91125 435.06000000000006 L 15.656999999999998 435.06000000000006 L 15.657 439.23075000000006">
</path>
<path id="path5428" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 57.56100000000001 330.58275 L 40.4655 330.58275 L 40.4655 324.849 L 57.56100000000001 324.849 L 57.56100000000001 330.58275">
</path>
<path id="path5366_3_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 74.80425 418.38225 L 81.05850000000001 418.38225 L 81.05850000000001 414.21375 L 74.80425 414.21375 L 74.80425 418.3829999999999">
</path>
<path id="path5376_3_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 74.80425 428.80649999999997 L 81.05850000000001 428.80649999999997 L 81.05850000000001 424.63575000000003 L 74.80425 424.63575000000003 L 74.80425 428.8065">
</path>
<path id="path5386_3_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 74.80425 439.23 L 81.05850000000001 439.23 L 81.05850000000001 435.06000000000006 L 74.80425 435.06000000000006 L 74.80425 439.23075000000006">
</path>
<path id="path5394" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 15.657 414.21375 L 15.657 414.21375"></path>
<path id="path5404" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 15.657 424.63575000000003 L 15.657 424.63575000000003"></path>
<path id="path5414" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 15.657 435.06000000000006 L 15.657 435.06000000000006"></path>
<path id="path5364_3_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 74.80425 414.21375 L 74.80425 414.21375"></path>
<path id="path5374_3_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 74.80425 424.63575000000003 L 74.80425 424.63575000000003"></path>
<path id="path5384_3_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 74.80425 435.06000000000006 L 74.80425 435.06000000000006"></path>
</g>
<line class="merged active" x1="10.3575041" x2="87.4455041" y1="122.24999350000007" y2="122.24999350000007">
</line>
<line class="merged active" x1="87.4455041" x2="87.4455041" y1="122.24999350000007" y2="152.1959935"></line>
<g id="part22" class="part active"
style="transform: translate(-169.1602522px, -62.10905420000006px) rotate(0deg)">
<path id="_x35_7-Anniesland_x5F_Court" fill="url(#part23hatch)" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 377.27475000000004 389.66249999999997 L 431.67825000000005 389.66249999999997 L 431.67825000000005 291.82574999999997 L 386.076 291.82574999999997 L 386.076 305.88 L 384.32174999999995 305.88 L 384.32174999999995 291.82574999999997 L 377.27475 300.44025 L 377.27475 389.66249999999997 z"
fill-opacity="0.5"></path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 376.995 L 385.8975 376.995 L 385.8975 384.64650000000006 L 384.144 384.64650000000006 L 384.144 376.995 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 365.93174999999997 L 385.8975 365.93174999999997 L 385.8975 373.58175 L 384.144 373.58175 L 384.144 365.93174999999997 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 354.867 L 385.8975 354.867 L 385.8975 362.517 L 384.144 362.517 L 384.144 354.867 z"></path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 343.80225 L 385.8975 343.80225 L 385.8975 351.45225 L 384.144 351.45225 L 384.144 343.80225 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 332.73825 L 385.8975 332.73825 L 385.8975 340.389 L 384.144 340.389 L 384.144 332.73825 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 321.67425000000003 L 385.8975 321.67425000000003 L 385.8975 329.32425 L 384.144 329.32425 L 384.144 321.67425000000003 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 384.144 310.61025 L 385.8975 310.61025 L 385.8975 318.261 L 384.144 318.261 L 384.144 310.61025 z">
</path>
</g>
<line class="merged active" x1="208.11449779999998" x2="208.11449779999998" y1="327.55344579999996"
y2="238.33119579999993"></line>
<g id="part23" class="part active"
style="transform: translate(658.8659978px, -246.07805419999994px) rotate(90deg)">
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="url(#part24hatch)" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 377.958 396.34800000000007 L 377.958 450.7515000000001 L 475.79475 450.7515000000001 L 475.79475 405.15000000000003 L 461.74125 405.15000000000003 L 461.74125 403.39575 L 475.79475 403.39575 L 467.18100000000004 396.34875 L 377.958 396.34875 z"
fill-opacity="0.5"></path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 390.62625 403.21725000000004 L 390.62625 404.97075 L 382.97475000000003 404.97075 L 382.97475000000003 403.21725000000004 L 390.62625 403.21725000000004 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 401.69025 403.21725000000004 L 401.69025 404.97075 L 394.0395 404.97075 L 394.0395 403.21725000000004 L 401.69025 403.21725000000004 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 412.7535 403.21725000000004 L 412.7535 404.97075 L 405.10349999999994 404.97075 L 405.10349999999994 403.21725000000004 L 412.7535 403.21725000000004 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 423.81899999999996 403.21725000000004 L 423.81899999999996 404.97075 L 416.169 404.97075 L 416.169 403.21725000000004 L 423.81899999999996 403.21725000000004 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 434.88225 403.21725000000004 L 434.88225 404.97075 L 427.2322499999999 404.97075 L 427.2322499999999 403.21725000000004 L 434.88225 403.21725000000004 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 445.947 403.21725000000004 L 445.947 404.97075 L 438.29625 404.97075 L 438.29625 403.21725000000004 L 445.947 403.21725000000004 z">
</path>
<path id="_x35_7-Anniesland_x5F_Court_1_" fill="#404247" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="bevel"
d="M 457.01025 403.21725000000004 L 457.01025 404.97075 L 449.35949999999997 404.97075 L 449.35949999999997 403.21725000000004 L 457.01025 403.21725000000004 z">
</path>
</g>
<line class="merged active" x1="208.11449779999998" x2="208.11449779999992" y1="229.71669580000002"
y2="131.8799458000001"></line>
<g id="part27" class="part active"
style="transform: translate(840.5677449px, 500.7637216999999px) rotate(180deg)">
<polygon fill="url(#part28hatch)" stroke="#ffffff" stroke-width="0.7056" stroke-linecap="round"
stroke-linejoin="round"
points="629.953 492.042 629.953 479.985 632.453 479.985 632.453 473.218 629.953 473.218 629.953 461.161 632.453 461.161 632.453 455.251 629.953 455.251 629.953 443.195 632.453 443.195 632.453 428.422 560.111 428.422 560.111 443.195 563 443.195 563 455.251 560.111 455.251 560.111 461.161 563 461.161 563 473.218 560.111 473.218 560.111 479.985 563 479.985 563 492.042 560.111 492.042 560.111 500.764 632.453 500.764 632.453 492.042"
fill-opacity="0.5"></polygon>
</g>
<line class="merged active" x1="208.11449779999998" x2="208.11449779999998" y1="72.3419687999999"
y2="57.569202700000005"></line>
<g id="part28" class="part active"
style="transform: translate(-250.74225609999985px, 887.6520324000003px) rotate(270deg)">
<polygon fill="url(#part29hatch)" stroke="#ffffff" stroke-width="0.7056" stroke-linecap="round"
stroke-linejoin="round"
points="629.953 576.88 629.953 564.824 632.453 564.824 632.453 558.056 629.953 558.056 629.953 545.999 632.453 545.999 632.453 540.09 629.953 540.09 629.953 528.033 632.453 528.033 632.453 513.26 560.111 513.26 560.111 528.033 563 528.033 563 540.09 560.111 540.09 560.111 545.999 563 545.999 563 558.056 560.111 558.056 560.111 564.824 563 564.824 563 576.88 560.111 576.88 560.111 585.602 632.453 585.602 632.453 576.88"
fill-opacity="0.5"></polygon>
</g>
<line class="merged active" x1="262.5179978" x2="262.5179978" y1="327.5407653000002" y2="255.19878530000017">
</line>
<g id="part26" class="part active"
style="transform: translate(675.0869674999999px, -377.25446179999994px) rotate(90deg)">
<polygon fill="url(#part27hatch)" stroke="#ffffff" stroke-width="0.7056" stroke-linecap="round"
stroke-linejoin="round"
points="629.953 403.848 629.953 391.791 632.453 391.791 632.453 385.023 629.953 385.023 629.953 372.967 632.453 372.967 632.453 367.057 629.953 367.057 629.953 355 632.453 355 632.453 340.228 560.111 340.228 560.111 355 563 355 563 367.057 560.111 367.057 560.111 372.967 563 372.967 563 385.023 560.111 385.023 560.111 391.791 563 391.791 563 403.848 560.111 403.848 560.111 412.569 632.453 412.569 632.453 403.848"
fill-opacity="0.5"></polygon>
</g>
<line class="merged active" x1="262.51799779999993" x2="262.51799779999993" y1="229.71669580000002"
y2="255.19878530000005"></line>
<line class="merged active" x1="262.51799779999993" x2="262.51799779999993" y1="182.85680530000002"
y2="221.10294580000004"></line>
<line class="merged active" x1="326.1382371000001" x2="334.85921479999996" y1="255.19878530000005"
y2="255.19878530000005"></line>
<g id="part25" class="part active"
style="transform: translate(-212.40899699999989px, 982.1128888000001px) rotate(270deg)">
<path id="_x39_-Finnieston_x5F_Crane" fill="url(#part26hatch)" stroke="#ffffff" stroke-width="0.7056"
stroke-linecap="round" stroke-linejoin="round"
d="M 615.3465 222.4305 L 615.3465 216.85275000000001 L 617.7915 212.409 L 632.841 212.52 L 636.069 216.61200000000002 L 636.069 232.929 L 605.5425 243.4425 L 605.5425 247.55325 L 607.70325 247.75574999999998 L 607.70325 318.1139999999999 L 579.8955 318.1139999999999 L 579.8955 247.21649999999997 L 583.1205 247.28399999999993 L 583.1205 244.25099999999998 L 522.7979999999999 227.71199999999993 L 522.8774999999998 222.88349999999997 L 522.9134999999999 217.29375 L 530.7622499999999 217.25775 L 530.7622499999999 222.3555 L 615.3465 222.4305 z"
fill-opacity="0.5"></path>
</g>
<g id="part5" class="part active"
style="transform: translate(288.0720074000001px, 986.4673888px) rotate(180deg)">
<polygon fill="url(#part6hatch)" stroke="#ffffff" stroke-width="0.1"
points="117.415 546.75 149.891 528 182.367 546.75 182.367 584.25 149.891 603 117.415 584.25"
fill-opacity="0.5"></polygon>
</g>
<g id="part1" class="part active"
style="transform: translate(191.56829589999995px, -80.25518469999997px) rotate(0deg)">
<polygon fill="url(#part2hatch)" stroke="#ffffff" stroke-width="0.1"
points="11.406 482.849 43.8825 464.099 76.3582 482.849 76.3582 520.349 43.8825 539.099 11.406 520.349"
fill-opacity="0.5"></polygon>
</g>
<g id="part2" class="part active"
style="transform: translate(185.5847906px, -92.9796272000001px) rotate(0deg)">
<polygon fill="url(#part3hatch)" stroke="#ffffff" stroke-width="0.1"
points="82.3418 482.849 114.817 464.099 147.293 482.849 147.293 520.349 114.817 539.099 82.3418 520.349"
fill-opacity="0.5"></polygon>
</g>
<g id="part4" class="part active"
style="transform: translate(223.8359833px, -421.14295059999995px) rotate(0deg)">
<polygon fill="url(#part5hatch)" stroke="#ffffff" stroke-width="0.1"
points="45.8085 547.75 78.2842 529 110.76 547.75 110.76 585.25 78.2842 604 45.8085 585.25"
fill-opacity="0.5"></polygon>
</g>
<g id="part3" class="part active"
style="transform: translate(595.5061952px, 92.90329859999997px) rotate(90deg)">
<polygon fill="url(#part4hatch)" stroke="#ffffff" stroke-width="0.1"
points="153.563 482.849 186.038 464.099 218.514 482.849 218.514 520.349 186.038 539.099 153.563 520.349"
fill-opacity="0.5"></polygon>
</g>
<g id="part31" class="part active"
style="transform: translate(53.2657466px, 322.38824350000004px) rotate(180deg)">
<path fill="url(#part32hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 27.579 13.164 C 36.088499999999996 13.373249999999999 42.498000000000005 15.76125 46.80525 20.329500000000003 C 51.1125 24.8985 53.26575 31.829250000000002 53.26575 41.12175 C 53.26575 50.41575 51.11175 57.345749999999995 46.80525 61.913999999999994 C 42.498 66.48299999999999 36.088499999999996 68.87174999999999 27.578999999999994 69.0795 L 8.2365 69.0795 L 8.2365 13.164 L 27.579 13.164 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 24.91725 64.53675000000001 C 28.936500000000002 64.53675000000001 32.39625 64.10625 35.2935 63.24525000000001 C 38.1915 62.38350000000001 40.5795 61.01325000000001 42.459 59.133750000000006 C 44.3385 57.25425000000001 45.721500000000006 54.82575000000001 46.61025000000001 51.85050000000001 C 47.496750000000006 48.87450000000001 47.941500000000005 45.299250000000015 47.941500000000005 41.12175000000001 C 47.941500000000005 36.94575000000001 47.49675 33.369000000000014 46.61025000000001 30.39300000000001 C 45.721500000000006 27.41700000000001 44.33925000000001 24.989250000000013 42.459 23.109750000000012 C 40.57950000000001 21.230250000000012 38.191500000000005 19.860000000000014 35.29350000000001 18.998250000000013 C 32.39625000000001 18.137250000000012 28.936500000000006 17.706000000000014 24.917250000000003 17.706000000000014 L 13.5615 17.706000000000014 L 13.5615 64.53675000000001 L 24.91725 64.53675000000001 z">
</path>
</g>
<g id="part11" class="part active"
style="transform: translate(677.3498888px, 37.566507899999806px) rotate(90deg)">
<circle fill="url(#part12hatch)" stroke="#ffffff" stroke-width="0.1" cx="391.01025" cy="626.25"
r="26.250749999999996" fill-opacity="0.5"></circle>
</g>
<g id="part14" class="part active"
style="transform: translate(-321.27875539999985px, 680.3321943000001px) rotate(270deg)">
<circle fill="url(#part15hatch)" stroke="#ffffff" stroke-width="0.1" cx="598.602" cy="626.25"
r="26.250749999999996" fill-opacity="0.5"></circle>
</g>
<g id="part12" class="part active"
style="transform: translate(-318.51594079999984px, 558.0768026000001px) rotate(270deg)">
<circle fill="url(#part13hatch)" stroke="#ffffff" stroke-width="0.1" cx="529.06425" cy="626.25" r="26.25"
fill-opacity="0.5"></circle>
</g>
<g id="part7" class="part active"
style="transform: translate(299.3486994000001px, 725.5941123px) rotate(180deg)">
<circle fill="url(#part8hatch)" stroke="#ffffff" stroke-width="0.1" cx="44.12325" cy="626.25" r="26.25"
fill-opacity="0.5"></circle>
</g>
<g id="part6" class="part active"
style="transform: translate(72.4757287px, -165.62741300000005px) rotate(0deg)">
<circle fill="url(#part7hatch)" stroke="#ffffff" stroke-width="0.1" cx="114.0675" cy="626.25" r="26.25"
fill-opacity="0.5"></circle>
</g>
<g id="part8" class="part active"
style="transform: translate(-534.5471678px, 645.5488516000003px) rotate(270deg)">
<circle fill="url(#part9hatch)" stroke="#ffffff" stroke-width="0.1" cx="183.6045" cy="626.25" r="26.25"
fill-opacity="0.5"></circle>
</g>
<g id="part9" class="part active"
style="transform: translate(905.3407471999999px, 142.65399079999997px) rotate(90deg)">
<circle fill="url(#part10hatch)" stroke="#ffffff" stroke-width="0.1" cx="321.47249999999997" cy="626.25"
r="26.25" fill-opacity="0.5"></circle>
</g>
<g id="part10" class="part active"
style="transform: translate(285.1398480000001px, 1104.4614421px) rotate(180deg)">
<circle fill="url(#part11hatch)" stroke="#ffffff" stroke-width="0.1" cx="251.52824999999999" cy="626.25"
r="26.25" fill-opacity="0.5"></circle>
</g>
<g id="part15" class="part active"
style="transform: translate(-425.68486139999993px, 709.6364606000002px) rotate(270deg)">
<circle fill="url(#part16hatch)" stroke="#ffffff" stroke-width="0.1" cx="224.88975" cy="565.5" r="26.25"
fill-opacity="0.5"></circle>
</g>
<g id="part13" class="part active"
style="transform: translate(-227.2572831px, -139.12226980000003px) rotate(0deg)">
<circle fill="url(#part14hatch)" stroke="#ffffff" stroke-width="0.1" cx="459.12" cy="626.25" r="26.25"
fill-opacity="0.5"></circle>
</g>
<g id="part21" class="part active"
style="transform: translate(517.5237466px, 169.47124870000005px) rotate(90deg)">
<path id="_x31_01-Steps_x5F_Bar_x5F_sign_2_" opacity="0.967" fill="url(#part22hatch)" stroke="#ffffff"
stroke-width="0.7056" stroke-linecap="round" stroke-linejoin="bevel" enable-background="new "
d="M 318.831 403.7895 L 365.244 403.7895 L 365.244 419.45175 L 357.99 419.45175 L 357.99 435.06000000000006 L 350.64374999999995 435.06000000000006 L 350.64374999999995 450.5475 L 318.83175 450.5475 L 318.831 403.7895 z"
fill-opacity="0.5"></path>
<path id="path5366_6_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 412.56899999999996 L 330 412.56899999999996 L 330 408.40049999999997 L 323.74575 408.40049999999997 L 323.74575 412.56975">
</path>
<path id="path5376_6_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 422.99325 L 330 422.99325 L 330 418.8225 L 323.74575 418.8225 L 323.74575 422.99325">
</path>
<path id="path5386_6_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 433.41675 L 330 433.41675 L 330 429.24674999999996 L 323.74575 429.24674999999996 L 323.74575 433.4175">
</path>
<path id="path5364_6_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 408.40049999999997 L 323.74575 408.40049999999997"></path>
<path id="path5374_6_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 418.8225 L 323.74575 418.8225"></path>
<path id="path5384_6_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 429.24674999999996 L 323.74575 429.24674999999996"></path>
</g>
<g id="part16" class="part active"
style="transform: translate(625.0516869px, 170.39768089999995px) rotate(90deg)">
<path id="_x31_01-Steps_x5F_Bar_x5F_sign" opacity="0.967" fill="url(#part17hatch)" stroke="#ffffff"
stroke-width="0.7056" stroke-linecap="round" stroke-linejoin="bevel" enable-background="new "
d="M 318.831 291.04650000000004 L 365.244 291.04650000000004 L 365.244 306.70875 L 357.99 306.70875 L 357.99 322.317 L 350.64374999999995 322.317 L 350.64374999999995 337.80449999999996 L 318.83175 337.80449999999996 L 318.831 291.04650000000004 z"
fill-opacity="0.5"></path>
<path id="path5366_4_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 299.82599999999996 L 330 299.82599999999996 L 330 295.65675 L 323.74575 295.65675 L 323.74575 299.826">
</path>
<path id="path5376_4_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 310.25025 L 330 310.25025 L 330 306.0795 L 323.74575 306.0795 L 323.74575 310.25025">
</path>
<path id="path5386_4_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 320.67375 L 330 320.67375 L 330 316.50300000000004 L 323.74575 316.50300000000004 L 323.74575 320.67375">
</path>
<path id="path5364_4_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 295.65675 L 323.74575 295.65675"></path>
<path id="path5374_4_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 306.0795 L 323.74575 306.0795"></path>
<path id="path5384_4_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 316.50300000000004 L 323.74575 316.50300000000004"></path>
</g>
<g id="part20" class="part active"
style="transform: translate(557.2036403px, 180.40420329999995px) rotate(90deg)">
<path id="_x31_01-Steps_x5F_Bar_x5F_sign_1_" opacity="0.967" fill="url(#part21hatch)" stroke="#ffffff"
stroke-width="0.7056" stroke-linecap="round" stroke-linejoin="bevel" enable-background="new "
d="M 318.831 348.68475 L 365.244 348.68475 L 365.244 364.347 L 357.99 364.347 L 357.99 379.95525 L 350.64374999999995 379.95525 L 350.64374999999995 395.44274999999993 L 318.83175 395.44274999999993 L 318.831 348.68475 z"
fill-opacity="0.5"></path>
<path id="path5366_5_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 357.46425 L 330 357.46425 L 330 353.29575 L 323.74575 353.29575 L 323.74575 357.46500000000003">
</path>
<path id="path5376_5_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 367.88849999999996 L 330 367.88849999999996 L 330 363.71775 L 323.74575 363.71775 L 323.74575 367.88849999999996">
</path>
<path id="path5386_5_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 378.312 L 330 378.312 L 330 374.14125 L 323.74575 374.14125 L 323.74575 378.312"></path>
<path id="path5364_5_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 353.29575 L 323.74575 353.29575"></path>
<path id="path5374_5_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 363.71775 L 323.74575 363.71775"></path>
<path id="path5384_5_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 323.74575 374.14125 L 323.74575 374.14125"></path>
</g>
<g id="part30" class="part active"
style="transform: translate(549.7499952000001px, 1090.6399662px) rotate(180deg)">
<polygon fill="url(#part31hatch)" stroke="#ffffff" stroke-width="0.7056" stroke-linecap="round"
stroke-linejoin="round" points="507 586.07 549.75 586.07 549.75 511.5" fill-opacity="0.5"></polygon>
</g>
<g id="part34" class="part active"
style="transform: translate(209.2054966px, 583.7454808999998px) rotate(180deg)">
<path fill="url(#part35hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 146.77125 28.670249999999996 L 146.77125 36.345 L 146.928 36.345 C 148.0755 33.525000000000006 149.943 31.34625 152.5275 29.80575 C 155.11124999999998 28.266750000000002 158.04825 27.49575 161.33775000000003 27.49575 C 164.41725000000002 27.49575 167.09400000000002 28.071000000000005 169.365 29.2185 C 171.63600000000002 30.367499999999996 173.52750000000003 31.920749999999998 175.04250000000002 33.87825 C 176.55675000000002 35.83575 177.67800000000003 38.10675 178.41000000000003 40.69125 C 179.1405 43.275 179.50650000000002 46.003499999999995 179.50650000000002 48.8745 C 179.50650000000002 51.747 179.1405 54.47399999999999 178.41000000000003 57.0585 C 177.67800000000003 59.643 176.55675000000002 61.914 175.04250000000002 63.871500000000005 C 173.5275 65.82900000000001 171.63600000000002 67.37025000000001 169.365 68.49225000000001 S 164.418 70.17600000000002 161.33775000000003 70.17600000000002 C 159.87525000000002 70.17600000000002 158.4135 69.99225000000001 156.95175 69.62775000000002 C 155.49 69.26175 154.1325 68.71500000000002 152.88 67.98300000000002 C 151.62675000000002 67.25250000000001 150.51749999999998 66.33825000000002 149.5515 65.24250000000002 C 148.58475 64.14600000000002 147.84075 62.86725000000001 147.3195 61.404750000000014 L 147.1635 61.404750000000014 L 147.1635 83.95875000000001 L 142.22925 83.95875000000001 L 142.22925 28.670249999999996 L 146.77125 28.670249999999996 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 173.82825 42.64875 C 173.331 40.587 172.548 38.7465 171.4785 37.128 C 170.40824999999998 35.510250000000006 169.03799999999998 34.191 167.36775 33.17325000000001 C 165.69599999999997 32.1555 163.68675 31.646250000000006 161.33775 31.646250000000006 C 158.62275 31.646250000000006 156.35174999999998 32.115750000000006 154.52474999999998 33.0555 C 152.69625 33.995250000000006 151.23525 35.24850000000001 150.13875 36.8145 C 149.04225 38.380500000000005 148.27124999999998 40.209 147.82799999999997 42.297000000000004 C 147.384 44.38575000000001 147.16275 46.578 147.16275 48.87525 C 147.16275 50.96475 147.40949999999998 53.039249999999996 147.90675 55.101 C 148.40249999999997 57.16425000000001 149.21099999999998 59.00475 150.33374999999998 60.6225 C 151.45574999999997 62.241 152.91824999999997 63.55875 154.71974999999998 64.57724999999999 C 156.52124999999998 65.595 158.72625 66.10425 161.337 66.10425 C 163.68599999999998 66.10425 165.696 65.595 167.367 64.57724999999999 C 169.03724999999997 63.55874999999999 170.40749999999997 62.241 171.47775 60.6225 C 172.54799999999997 59.00475 173.33024999999998 57.164249999999996 173.8275 55.101 C 174.3225 53.03925000000001 174.5715 50.964 174.5715 48.87525 C 174.57225 46.78725 174.32325 44.712 173.82825 42.64875 z">
</path>
</g>
<g id="part29" class="part active"
style="transform: translate(251.14049730000005px, 733.2041604000001px) rotate(180deg)">
<polygon points="225.278 482.673 251.141 482.673 251.141 527.251 225.278 527.251" fill="url(#part30hatch)"
fill-opacity="0.5" stroke="#ffffff"></polygon>
</g>
<g id="part40" class="part active"
style="transform: translate(137.1883533px, 175.29807689999984px) rotate(90deg)">
<path fill="url(#part41hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 368.00025 34.935 C 368.83425 33.21225 369.9705 31.80225 371.40675 30.705749999999995 C 372.8422499999999 29.61 374.52524999999997 28.799999999999997 376.45724999999993 28.27875 C 378.38775 27.7575 380.53049999999996 27.49575 382.87874999999997 27.49575 C 384.6524999999999 27.49575 386.4285 27.665999999999997 388.2045 28.005000000000003 C 389.979 28.344750000000005 391.57125 28.98375 392.98125000000005 29.923500000000004 S 395.538 32.182500000000005 396.4275 33.87825000000001 C 397.31475 35.575500000000005 397.75875 37.78125000000001 397.75875 40.49550000000001 L 397.75875 61.95300000000001 C 397.75875 63.937500000000014 398.72325 64.92900000000002 400.65600000000006 64.92900000000002 C 401.2297500000001 64.92900000000002 401.75250000000005 64.82475000000002 402.22200000000004 64.61625000000001 L 402.22200000000004 68.76675000000002 C 401.64675 68.87175000000002 401.13750000000005 68.94975000000002 400.69500000000005 69.00150000000002 C 400.2510000000001 69.05400000000002 399.6892500000001 69.07950000000002 399.01200000000006 69.07950000000002 C 397.75875 69.07950000000002 396.75225 68.91075000000002 395.9962500000001 68.57025000000002 C 395.2387500000001 68.23125000000002 394.65150000000006 67.74825000000001 394.2337500000001 67.12125000000002 C 393.81450000000007 66.49500000000002 393.5407500000001 65.75100000000002 393.4117500000001 64.88925000000002 C 393.2805000000001 64.02750000000002 393.2152500000001 63.07575000000001 393.2152500000001 62.03025000000002 L 393.05850000000015 62.03025000000002 C 392.1697500000002 63.33600000000001 391.26975000000016 64.49700000000001 390.35625000000016 65.51475000000002 C 389.4420000000001 66.53250000000001 388.42425000000014 67.38225000000001 387.3022500000002 68.06025000000002 C 386.17875000000015 68.73975000000003 384.9007500000002 69.26025000000001 383.4652500000002 69.62625000000001 C 382.0282500000002 69.99075000000002 380.31975000000017 70.17450000000001 378.3360000000002 70.17450000000001 C 376.4557500000002 70.17450000000001 374.69475000000017 69.95175000000002 373.0492500000002 69.50925000000001 C 371.4052500000002 69.06600000000002 369.96900000000016 68.361 368.7427500000002 67.39500000000001 C 367.5150000000002 66.42900000000002 366.5490000000002 65.202 365.8447500000002 63.71400000000001 S 364.78800000000024 60.46425000000001 364.78800000000024 58.42800000000001 C 364.78800000000024 55.60875000000001 365.4142500000002 53.40375000000001 366.66750000000025 51.81075000000001 C 367.92000000000024 50.218500000000006 369.5775000000002 49.00500000000001 371.64075000000025 48.16950000000001 C 373.7025000000002 47.334750000000014 376.0260000000002 46.74750000000001 378.61050000000023 46.40700000000001 C 381.1950000000003 46.06800000000001 383.81850000000026 45.741000000000014 386.4810000000002 45.428250000000006 C 387.5250000000003 45.324000000000005 388.43850000000026 45.19350000000001 389.2215000000002 45.03675000000001 S 390.65700000000027 44.60625000000001 391.17900000000026 44.21475000000001 C 391.7002500000003 43.823250000000016 392.10450000000026 43.28850000000001 392.3932500000003 42.609000000000016 C 392.67900000000026 41.93100000000001 392.82300000000026 41.04300000000001 392.82300000000026 39.946500000000015 C 392.82300000000026 38.27625000000002 392.54925000000026 36.90600000000001 392.0002500000003 35.835000000000015 C 391.45275000000026 34.76550000000002 390.69525000000027 33.91650000000001 389.73000000000025 33.28950000000002 C 388.76325000000026 32.66325000000002 387.64125000000024 32.23275000000002 386.36250000000024 31.99725000000002 C 385.0830000000002 31.762500000000017 383.71275000000026 31.64475000000002 382.25175000000024 31.64475000000002 C 379.1182500000002 31.64475000000002 376.56000000000023 32.388750000000016 374.57775000000026 33.876750000000015 C 372.59325000000024 35.36475000000002 371.5485000000003 37.75275000000002 371.44425000000024 41.042250000000024 L 366.51075000000026 41.042250000000024 C 366.669 38.694 367.16475 36.65775 368.00025 34.935 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 392.6685 46.995 C 392.355 47.57025 391.75424999999996 47.987249999999996 390.86775 48.24825 C 389.9797500000001 48.510000000000005 389.196 48.69225 388.51875000000007 48.796499999999995 C 386.43000000000006 49.162499999999994 384.2767500000001 49.488749999999996 382.05750000000006 49.77525 C 379.8382500000001 50.0625 377.81550000000004 50.493750000000006 375.98850000000004 51.0675 C 374.1600000000001 51.64275 372.6600000000001 52.46475 371.48550000000006 53.53425 C 370.3110000000001 54.60450000000001 369.72300000000007 56.1315 369.72300000000007 58.11525 C 369.72300000000007 59.36850000000001 369.9705 60.477750000000015 370.46700000000004 61.44375000000001 C 370.9620000000001 62.41050000000001 371.62800000000004 63.24525000000001 372.46350000000007 63.9495 C 373.29825000000005 64.6545 374.26500000000004 65.19 375.36075000000005 65.55525 C 376.45725000000004 65.9205 377.57925000000006 66.1035 378.72825000000006 66.1035 C 380.60775000000007 66.1035 382.4085 65.81700000000001 384.13200000000006 65.2425 C 385.8547500000001 64.66875 387.3555 63.83250000000001 388.63500000000005 62.736000000000004 C 389.91375000000005 61.64025000000001 390.9315 60.308250000000015 391.68825000000004 58.742250000000006 C 392.44500000000005 57.17625000000001 392.82450000000006 55.40175000000001 392.82450000000006 53.41725000000001 L 392.82450000000006 46.995 L 392.6685 46.995 z">
</path>
</g>
<g id="part42" class="part active"
style="transform: translate(-333.61393969999995px, 507.5797760999999px) rotate(0deg)">
<path fill="url(#part43hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 448.93500000000006 55.72725 C 449.43 57.63375 450.22725 59.342999999999996 451.32375 60.8565 C 452.42025 62.3715 453.80325000000005 63.623999999999995 455.47425 64.6155 C 457.1445 65.60775 459.1545 66.1035 461.50424999999996 66.1035 C 465.1072499999999 66.1035 467.92575 65.16375 469.962 63.28424999999999 C 471.99825 61.40474999999999 473.4075 58.89824999999999 474.19050000000004 55.76624999999999 L 479.124 55.76624999999999 C 478.07925 60.360749999999996 476.16149999999993 63.910499999999985 473.36850000000004 66.41699999999999 C 470.57475 68.92274999999998 466.62 70.17599999999999 461.50425000000007 70.17599999999999 C 458.3190000000001 70.17599999999999 455.5642500000001 69.61425 453.24225000000007 68.49224999999998 C 450.9187500000001 67.37024999999998 449.02575000000013 65.82974999999999 447.56475 63.87149999999998 C 446.10225 61.91399999999999 445.01925000000006 59.64299999999998 444.31500000000005 57.05849999999998 C 443.61 54.47399999999998 443.25750000000005 51.74624999999998 443.25750000000005 48.874499999999976 C 443.25750000000005 46.211999999999975 443.6100000000001 43.601999999999975 444.31500000000005 41.043749999999974 C 445.01925000000006 38.48624999999998 446.1022500000001 36.201749999999976 447.56475 34.190999999999974 C 449.02575 32.18174999999997 450.91949999999997 30.56324999999997 453.24225000000007 29.33549999999997 C 455.5642500000001 28.109249999999975 458.3190000000001 27.49499999999997 461.50425000000007 27.49499999999997 C 464.7405000000001 27.49499999999997 467.50800000000004 28.148249999999972 469.80525 29.452499999999972 C 472.10175000000004 30.75824999999997 473.96775 32.46749999999997 475.40475000000004 34.58174999999997 C 476.83950000000004 36.69599999999997 477.8715 39.123749999999966 478.49850000000004 41.86499999999997 C 479.124 44.60549999999997 479.38575000000003 47.385749999999966 479.28150000000005 50.205749999999966 L 448.19175000000007 50.205749999999966 C 448.19175000000007 51.98175 448.4385 53.822250000000004 448.93500000000006 55.72725 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 473.36850000000004 40.65225 C 472.76775 38.929500000000004 471.91949999999997 37.4025 470.823 36.071250000000006 S 468.39525000000003 33.670500000000004 466.82925 32.8605 C 465.26249999999993 32.05125 463.48799999999994 31.647000000000006 461.5035 31.647000000000006 C 459.4672499999999 31.647000000000006 457.66575 32.05200000000001 456.1005 32.8605 C 454.53374999999994 33.670500000000004 453.2025 34.74000000000001 452.106 36.071250000000006 S 450.135 38.943000000000005 449.48325 40.69200000000001 C 448.82925000000006 42.441750000000006 448.3995 44.22975 448.19100000000003 46.056000000000004 L 474.34725000000003 46.056000000000004 C 474.29475 44.17575 473.96775 42.375 473.36850000000004 40.65225 z">
</path>
</g>
<g id="part32" class="part active"
style="transform: translate(215.58944939999998px, 483.95241250000004px) rotate(90deg)">
<path fill="url(#part33hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 64.5825 55.72725 C 65.07825 57.63375 65.87475 59.342999999999996 66.97125 60.8565 C 68.06775 62.3715 69.45075 63.623999999999995 71.12175 64.6155 C 72.792 65.60775 74.80275 66.1035 77.15174999999999 66.1035 C 80.75399999999999 66.1035 83.57325 65.16375 85.6095 63.28424999999999 C 87.64575 61.40474999999999 89.05575 58.89824999999999 89.83875 55.76624999999999 L 94.773 55.76624999999999 C 93.72749999999999 60.360749999999996 91.809 63.910499999999985 89.01675 66.41699999999999 C 86.223 68.92274999999998 82.26825 70.17599999999999 77.15249999999999 70.17599999999999 C 73.96724999999999 70.17599999999999 71.21324999999999 69.61425 68.89049999999999 68.49224999999998 C 66.567 67.37024999999998 64.67399999999999 65.82974999999999 63.212999999999994 63.87149999999998 C 61.75125 61.91399999999999 60.66749999999999 59.64299999999998 59.963249999999995 57.05849999999998 C 59.25825 54.47399999999998 58.90575 51.74624999999998 58.90575 48.874499999999976 C 58.90575 46.211999999999975 59.25825 43.601999999999975 59.963249999999995 41.043749999999974 C 60.66749999999999 38.48624999999998 61.75125 36.201749999999976 63.212999999999994 34.190999999999974 C 64.67399999999999 32.18174999999997 66.567 30.56324999999997 68.89049999999999 29.33549999999997 C 71.21324999999999 28.109249999999975 73.96799999999999 27.49499999999997 77.15249999999999 27.49499999999997 C 80.38874999999999 27.49499999999997 83.15549999999999 28.148249999999972 85.45349999999999 29.452499999999972 C 87.74999999999999 30.75824999999997 89.61675 32.46749999999997 91.05299999999998 34.58174999999997 C 92.48849999999999 36.69599999999997 93.51974999999999 39.123749999999966 94.14674999999998 41.86499999999997 C 94.77299999999998 44.60549999999997 95.03324999999998 47.385749999999966 94.92974999999998 50.205749999999966 L 63.838499999999996 50.205749999999966 C 63.838499999999996 51.98175 64.08525 53.822250000000004 64.5825 55.72725 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 89.016 40.65225 C 88.41525 38.929500000000004 87.56700000000001 37.4025 86.4705 36.071250000000006 C 85.37475 34.74000000000001 84.0435 33.670500000000004 82.47675 32.8605 C 80.91075000000001 32.05125 79.13475 31.647000000000006 77.15174999999999 31.647000000000006 C 75.1155 31.647000000000006 73.314 32.05200000000001 71.748 32.8605 C 70.18125 33.670500000000004 68.85 34.74000000000001 67.75425 36.071250000000006 C 66.65775 37.4025 65.7825 38.943000000000005 65.13074999999999 40.69200000000001 C 64.47749999999999 42.441750000000006 64.04625 44.22975 63.838499999999996 46.056000000000004 L 89.99475 46.056000000000004 C 89.94225 44.17575 89.61525 42.375 89.016 40.65225 z">
</path>
</g>
<g id="part33" class="part active" style="transform: translate(172.2926716px, 678.3467814px) rotate(270deg)">
<path fill="url(#part34hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 105.22649999999999 55.72725 C 105.72225 57.63375 106.51875000000001 59.342999999999996 107.61525 60.8565 C 108.71175 62.3715 110.09475 63.623999999999995 111.7665 64.6155 C 113.43674999999999 65.60775 115.44675000000001 66.1035 117.79649999999998 66.1035 C 121.39874999999998 66.1035 124.21799999999999 65.16375 126.25424999999998 63.28424999999999 C 128.29049999999998 61.40474999999999 129.70049999999998 58.89824999999999 130.4835 55.76624999999999 L 135.41774999999998 55.76624999999999 C 134.37224999999998 60.360749999999996 132.45374999999999 63.910499999999985 129.6615 66.41699999999999 C 126.86774999999999 68.92274999999998 122.91299999999998 70.17599999999999 117.79724999999999 70.17599999999999 C 114.61199999999998 70.17599999999999 111.85799999999998 69.61425 109.53524999999999 68.49224999999998 C 107.21175 67.37024999999998 105.31875000000001 65.82974999999999 103.85775000000001 63.87149999999998 C 102.39525 61.91399999999999 101.31225 59.64299999999998 100.608 57.05849999999998 C 99.90375 54.47399999999998 99.5505 51.74624999999998 99.5505 48.874499999999976 C 99.5505 46.211999999999975 99.903 43.601999999999975 100.608 41.043749999999974 C 101.31225 38.48624999999998 102.39599999999999 36.201749999999976 103.85775000000001 34.190999999999974 C 105.31875000000001 32.18174999999997 107.21175000000001 30.56324999999997 109.53524999999999 29.33549999999997 C 111.858 28.109249999999975 114.61275 27.49499999999997 117.79724999999999 27.49499999999997 C 121.03349999999999 27.49499999999997 123.80024999999998 28.148249999999972 126.09825000000001 29.452499999999972 C 128.3955 30.75824999999997 130.26149999999998 32.46749999999997 131.69775 34.58174999999997 C 133.13325 36.69599999999997 134.1645 39.123749999999966 134.7915 41.86499999999997 C 135.41775 44.60549999999997 135.67875 47.385749999999966 135.5745 50.205749999999966 L 104.4825 50.205749999999966 C 104.4825 51.98175 104.72999999999999 53.822250000000004 105.22649999999999 55.72725 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 129.66 40.65225 C 129.05925000000002 38.929500000000004 128.211 37.4025 127.11449999999999 36.071250000000006 C 126.018 34.74000000000001 124.68674999999999 33.670500000000004 123.12 32.8605 C 121.554 32.05125 119.778 31.647000000000006 117.795 31.647000000000006 C 115.75874999999999 31.647000000000006 113.95800000000001 32.05200000000001 112.39124999999999 32.8605 C 110.82525 33.670500000000004 109.494 34.74000000000001 108.39750000000001 36.071250000000006 C 107.30100000000002 37.4025 106.42575000000001 38.943000000000005 105.774 40.69200000000001 C 105.12075 42.441750000000006 104.68950000000001 44.22975 104.48175 46.056000000000004 L 130.638 46.056000000000004 C 130.58625 44.17575 130.25925 42.375 129.66 40.65225 z">
</path>
</g>
<g id="part36" class="part active"
style="transform: translate(214.97367160000005px, 805.9937814px) rotate(270deg)">
<path fill="url(#part37hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 232.87425000000002 55.72725 C 233.37 57.63375 234.16650000000004 59.342999999999996 235.26300000000003 60.8565 C 236.35950000000003 62.3715 237.7425 63.623999999999995 239.4135 64.6155 C 241.08375 65.60775 243.09375 66.1035 245.44350000000003 66.1035 C 249.04575000000003 66.1035 251.86500000000004 65.16375 253.90125 63.28424999999999 C 255.9375 61.40474999999999 257.3475 58.89824999999999 258.13050000000004 55.76624999999999 L 263.064 55.76624999999999 C 262.01925000000006 60.360749999999996 260.1 63.910499999999985 257.30850000000004 66.41699999999999 C 254.51475 68.92274999999998 250.56000000000003 70.17599999999999 245.44425 70.17599999999999 C 242.25900000000001 70.17599999999999 239.50500000000002 69.61425 237.18225 68.49224999999998 C 234.85875 67.37024999999998 232.96574999999999 65.82974999999999 231.50475 63.87149999999998 C 230.043 61.91399999999999 228.95925 59.64299999999998 228.255 57.05849999999998 C 227.55074999999997 54.47399999999998 227.19824999999997 51.74624999999998 227.19824999999997 48.874499999999976 C 227.19824999999997 46.211999999999975 227.55075 43.601999999999975 228.255 41.043749999999974 C 228.95999999999998 38.48624999999998 230.043 36.201749999999976 231.50475 34.190999999999974 C 232.96574999999999 32.18174999999997 234.85875 30.56324999999997 237.18225 29.33549999999997 C 239.505 28.109249999999975 242.25975 27.49499999999997 245.44425 27.49499999999997 C 248.6805 27.49499999999997 251.44725000000003 28.148249999999972 253.74525 29.452499999999972 C 256.04175 30.75824999999997 257.9085 32.46749999999997 259.34475 34.58174999999997 C 260.78025 36.69599999999997 261.8115 39.123749999999966 262.4385 41.86499999999997 C 263.06475 44.60549999999997 263.32500000000005 47.385749999999966 263.22075 50.205749999999966 L 232.13100000000003 50.205749999999966 C 232.13025 51.98175 232.377 53.822250000000004 232.87425000000002 55.72725 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 257.30775 40.65225 C 256.707 38.929500000000004 255.85875 37.4025 254.76225 36.071250000000006 C 253.66649999999998 34.74000000000001 252.3345 33.670500000000004 250.76850000000002 32.8605 C 249.2025 32.05125 247.42649999999998 31.647000000000006 245.44349999999997 31.647000000000006 C 243.40725 31.647000000000006 241.60574999999997 32.05200000000001 240.03975 32.8605 C 238.473 33.670500000000004 237.14175 34.74000000000001 236.046 36.071250000000006 C 234.9495 37.4025 234.07425 38.943000000000005 233.4225 40.69200000000001 C 232.76850000000002 42.441750000000006 232.338 44.22975 232.13025 46.056000000000004 L 258.2865 46.056000000000004 C 258.23400000000004 44.17575 257.907 42.375 257.30775 40.65225 z">
</path>
</g>
<g id="part18" class="part active"
style="transform: translate(754.4479216000001px, 904.0052813999998px) rotate(180deg)">
<path id="_x31_01-Steps_x5F_Bar_x5F_sign_4_" opacity="0.967" fill="url(#part19hatch)" stroke="#ffffff"
stroke-width="0.7056" stroke-linecap="round" stroke-linejoin="bevel" enable-background="new "
d="M 440.70599999999996 324.97725 L 470.98199999999997 324.97725 L 470.98199999999997 335.19375 L 466.2495 335.19375 L 466.2495 345.375 L 461.45700000000005 345.375 L 461.45700000000005 355.47825 L 440.706 355.47825 L 440.70599999999996 324.97725 z"
fill-opacity="0.5"></path>
<path id="path5366_8_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 330.70425 L 447.9915 330.70425 L 447.9915 327.98474999999996 L 443.91225000000003 327.98474999999996 L 443.91225000000003 330.70425">
</path>
<path id="path5376_8_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 337.50374999999997 L 447.9915 337.50374999999997 L 447.9915 334.7835 L 443.91225000000003 334.7835 L 443.91225000000003 337.50374999999997">
</path>
<path id="path5386_8_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 344.30325000000005 L 447.9915 344.30325000000005 L 447.9915 341.583 L 443.91225000000003 341.583 L 443.91225000000003 344.30325000000005">
</path>
<path id="path5364_8_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 327.98474999999996 L 443.91225000000003 327.98474999999996"></path>
<path id="path5374_8_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 334.7835 L 443.91225000000003 334.7835"></path>
<path id="path5384_8_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 341.583 L 443.91225000000003 341.583"></path>
</g>
<g id="part19" class="part active"
style="transform: translate(774.7111869px, 848.7854308999999px) rotate(180deg)">
<path id="_x31_01-Steps_x5F_Bar_x5F_sign_5_" opacity="0.967" fill="url(#part20hatch)" stroke="#ffffff"
stroke-width="0.7056" stroke-linecap="round" stroke-linejoin="bevel" enable-background="new "
d="M 440.70599999999996 359.55674999999997 L 470.98199999999997 359.55674999999997 L 470.98199999999997 369.77325 L 466.2495 369.77325 L 466.2495 379.9545 L 461.45700000000005 379.9545 L 461.45700000000005 390.05775 L 440.706 390.05775 L 440.70599999999996 359.55674999999997 z"
fill-opacity="0.5"></path>
<path id="path5366_9_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 365.28375 L 447.9915 365.28375 L 447.9915 362.56425 L 443.91225000000003 362.56425 L 443.91225000000003 365.28374999999994">
</path>
<path id="path5376_9_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 372.08325 L 447.9915 372.08325 L 447.9915 369.363 L 443.91225000000003 369.363 L 443.91225000000003 372.08325">
</path>
<path id="path5386_9_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 378.8835 L 447.9915 378.8835 L 447.9915 376.1625 L 443.91225000000003 376.1625 L 443.91225000000003 378.88275">
</path>
<path id="path5364_9_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 362.56425 L 443.91225000000003 362.56425"></path>
<path id="path5374_9_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 369.363 L 443.91225000000003 369.363"></path>
<path id="path5384_9_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 376.1625 L 443.91225000000003 376.1625"></path>
</g>
<g id="part17" class="part active"
style="transform: translate(727.9531869000001px, 833.8097111px) rotate(180deg)">
<path id="_x31_01-Steps_x5F_Bar_x5F_sign_3_" opacity="0.967" fill="url(#part18hatch)" stroke="#ffffff"
stroke-width="0.7056" stroke-linecap="round" stroke-linejoin="bevel" enable-background="new "
d="M 440.70599999999996 291.04650000000004 L 470.98199999999997 291.04650000000004 L 470.98199999999997 301.26300000000003 L 466.2495 301.26300000000003 L 466.2495 311.44425 L 461.45700000000005 311.44425 L 461.45700000000005 321.5475 L 440.706 321.5475 L 440.70599999999996 291.04650000000004 z"
fill-opacity="0.5"></path>
<path id="path5366_7_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 296.7735 L 447.9915 296.7735 L 447.9915 294.054 L 443.91225000000003 294.054 L 443.91225000000003 296.7735">
</path>
<path id="path5376_7_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 303.573 L 447.9915 303.573 L 447.9915 300.85275 L 443.91225000000003 300.85275 L 443.91225000000003 303.573">
</path>
<path id="path5386_7_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 310.37325 L 447.9915 310.37325 L 447.9915 307.65225 L 443.91225000000003 307.65225 L 443.91225000000003 310.3725">
</path>
<path id="path5364_7_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 294.054 L 443.91225000000003 294.054"></path>
<path id="path5374_7_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 300.85275 L 443.91225000000003 300.85275"></path>
<path id="path5384_7_" fill="#404247" stroke="#ffffff" stroke-width="0.1"
d="M 443.91225000000003 307.65225 L 443.91225000000003 307.65225"></path>
</g>
<g id="part41" class="part active"
style="transform: translate(187.05251870000006px, 949.8380808000002px) rotate(270deg)">
<path fill="url(#part42hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 430.8855 36.54075 C 430.31025 35.41875 429.54075 34.4925 428.5755 33.7605 C 427.60875 33.03 426.49949999999995 32.495250000000006 425.24699999999996 32.15475000000001 C 423.99375 31.815750000000005 422.66324999999995 31.646250000000006 421.25325 31.646250000000006 C 420.1574999999999 31.646250000000006 419.0474999999999 31.764000000000003 417.92474999999996 31.998750000000005 C 416.802 32.23350000000001 415.77075 32.62500000000001 414.83174999999994 33.17325000000001 C 413.89199999999994 33.721500000000006 413.13374999999996 34.440000000000005 412.5607499999999 35.32725000000001 C 411.9854999999999 36.21600000000001 411.6997499999999 37.31175 411.6997499999999 38.61675000000001 C 411.6997499999999 39.71325000000001 411.97349999999994 40.641000000000005 412.5224999999999 41.397000000000006 C 413.06999999999994 42.154500000000006 413.76149999999996 42.794250000000005 414.5977499999999 43.31625000000001 C 415.4325 43.83900000000001 416.34674999999993 44.26950000000001 417.3382499999999 44.60850000000001 C 418.32974999999993 44.949000000000005 419.24399999999997 45.222750000000005 420.0787499999999 45.431250000000006 L 426.6569999999999 46.919250000000005 C 428.0669999999999 47.12850000000001 429.4627499999999 47.50650000000001 430.8464999999999 48.054750000000006 S 433.4564999999999 49.3215 434.5274999999999 50.20875000000001 C 435.597 51.09675 436.4722499999999 52.193250000000006 437.15099999999995 53.49750000000001 C 437.82899999999995 54.803250000000006 438.16874999999993 56.343750000000014 438.16874999999993 58.11825000000001 C 438.16874999999993 60.311250000000015 437.6714999999999 62.17875000000001 436.68149999999997 63.71775000000001 C 435.6885 65.25825 434.42175 66.5115 432.88274999999993 67.47675000000001 C 431.3422499999999 68.4435 429.6067499999999 69.13350000000001 427.67549999999994 69.552 C 425.7434999999999 69.96975 423.83849999999995 70.17824999999999 421.95899999999995 70.17824999999999 C 417.207 70.17824999999999 413.3565 69.0555 410.4074999999999 66.81075 C 407.4577499999999 64.56675 405.77399999999994 60.9645 405.3569999999999 56.004 L 410.2904999999999 56.004 C 410.4989999999999 59.346000000000004 411.71249999999986 61.865249999999996 413.9317499999999 63.56099999999999 C 416.1502499999999 65.25825 418.90499999999986 66.1065 422.19449999999995 66.1065 C 423.3945 66.1065 424.63424999999995 65.97675 425.91374999999994 65.71499999999999 C 427.1932499999999 65.45474999999999 428.3812499999999 65.01074999999999 429.47699999999986 64.38374999999999 C 430.57349999999985 63.75749999999999 431.47424999999987 62.96174999999999 432.17924999999985 61.99499999999999 C 432.8834999999998 61.02974999999998 433.2359999999999 59.84099999999999 433.2359999999999 58.43174999999998 C 433.2359999999999 57.23099999999998 432.98774999999983 56.22674999999998 432.4927499999999 55.416749999999986 C 431.9962499999998 54.60749999999999 431.33024999999986 53.928749999999994 430.4954999999999 53.380499999999984 C 429.65999999999985 52.83224999999999 428.70674999999983 52.37549999999998 427.63649999999984 52.00949999999998 C 426.56624999999985 51.64499999999998 425.4832499999999 51.33224999999997 424.3874999999998 51.07049999999998 L 418.0432499999999 49.660499999999985 C 416.4247499999999 49.24274999999999 414.93674999999985 48.75975 413.57999999999987 48.21149999999999 C 412.2217499999998 47.663249999999984 411.03449999999987 46.985249999999986 410.0167499999999 46.175249999999984 C 408.9989999999999 45.36674999999998 408.20174999999995 44.37374999999999 407.62799999999993 43.19924999999998 C 407.0519999999999 42.02474999999998 406.76699999999994 40.575749999999985 406.76699999999994 38.85299999999998 C 406.76699999999994 36.81674999999998 407.22299999999984 35.06774999999998 408.1372499999999 33.60599999999998 C 409.0499999999999 32.14499999999998 410.23799999999994 30.969749999999976 411.7004999999999 30.08174999999998 C 413.1614999999999 29.19449999999998 414.7934999999999 28.54274999999998 416.59499999999986 28.124249999999982 C 418.39499999999987 27.706499999999977 420.1829999999999 27.49799999999998 421.9589999999999 27.49799999999998 C 423.9944999999999 27.49799999999998 425.88599999999985 27.759749999999976 427.63574999999986 28.280999999999977 C 429.3847499999998 28.802999999999976 430.92524999999983 29.612249999999975 432.25649999999985 30.707999999999977 C 433.5869999999998 31.804499999999976 434.64599999999984 33.162749999999974 435.4282499999998 34.780499999999975 C 436.21049999999985 36.399749999999976 436.65449999999987 38.30474999999997 436.75874999999985 40.497749999999975 L 431.82524999999987 40.497749999999975 C 431.77275 38.982 431.45925 37.6635 430.8855 36.54075 z"
fill-opacity="0.5"></path>
</g>
<g id="part37" class="part active"
style="transform: translate(471.89934560000006px, 455.8689902000001px) rotate(180deg)">
<path fill="url(#part38hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 293.136 36.54075 C 292.56075 35.41875 291.79125 34.4925 290.82525 33.7605 C 289.8585 33.03 288.75 32.495250000000006 287.49675 32.15475000000001 C 286.24424999999997 31.815750000000005 284.913 31.646250000000006 283.50300000000004 31.646250000000006 C 282.40725 31.646250000000006 281.29650000000004 31.764000000000003 280.1745 31.998750000000005 C 279.05100000000004 32.23350000000001 278.0205 32.62500000000001 277.08075 33.17325000000001 C 276.14175 33.721500000000006 275.3835 34.440000000000005 274.81050000000005 35.32725000000001 C 274.23525000000006 36.21600000000001 273.94875 37.31175 273.94875 38.61675000000001 C 273.94875 39.71325000000001 274.2225 40.641000000000005 274.77075 41.397000000000006 C 275.319 42.154500000000006 276.01050000000004 42.794250000000005 276.846 43.31625000000001 C 277.68075000000005 43.83900000000001 278.595 44.26950000000001 279.58725000000004 44.60850000000001 C 280.57800000000003 44.949000000000005 281.49225 45.222750000000005 282.32775000000004 45.431250000000006 L 288.906 46.919250000000005 C 290.31600000000003 47.12850000000001 291.71175 47.50650000000001 293.0955 48.054750000000006 C 294.47850000000005 48.603 295.70550000000003 49.3215 296.77650000000006 50.20875000000001 C 297.846 51.09675 298.72125000000005 52.193250000000006 299.40000000000003 53.49750000000001 C 300.07800000000003 54.803250000000006 300.41775000000007 56.343750000000014 300.41775000000007 58.11825000000001 C 300.41775000000007 60.311250000000015 299.92050000000006 62.17875000000001 298.92975000000007 63.71775000000001 C 297.9375000000001 65.25825 296.67075000000006 66.5115 295.13175000000007 67.47675000000001 C 293.59125000000006 68.4435 291.8550000000001 69.13350000000001 289.92375000000004 69.552 C 287.99175 69.96975 286.08675000000005 70.17824999999999 284.20725000000004 70.17824999999999 C 279.456 70.17824999999999 275.60475 69.0555 272.65650000000005 66.81075 C 269.706 64.56675 268.02225000000004 60.9645 267.60525 56.004 L 272.53875 56.004 C 272.74649999999997 59.346000000000004 273.96075 61.865249999999996 276.18 63.56099999999999 C 278.3985 65.25825 281.15250000000003 66.1065 284.442 66.1065 C 285.64275000000004 66.1065 286.88175 65.97675 288.16200000000003 65.71499999999999 C 289.44075 65.45474999999999 290.62874999999997 65.01074999999999 291.72524999999996 64.38374999999999 C 292.82174999999995 63.75749999999999 293.72249999999997 62.96174999999999 294.4275 61.99499999999999 C 295.13175 61.02974999999998 295.485 59.84099999999999 295.485 58.43174999999998 C 295.485 57.23099999999998 295.23675000000003 56.22674999999998 294.741 55.416749999999986 C 294.24375 54.60749999999999 293.57849999999996 53.928749999999994 292.74375 53.380499999999984 C 291.90825 52.83224999999999 290.955 52.37549999999998 289.8855 52.00949999999998 C 288.8145 51.64499999999998 287.7315 51.33224999999997 286.63575 51.07049999999998 L 280.29224999999997 49.660499999999985 C 278.673 49.24274999999999 277.185 48.75975 275.82824999999997 48.21149999999999 C 274.46999999999997 47.663249999999984 273.28274999999996 46.985249999999986 272.265 46.175249999999984 C 271.24724999999995 45.36674999999998 270.45074999999997 44.37374999999999 269.87624999999997 43.19924999999998 C 269.301 42.02474999999998 269.0145 40.575749999999985 269.0145 38.85299999999998 C 269.0145 36.81674999999998 269.47124999999994 35.06774999999998 270.3855 33.60599999999998 C 271.29824999999994 32.14499999999998 272.4862499999999 30.969749999999976 273.94874999999996 30.08174999999998 C 275.4097499999999 29.19449999999998 277.04249999999996 28.54274999999998 278.84324999999995 28.124249999999982 C 280.64474999999993 27.706499999999977 282.43199999999996 27.49799999999998 284.20799999999997 27.49799999999998 C 286.24424999999997 27.49799999999998 288.13575 27.759749999999976 289.8855 28.280999999999977 C 291.63374999999996 28.802999999999976 293.17425 29.612249999999975 294.50624999999997 30.707999999999977 C 295.8375 31.804499999999976 296.89425 33.162749999999974 297.67799999999994 34.780499999999975 C 298.46099999999996 36.399749999999976 298.90424999999993 38.30474999999997 299.00924999999995 40.497749999999975 L 294.07500000000005 40.497749999999975 C 294.0225 38.982 293.709 37.6635 293.136 36.54075 z"
fill-opacity="0.5"></path>
</g>
<g id="part45" class="part active"
style="transform: translate(194.03399939999997px, -500.00550210000006px) rotate(90deg)">
<path fill="url(#part46hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 601.2127499999999 69.0795 L 601.2127499999999 61.79625 L 601.05675 61.79625 C 599.751 64.512 597.858 66.5865 595.37925 68.02199999999999 C 592.89825 69.45825 590.1442499999999 70.176 587.11725 70.176 C 584.5575 70.176 582.37875 69.8235 580.5772499999999 69.1185 C 578.7764999999999 68.4135 577.314 67.40925 576.19125 66.1035 C 575.0677499999999 64.79925 574.2457499999999 63.2055 573.7245 61.326 C 573.2025 59.4465 572.9415 57.30675000000001 572.9415 54.9045 L 572.9415 28.669500000000006 L 577.8757499999999 28.669500000000006 L 577.8757499999999 54.9825 C 577.98 58.638 578.8275 61.403999999999996 580.4205 63.28425 C 582.0127500000001 65.163 584.76675 66.1035 588.6825 66.1035 C 590.823 66.1035 592.65 65.64750000000001 594.165 64.73325 C 595.6792499999999 63.81975 596.93175 62.60625 597.9239999999999 61.09125000000001 C 598.9154999999998 59.57775000000001 599.6474999999999 57.84150000000001 600.1169999999998 55.884000000000015 S 600.8219999999999 51.92925000000001 600.8219999999999 49.893000000000015 L 600.8219999999999 28.670249999999996 L 605.7554999999999 28.670249999999996 L 605.7554999999999 69.0795 L 601.2127499999999 69.0795 z"
fill-opacity="0.5"></path>
</g>
<g id="part35" class="part active"
style="transform: translate(82.20287169999999px, 369.14723089999984px) rotate(90deg)">
<path fill="url(#part36hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 192.03449999999998 28.670249999999996 L 192.03449999999998 35.64 L 192.19125 35.64 C 193.13099999999997 33.186749999999996 194.80125 31.215749999999996 197.2035 29.727749999999993 C 199.60425 28.239749999999994 202.24124999999998 27.495749999999994 205.113 27.495749999999994 C 207.93225 27.495749999999994 210.29399999999998 27.861749999999994 212.20049999999998 28.591499999999996 C 214.10625 29.323499999999996 215.63324999999998 30.353999999999996 216.78224999999998 31.685249999999996 C 217.92974999999996 33.01649999999999 218.73974999999996 34.649249999999995 219.20999999999998 36.57975 C 219.67949999999996 38.51175 219.91424999999998 40.6785 219.91424999999998 43.08 L 219.91424999999998 69.08025 L 214.98075 69.08025 L 214.98075 43.862249999999996 C 214.98075 42.1395 214.824 40.53375 214.51125000000002 39.046499999999995 C 214.19775000000004 37.558499999999995 213.65025000000003 36.26625 212.86650000000003 35.16975 C 212.08350000000007 34.074 211.02600000000004 33.21225 209.69475000000006 32.586 C 208.36350000000007 31.95975 206.70525000000006 31.646250000000002 204.72225000000006 31.646250000000002 C 202.73775000000006 31.646250000000002 200.97525000000007 31.99875 199.43625000000006 32.703 C 197.89575000000008 33.408 196.59000000000003 34.37475 195.52050000000006 35.601 C 194.45025000000004 36.828 193.6140000000001 38.290499999999994 193.01475000000005 39.986999999999995 C 192.41400000000004 41.68424999999999 192.08775000000006 43.524 192.03600000000006 45.507749999999994 L 192.03600000000006 69.08025 L 187.10250000000005 69.08025 L 187.10250000000005 28.670249999999996 L 192.03449999999998 28.670249999999996 z"
fill-opacity="0.5"></path>
</g>
<g id="part95" class="part active"
style="transform: translate(-148.2946282999999px, 1001.3574809000002px) rotate(270deg)">
<path fill="url(#part96hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 440.1735 181.61399999999998 C 440.1735 184.82925 439.27275 187.22549999999998 437.47275 188.80575 C 435.6735 190.38524999999998 433.0830000000001 191.17575 429.70425000000006 191.17575 C 428.63250000000005 191.17575 427.5540000000001 191.0655 426.4687500000001 190.84574999999998 C 425.3835000000001 190.62599999999998 424.3942500000001 190.25474999999997 423.5010000000001 189.7335 C 422.60850000000005 189.21075 421.8592500000001 188.52374999999998 421.2555000000001 187.67249999999999 C 420.65025 186.82049999999998 420.29325000000006 185.7765 420.1830000000001 184.53975 L 424.88250000000005 184.53975 C 425.01975000000004 185.19975 425.2530000000001 185.73525 425.58375 186.14775 C 425.913 186.56025 426.3045000000001 186.88275 426.75750000000005 187.11675 C 427.21050000000014 187.35000000000002 427.7122500000001 187.50075 428.26200000000006 187.56975 C 428.81100000000004 187.63800000000003 429.3885 187.6725 429.99375000000003 187.6725 C 431.88975000000005 187.6725 433.2772500000001 187.20450000000002 434.15700000000004 186.2715 C 435.03600000000006 185.33700000000002 435.4755000000001 183.99 435.4755000000001 182.23200000000003 L 435.4755000000001 178.9755 L 435.39375000000007 178.9755 C 434.7337500000001 180.1575 433.83375 181.07775 432.69375 181.737 C 431.5530000000001 182.39625 430.3237500000001 182.72625 429.00525000000005 182.72625 C 427.30125 182.72625 425.8515 182.43075 424.65600000000006 181.83975 C 423.4605 181.24875 422.47200000000004 180.438 421.68825000000004 179.4075 C 420.9052500000001 178.377 420.3352500000001 177.18900000000002 419.97900000000004 175.84275 C 419.6205000000001 174.4965 419.44200000000006 173.05425 419.44200000000006 171.51524999999998 C 419.44200000000006 170.0865 419.6625 168.72674999999998 420.1020000000001 167.43449999999999 C 420.54150000000004 166.14299999999997 421.17375000000004 165.00975 421.9972500000001 164.034 C 422.8222500000001 163.05974999999998 423.8317500000001 162.28275 425.0272500000001 161.706 C 426.22275000000013 161.12849999999997 427.5750000000001 160.8405 429.0870000000001 160.8405 C 430.43250000000006 160.8405 431.66925000000003 161.1225 432.7965000000001 161.685 C 433.9222500000001 162.24824999999998 434.7877500000001 163.13475 435.3930000000001 164.34374999999997 L 435.4747500000001 164.34374999999997 L 435.4747500000001 161.41725 L 440.1742500000001 161.41725 L 440.1742500000001 181.61399999999998 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 429.7455 179.01749999999998 C 430.79025 179.01749999999998 431.676 178.80450000000002 432.40425 178.3785 C 433.13175 177.95325 433.72275 177.38925 434.17575 176.68874999999997 C 434.62874999999997 175.98749999999998 434.95949999999993 175.19099999999997 435.16499999999996 174.29775 C 435.37049999999994 173.40525 435.47399999999993 172.5045 435.47399999999993 171.59775 C 435.47399999999993 170.691 435.3645 169.812 435.14475 168.96 S 434.58825 167.352 434.1345 166.69275 C 433.68149999999997 166.0335 433.08975 165.5115 432.36224999999996 165.12675000000002 C 431.63399999999996 164.74200000000002 430.76174999999995 164.54925 429.74549999999994 164.54925 C 428.7007499999999 164.54925 427.8225 164.76975000000002 427.1069999999999 165.2085 C 426.3929999999999 165.648 425.81474999999995 166.218 425.3759999999999 166.9185 C 424.9357499999999 167.619 424.6199999999999 168.41699999999997 424.4279999999999 169.30949999999999 C 424.23524999999995 170.20274999999998 424.1384999999999 171.08925 424.1384999999999 171.96824999999998 C 424.1384999999999 172.84799999999998 424.24875 173.706 424.46849999999995 174.54449999999997 C 424.68825 175.38299999999998 425.025 176.1315 425.47875 176.79074999999997 C 425.93174999999997 177.45 426.5085 177.98624999999998 427.20975 178.39874999999998 C 427.91175 178.81125 428.75624999999997 179.01749999999998 429.7455 179.01749999999998 z">
</path>
</g>
<g id="part44" class="part active"
style="transform: translate(55.7360006000001px, 1138.8554325px) rotate(270deg)">
<path fill="url(#part45hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 557.12325 34.23075 C 555.29475 32.508 552.7365 31.646250000000002 549.4485000000001 31.646250000000002 C 547.09875 31.646250000000002 545.0355000000001 32.14275 543.26175 33.13425 C 541.4865000000001 34.1265 540.0120000000001 35.4315 538.8375000000001 37.050000000000004 C 537.663 38.66850000000001 536.77425 40.50900000000001 536.17425 42.570750000000004 C 535.5735 44.633250000000004 535.2750000000001 46.734750000000005 535.2750000000001 48.8745 C 535.2750000000001 51.01575 535.5735000000001 53.11725 536.17425 55.179 C 536.7742499999999 57.2415 537.6622500000001 59.081999999999994 538.8375000000001 60.69975000000001 C 540.0120000000001 62.31900000000001 541.4865000000001 63.62400000000001 543.26175 64.61550000000001 C 545.0355000000001 65.60775000000001 547.09875 66.1035 549.4485000000001 66.1035 C 550.96275 66.1035 552.3982500000001 65.81700000000001 553.755 65.2425 C 555.1125 64.66875 556.3132499999999 63.871500000000005 557.358 62.853750000000005 C 558.402 61.836000000000006 559.2637500000001 60.621750000000006 559.9417500000001 59.212500000000006 C 560.6205 57.80325 561.039 56.2635 561.195 54.591750000000005 L 566.1292500000001 54.591750000000005 C 565.4505 59.49975 563.6482500000001 63.324 560.7255 66.0645 C 557.80125 68.80499999999999 554.0422500000001 70.176 549.4485000000001 70.176 C 546.3675000000001 70.176 543.6405 69.61425 541.2652500000002 68.49225 C 538.8885000000001 67.37025 536.892 65.84325 535.2750000000001 63.911249999999995 C 533.6550000000002 61.97999999999999 532.4280000000001 59.72174999999999 531.5932500000001 57.137249999999995 C 530.7577500000001 54.552749999999996 530.3407500000002 51.799499999999995 530.3407500000002 48.8745 C 530.3407500000002 45.95175 530.7577500000002 43.196999999999996 531.5932500000001 40.6125 C 532.4280000000001 38.028 533.6550000000002 35.7705 535.2750000000001 33.838499999999996 C 536.892 31.907999999999998 538.8885000000001 30.367499999999996 541.2652500000002 29.217749999999995 C 543.6405000000001 28.070249999999994 546.3675000000001 27.494999999999997 549.4485000000001 27.494999999999997 C 553.7812500000001 27.494999999999997 557.44875 28.643999999999995 560.4517500000001 30.9405 C 563.45325 33.2385 565.24125 36.7095 565.8157500000001 41.3565 L 560.8822500000001 41.3565 C 560.2035 38.3295 558.9502500000001 35.953500000000005 557.12325 34.23075 z"
fill-opacity="0.5"></path>
</g>
<g id="part58" class="part active" style="transform: translate(299.174393px, 399.8205659px) rotate(180deg)">
<path fill="url(#part59hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 290.8485 133.26675 L 286.39725 133.26675 L 286.39725 130.3815 L 286.31475 130.3815 C 285.6825 131.61749999999998 284.76225 132.504 283.55325 133.0395 C 282.34425 133.575 281.06624999999997 133.8435 279.71999999999997 133.8435 C 278.04375 133.8435 276.58050000000003 133.548 275.33025 132.95774999999998 C 274.08 132.36674999999997 273.04274999999996 131.56349999999998 272.21849999999995 130.54649999999998 C 271.39349999999996 129.53025 270.77625 128.32799999999997 270.36375 126.93974999999999 C 269.95124999999996 125.553 269.745 124.062 269.745 122.4675 C 269.745 120.54525000000001 270.006 118.8825 270.52799999999996 117.48075 C 271.04999999999995 116.07974999999999 271.74375 114.92549999999999 272.60925 114.01874999999998 C 273.47475 113.11199999999998 274.46399999999994 112.44599999999997 275.57699999999994 112.01924999999999 C 276.68999999999994 111.59324999999998 277.82399999999996 111.38024999999999 278.97749999999996 111.38024999999999 C 279.63674999999995 111.38024999999999 280.30949999999996 111.44174999999998 280.99649999999997 111.56549999999999 C 281.6834999999999 111.68924999999999 282.34274999999997 111.88875 282.9749999999999 112.16324999999999 C 283.6064999999999 112.43775 284.1907499999999 112.78799999999998 284.72624999999994 113.214 C 285.2617499999999 113.64000000000001 285.7087499999999 114.14099999999999 286.0657499999999 114.7185 L 286.1482499999999 114.7185 L 286.1482499999999 103.83749999999999 L 290.8469999999999 103.83749999999999 L 290.8469999999999 133.26675 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 274.4445 122.8395 C 274.4445 123.74549999999999 274.56075 124.6395 274.79474999999996 125.5185 C 275.02799999999996 126.39825 275.385 127.18125 275.8665 127.8675 C 276.34725 128.55450000000002 276.95924999999994 129.10425 277.70099999999996 129.51600000000002 C 278.44274999999993 129.9285 279.32174999999995 130.13400000000001 280.33875 130.13400000000001 C 281.38275 130.13400000000001 282.28274999999996 129.91500000000002 283.03875 129.47475000000003 C 283.794 129.03600000000003 284.41274999999996 128.45850000000004 284.8935 127.74375000000003 C 285.3735 127.02975000000004 285.73125000000005 126.22575000000003 285.96524999999997 125.33250000000004 C 286.19849999999997 124.44000000000003 286.3155 123.52575000000004 286.3155 122.59200000000004 C 286.3155 120.22950000000003 285.78599999999994 118.38750000000005 284.7285 117.06900000000003 C 283.67025 115.75050000000002 282.23474999999996 115.09050000000002 280.42125 115.09050000000002 C 279.32174999999995 115.09050000000002 278.394 115.31700000000002 277.6395 115.77075000000004 C 276.8835 116.22375000000005 276.26474999999994 116.81550000000004 275.78475 117.54300000000003 C 275.304 118.27200000000005 274.96049999999997 119.09625000000003 274.75424999999996 120.01575000000003 C 274.54724999999996 120.93674999999999 274.4445 121.87799999999999 274.4445 122.8395 z">
</path>
</g>
<g id="part84" class="part active"
style="transform: translate(-102.68556879999994px, 878.4528554000001px) rotate(270deg)">
<path fill="url(#part85hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 292.41450000000003 182.727 L 287.96325 182.727 L 287.96325 179.84175 L 287.88075000000003 179.84175 C 287.2485 181.07774999999998 286.32825 181.96425 285.11924999999997 182.5005 C 283.91024999999996 183.03599999999997 282.63225 183.30374999999998 281.286 183.30374999999998 C 279.60974999999996 183.30374999999998 278.1465 183.00824999999998 276.89625 182.41799999999998 C 275.64525 181.82699999999997 274.60875 181.02374999999995 273.7845 180.00674999999995 C 272.96025 178.99049999999997 272.34225 177.78824999999998 271.92975 176.39999999999998 C 271.51725 175.01324999999997 271.31174999999996 173.52224999999999 271.31174999999996 171.92774999999997 C 271.31174999999996 170.00549999999998 271.57275 168.34274999999997 272.094 166.94099999999997 S 273.3105 164.38574999999997 274.17524999999995 163.47899999999998 C 275.04074999999995 162.57225 276.03 161.90624999999997 277.143 161.48024999999998 C 278.256 161.05424999999997 279.38924999999995 160.84125 280.54349999999994 160.84125 C 281.20275 160.84125 281.8755 160.90349999999998 282.5632499999999 161.0265 C 283.25024999999994 161.15025 283.9095 161.34975 284.5417499999999 161.62425 C 285.17324999999994 161.89875 285.75749999999994 162.249 286.2929999999999 162.675 C 286.8284999999999 163.101 287.2754999999999 163.602 287.63249999999994 164.17950000000002 L 287.7149999999999 164.17950000000002 L 287.7149999999999 153.2985 L 292.41374999999994 153.2985 L 292.41374999999994 182.727 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 276.0105 172.299 C 276.0105 173.20499999999998 276.12675 174.099 276.36075 174.978 C 276.59475 175.85775 276.95175 176.64075000000003 277.4325 177.327 C 277.91325 178.014 278.52524999999997 178.56375 279.267 178.9755 C 280.00874999999996 179.38800000000003 280.88849999999996 179.59425 281.90475 179.59425 C 282.94875 179.59425 283.84875 179.3745 284.60475 178.935 C 285.36 178.49625 285.97875 177.91875000000002 286.45950000000005 177.204 C 286.94025000000005 176.49 287.29725 175.686 287.53125 174.79275 C 287.7645 173.90025000000003 287.88149999999996 172.98600000000002 287.88149999999996 172.05225000000002 C 287.88149999999996 169.68975 287.352 167.84775000000002 286.29525 166.52925000000002 C 285.23699999999997 165.21075000000002 283.8015 164.55075 281.988 164.55075 C 280.88849999999996 164.55075 279.96075 164.77725 279.20624999999995 165.23100000000002 C 278.45025 165.68400000000003 277.83149999999995 166.27575000000002 277.3515 167.00325 C 276.87 167.73225000000002 276.52725 168.55650000000003 276.32099999999997 169.476 C 276.11325 170.39625 276.0105 171.33749999999998 276.0105 172.299 z">
</path>
</g>
<g id="part87" class="part active" style="transform: translate(454.0349381px, 768.0516825px) rotate(180deg)">
<path fill="url(#part88hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 307.581 161.418 L 312.03225 161.418 L 312.03225 164.30325 L 312.11475 164.30325 C 312.774 163.0665 313.69425 162.18075 314.87625 161.6445 C 316.0575 161.109 317.33475000000004 160.84125 318.70875 160.84125 C 320.38425 160.84125 321.8475 161.13675 323.09850000000006 161.72775000000001 C 324.34875 162.31875000000002 325.3860000000001 163.12875 326.21025000000003 164.15925 C 327.03450000000004 165.18975 327.65250000000003 166.392 328.06575000000004 167.766 C 328.4775 169.14 328.683 170.60999999999999 328.683 172.176 C 328.683 173.60475 328.49775 174.993 328.12725 176.3385 C 327.75600000000003 177.68474999999998 327.19350000000003 178.87349999999998 326.43750000000006 179.904 C 325.68075000000005 180.93449999999999 324.72600000000006 181.75875 323.57250000000005 182.37675 C 322.41900000000004 182.9955 321.0585000000001 183.3045 319.49250000000006 183.3045 C 318.80400000000003 183.3045 318.11775 183.24224999999998 317.43075000000005 183.11924999999997 C 316.74375000000003 182.9955 316.08450000000005 182.79599999999996 315.45225000000005 182.52149999999997 C 314.82000000000005 182.24699999999996 314.23575000000005 181.89674999999997 313.7010000000001 181.47074999999995 C 313.1647500000001 181.04474999999996 312.7177500000001 180.54375 312.3615000000001 179.96624999999997 L 312.27900000000005 179.96624999999997 L 312.27900000000005 190.59974999999997 L 307.5802500000001 190.59974999999997 L 307.5802500000001 161.418 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 323.98425 172.09275 C 323.98425 171.13125 323.86125 170.19675 323.6145 169.29 C 323.36625 168.38325 322.995 167.57925 322.5015 166.87875 C 322.00575000000003 166.17825 321.3885 165.615 320.646 165.18900000000002 C 319.9035 164.76375000000002 319.05225 164.55 318.09075 164.55 C 316.11225 164.55 314.62125000000003 165.237 313.61850000000004 166.611 C 312.61575000000005 167.98499999999999 312.11400000000003 169.812 312.11400000000003 172.09275 C 312.11400000000003 173.1645 312.2445 174.1605 312.50550000000004 175.08075 C 312.76650000000006 176.00175000000002 313.158 176.79075 313.68 177.45075 C 314.20125 178.10999999999999 314.82675 178.63275 315.555 179.01749999999998 C 316.2825 179.40225 317.12775 179.59425 318.09000000000003 179.59425 C 319.161 179.59425 320.06775 179.3745 320.80949999999996 178.935 C 321.55125 178.49625 322.16325 177.9255 322.644 177.22425 C 323.124 176.52375 323.46825 175.72725 323.67525 174.83325000000002 C 323.883 173.9415 323.98425 173.02725 323.98425 172.09275 z">
</path>
</g>
<g id="part54" class="part active"
style="transform: translate(-6.897104399999989px, 467.1494714999999px) rotate(0deg)">
<path fill="url(#part55hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 153.35174999999998 111.95774999999999 L 157.803 111.95774999999999 L 157.803 114.84299999999999 L 157.8855 114.84299999999999 C 158.54475 113.60624999999999 159.465 112.71975 160.647 112.18425 C 161.82825 111.64875 163.1055 111.381 164.48024999999998 111.381 C 166.15575 111.381 167.619 111.6765 168.87 112.2675 C 170.12025 112.8585 171.1575 113.6685 171.98175 114.69899999999998 C 172.80599999999998 115.72949999999999 173.42475000000002 116.93175 173.8365 118.30574999999999 C 174.24900000000002 119.67974999999998 174.45450000000002 121.14974999999998 174.45450000000002 122.71574999999999 C 174.45450000000002 124.1445 174.26925 125.53275 173.89800000000002 126.87825 C 173.52675000000002 128.22449999999998 172.9635 129.41325 172.20825000000002 130.44375 C 171.45225000000002 131.47424999999998 170.49750000000003 132.2985 169.34400000000005 132.91649999999998 C 168.19050000000004 133.53524999999996 166.83000000000004 133.84425 165.26400000000004 133.84425 C 164.57700000000006 133.84425 163.89000000000004 133.78199999999998 163.20300000000006 133.65899999999996 C 162.51525000000004 133.53524999999996 161.85675000000006 133.33574999999996 161.22450000000003 133.06124999999997 C 160.59225000000006 132.78674999999996 160.00875000000005 132.43649999999997 159.47325000000004 132.01049999999998 C 158.93775000000005 131.58449999999996 158.49000000000004 131.08349999999996 158.13375000000005 130.50599999999997 L 158.05125000000004 130.50599999999997 L 158.05125000000004 141.13949999999997 L 153.35250000000005 141.13949999999997 L 153.35250000000005 111.95774999999999 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 169.75575 122.63325 C 169.75575 121.67174999999999 169.632 120.73725 169.3845 119.8305 S 168.76575000000003 118.11975 168.2715 117.41925 S 167.15925 116.15549999999999 166.41674999999998 115.72949999999999 C 165.67499999999998 115.30424999999998 164.82299999999998 115.09049999999999 163.86149999999998 115.09049999999999 C 161.88299999999998 115.09049999999999 160.39274999999998 115.77749999999997 159.39 117.15149999999997 C 158.38649999999998 118.52549999999997 157.88549999999998 120.35249999999998 157.88549999999998 122.63324999999998 C 157.88549999999998 123.70499999999998 158.01524999999998 124.70099999999998 158.277 125.62124999999997 C 158.53799999999998 126.54225 158.9295 127.33124999999998 159.45149999999998 127.99124999999998 C 159.97274999999996 128.65049999999997 160.59824999999998 129.17324999999997 161.32649999999998 129.55724999999998 C 162.05474999999998 129.94275 162.89925 130.134 163.86149999999998 130.134 C 164.93325 130.134 165.83999999999997 129.91499999999996 166.58175 129.47474999999997 C 167.3235 129.03599999999997 167.93474999999998 128.46524999999997 168.41549999999998 127.76399999999998 C 168.89624999999998 127.06349999999998 169.24049999999997 126.26699999999997 169.44599999999997 125.37299999999999 C 169.65225 124.48124999999999 169.75575 123.56700000000001 169.75575 122.63325 z">
</path>
</g>
<g id="part128" class="part active"
style="transform: translate(407.68352329999993px, 135.91114620000008px) rotate(90deg)">
<path fill="url(#part129hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 448.08674999999994 210.87675 L 452.53875 210.87675 L 452.53875 213.76199999999997 L 452.6205 213.76199999999997 C 453.27975000000004 212.52524999999997 454.19925 211.6395 455.38200000000006 211.10324999999995 C 456.56325000000004 210.56774999999996 457.8405 210.29999999999995 459.21525 210.29999999999995 C 460.89 210.29999999999995 462.354 210.59549999999996 463.605 211.18649999999997 C 464.85525 211.77749999999997 465.8924999999999 212.58749999999995 466.71675 213.61799999999997 C 467.54100000000005 214.64849999999998 468.159 215.85074999999995 468.57149999999996 217.22474999999997 S 469.18949999999995 220.06874999999997 469.18949999999995 221.63475 C 469.18949999999995 223.06349999999998 469.00424999999996 224.45175 468.63374999999996 225.79725 C 468.26249999999993 227.14350000000002 467.69924999999995 228.3315 466.9432499999999 229.36199999999997 S 465.23324999999994 231.21675 464.07974999999993 231.83474999999999 C 462.92549999999994 232.45275 461.56499999999994 232.76175 459.9989999999999 232.76175 C 459.31124999999986 232.76175 458.6249999999999 232.69949999999997 457.9379999999999 232.57649999999998 C 457.2517499999999 232.45274999999998 456.59174999999993 232.25324999999998 455.9602499999999 231.97874999999996 C 455.3264999999999 231.70424999999997 454.74375 231.35399999999993 454.2074999999999 230.92799999999994 C 453.6719999999999 230.50199999999995 453.22424999999987 230.00099999999998 452.86799999999994 229.4235 L 452.78624999999994 229.4235 L 452.78624999999994 240.05699999999996 L 448.0875 240.05699999999996 L 448.0875 210.87675 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 464.49 221.55225000000002 C 464.49 220.59075 464.3670000000001 219.65625 464.12025 218.7495 C 463.87275 217.84275 463.50149999999996 217.03875 463.00725 216.33825000000002 S 461.89424999999994 215.0745 461.15250000000003 214.6485 C 460.41075 214.22325 459.558 214.00950000000006 458.59725 214.00950000000006 C 456.61799999999994 214.00950000000006 455.12775 214.69650000000004 454.125 216.07050000000004 C 453.1215 217.44450000000003 452.6205 219.2715 452.6205 221.55225000000007 C 452.6205 222.62400000000002 452.751 223.62000000000006 453.01125 224.54025000000004 C 453.273 225.46125000000006 453.66375 226.25025000000002 454.18575 226.91025000000008 S 455.33325 228.0922500000001 456.06075 228.47700000000006 C 456.789 228.86175000000003 457.63424999999995 229.05375000000006 458.5965 229.05375000000006 C 459.66824999999994 229.05375000000006 460.57424999999995 228.83400000000006 461.31674999999996 228.39450000000005 C 462.0585 227.95575000000008 462.6697499999999 227.38500000000005 463.15049999999997 226.68375000000003 C 463.63124999999997 225.98325000000003 463.9755 225.18675000000007 464.18025 224.29350000000005 C 464.388 223.401 464.49 222.48600000000002 464.49 221.55225000000002 z">
</path>
</g>
<g id="part102" class="part active"
style="transform: translate(43.50902330000011px, 1140.6627627999999px) rotate(270deg)">
<path fill="url(#part103hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 536.247 153.29775 L 541.6882499999999 153.29775 L 555.1244999999999 174.978 L 555.20625 174.978 L 555.20625 153.29775 L 560.1112499999999 153.29775 L 560.1112499999999 182.72625 L 554.67075 182.72625 L 541.2757499999999 161.08724999999998 L 541.1512499999999 161.08724999999998 L 541.1512499999999 182.72625 L 536.2469999999998 182.72625 L 536.2469999999998 153.29775 z"
fill-opacity="0.5"></path>
</g>
<g id="part132" class="part active"
style="transform: translate(54.66758790000003px, 464.07976400000007px) rotate(180deg)">
<path fill="url(#part133hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 43.8825 282.22275 C 42.1785 282.22275 40.6605 281.94075000000004 39.3285 281.3775 C 37.995 280.815 36.869249999999994 280.038 35.94825 279.04875 S 34.32675 276.87825 33.846000000000004 275.50425 C 33.36525 274.13025 33.12525 272.619 33.12525 270.9705 C 33.12525 269.349 33.36525 267.852 33.846000000000004 266.47799999999995 S 35.02725 263.92275 35.94825 262.93275 C 36.86925 261.94425 37.995 261.168 39.3285 260.604 C 40.6605 260.0415 42.17849999999999 259.7595 43.8825 259.7595 C 45.58575 259.7595 47.10375 260.0415 48.43725 260.604 C 49.76925 261.168 50.89575000000001 261.94424999999995 51.81675 262.93275 C 52.73774999999999 263.922 53.438250000000004 265.104 53.919 266.47799999999995 S 54.6405 269.34975 54.6405 270.9705 C 54.6405 272.61899999999997 54.39975 274.13025 53.919 275.50425 C 53.43825 276.87825 52.73774999999999 278.05949999999996 51.81675 279.04875 S 49.769999999999996 280.81425 48.43725 281.3775 C 47.10375 281.94075 45.58575 282.22275 43.8825 282.22275 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 43.8825 278.51324999999997 C 44.926500000000004 278.51324999999997 45.83325 278.2935 46.60275 277.854 C 47.3715 277.41525 48.0045 276.83774999999997 48.49875 276.123 C 48.99300000000001 275.409 49.3575 274.605 49.59075000000001 273.71175 C 49.82400000000001 272.81925 49.941 271.90500000000003 49.941 270.97125 C 49.941 270.0645 49.82325000000001 269.15775 49.59075000000001 268.251 C 49.356750000000005 267.34425 48.99300000000001 266.54025 48.49875 265.83975000000004 C 48.00375000000001 265.13925 47.371500000000005 264.56925 46.60275000000001 264.12975000000006 C 45.83325000000001 263.69100000000003 44.926500000000004 263.4705 43.88250000000001 263.4705 C 42.83775 263.4705 41.931 263.69100000000003 41.16225 264.12975000000006 C 40.39275 264.56925000000007 39.7605 265.13925000000006 39.26625 265.83975000000004 C 38.77125000000001 266.54025 38.40675 267.34425 38.17425 268.251 C 37.940250000000006 269.15775 37.824 270.0645 37.824 270.97125 C 37.824 271.90575 37.940250000000006 272.81925 38.17425 273.71175 C 38.4075 274.605 38.77125 275.409 39.26625 276.123 C 39.7605 276.83774999999997 40.392 277.41525 41.16225 277.854 C 41.931 278.2935 42.83775 278.51324999999997 43.8825 278.51324999999997 z">
</path>
</g>
<g id="part73" class="part active" style="transform: translate(409.4699005px, 553.1859984px) rotate(90deg)">
<path fill="url(#part74hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 43.8825 183.30375 C 42.1785 183.30375 40.6605 183.02175 39.3285 182.45925 C 37.995 181.89675 36.869249999999994 181.11975 35.94825 180.1305 S 34.32675 177.96 33.846000000000004 176.586 C 33.36525 175.21200000000002 33.12525 173.70075 33.12525 172.05225000000002 C 33.12525 170.43075000000002 33.36525 168.93375000000003 33.846000000000004 167.55975 S 35.02725 165.0045 35.94825 164.0145 C 36.86925 163.026 37.995 162.249 39.3285 161.68575 C 40.6605 161.12325 42.17849999999999 160.84125 43.8825 160.84125 C 45.58575 160.84125 47.10375 161.12325 48.43725 161.68575 C 49.76925 162.24900000000002 50.89575000000001 163.026 51.81675 164.0145 C 52.73774999999999 165.00375 53.438250000000004 166.18575 53.919 167.55975 S 54.6405 170.43150000000003 54.6405 172.05225000000002 C 54.6405 173.70075000000003 54.39975 175.21200000000002 53.919 176.586 C 53.43825 177.96 52.73774999999999 179.14125 51.81675 180.1305 S 49.769999999999996 181.89600000000002 48.43725 182.45925 C 47.10375 183.02175 45.58575 183.30375 43.8825 183.30375 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 43.8825 179.59425 C 44.926500000000004 179.59425 45.83325 179.3745 46.60275 178.935 C 47.3715 178.49625 48.0045 177.91875000000002 48.49875 177.204 C 48.99300000000001 176.49 49.3575 175.686 49.59075000000001 174.79275 C 49.82400000000001 173.90025000000003 49.941 172.98600000000002 49.941 172.05225000000002 C 49.941 171.14550000000003 49.82325000000001 170.23875 49.59075000000001 169.332 C 49.356750000000005 168.42525 48.99300000000001 167.62125 48.49875 166.92075 C 48.00375000000001 166.22025000000002 47.371500000000005 165.65025000000003 46.60275000000001 165.21075000000002 C 45.83325000000001 164.772 44.926500000000004 164.5515 43.88250000000001 164.5515 C 42.83775 164.5515 41.931 164.77200000000002 41.16225 165.21075000000002 C 40.39275 165.65025000000003 39.7605 166.22025000000002 39.26625 166.92075 C 38.77125000000001 167.62125 38.40675 168.42525 38.17425 169.332 C 37.940250000000006 170.23875 37.824 171.14550000000003 37.824 172.05225000000002 C 37.824 172.98675000000003 37.940250000000006 173.90025000000003 38.17425 174.79275 C 38.4075 175.686 38.77125 176.49 39.26625 177.204 C 39.7605 177.91875000000002 40.392 178.49625000000003 41.16225 178.935 C 41.931 179.3745 42.83775 179.59425 43.8825 179.59425 z">
</path>
</g>
<g id="part61" class="part active"
style="transform: translate(382.4950326px, 255.77696379999998px) rotate(90deg)">
<path fill="url(#part62hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 340.10175 133.8435 C 338.39775 133.8435 336.87975 133.5615 335.54625 132.999 C 334.2135 132.4365 333.08774999999997 131.65949999999998 332.1675 130.67025 C 331.24649999999997 129.681 330.546 128.49975 330.06525 127.12575000000001 C 329.58375 125.75175000000002 329.34299999999996 124.2405 329.34299999999996 122.59200000000001 C 329.34299999999996 120.97050000000002 329.58375 119.47350000000003 330.06525 118.0995 C 330.546 116.72550000000001 331.24649999999997 115.54425 332.1675 114.55425 C 333.08774999999997 113.56575 334.2135 112.78875 335.54625 112.22550000000001 C 336.87975 111.66300000000001 338.39775 111.381 340.10175 111.381 C 341.805 111.381 343.323 111.66300000000001 344.65575 112.22550000000001 C 345.98775 112.78875000000002 347.11425 113.56575000000001 348.03525 114.55425 C 348.95625 115.5435 349.65675 116.72550000000001 350.13750000000005 118.0995 S 350.85900000000004 120.97125000000001 350.85900000000004 122.59200000000001 C 350.85900000000004 124.24050000000003 350.61825 125.75175000000002 350.13750000000005 127.12575000000001 C 349.65675 128.49975 348.95625 129.681 348.03525 130.67025 S 345.98850000000004 132.43575 344.65575 132.999 C 343.323 133.56225 341.80424999999997 133.8435 340.10175 133.8435 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 340.10175 130.13400000000001 C 341.145 130.13400000000001 342.05175 129.915 342.82124999999996 129.47475 C 343.59 129.036 344.22225 128.45850000000002 344.7165 127.74375 C 345.21225 127.02975 345.57599999999996 126.22575 345.81 125.33250000000001 C 346.0425 124.44000000000001 346.16024999999996 123.52575000000002 346.16024999999996 122.59200000000001 C 346.16024999999996 121.68525000000001 346.0425 120.77850000000001 345.81 119.87175 C 345.57599999999996 118.965 345.21225 118.161 344.7165 117.4605 C 344.22225 116.76 343.59 116.19000000000001 342.82124999999996 115.7505 C 342.05174999999997 115.31099999999999 341.145 115.09125 340.10175 115.09125 C 339.05625 115.09125 338.1495 115.311 337.38075000000003 115.7505 C 336.612 116.19000000000001 335.97975 116.76 335.4855 117.4605 S 334.626 118.965 334.3935 119.87175 C 334.1595 120.77850000000001 334.04175 121.68525000000001 334.04175 122.59200000000001 C 334.04175 123.52650000000003 334.15875 124.44000000000001 334.3935 125.33250000000001 C 334.626 126.22575 334.99125000000004 127.02975 335.4855 127.74375 C 335.97975 128.45850000000002 336.612 129.03600000000003 337.38075000000003 129.47475 C 338.1495 129.915 339.05625 130.13400000000001 340.10175 130.13400000000001 z">
</path>
</g>
<g id="part121" class="part active"
style="transform: translate(60.836792400000064px, 853.1432271000001px) rotate(270deg)">
<path fill="url(#part122hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 258.45225 232.76325 C 256.749 232.76325 255.23025 232.48125000000002 253.89825000000002 231.91875000000002 C 252.56550000000001 231.35625000000002 251.43900000000002 230.57925 250.51874999999998 229.59 C 249.59774999999996 228.60075 248.89724999999999 227.4195 248.41649999999998 226.0455 C 247.935 224.6715 247.695 223.16025000000002 247.695 221.51175 C 247.695 219.89025 247.935 218.39324999999997 248.41649999999998 217.01925 C 248.89724999999999 215.64524999999998 249.59774999999996 214.464 250.51874999999998 213.474 C 251.43899999999996 212.4855 252.5655 211.70925 253.89824999999996 211.14524999999998 C 255.23024999999996 210.58274999999998 256.74899999999997 210.30075 258.45224999999994 210.30075 C 260.15549999999996 210.30075 261.6735 210.58274999999998 263.00699999999995 211.14524999999998 C 264.33899999999994 211.70925 265.46549999999996 212.48549999999997 266.38649999999996 213.474 C 267.30749999999995 214.46325000000002 268.0079999999999 215.64524999999998 268.4887499999999 217.01925 S 269.2102499999999 219.891 269.2102499999999 221.51175 C 269.2102499999999 223.16024999999996 268.9694999999999 224.6715 268.4887499999999 226.0455 C 268.0079999999999 227.4195 267.30749999999995 228.60075 266.38649999999996 229.59 S 264.3397499999999 231.3555 263.00699999999995 231.91875000000002 C 261.6735 232.48125000000002 260.1555 232.76325 258.45225 232.76325 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 258.45225 229.05374999999998 C 259.49625000000003 229.05374999999998 260.403 228.83399999999997 261.1725 228.39449999999997 C 261.94124999999997 227.95574999999997 262.57425 227.37824999999995 263.06850000000003 226.66349999999997 C 263.56275000000005 225.94949999999997 263.92725 225.14549999999997 264.16050000000007 224.25225 C 264.39375 223.35975 264.51075000000003 222.44549999999998 264.51075000000003 221.51175 C 264.51075000000003 220.605 264.39300000000003 219.69824999999997 264.16050000000007 218.79149999999998 C 263.92650000000003 217.88475 263.56275000000005 217.08074999999997 263.06850000000003 216.38025 C 262.5735 215.67974999999998 261.94125 215.10975 261.1725 214.67025 C 260.403 214.23150000000004 259.49625000000003 214.01100000000002 258.45225 214.01100000000002 C 257.4075 214.01100000000002 256.50075000000004 214.23149999999998 255.73275 214.67025 C 254.96325000000002 215.10975000000002 254.33100000000002 215.67975 253.83675 216.38025 C 253.34175 217.08075000000002 252.97725 217.88475 252.74475 218.79149999999998 C 252.51074999999997 219.69824999999997 252.3945 220.605 252.3945 221.51175 C 252.3945 222.44624999999996 252.51074999999997 223.35975 252.74475 224.25225 C 252.97799999999998 225.14549999999997 253.34175 225.94949999999997 253.83675 226.66349999999997 C 254.33100000000002 227.37824999999995 254.96325000000002 227.95574999999997 255.73275 228.39449999999997 C 256.50075 228.834 257.40749999999997 229.05374999999998 258.45225 229.05374999999998 z">
</path>
</g>
<g id="part48" class="part active" style="transform: translate(427.4435424px, 550.0667271px) rotate(90deg)">
<path fill="url(#part49hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 44.62425 133.8435 C 42.921 133.8435 41.40225 133.5615 40.07025 132.999 C 38.7375 132.4365 37.611 131.65949999999998 36.69075 130.67025 C 35.76975 129.681 35.06925 128.49975 34.5885 127.12575000000001 C 34.107 125.75175000000002 33.86775 124.2405 33.86775 122.59200000000001 C 33.86775 120.97050000000002 34.10775 119.47350000000003 34.5885 118.0995 C 35.06925 116.72550000000001 35.76975 115.54425 36.69075 114.55425 C 37.611 113.56575 38.7375 112.78875 40.07025 112.22550000000001 C 41.40225 111.66300000000001 42.921 111.381 44.62425 111.381 S 47.8455 111.66300000000001 49.179 112.22550000000001 C 50.511750000000006 112.78875000000002 51.6375 113.56575000000001 52.5585 114.55425 C 53.478750000000005 115.5435 54.17925 116.72550000000001 54.66075 118.0995 C 55.14150000000001 119.4735 55.38225 120.97125000000001 55.38225 122.59200000000001 C 55.38225 124.24050000000003 55.14150000000001 125.75175000000002 54.66075 127.12575000000001 C 54.17925 128.49975 53.478750000000005 129.681 52.5585 130.67025 C 51.6375 131.65949999999998 50.511750000000006 132.43575 49.179 132.999 C 47.8455 133.56225 46.3275 133.8435 44.62425 133.8435 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 44.62425 130.13400000000001 C 45.66825 130.13400000000001 46.57575 129.915 47.344500000000004 129.47475 C 48.11325000000001 129.036 48.74625 128.45850000000002 49.24050000000001 127.74375 C 49.73475000000001 127.02975 50.099250000000005 126.22575 50.33250000000001 125.33250000000001 C 50.565750000000016 124.44000000000001 50.68275000000001 123.52575000000002 50.68275000000001 122.59200000000001 C 50.68275000000001 121.68525000000001 50.56575000000001 120.77850000000001 50.33250000000001 119.87175 C 50.098500000000016 118.965 49.73475000000001 118.161 49.24050000000001 117.4605 S 48.11400000000001 116.19000000000001 47.34450000000001 115.7505 C 46.575 115.31099999999999 45.66825000000001 115.09125 44.62425 115.09125 S 42.67275000000001 115.311 41.90475000000001 115.7505 C 41.135250000000006 116.19000000000001 40.50300000000001 116.76 40.008750000000006 117.4605 S 39.14925000000001 118.965 38.91675000000001 119.87175 C 38.68275000000001 120.77850000000001 38.566500000000005 121.68525000000001 38.566500000000005 122.59200000000001 C 38.566500000000005 123.52650000000003 38.68350000000001 124.44000000000001 38.91675000000001 125.33250000000001 C 39.150000000000006 126.22575 39.51375000000001 127.02975 40.008750000000006 127.74375 C 40.50375000000001 128.45850000000002 41.13525000000001 129.03600000000003 41.90475000000001 129.47475 C 42.67275 129.915 43.5795 130.13400000000001 44.62425 130.13400000000001 z">
</path>
</g>
<g id="part59" class="part active"
style="transform: translate(18.294566599999996px, 460.1241209px) rotate(0deg)">
<path fill="url(#part60hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 305.72700000000003 133.8435 C 304.02375 133.8435 302.505 133.5615 301.173 132.999 C 299.84025 132.4365 298.71375 131.65949999999998 297.7935 130.67025 C 296.8725 129.681 296.172 128.49975 295.69124999999997 127.12575000000001 C 295.20975 125.75175000000002 294.9705 124.2405 294.9705 122.59200000000001 C 294.9705 120.97050000000002 295.21049999999997 119.47350000000003 295.69124999999997 118.0995 C 296.172 116.72550000000001 296.8725 115.54425 297.7935 114.55425 C 298.71375 113.56575 299.84024999999997 112.78875 301.173 112.22550000000001 C 302.505 111.66300000000001 304.02374999999995 111.381 305.727 111.381 S 308.94825 111.66300000000001 310.28175 112.22550000000001 C 311.61449999999996 112.78875000000002 312.74024999999995 113.56575000000001 313.66124999999994 114.55425 C 314.5814999999999 115.5435 315.2819999999999 116.72550000000001 315.7634999999999 118.0995 C 316.24424999999997 119.4735 316.4849999999999 120.97125000000001 316.4849999999999 122.59200000000001 C 316.4849999999999 124.24050000000003 316.2442499999999 125.75175000000002 315.7634999999999 127.12575000000001 C 315.2819999999999 128.49975 314.5814999999999 129.681 313.66124999999994 130.67025 C 312.74024999999995 131.65949999999998 311.61449999999996 132.43575 310.28175 132.999 C 308.94825 133.56225 307.43025 133.8435 305.72700000000003 133.8435 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 305.72700000000003 130.13400000000001 C 306.771 130.13400000000001 307.6785 129.915 308.44725000000005 129.47475 C 309.216 129.036 309.84900000000005 128.45850000000002 310.34325 127.74375 C 310.83750000000003 127.02975 311.202 126.22575 311.43525000000005 125.33250000000001 C 311.66850000000005 124.44000000000001 311.78550000000007 123.52575000000002 311.78550000000007 122.59200000000001 C 311.78550000000007 121.68525000000001 311.66850000000005 120.77850000000001 311.43525000000005 119.87175 C 311.2012500000001 118.965 310.83750000000003 118.161 310.34325 117.4605 S 309.21600000000007 116.19000000000001 308.44725000000005 115.7505 C 307.67775 115.31099999999999 306.771 115.09125 305.72700000000003 115.09125 C 304.68225000000007 115.09125 303.7755 115.311 303.00750000000005 115.7505 C 302.23800000000006 116.19000000000001 301.60575 116.76 301.11150000000004 117.4605 S 300.252 118.965 300.0195 119.87175 C 299.7855 120.77850000000001 299.66925000000003 121.68525000000001 299.66925000000003 122.59200000000001 C 299.66925000000003 123.52650000000003 299.78625 124.44000000000001 300.0195 125.33250000000001 C 300.25275 126.22575 300.6165 127.02975 301.11150000000004 127.74375 C 301.60650000000004 128.45850000000002 302.23800000000006 129.03600000000003 303.00750000000005 129.47475 C 303.77549999999997 129.915 304.68225 130.13400000000001 305.72700000000003 130.13400000000001 z">
</path>
</g>
<g id="part123" class="part active"
style="transform: translate(541.2716948999999px, 129.9335913px) rotate(90deg)">
<path fill="url(#part124hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 318.009 232.76325 C 316.30575 232.76325 314.78700000000003 232.48125000000002 313.455 231.91875000000002 C 312.12225 231.35625000000002 310.99575 230.57925 310.0755 229.59 C 309.1545 228.60075 308.454 227.4195 307.97325 226.0455 C 307.49249999999995 224.6715 307.25249999999994 223.16025000000002 307.25249999999994 221.51175 C 307.25249999999994 219.89025 307.49249999999995 218.39324999999997 307.97325 217.01925 S 309.1545 214.464 310.0755 213.474 C 310.99574999999993 212.4855 312.12224999999995 211.70925 313.4549999999999 211.14524999999998 C 314.787 210.58274999999998 316.30574999999993 210.30075 318.00899999999996 210.30075 S 321.23024999999996 210.58274999999998 322.5637499999999 211.14524999999998 C 323.89574999999996 211.70925 325.0229999999999 212.48549999999997 325.9432499999999 213.474 C 326.86349999999993 214.46325000000002 327.5639999999999 215.64524999999998 328.04549999999995 217.01925 C 328.52624999999995 218.39324999999997 328.76699999999994 219.891 328.76699999999994 221.51175 C 328.76699999999994 223.16024999999996 328.5262499999999 224.6715 328.04549999999995 226.0455 C 327.5639999999999 227.4195 326.86349999999993 228.60075 325.9432499999999 229.59 C 325.02224999999993 230.57925 323.8957499999999 231.3555 322.5637499999999 231.91875000000002 C 321.23025 232.48125000000002 319.71225000000004 232.76325 318.009 232.76325 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 318.009 229.05374999999998 C 319.053 229.05374999999998 319.95975 228.83399999999997 320.72925 228.39449999999997 C 321.498 227.95574999999997 322.13025 227.37824999999995 322.62525000000005 226.66349999999997 C 323.12025000000006 225.94949999999997 323.48400000000004 225.14549999999997 323.718 224.25225 C 323.95050000000003 223.35975 324.06825000000003 222.44549999999998 324.06825000000003 221.51175 C 324.06825000000003 220.605 323.95050000000003 219.69824999999997 323.718 218.79149999999998 C 323.48400000000004 217.88475 323.12025 217.08074999999997 322.62525000000005 216.38025 C 322.13025 215.67974999999998 321.49875000000003 215.10975 320.72925 214.67025 C 319.95975 214.23150000000004 319.053 214.01100000000002 318.009 214.01100000000002 C 316.96425 214.01100000000002 316.0575 214.23149999999998 315.28875 214.67025 C 314.51925 215.10975000000002 313.88699999999994 215.67975 313.39275 216.38025 C 312.89775 217.08075000000002 312.53324999999995 217.88475 312.30075 218.79149999999998 C 312.06674999999996 219.69824999999997 311.9505 220.605 311.9505 221.51175 C 311.9505 222.44624999999996 312.06674999999996 223.35975 312.30075 224.25225 C 312.53399999999993 225.14549999999997 312.89775 225.94949999999997 313.39275 226.66349999999997 C 313.88699999999994 227.37824999999995 314.51849999999996 227.95574999999997 315.28875 228.39449999999997 C 316.0575 228.834 316.96425 229.05374999999998 318.009 229.05374999999998 z">
</path>
</g>
<g id="part127" class="part active"
style="transform: translate(-285.7520252px, 300.7501043000001px) rotate(0deg)">
<path fill="url(#part128hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 412.1055 210.87675 L 416.55674999999997 210.87675 L 416.55674999999997 213.84449999999998 L 416.68049999999994 213.84449999999998 C 417.03749999999997 213.32324999999997 417.42224999999996 212.84175 417.83399999999995 212.40224999999998 C 418.24649999999997 211.9635 418.70624999999995 211.59224999999998 419.21549999999996 211.28924999999998 C 419.72325 210.98775 420.3075 210.74699999999999 420.9675 210.56849999999997 C 421.62675 210.39 422.38199999999995 210.30074999999997 423.23400000000004 210.30074999999997 C 424.52549999999997 210.30074999999997 425.727 210.58949999999996 426.84074999999996 211.16624999999996 C 427.95224999999994 211.74299999999997 428.74274999999994 212.63624999999996 429.21 213.84524999999996 C 430.00649999999996 212.74724999999995 430.92674999999997 211.88099999999994 431.9715 211.24874999999997 C 433.01625 210.61724999999998 434.32125 210.30074999999997 435.88725 210.30074999999997 C 438.14025000000004 210.30074999999997 439.89225 210.85049999999995 441.1424999999999 211.94924999999995 C 442.39275 213.04874999999996 443.01824999999997 214.88999999999993 443.01824999999997 217.47224999999992 L 443.01824999999997 232.1864999999999 L 438.31949999999995 232.1864999999999 L 438.31949999999995 219.7394999999999 C 438.31949999999995 218.8882499999999 438.2917499999999 218.11124999999993 438.23699999999997 217.4107499999999 S 438.02399999999994 216.10649999999993 437.763 215.5972499999999 C 437.5012499999999 215.08949999999987 437.10974999999996 214.69724999999988 436.58849999999995 214.4227499999999 C 436.0664999999999 214.1482499999999 435.35249999999996 214.0109999999999 434.44575 214.0109999999999 C 432.85125 214.0109999999999 431.69775 214.50524999999993 430.98375 215.4952499999999 C 430.269 216.4837499999999 429.91125 217.88549999999992 429.91125 219.69899999999993 L 429.91125 232.18724999999995 L 425.21250000000003 232.18724999999995 L 425.21250000000003 218.50349999999992 C 425.21250000000003 217.01924999999994 424.94550000000004 215.90024999999991 424.40925000000004 215.14424999999994 C 423.87375 214.38899999999995 422.89125 214.0109999999999 421.46250000000003 214.0109999999999 C 420.85725 214.0109999999999 420.27375 214.13474999999994 419.7105 214.38224999999994 C 419.14725000000004 214.62974999999992 418.653 214.98674999999992 418.2270000000001 215.4539999999999 C 417.8002500000001 215.9219999999999 417.4575000000001 216.4987499999999 417.1957500000001 217.1849999999999 C 416.9347500000001 217.87274999999988 416.80500000000006 218.6549999999999 416.80500000000006 219.5347499999999 L 416.80500000000006 232.18799999999987 L 412.1062500000001 232.18799999999987 L 412.1062500000001 210.87675 z"
fill-opacity="0.5"></path>
</g>
<g id="part68" class="part active"
style="transform: translate(624.6967541px, 422.71526359999984px) rotate(180deg)">
<path fill="url(#part69hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 460.16325000000006 111.95774999999999 L 464.6145 111.95774999999999 L 464.6145 114.92549999999999 L 464.73825 114.92549999999999 C 465.09524999999996 114.40424999999999 465.48 113.92275 465.89175 113.48324999999998 C 466.3042499999999 113.04449999999997 466.764 112.67324999999997 467.27324999999996 112.37024999999997 C 467.78099999999995 112.06875 468.36524999999995 111.82799999999997 469.02524999999997 111.64949999999996 C 469.68449999999996 111.47099999999998 470.43974999999995 111.38174999999997 471.29175 111.38174999999997 C 472.5825 111.38174999999997 473.78475 111.66974999999996 474.8985 112.24724999999997 C 476.01 112.82399999999997 476.80049999999994 113.71724999999998 477.26775 114.92624999999997 C 478.06425 113.82824999999997 478.98449999999997 112.96199999999996 480.02925 112.32974999999998 C 481.074 111.69824999999997 482.379 111.38174999999997 483.945 111.38174999999997 C 486.198 111.38174999999997 487.94925 111.93149999999997 489.20025 113.03024999999997 C 490.4505 114.12974999999997 491.0759999999999 115.97099999999998 491.0759999999999 118.55324999999998 L 491.0759999999999 133.26749999999998 L 486.37724999999995 133.26749999999998 L 486.37724999999995 120.82049999999998 C 486.37724999999995 119.96924999999999 486.3494999999999 119.19224999999997 486.2947499999999 118.49174999999998 S 486.08174999999994 117.18749999999997 485.82075 116.67824999999998 C 485.55899999999997 116.17049999999998 485.1675 115.77824999999999 484.64624999999995 115.50374999999997 C 484.12424999999996 115.22924999999996 483.4102499999999 115.09199999999997 482.5035 115.09199999999997 C 480.909 115.09199999999997 479.7555 115.58624999999996 479.0415 116.57624999999999 C 478.32675 117.56474999999999 477.96900000000005 118.9665 477.96900000000005 120.77999999999997 L 477.96900000000005 133.26824999999997 L 473.27025000000003 133.26824999999997 L 473.27025000000003 119.58449999999998 C 473.27025000000003 118.10024999999996 473.00250000000005 116.98124999999997 472.467 116.22524999999996 C 471.93149999999997 115.46999999999997 470.949 115.09199999999997 469.52025000000003 115.09199999999997 C 468.915 115.09199999999997 468.3315 115.21574999999996 467.76825 115.46324999999997 C 467.20500000000004 115.71074999999999 466.7107500000001 116.06774999999999 466.28475000000003 116.53499999999997 C 465.85800000000006 117.00299999999997 465.5152500000001 117.57974999999998 465.25350000000003 118.26599999999996 C 464.99250000000006 118.95299999999997 464.8627500000001 119.73599999999998 464.8627500000001 120.61499999999998 L 464.8627500000001 133.26824999999997 L 460.1640000000001 133.26824999999997 L 460.1640000000001 111.95774999999999 z"
fill-opacity="0.5"></path>
</g>
<g id="part51" class="part active"
style="transform: translate(260.5125041px, 401.03184699999997px) rotate(180deg)">
<path fill="url(#part52hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 95.979 111.95774999999999 L 100.43024999999999 111.95774999999999 L 100.43024999999999 114.92549999999999 L 100.55399999999997 114.92549999999999 C 100.91099999999997 114.40424999999999 101.29574999999998 113.92275 101.70824999999996 113.48324999999998 C 102.11999999999998 113.04449999999997 102.58049999999997 112.67324999999997 103.08899999999997 112.37024999999997 C 103.59674999999997 112.06875 104.18099999999997 111.82799999999997 104.84024999999998 111.64949999999996 C 105.49949999999998 111.47099999999998 106.25549999999998 111.38174999999997 107.10674999999998 111.38174999999997 C 108.39824999999999 111.38174999999997 109.60049999999997 111.66974999999996 110.71349999999998 112.24724999999997 C 111.82649999999998 112.82399999999997 112.61624999999998 113.71724999999998 113.08349999999997 114.92624999999997 C 113.87999999999998 113.82824999999997 114.80024999999996 112.96199999999996 115.84499999999997 112.32974999999998 C 116.88899999999995 111.69824999999997 118.19399999999996 111.38174999999997 119.75999999999996 111.38174999999997 C 122.01299999999995 111.38174999999997 123.76424999999996 111.93149999999997 125.01524999999997 113.03024999999997 C 126.26474999999996 114.12974999999997 126.89024999999997 115.97099999999998 126.89024999999997 118.55324999999998 L 126.89024999999997 133.26749999999998 L 122.19149999999998 133.26749999999998 L 122.19149999999998 120.82049999999998 C 122.19149999999998 119.96924999999999 122.16374999999996 119.19224999999997 122.10974999999996 118.49174999999998 C 122.05424999999997 117.79124999999999 121.89599999999997 117.18749999999997 121.63574999999997 116.67824999999998 C 121.37399999999997 116.17049999999998 120.98249999999996 115.77824999999999 120.46049999999997 115.50374999999997 C 119.93849999999996 115.22924999999996 119.22449999999996 115.09199999999997 118.31774999999996 115.09199999999997 C 116.72399999999996 115.09199999999997 115.56974999999997 115.58624999999996 114.85574999999997 116.57624999999999 C 114.14099999999996 117.56474999999999 113.78399999999996 118.9665 113.78399999999996 120.77999999999997 L 113.78399999999996 133.26824999999997 L 109.08524999999997 133.26824999999997 L 109.08524999999997 119.58449999999998 C 109.08524999999997 118.10024999999996 108.81749999999998 116.98124999999997 108.28124999999997 116.22524999999996 C 107.74574999999999 115.46999999999997 106.76324999999997 115.09199999999997 105.33449999999998 115.09199999999997 C 104.72999999999996 115.09199999999997 104.14574999999996 115.21574999999996 103.58324999999996 115.46324999999997 C 103.01999999999997 115.71074999999999 102.52499999999998 116.06774999999999 102.09899999999996 116.53499999999997 C 101.67299999999994 117.00299999999997 101.32949999999995 117.57974999999998 101.06849999999997 118.26599999999996 C 100.80674999999997 118.95299999999997 100.67774999999997 119.73599999999998 100.67774999999997 120.61499999999998 L 100.67774999999997 133.26824999999997 L 95.97899999999997 133.26824999999997 L 95.97899999999997 111.95774999999999 z"
fill-opacity="0.5"></path>
</g>
<g id="part57" class="part active" style="transform: translate(331.7598592px, 357.7705956px) rotate(180deg)">
<path fill="url(#part58hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 223.46025 111.95774999999999 L 227.9115 111.95774999999999 L 227.9115 114.92549999999999 L 228.03525000000002 114.92549999999999 C 228.39225000000002 114.40424999999999 228.777 113.92275 229.1895 113.48324999999998 C 229.60125 113.04449999999997 230.06175000000002 112.67324999999997 230.57025000000002 112.37024999999997 C 231.07800000000003 112.06875 231.66225000000003 111.82799999999997 232.32150000000001 111.64949999999996 C 232.98075 111.47099999999998 233.73675 111.38174999999997 234.588 111.38174999999997 C 235.87949999999998 111.38174999999997 237.08175 111.66974999999996 238.19475 112.24724999999997 C 239.30775 112.82399999999997 240.0975 113.71724999999998 240.56475000000003 114.92624999999997 C 241.36125000000004 113.82824999999997 242.28150000000002 112.96199999999996 243.32625000000004 112.32974999999998 C 244.37025000000006 111.69824999999997 245.67525000000006 111.38174999999997 247.24125000000006 111.38174999999997 C 249.49425000000008 111.38174999999997 251.24550000000005 111.93149999999997 252.49650000000008 113.03024999999997 C 253.74600000000007 114.12974999999997 254.37150000000008 115.97099999999998 254.37150000000008 118.55324999999998 L 254.37150000000008 133.26749999999998 L 249.67275000000006 133.26749999999998 L 249.67275000000006 120.82049999999998 C 249.67275000000006 119.96924999999999 249.6450000000001 119.19224999999997 249.5910000000001 118.49174999999998 C 249.53550000000007 117.79124999999999 249.37725000000006 117.18749999999997 249.11700000000008 116.67824999999998 C 248.8552500000001 116.17049999999998 248.46375000000012 115.77824999999999 247.94175000000007 115.50374999999997 C 247.41975000000008 115.22924999999996 246.70575000000008 115.09199999999997 245.79900000000006 115.09199999999997 C 244.20525000000006 115.09199999999997 243.05100000000007 115.58624999999996 242.33700000000007 116.57624999999999 C 241.6222500000001 117.56474999999999 241.2652500000001 118.9665 241.2652500000001 120.77999999999997 L 241.2652500000001 133.26824999999997 L 236.5665000000001 133.26824999999997 L 236.5665000000001 119.58449999999998 C 236.5665000000001 118.10024999999996 236.2987500000001 116.98124999999997 235.76325000000008 116.22524999999996 C 235.22775000000007 115.46999999999997 234.2445000000001 115.09199999999997 232.8157500000001 115.09199999999997 C 232.2112500000001 115.09199999999997 231.6270000000001 115.21574999999996 231.0645000000001 115.46324999999997 C 230.5012500000001 115.71074999999999 230.00625000000008 116.06774999999999 229.5802500000001 116.53499999999997 C 229.1542500000001 117.00299999999997 228.8107500000001 117.57974999999998 228.54975000000007 118.26599999999996 C 228.2880000000001 118.95299999999997 228.15900000000008 119.73599999999998 228.15900000000008 120.61499999999998 L 228.15900000000008 133.26824999999997 L 223.4602500000001 133.26824999999997 L 223.4602500000001 111.95774999999999 z"
fill-opacity="0.5"></path>
</g>
<g id="part38" class="part active"
style="transform: translate(-163.50691149999997px, 3.4657478999999967px) rotate(0deg)">
<path fill="url(#part39hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 323.59875 28.670249999999996 L 323.59875 32.82075 L 315.375 32.82075 L 315.375 60.073499999999996 C 315.375 61.692750000000004 315.597 62.958749999999995 316.041 63.871500000000005 C 316.48425 64.78575000000001 317.59349999999995 65.29425 319.36949999999996 65.39925000000001 C 320.77875 65.39925000000001 322.188 65.32050000000001 323.59875 65.16375000000002 L 323.59875 69.31425000000002 C 322.86674999999997 69.31425000000002 322.1355 69.34050000000002 321.40575 69.39225000000002 C 320.67375 69.44400000000002 319.94399999999996 69.47025000000002 319.21275 69.47025000000002 C 315.92400000000004 69.47025000000002 313.626 68.83125000000001 312.32175 67.55175000000001 C 311.016 66.27300000000001 310.389 63.91050000000001 310.44225 60.46425000000001 L 310.44225 32.820750000000004 L 303.3945 32.820750000000004 L 303.3945 28.670250000000003 L 310.44225 28.670250000000003 L 310.44225 16.5315 L 315.37575 16.5315 L 315.37575 28.670250000000003 L 323.59875 28.670250000000003 z"
fill-opacity="0.5"></path>
</g>
<g id="part46" class="part active"
style="transform: translate(774.3330041px, 295.46213879999993px) rotate(180deg)">
<path fill="url(#part47hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 631.128 28.670249999999996 L 631.128 32.82075 L 622.905 32.82075 L 622.905 60.073499999999996 C 622.905 61.692750000000004 623.1262499999999 62.958749999999995 623.571 63.871500000000005 C 624.01425 64.78575000000001 625.12275 65.29425 626.8995 65.39925000000001 C 628.30875 65.39925000000001 629.71875 65.32050000000001 631.12875 65.16375000000002 L 631.12875 69.31425000000002 C 630.39675 69.31425000000002 629.66625 69.34050000000002 628.9350000000001 69.39225000000002 C 628.203 69.44400000000002 627.474 69.47025000000002 626.74275 69.47025000000002 C 623.45325 69.47025000000002 621.1560000000001 68.83125000000001 619.85175 67.55175000000001 C 618.546 66.27300000000001 617.91975 63.91050000000001 617.97225 60.46425000000001 L 617.97225 32.820750000000004 L 610.9245000000001 32.820750000000004 L 610.9245000000001 28.670250000000003 L 617.97225 28.670250000000003 L 617.97225 16.5315 L 622.90575 16.5315 L 622.90575 28.670250000000003 L 631.128 28.670250000000003 z"
fill-opacity="0.5"></path>
</g>
<g id="part83" class="part active" style="transform: translate(581.5753591px, 728.0284689px) rotate(180deg)">
<path fill="url(#part84hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 267.27225 177.987 C 267.27225 178.5645 267.348 178.9755 267.49875000000003 179.223 C 267.64950000000005 179.47050000000002 267.94500000000005 179.59425 268.38525000000004 179.59425 C 268.52250000000004 179.59425 268.68750000000006 179.59425 268.88025000000005 179.59425 C 269.07225000000005 179.59425 269.29200000000003 179.56725 269.5395000000001 179.51175 L 269.5395000000001 182.76749999999998 C 269.3745 182.82225 269.16150000000005 182.8845 268.9005000000001 182.95275 C 268.6387500000001 183.02100000000002 268.3710000000001 183.08325000000002 268.0965000000001 183.13875000000002 C 267.8212500000001 183.1935 267.5467500000001 183.23475 267.2722500000001 183.2625 C 266.99700000000007 183.2895 266.7637500000001 183.30375 266.57175000000007 183.30375 C 265.6095 183.30375 264.81300000000005 183.111 264.1807500000001 182.727 C 263.54850000000005 182.34224999999998 263.1360000000001 181.6695 262.94475000000006 180.70725 C 262.01025000000004 181.61399999999998 260.86350000000004 182.27325 259.50300000000004 182.68574999999998 C 258.14250000000004 183.09825 256.83000000000004 183.30375 255.56625000000003 183.30375 C 254.60400000000004 183.30375 253.6845 183.17325 252.80475 182.91225 S 251.14950000000005 182.26725 250.47675000000004 181.758 C 249.80325000000002 181.25025000000002 249.26700000000005 180.60375000000002 248.86875000000003 179.82075000000003 C 248.47050000000002 179.0385 248.27100000000002 178.12500000000003 248.27100000000002 177.08025000000004 C 248.27100000000002 175.76100000000002 248.51100000000002 174.68925000000002 248.9925 173.865 C 249.47325 173.04075000000003 250.1055 172.395 250.88850000000002 171.92775 C 251.6715 171.46125 252.55050000000003 171.1245 253.52625 170.91825 C 254.50125000000003 170.71200000000002 255.48375000000004 170.55450000000002 256.47375 170.44425 C 257.32500000000005 170.27925000000002 258.13575000000003 170.163 258.90525 170.094 C 259.67400000000004 170.02575 260.35425000000004 169.90800000000002 260.94525000000004 169.74374999999998 C 261.53550000000007 169.57874999999999 262.0027500000001 169.32524999999998 262.3470000000001 168.981 C 262.6905000000001 168.6375 262.8622500000001 168.12224999999998 262.8622500000001 167.43525 C 262.8622500000001 166.83074999999997 262.71825000000007 166.3365 262.4295000000001 165.95099999999996 C 262.14150000000006 165.56699999999998 261.7837500000001 165.27074999999996 261.3577500000001 165.06449999999998 C 260.93175000000014 164.85899999999998 260.45775000000015 164.72175 259.9357500000001 164.65274999999997 C 259.4130000000001 164.5845 258.9187500000001 164.54999999999998 258.4515000000001 164.54999999999998 C 257.13300000000015 164.54999999999998 256.0470000000001 164.82524999999998 255.1957500000001 165.37424999999996 C 254.34375000000009 165.92399999999998 253.8630000000001 166.77524999999997 253.7527500000001 167.9295 L 249.05400000000014 167.9295 C 249.13650000000013 166.5555 249.46650000000014 165.41474999999997 250.04325000000014 164.50874999999996 C 250.62075000000013 163.60199999999998 251.35500000000016 162.87374999999997 252.24825000000016 162.32399999999996 C 253.14000000000016 161.77499999999998 254.15025000000014 161.39024999999998 255.27750000000015 161.16974999999996 C 256.4032500000001 160.95 257.55825000000016 160.8405 258.73950000000013 160.8405 C 259.7835000000001 160.8405 260.81400000000014 160.95 261.83100000000013 161.16974999999996 C 262.84725000000014 161.3895 263.76075000000014 161.74724999999998 264.5722500000001 162.24149999999997 C 265.3822500000001 162.73574999999997 266.0347500000001 163.37474999999998 266.52975000000015 164.1585 C 267.0240000000001 164.9415 267.2715000000001 165.89625 267.2715000000001 167.02274999999997 L 267.2715000000001 177.987 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 262.5735 172.05149999999998 C 261.85875000000004 172.51874999999998 260.97975 172.79999999999998 259.93575 172.896 C 258.891 172.992 257.847 173.13675 256.803 173.32874999999999 C 256.30875000000003 173.4105 255.82725 173.52824999999999 255.36 173.679 S 254.48025 174.036 254.124 174.29700000000003 C 253.76625 174.55875 253.485 174.90150000000003 253.27875 175.32750000000001 C 253.07324999999997 175.75350000000003 252.96975 176.2695 252.96975 176.87325 C 252.96975 177.39525 253.12050000000002 177.8355 253.42275 178.19175 C 253.72500000000002 178.54950000000002 254.08874999999998 178.83075000000002 254.51475 179.03700000000003 C 254.94 179.24325000000005 255.40725 179.38725000000005 255.91650000000004 179.46975000000003 C 256.42425000000003 179.55225000000004 256.8855 179.5935 257.29725 179.5935 C 257.81925000000007 179.5935 258.38250000000005 179.52525000000003 258.987 179.38725000000002 C 259.59075 179.25000000000003 260.1615 179.01675 260.697 178.68675000000002 C 261.23325 178.35750000000002 261.6795 177.93825000000004 262.03725 177.42975 C 262.3935 176.92200000000003 262.57275 176.29650000000004 262.57275 175.55475 L 262.57275 172.05149999999998 z">
</path>
</g>
<g id="part106" class="part active"
style="transform: translate(470.66418689999995px, -80.31606909999994px) rotate(90deg)">
<path fill="url(#part107hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 626.922 177.987 C 626.922 178.5645 626.997 178.9755 627.1485 179.223 C 627.29925 179.47050000000002 627.59475 179.59425 628.035 179.59425 C 628.173 179.59425 628.3365 179.59425 628.52925 179.59425 C 628.7212499999999 179.59425 628.941 179.56725 629.18925 179.51175 L 629.18925 182.76749999999998 C 629.0235 182.82225 628.81125 182.8845 628.5495000000001 182.95275 S 628.02 183.08325000000002 627.7455 183.13875000000002 C 627.47175 183.1935 627.1965 183.23475 626.922 183.2625 C 626.6467500000001 183.2895 626.412 183.30375 626.2207500000001 183.30375 C 625.2585000000001 183.30375 624.4620000000001 183.111 623.8297500000001 182.727 C 623.1975000000001 182.34224999999998 622.78575 181.6695 622.5937500000001 180.70725 C 621.6592500000002 181.61399999999998 620.5132500000001 182.27325 619.1527500000001 182.68574999999998 C 617.7930000000001 183.09825 616.4797500000002 183.30375 615.2160000000001 183.30375 C 614.2545 183.30375 613.3342500000001 183.17325 612.4552500000001 182.91225 C 611.5747500000001 182.65125 610.7985000000001 182.26725 610.1265000000001 181.758 C 609.453 181.25025000000002 608.91675 180.60375000000002 608.5185 179.82075000000003 C 608.12025 179.0385 607.92075 178.12500000000003 607.92075 177.08025000000004 C 607.92075 175.76100000000002 608.16075 174.68925000000002 608.64225 173.865 C 609.12225 173.04075000000003 609.7545 172.395 610.5382500000001 171.92775 C 611.32125 171.46125 612.2002500000001 171.1245 613.176 170.91825 C 614.1510000000001 170.71200000000002 615.1335000000001 170.55450000000002 616.12275 170.44425 C 616.9747500000001 170.27925000000002 617.7855000000001 170.163 618.5550000000001 170.094 C 619.32375 170.02575 620.0040000000001 169.90800000000002 620.5950000000001 169.74374999999998 C 621.1860000000001 169.57874999999999 621.6525000000001 169.32524999999998 621.9967500000001 168.981 C 622.3395000000002 168.6375 622.5120000000002 168.12224999999998 622.5120000000002 167.43525 C 622.5120000000002 166.83074999999997 622.3680000000002 166.3365 622.0800000000002 165.95099999999996 C 621.7905000000002 165.56699999999998 621.4335000000001 165.27074999999996 621.0075000000002 165.06449999999998 C 620.5815000000002 164.85899999999998 620.1075000000001 164.72175 619.5855000000001 164.65274999999997 C 619.0635000000002 164.5845 618.5692500000002 164.54999999999998 618.1020000000002 164.54999999999998 C 616.7827500000002 164.54999999999998 615.6967500000003 164.82524999999998 614.8455000000002 165.37424999999996 C 613.9927500000003 165.92399999999998 613.5127500000002 166.77524999999997 613.4032500000003 167.9295 L 608.7037500000002 167.9295 C 608.7862500000003 166.5555 609.1162500000003 165.41474999999997 609.6930000000002 164.50874999999996 C 610.2705000000002 163.60199999999998 611.0047500000003 162.87374999999997 611.8980000000003 162.32399999999996 C 612.7897500000003 161.77499999999998 613.8000000000002 161.39024999999998 614.9265000000003 161.16974999999996 C 616.0530000000002 160.95 617.2072500000004 160.8405 618.3892500000003 160.8405 C 619.4332500000003 160.8405 620.4630000000002 160.95 621.4800000000002 161.16974999999996 C 622.4955000000002 161.3895 623.4105000000002 161.74724999999998 624.2212500000003 162.24149999999997 C 625.0312500000002 162.73574999999997 625.6845000000003 163.37474999999998 626.1787500000003 164.1585 C 626.6730000000002 164.9415 626.9205000000003 165.89625 626.9205000000003 167.02274999999997 L 626.9205000000003 177.987 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 622.2239999999999 172.05149999999998 C 621.5085 172.51874999999998 620.6295 172.79999999999998 619.58475 172.896 S 617.4975 173.13675 616.4527499999999 173.32874999999999 C 615.9585 173.4105 615.4769999999999 173.52824999999999 615.0104999999999 173.679 C 614.5424999999999 173.82975 614.1299999999999 174.036 613.77375 174.29700000000003 C 613.4159999999999 174.55875 613.1347499999999 174.90150000000003 612.9285 175.32750000000001 C 612.723 175.75350000000003 612.6194999999999 176.2695 612.6194999999999 176.87325 C 612.6194999999999 177.39525 612.771 177.8355 613.0725 178.19175 C 613.37475 178.54950000000002 613.7384999999999 178.83075000000002 614.1645 179.03700000000003 S 615.057 179.38725000000005 615.5655 179.46975000000003 C 616.07475 179.55225000000004 616.5345 179.5935 616.947 179.5935 C 617.469 179.5935 618.03225 179.52525000000003 618.63675 179.38725000000002 C 619.24125 179.25000000000003 619.8112500000001 179.01675 620.3475 178.68675000000002 C 620.883 178.35750000000002 621.3299999999999 177.93825000000004 621.68625 177.42975 C 622.044 176.92200000000003 622.22325 176.29650000000004 622.22325 175.55475 L 622.22325 172.05149999999998 z">
</path>
</g>
<g id="part67" class="part active"
style="transform: translate(769.3953157px, 461.3912515999998px) rotate(180deg)">
<path fill="url(#part68hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 455.09325 128.5275 C 455.09325 129.10500000000002 455.16825000000006 129.51600000000002 455.31975000000006 129.7635 C 455.4705000000001 130.01100000000002 455.7660000000001 130.13400000000001 456.20625000000007 130.13400000000001 C 456.34425000000005 130.13400000000001 456.5077500000001 130.13400000000001 456.70050000000003 130.13400000000001 C 456.89250000000004 130.13400000000001 457.11225 130.107 457.36050000000006 130.05225 L 457.36050000000006 133.308 C 457.19475000000006 133.36275 456.9825000000001 133.42425 456.72075000000007 133.49325000000002 C 456.45900000000006 133.56150000000002 456.1912500000001 133.62375000000003 455.9167500000001 133.67925 C 455.6430000000001 133.734 455.3677500000001 133.77450000000002 455.0932500000001 133.803 C 454.81800000000015 133.82999999999998 454.58325000000013 133.84425 454.39200000000017 133.84425 C 453.4297500000001 133.84425 452.63325000000015 133.6515 452.0010000000002 133.26675 C 451.3687500000002 132.88275 450.9570000000001 132.20925 450.76500000000016 131.24775 C 449.83050000000014 132.15449999999998 448.6845000000002 132.81374999999997 447.3240000000002 133.22625 C 445.9642500000002 133.63875000000002 444.6510000000002 133.84425 443.38725000000017 133.84425 C 442.4257500000001 133.84425 441.50550000000015 133.71375 440.62650000000014 133.45275 C 439.74600000000015 133.19175 438.9697500000002 132.80775 438.2977500000001 132.29850000000002 C 437.6242500000001 131.79075000000003 437.0880000000001 131.14425000000003 436.6897500000001 130.36125 C 436.29150000000016 129.579 436.0920000000001 128.66475000000003 436.0920000000001 127.62075000000002 C 436.0920000000001 126.30150000000003 436.3320000000001 125.22975000000002 436.8135000000001 124.40550000000002 C 437.2935000000001 123.58125000000003 437.92575000000005 122.93550000000002 438.7095000000001 122.46825000000001 C 439.49250000000006 122.00175000000002 440.3715000000001 121.66500000000002 441.34725000000014 121.45875000000001 C 442.3222500000001 121.25250000000001 443.3047500000001 121.095 444.2940000000001 120.98475000000002 C 445.1460000000001 120.81975000000001 445.9567500000001 120.70350000000002 446.72625000000016 120.6345 C 447.4950000000001 120.56625 448.1752500000002 120.44850000000001 448.7662500000002 120.28424999999999 C 449.3572500000002 120.11925 449.82375000000013 119.86574999999999 450.16800000000023 119.5215 C 450.5107500000002 119.178 450.6832500000002 118.66274999999999 450.6832500000002 117.97574999999999 C 450.6832500000002 117.37124999999997 450.5392500000002 116.87699999999998 450.2512500000002 116.49149999999997 C 449.9617500000002 116.10749999999999 449.6047500000002 115.81124999999997 449.17875000000026 115.60499999999999 C 448.7527500000002 115.39949999999999 448.2787500000002 115.26225 447.75675000000024 115.19324999999998 C 447.23475000000025 115.12499999999997 446.7405000000002 115.09049999999999 446.2732500000003 115.09049999999999 C 444.9540000000003 115.09049999999999 443.8680000000003 115.36574999999998 443.01675000000034 115.91474999999997 C 442.1640000000003 116.46449999999999 441.6840000000003 117.31574999999998 441.5745000000003 118.46999999999998 L 436.875 118.46999999999998 C 436.9575 117.09599999999999 437.28749999999997 115.95524999999998 437.86424999999997 115.04924999999997 C 438.44174999999996 114.14249999999998 439.176 113.41424999999998 440.06925 112.86449999999996 C 440.961 112.31549999999997 441.97124999999994 111.93074999999996 443.09775 111.71024999999997 C 444.22425 111.49049999999997 445.37850000000003 111.38099999999999 446.5605 111.38099999999999 C 447.60450000000003 111.38099999999999 448.63424999999995 111.49049999999997 449.65125 111.71024999999997 C 450.66675 111.92999999999998 451.58174999999994 112.28774999999999 452.3924999999999 112.78199999999998 C 453.2025 113.27624999999998 453.85574999999994 113.91524999999999 454.34999999999997 114.69899999999998 C 454.84425 115.482 455.09175 116.43674999999999 455.09175 117.56324999999998 L 455.09175 128.5275 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 450.3945 122.59199999999998 C 449.679 123.05924999999999 448.79999999999995 123.34049999999999 447.75524999999993 123.4365 S 445.66799999999995 123.67724999999999 444.6232499999999 123.86925 C 444.1289999999999 123.95175 443.6474999999999 124.06949999999999 443.18024999999994 124.22025 S 442.30049999999994 124.57724999999999 441.9442499999999 124.83824999999999 C 441.58649999999994 125.1 441.30524999999994 125.44275 441.09899999999993 125.86874999999999 C 440.89349999999996 126.29475 440.78999999999996 126.81074999999998 440.78999999999996 127.4145 C 440.78999999999996 127.9365 440.9414999999999 128.37675 441.24299999999994 128.733 C 441.54525 129.09075 441.909 129.372 442.335 129.57825000000003 C 442.76099999999997 129.78375 443.2275 129.9285 443.736 130.01100000000002 C 444.24525 130.0935 444.70500000000004 130.13475 445.1175 130.13475 C 445.6395 130.13475 446.20275000000004 130.06725 446.80725000000007 129.92925 C 447.4117500000001 129.792 447.98175000000003 129.558 448.51800000000003 129.22875 C 449.05350000000004 128.89950000000002 449.5005 128.48025 449.85675 127.97175000000001 C 450.21375 127.46400000000003 450.39374999999995 126.83850000000001 450.39374999999995 126.09675000000001 L 450.39374999999995 122.59199999999998 z">
</path>
</g>
<g id="part115" class="part active"
style="transform: translate(270.9867825px, 375.4302362000001px) rotate(90deg)">
<path fill="url(#part116hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 163.44975 227.44650000000001 C 163.44975 228.024 163.5255 228.435 163.67624999999998 228.6825 C 163.827 228.93 164.1225 229.05375000000004 164.562 229.05375000000004 C 164.69925 229.05375000000004 164.86425 229.05375000000004 165.057 229.05375000000004 C 165.24824999999998 229.05375000000004 165.46875 229.02675000000002 165.71625 228.97125 L 165.71625 232.22700000000003 C 165.55124999999998 232.28175 165.33825 232.34400000000002 165.07725 232.413 C 164.8155 232.48125000000002 164.547 232.54275 164.27325 232.59825 C 163.998 232.65300000000002 163.72349999999997 232.69425 163.44899999999998 232.72200000000004 C 163.17374999999998 232.74900000000002 162.9405 232.76325000000003 162.74849999999998 232.76325000000003 C 161.78625 232.76325000000003 160.98975 232.57050000000004 160.35750000000002 232.18575000000004 C 159.72525000000002 231.80175000000006 159.31275 231.12825000000004 159.12075 230.16675000000004 C 158.18625 231.07350000000005 157.0395 231.73275000000007 155.67975 232.14525000000003 C 154.31925 232.55775000000006 153.00675 232.76325000000003 151.743 232.76325000000003 C 150.78075 232.76325000000003 149.8605 232.63275000000004 148.9815 232.37175000000005 C 148.10175 232.11075000000005 147.32550000000003 231.72675000000004 146.6535 231.21750000000006 C 145.98000000000002 230.70975000000004 145.44375000000002 230.06325000000007 145.0455 229.28025000000002 C 144.6465 228.49725000000007 144.44775 227.58375000000004 144.44775 226.53975000000003 C 144.44775 225.22050000000002 144.68775 224.14875000000006 145.16925 223.32450000000006 C 145.64999999999998 222.50025000000005 146.28225 221.8545000000001 147.06525 221.38725000000005 C 147.84825 220.92075000000003 148.72725 220.584 149.70299999999997 220.37775000000005 C 150.678 220.17150000000004 151.6605 220.014 152.6505 219.90375000000003 C 153.50175 219.73875 154.3125 219.62250000000003 155.082 219.55350000000004 C 155.85075 219.48525000000004 156.53099999999998 219.36750000000006 157.12199999999999 219.20325000000005 C 157.71224999999998 219.03825000000003 158.1795 218.78475000000006 158.52299999999997 218.44050000000004 C 158.86649999999997 218.09700000000004 159.03825 217.58175000000006 159.03825 216.89475000000007 C 159.03825 216.29025000000007 158.89425 215.7960000000001 158.6055 215.41050000000007 C 158.31675 215.02650000000008 157.95974999999999 214.7302500000001 157.53375 214.52400000000006 C 157.10774999999998 214.31850000000009 156.63299999999998 214.1812500000001 156.11175 214.11225000000007 C 155.589 214.0440000000001 155.09475 214.0095000000001 154.6275 214.0095000000001 C 153.30825 214.0095000000001 152.22225 214.2847500000001 151.37175 214.83375000000007 C 150.51975 215.38350000000008 150.03825 216.23475000000008 149.92874999999998 217.38900000000007 L 145.23 217.38900000000007 C 145.31175 216.01500000000007 145.64175 214.87425000000007 146.2185 213.96825000000007 C 146.796 213.06150000000008 147.531 212.33325000000008 148.4235 211.78350000000006 C 149.316 211.23450000000005 150.32625000000002 210.84975000000009 151.45274999999998 210.62925000000007 C 152.57925 210.4095000000001 153.7335 210.30000000000007 154.91475 210.30000000000007 C 155.95875 210.30000000000007 156.98925 210.4095000000001 158.00625000000002 210.62925000000007 C 159.0225 210.8490000000001 159.936 211.20675000000006 160.74675000000002 211.70100000000008 C 161.55675000000002 212.19525000000004 162.21 212.83425000000008 162.70425 213.61800000000005 C 163.19925 214.40100000000004 163.44600000000003 215.35575000000006 163.44600000000003 216.48225000000008 L 163.44600000000003 227.44650000000001 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 158.751 221.51100000000002 C 158.03625 221.97825 157.15725 222.2595 156.11325 222.3555 C 155.0685 222.45149999999998 154.02450000000002 222.59625 152.9805 222.78825 C 152.4855 222.86999999999998 152.00475000000003 222.98775 151.53750000000002 223.13849999999996 C 151.0695 223.28924999999998 150.65775000000002 223.4955 150.3015 223.7565 C 149.94375000000002 224.01824999999997 149.66250000000002 224.361 149.457 224.787 C 149.25075 225.213 149.14724999999999 225.72899999999998 149.14724999999999 226.33274999999998 C 149.14724999999999 226.85475000000002 149.298 227.29500000000002 149.60025000000002 227.65124999999998 C 149.9025 228.00899999999996 150.26625 228.29024999999996 150.693 228.49649999999997 C 151.11825000000002 228.702 151.5855 228.84675 152.09475 228.92924999999997 C 152.6025 229.01099999999997 153.06375 229.053 153.4755 229.053 C 153.9975 229.053 154.56075 228.98475 155.16525000000001 228.84675000000001 C 155.76975000000002 228.70950000000002 156.33975 228.47625 156.876 228.14625 C 157.41225 227.81699999999998 157.8585 227.39775 158.21625 226.88925 C 158.5725 226.3815 158.75175000000002 225.75599999999997 158.75175000000002 225.01425 L 158.75175000000002 221.51100000000002 z">
</path>
</g>
<g id="part135" class="part active"
style="transform: translate(-3.047803600000009px, 612.1842095000002px) rotate(270deg)">
<path fill="url(#part136hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 107.27250000000001 272.20725 C 107.27250000000001 273.0315 107.38875 273.82874999999996 107.62275000000001 274.59825 C 107.85600000000002 275.36775 108.20625000000001 276.04049999999995 108.67350000000002 276.61725 C 109.14075000000001 277.19475 109.73100000000002 277.6545 110.44575000000002 277.998 C 111.15975000000002 278.3415 112.01175 278.51324999999997 113.00100000000003 278.51324999999997 C 114.37500000000003 278.51324999999997 115.48050000000003 278.2185 116.31900000000003 277.62675 C 117.15675000000002 277.03575 117.78225000000003 276.15 118.19400000000003 274.96875 L 122.64525000000003 274.96875 C 122.39775000000003 276.123 121.97175000000004 277.1535 121.36725000000003 278.06025 C 120.76275000000001 278.96625000000006 120.03450000000004 279.72975 119.18250000000002 280.34775 C 118.33050000000003 280.9665 117.37500000000003 281.43375000000003 116.31825000000003 281.74875000000003 C 115.26000000000002 282.0645 114.15450000000004 282.2235 113.00025000000002 282.2235 C 111.32400000000001 282.2235 109.84050000000002 281.94825 108.54900000000002 281.3985 C 107.25675000000001 280.8495 106.16475000000003 280.08 105.27225000000001 279.09074999999996 C 104.37900000000002 278.1015 103.70625000000003 276.92025 103.25250000000001 275.5455 C 102.7995 274.17150000000004 102.57225 272.66025 102.57225 271.01175 C 102.57225 269.50124999999997 102.81225 268.065 103.29374999999999 266.7045 C 103.77449999999999 265.34475 104.46149999999999 264.14925 105.35475 263.11875 C 106.24724999999998 262.08824999999996 107.32575 261.27149999999995 108.59024999999998 260.66625 C 109.85399999999998 260.06175 111.28275 259.7595 112.8765 259.7595 C 114.55199999999999 259.7595 116.0565 260.10974999999996 117.38999999999999 260.81025 C 118.722 261.5115 119.82825 262.4385 120.708 263.592 C 121.58699999999999 264.74625000000003 122.22524999999999 266.07225000000005 122.62424999999999 267.56925 C 123.02250000000001 269.06775 123.12525 270.61275 122.93325 272.2065 L 107.27250000000001 272.2065 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 118.23525 269.11575000000005 C 118.17974999999998 268.374 118.02225 267.65925000000004 117.76124999999999 266.97225000000003 C 117.4995 266.286 117.14324999999998 265.68825000000004 116.68949999999998 265.17975 C 116.23649999999998 264.67125000000004 115.68599999999999 264.25950000000006 115.04099999999998 263.94300000000004 C 114.39524999999999 263.62725 113.67374999999998 263.46900000000005 112.87724999999999 263.46900000000005 C 112.053 263.46900000000005 111.30374999999998 263.61300000000006 110.63099999999999 263.90175 C 109.95749999999998 264.18975 109.38074999999998 264.58875 108.89999999999999 265.09725000000003 C 108.4185 265.60575 108.0345 266.2035 107.74575 266.88975 C 107.45700000000001 267.5775 107.29875 268.31925 107.27175 269.11575000000005 L 118.23525 269.11575000000005 z">
</path>
</g>
<g id="part138" class="part active" style="transform: translate(-76.9249668px, 153.5744204px) rotate(0deg)">
<path fill="url(#part139hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 166.82925 272.20725 C 166.82925 273.0315 166.94549999999998 273.82874999999996 167.17950000000002 274.59825 C 167.41275000000002 275.36775 167.763 276.04049999999995 168.23025 276.61725 C 168.6975 277.19475 169.28775000000002 277.6545 170.0025 277.998 C 170.7165 278.3415 171.5685 278.51324999999997 172.55775000000003 278.51324999999997 C 173.93175000000002 278.51324999999997 175.03725000000003 278.2185 175.87575000000004 277.62675 C 176.7135 277.03575 177.33900000000003 276.15 177.75075000000004 274.96875 L 182.20200000000003 274.96875 C 181.95450000000002 276.123 181.52850000000004 277.1535 180.92400000000004 278.06025 C 180.3195 278.96625000000006 179.59125000000003 279.72975 178.73925000000003 280.34775 C 177.88725000000002 280.9665 176.93175000000002 281.43375000000003 175.87500000000003 281.74875000000003 C 174.81675 282.0645 173.71125000000004 282.2235 172.55700000000002 282.2235 C 170.88075 282.2235 169.39725 281.94825 168.10575 281.3985 C 166.8135 280.8495 165.72150000000002 280.08 164.829 279.09074999999996 C 163.93575 278.1015 163.26300000000003 276.92025 162.80925000000002 275.5455 C 162.35625 274.17150000000004 162.129 272.66025 162.129 271.01175 C 162.129 269.50124999999997 162.369 268.065 162.85049999999998 266.7045 C 163.33124999999998 265.34475 164.01824999999997 264.14925 164.9115 263.11875 C 165.80399999999997 262.08824999999996 166.8825 261.27149999999995 168.147 260.66625 C 169.41074999999998 260.06175 170.8395 259.7595 172.43325 259.7595 C 174.10875 259.7595 175.61325 260.10974999999996 176.94674999999998 260.81025 C 178.27875 261.5115 179.385 262.4385 180.26475 263.592 C 181.14374999999998 264.74625000000003 181.78199999999998 266.07225000000005 182.18099999999998 267.56925 C 182.57925 269.06775 182.682 270.61275 182.49 272.2065 L 166.82925 272.2065 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 177.79274999999998 269.11575000000005 C 177.73725 268.374 177.57975 267.65925000000004 177.31875 266.97225000000003 C 177.057 266.286 176.70074999999997 265.68825000000004 176.24699999999999 265.17975 C 175.79399999999998 264.67125000000004 175.24349999999998 264.25950000000006 174.59849999999997 263.94300000000004 C 173.95274999999998 263.62725 173.23125 263.46900000000005 172.43474999999998 263.46900000000005 C 171.6105 263.46900000000005 170.86124999999998 263.61300000000006 170.18849999999998 263.90175 C 169.515 264.18975 168.93824999999998 264.58875 168.45749999999998 265.09725000000003 C 167.976 265.60575 167.59199999999998 266.2035 167.30325 266.88975 C 167.0145 267.5775 166.85625 268.31925 166.82925 269.11575000000005 L 177.79274999999998 269.11575000000005 z">
</path>
</g>
<g id="part96" class="part active"
style="transform: translate(-127.29314709999991px, 829.6848488px) rotate(270deg)">
<path fill="url(#part97hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 460.03875 173.28825 C 460.03875 174.11249999999998 460.155 174.90975 460.38974999999994 175.67924999999997 C 460.623 176.44875 460.97325 177.12149999999997 461.44049999999993 177.69824999999997 C 461.90774999999996 178.27575 462.4972499999999 178.7355 463.21274999999997 179.079 C 463.92674999999997 179.42249999999999 464.77874999999995 179.59425 465.76800000000003 179.59425 C 467.14125 179.59425 468.24750000000006 179.2995 469.086 178.70775 C 469.923 178.11675 470.5485 177.23100000000002 470.961 176.04975000000002 L 475.41225 176.04975000000002 C 475.16549999999995 177.204 474.7394999999999 178.23450000000003 474.135 179.14125 C 473.53049999999996 180.04725000000002 472.80224999999996 180.81075 471.95025 181.42875000000004 C 471.09825 182.0475 470.14424999999994 182.51475000000002 469.08674999999994 182.82975000000002 C 468.0285 183.14550000000003 466.92224999999996 183.30375000000004 465.76874999999995 183.30375000000004 C 464.0925 183.30375000000004 462.60824999999994 183.02925000000002 461.31674999999996 182.47950000000003 C 460.0245 181.93050000000002 458.9325 181.16100000000003 458.03999999999996 180.17175000000003 C 457.1474999999999 179.18250000000003 456.47399999999993 178.00125000000003 456.0202499999999 176.62650000000002 C 455.56724999999994 175.25250000000003 455.34074999999996 173.74125000000004 455.34074999999996 172.09275000000002 C 455.34074999999996 170.58225000000004 455.58075 169.14525000000003 456.06224999999995 167.78550000000004 C 456.54299999999995 166.42575000000005 457.23 165.23025000000004 458.12249999999995 164.19975000000005 C 459.01574999999997 163.16925000000003 460.0949999999999 162.35250000000005 461.35799999999995 161.74725000000004 C 462.62249999999995 161.14275000000004 464.0512499999999 160.84050000000002 465.64424999999994 160.84050000000002 C 467.3204999999999 160.84050000000002 468.82499999999993 161.19075000000004 470.15849999999995 161.89125000000004 C 471.4904999999999 162.59250000000003 472.59674999999993 163.51950000000002 473.47649999999993 164.67300000000003 C 474.35549999999995 165.82725000000002 474.99375 167.15325 475.39349999999996 168.65025000000003 C 475.79099999999994 170.14875000000004 475.8945 171.69375000000002 475.7025 173.28750000000002 L 460.03875 173.28750000000002 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 471.00225 170.19675 C 470.94750000000005 169.45499999999998 470.78925000000004 168.74025 470.52825000000007 168.05325 C 470.26650000000006 167.36700000000002 469.91025000000013 166.76925 469.4565000000001 166.26075 C 469.00350000000003 165.75225 468.4537500000001 165.34050000000002 467.8080000000001 165.024 C 467.1630000000001 164.70825000000002 466.4407500000001 164.55 465.64350000000013 164.55 C 464.82000000000016 164.55 464.07000000000016 164.69400000000002 463.39800000000014 164.98275 C 462.7245000000001 165.27075 462.1470000000001 165.66975 461.66700000000014 166.17825 C 461.18550000000005 166.68675 460.80150000000015 167.28449999999998 460.5127500000001 167.97074999999998 C 460.2232500000001 168.6585 460.0657500000001 169.40025 460.0380000000001 170.19674999999998 L 471.00225 170.19674999999998 z">
</path>
</g>
<g id="part76" class="part active"
style="transform: translate(-56.4733523px, 128.11354089999998px) rotate(0deg)">
<path fill="url(#part77hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 107.27250000000001 173.28825 C 107.27250000000001 174.11249999999998 107.38875 174.90975 107.62275000000001 175.67924999999997 C 107.85600000000002 176.44875 108.20625000000001 177.12149999999997 108.67350000000002 177.69824999999997 C 109.14075000000001 178.27575 109.73100000000002 178.7355 110.44575000000002 179.079 C 111.15975000000002 179.42249999999999 112.01175 179.59425 113.00100000000003 179.59425 C 114.37500000000003 179.59425 115.48050000000003 179.2995 116.31900000000003 178.70775 C 117.15675000000002 178.11675 117.78225000000003 177.23100000000002 118.19400000000003 176.04975000000002 L 122.64525000000003 176.04975000000002 C 122.39775000000003 177.204 121.97175000000004 178.23450000000003 121.36725000000003 179.14125 C 120.76275000000001 180.04725000000002 120.03450000000004 180.81075 119.18250000000002 181.42875000000004 C 118.33050000000003 182.0475 117.37500000000003 182.51475000000002 116.31825000000003 182.82975000000002 C 115.26000000000002 183.14550000000003 114.15450000000004 183.30375000000004 113.00025000000002 183.30375000000004 C 111.32400000000001 183.30375000000004 109.84050000000002 183.02925000000002 108.54900000000002 182.47950000000003 C 107.25675000000001 181.93050000000002 106.16475000000003 181.16100000000003 105.27225000000001 180.17175000000003 C 104.37900000000002 179.18250000000003 103.70625000000003 178.00125000000003 103.25250000000001 176.62650000000002 C 102.7995 175.25250000000003 102.57225 173.74125000000004 102.57225 172.09275000000002 C 102.57225 170.58225000000004 102.81225 169.14525000000003 103.29374999999999 167.78550000000004 C 103.77449999999999 166.42575000000005 104.46149999999999 165.23025000000004 105.35475 164.19975000000005 C 106.24724999999998 163.16925000000003 107.32575 162.35250000000005 108.59024999999998 161.74725000000004 C 109.85399999999998 161.14275000000004 111.28275 160.84050000000002 112.8765 160.84050000000002 C 114.55199999999999 160.84050000000002 116.0565 161.19075000000004 117.38999999999999 161.89125000000004 C 118.722 162.59250000000003 119.82825 163.51950000000002 120.708 164.67300000000003 C 121.58699999999999 165.82725000000002 122.22524999999999 167.15325 122.62424999999999 168.65025000000003 C 123.02250000000001 170.14875000000004 123.12525 171.69375000000002 122.93325 173.28750000000002 L 107.27250000000001 173.28750000000002 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 118.23525 170.19675 C 118.17974999999998 169.45499999999998 118.02225 168.74025 117.76124999999999 168.05325 C 117.4995 167.36700000000002 117.14324999999998 166.76925 116.68949999999998 166.26075 C 116.23649999999998 165.75225 115.68599999999999 165.34050000000002 115.04099999999998 165.024 C 114.39524999999999 164.70825000000002 113.67374999999998 164.55 112.87724999999999 164.55 C 112.053 164.55 111.30374999999998 164.69400000000002 110.63099999999999 164.98275 C 109.95749999999998 165.27075 109.38074999999998 165.66975 108.89999999999999 166.17825 C 108.4185 166.68675 108.0345 167.28449999999998 107.74575 167.97074999999998 C 107.45700000000001 168.6585 107.29875 169.40025 107.27175 170.19674999999998 L 118.23525 170.19674999999998 z">
</path>
</g>
<g id="part79" class="part active"
style="transform: translate(266.47660670000005px, 385.25731799999994px) rotate(180deg)">
<path fill="url(#part80hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 166.82925 173.28825 C 166.82925 174.11249999999998 166.94549999999998 174.90975 167.17950000000002 175.67924999999997 C 167.41275000000002 176.44875 167.763 177.12149999999997 168.23025 177.69824999999997 C 168.6975 178.27575 169.28775000000002 178.7355 170.0025 179.079 C 170.7165 179.42249999999999 171.5685 179.59425 172.55775000000003 179.59425 C 173.93175000000002 179.59425 175.03725000000003 179.2995 175.87575000000004 178.70775 C 176.7135 178.11675 177.33900000000003 177.23100000000002 177.75075000000004 176.04975000000002 L 182.20200000000003 176.04975000000002 C 181.95450000000002 177.204 181.52850000000004 178.23450000000003 180.92400000000004 179.14125 C 180.3195 180.04725000000002 179.59125000000003 180.81075 178.73925000000003 181.42875000000004 C 177.88725000000002 182.0475 176.93175000000002 182.51475000000002 175.87500000000003 182.82975000000002 C 174.81675 183.14550000000003 173.71125000000004 183.30375000000004 172.55700000000002 183.30375000000004 C 170.88075 183.30375000000004 169.39725 183.02925000000002 168.10575 182.47950000000003 C 166.8135 181.93050000000002 165.72150000000002 181.16100000000003 164.829 180.17175000000003 C 163.93575 179.18250000000003 163.26300000000003 178.00125000000003 162.80925000000002 176.62650000000002 C 162.35625 175.25250000000003 162.129 173.74125000000004 162.129 172.09275000000002 C 162.129 170.58225000000004 162.369 169.14525000000003 162.85049999999998 167.78550000000004 C 163.33124999999998 166.42575000000005 164.01824999999997 165.23025000000004 164.9115 164.19975000000005 C 165.80399999999997 163.16925000000003 166.8825 162.35250000000005 168.147 161.74725000000004 C 169.41074999999998 161.14275000000004 170.8395 160.84050000000002 172.43325 160.84050000000002 C 174.10875 160.84050000000002 175.61325 161.19075000000004 176.94674999999998 161.89125000000004 C 178.27875 162.59250000000003 179.385 163.51950000000002 180.26475 164.67300000000003 C 181.14374999999998 165.82725000000002 181.78199999999998 167.15325 182.18099999999998 168.65025000000003 C 182.57925 170.14875000000004 182.682 171.69375000000002 182.49 173.28750000000002 L 166.82925 173.28750000000002 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 177.79274999999998 170.19675 C 177.73725 169.45499999999998 177.57975 168.74025 177.31875 168.05325 C 177.057 167.36700000000002 176.70074999999997 166.76925 176.24699999999999 166.26075 C 175.79399999999998 165.75225 175.24349999999998 165.34050000000002 174.59849999999997 165.024 C 173.95274999999998 164.70825000000002 173.23125 164.55 172.43474999999998 164.55 C 171.6105 164.55 170.86124999999998 164.69400000000002 170.18849999999998 164.98275 C 169.515 165.27075 168.93824999999998 165.66975 168.45749999999998 166.17825 C 167.976 166.68675 167.59199999999998 167.28449999999998 167.30325 167.97074999999998 C 167.0145 168.6585 166.85625 169.40025 166.82925 170.19674999999998 L 177.79274999999998 170.19674999999998 z">
</path>
</g>
<g id="part129" class="part active"
style="transform: translate(570.2186305px, 413.06724639999993px) rotate(180deg)">
<path fill="url(#part130hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 476.81325 222.74775 C 476.81325 223.572 476.93024999999994 224.36925 477.1642499999999 225.13875000000002 C 477.3975 225.90825 477.74775 226.58100000000002 478.2149999999999 227.15775000000002 C 478.68224999999995 227.73525 479.2724999999999 228.195 479.98724999999996 228.5385 C 480.70124999999996 228.88200000000003 481.55324999999993 229.05375000000004 482.5425 229.05375000000004 C 483.91575 229.05375000000004 485.02200000000005 228.75900000000004 485.8605 228.16725000000002 C 486.6982499999999 227.57625000000002 487.32375 226.69050000000001 487.7355 225.50925 L 492.1875 225.50925 C 491.93999999999994 226.6635 491.514 227.69400000000002 490.90950000000004 228.60075000000003 C 490.305 229.50675000000007 489.57675 230.27025000000003 488.7255 230.88825000000003 C 487.87275000000005 231.50700000000003 486.91875000000005 231.97425000000004 485.86125000000004 232.28925000000004 C 484.80375000000004 232.60500000000002 483.69675000000007 232.76325000000003 482.54325000000006 232.76325000000003 C 480.8670000000001 232.76325000000003 479.38275 232.48875000000004 478.09125000000006 231.93900000000005 C 476.7990000000001 231.39000000000004 475.70700000000005 230.62050000000005 474.8145 229.63050000000007 C 473.92199999999997 228.64125000000007 473.24850000000004 227.46000000000006 472.7955 226.08600000000007 C 472.3425 224.71200000000007 472.11524999999995 223.20075000000008 472.11524999999995 221.55225000000007 C 472.11524999999995 220.04175000000004 472.35525 218.60550000000006 472.8375 217.24500000000006 C 473.3182499999999 215.88525000000007 474.0045 214.68975000000006 474.8977499999999 213.65925000000004 C 475.79024999999996 212.62875000000003 476.8694999999999 211.81200000000004 478.13249999999994 211.20675000000006 C 479.39699999999993 210.60225000000008 480.8257499999999 210.30000000000007 482.41874999999993 210.30000000000007 C 484.0949999999999 210.30000000000007 485.5994999999999 210.65025000000006 486.93299999999994 211.35075000000006 C 488.2649999999999 212.05200000000008 489.3712499999999 212.97900000000007 490.2509999999999 214.13250000000008 C 491.12999999999994 215.28675000000007 491.7689999999999 216.6127500000001 492.16799999999995 218.10975000000008 C 492.56549999999993 219.60825000000006 492.669 221.15325000000007 492.477 222.74700000000007 L 476.81325 222.74700000000007 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 487.77750000000003 219.65625 C 487.72200000000004 218.91450000000003 487.5645 218.19975 487.30274999999995 217.51274999999998 C 487.04175 216.82649999999998 486.68475 216.22875 486.231 215.72025000000002 C 485.77799999999996 215.21175 485.22825 214.8 484.5825 214.4835 C 483.9375 214.16775 483.21525 214.0095 482.418 214.0095 C 481.59450000000004 214.0095 480.8452500000001 214.1535 480.1725 214.44225 C 479.499 214.73025 478.92224999999996 215.12925 478.4415 215.63774999999998 C 477.96 216.14625 477.576 216.74400000000003 477.28725000000003 217.43025 C 476.99850000000004 218.11799999999997 476.84025 218.85975 476.8125 219.65625 L 487.77750000000003 219.65625 z">
</path>
</g>
<g id="part108" class="part active"
style="transform: translate(-1.5801469999999824px, 154.3131145000001px) rotate(270deg)">
<path fill="url(#part109hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 36.25725 222.74775 C 36.25725 223.572 36.37350000000001 224.36925 36.6075 225.13875000000002 C 36.84075 225.90825 37.191 226.58100000000002 37.65825 227.15775000000002 C 38.1255 227.73525 38.71575000000001 228.195 39.4305 228.5385 C 40.1445 228.88200000000003 40.996500000000005 229.05375000000004 41.98650000000001 229.05375000000004 C 43.359750000000005 229.05375000000004 44.465250000000005 228.75900000000004 45.30375000000001 228.16725000000002 C 46.14150000000001 227.57625000000002 46.76700000000001 226.69050000000001 47.17875000000001 225.50925 L 51.630750000000006 225.50925 C 51.383250000000004 226.6635 50.95725000000001 227.69400000000002 50.352750000000015 228.60075000000003 C 49.74750000000001 229.50675000000007 49.01925000000001 230.27025000000003 48.16800000000001 230.88825000000003 C 47.31600000000001 231.50700000000003 46.360500000000016 231.97425000000004 45.30300000000001 232.28925000000004 C 44.24475000000001 232.60500000000002 43.13925000000002 232.76325000000003 41.98575000000001 232.76325000000003 C 40.309500000000014 232.76325000000003 38.82525000000001 232.48875000000004 37.53375000000001 231.93900000000005 C 36.241500000000016 231.39000000000004 35.14950000000001 230.62050000000005 34.25700000000001 229.63050000000007 C 33.36375000000001 228.64125000000007 32.69100000000001 227.46000000000006 32.238000000000014 226.08600000000007 C 31.78500000000001 224.71200000000007 31.55775000000001 223.20075000000008 31.55775000000001 221.55225000000007 C 31.55775000000001 220.04175000000004 31.797750000000008 218.60550000000006 32.27850000000001 217.24500000000006 C 32.75925000000001 215.88525000000007 33.446250000000006 214.68975000000006 34.33950000000001 213.65925000000004 C 35.232000000000006 212.62875000000003 36.310500000000005 211.81200000000004 37.574250000000006 211.20675000000006 C 38.83800000000001 210.60225000000008 40.26675 210.30000000000007 41.8605 210.30000000000007 C 43.53600000000001 210.30000000000007 45.04050000000001 210.65025000000006 46.37400000000001 211.35075000000006 C 47.70600000000001 212.05200000000008 48.812250000000006 212.97900000000007 49.69200000000001 214.13250000000008 C 50.57100000000001 215.28675000000007 51.21000000000001 216.6127500000001 51.60825000000001 218.10975000000008 C 52.00650000000002 219.60825000000006 52.10925000000002 221.15325000000007 51.917250000000024 222.74700000000007 L 36.25725 222.74700000000007 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 47.220749999999995 219.65625 C 47.16525 218.91450000000003 47.007000000000005 218.19975 46.74675 217.51274999999998 C 46.48575 216.82649999999998 46.128750000000004 216.22875 45.675 215.72025000000002 C 45.222 215.21175 44.671499999999995 214.8 44.0265 214.4835 C 43.38075 214.16775 42.65925 214.0095 41.86275 214.0095 C 41.0385 214.0095 40.29 214.1535 39.6165 214.44225 C 38.94375 214.73025 38.36625 215.12925 37.8855 215.63774999999998 C 37.40475000000001 216.14625 37.019999999999996 216.74400000000003 36.73125 217.43025 C 36.44325 218.11799999999997 36.28425 218.85975 36.25725 219.65625 L 47.220749999999995 219.65625 z">
</path>
</g>
<g id="part126" class="part active" style="transform: translate(333.993006px, -312.0307615px) rotate(90deg)">
<path fill="url(#part127hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 392.85675 222.74775 C 392.85675 223.572 392.97299999999996 224.36925 393.2077499999999 225.13875000000002 C 393.4402499999999 225.90825 393.79125 226.58100000000002 394.2584999999999 227.15775000000002 C 394.7249999999999 227.73525 395.3152499999999 228.195 396.02999999999986 228.5385 C 396.74474999999984 228.88200000000003 397.5959999999999 229.05375000000004 398.5852499999999 229.05375000000004 C 399.9592499999999 229.05375000000004 401.06474999999995 228.75900000000004 401.9032499999999 228.16725000000002 C 402.7409999999999 227.57625000000002 403.3664999999999 226.69050000000001 403.7789999999999 225.50925 L 408.23024999999984 225.50925 C 407.9834999999999 226.6635 407.5574999999998 227.69400000000002 406.95299999999986 228.60075000000003 C 406.34774999999985 229.50675000000007 405.61949999999985 230.27025000000003 404.76824999999985 230.88825000000003 C 403.9162499999999 231.50700000000003 402.9614999999999 231.97425000000004 401.9039999999999 232.28925000000004 C 400.8464999999999 232.60500000000002 399.7394999999999 232.76325000000003 398.5859999999999 232.76325000000003 C 396.91049999999984 232.76325000000003 395.42549999999983 232.48875000000004 394.1339999999999 231.93900000000005 C 392.84174999999993 231.39000000000004 391.7497499999999 230.62050000000005 390.85799999999983 229.63050000000007 C 389.9647499999998 228.64125000000007 389.29199999999986 227.46000000000006 388.83824999999985 226.08600000000007 C 388.3852499999998 224.71200000000007 388.1587499999999 223.20075000000008 388.1587499999999 221.55225000000007 C 388.1587499999999 220.04175000000004 388.39799999999985 218.60550000000006 388.8802499999999 217.24500000000006 C 389.3609999999999 215.88525000000007 390.0479999999999 214.68975000000006 390.9404999999998 213.65925000000004 C 391.8337499999999 212.62875000000003 392.91224999999986 211.81200000000004 394.17524999999983 211.20675000000006 C 395.4404999999998 210.60225000000008 396.8684999999998 210.30000000000007 398.4622499999998 210.30000000000007 C 400.13849999999985 210.30000000000007 401.6429999999998 210.65025000000006 402.9764999999999 211.35075000000006 C 404.3084999999998 212.05200000000008 405.4139999999999 212.97900000000007 406.29449999999986 214.13250000000008 C 407.1734999999999 215.28675000000007 407.81174999999985 216.6127500000001 408.2107499999998 218.10975000000008 C 408.60899999999975 219.60825000000006 408.71249999999975 221.15325000000007 408.5197499999998 222.74700000000007 L 392.85675 222.74700000000007 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 403.82025 219.65625 C 403.76475000000005 218.91450000000003 403.60725 218.19975 403.3455 217.51274999999998 C 403.08450000000005 216.82649999999998 402.72825 216.22875 402.2745 215.72025000000002 C 401.82149999999996 215.21175 401.271 214.8 400.626 214.4835 C 399.98025 214.16775 399.25875 214.0095 398.4615 214.0095 C 397.63725 214.0095 396.88800000000003 214.1535 396.216 214.44225 C 395.54175 214.73025 394.96500000000003 215.12925 394.48425000000003 215.63774999999998 C 394.00350000000003 216.14625 393.6195 216.74400000000003 393.33000000000004 217.43025 C 393.04125000000005 218.11799999999997 392.88375 218.85975 392.8560000000001 219.65625 L 403.82025 219.65625 z">
</path>
</g>
<g id="part50" class="part active"
style="transform: translate(174.11735760000002px, 215.9840041px) rotate(180deg)">
<path fill="url(#part51hatch)" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 76.73100000000001 123.828 C 76.73100000000001 124.65225000000001 76.84725 125.44950000000001 77.08125000000001 126.219 C 77.31450000000001 126.98850000000002 77.66475000000001 127.66125 78.132 128.238 C 78.59925000000001 128.81550000000001 79.1895 129.27525000000003 79.90425 129.61875 C 80.61825 129.96225 81.47025 130.13400000000001 82.45949999999999 130.13400000000001 C 83.83349999999999 130.13400000000001 84.939 129.83925000000002 85.7775 129.24825 C 86.61525 128.65725 87.24074999999999 127.77150000000002 87.6525 126.59025 L 92.10375 126.59025 C 91.85625 127.74449999999999 91.43025 128.775 90.82575000000001 129.68175 C 90.22125000000001 130.58775 89.49300000000001 131.35125 88.64100000000002 131.96925 C 87.78900000000002 132.588 86.83350000000002 133.05525 85.77675 133.37025 C 84.7185 133.68599999999998 83.613 133.84425 82.45875000000001 133.84425 C 80.7825 133.84425 79.299 133.56975 78.00750000000001 133.02 C 76.71525 132.471 75.62325 131.7015 74.73 130.7115 C 73.83675 129.72225000000003 73.164 128.541 72.71100000000001 127.167 C 72.25800000000001 125.793 72.03075000000001 124.28175 72.03075000000001 122.63325000000002 C 72.03075000000001 121.12275000000001 72.27075 119.68575000000001 72.75150000000001 118.32600000000002 C 73.23225000000001 116.96625000000003 73.91925 115.77075000000002 74.81250000000001 114.74025000000002 C 75.70500000000001 113.70975000000001 76.7835 112.89300000000003 78.04800000000002 112.28775000000002 C 79.31175000000002 111.68325 80.74050000000003 111.381 82.33425000000003 111.381 C 84.00975000000001 111.381 85.51425000000002 111.73125000000002 86.84775000000002 112.43175000000002 C 88.17975000000001 113.13300000000001 89.28600000000003 114.06 90.16575000000003 115.21350000000001 C 91.04475000000002 116.36775 91.68375000000003 117.69375000000001 92.08275000000002 119.19075000000001 C 92.48100000000002 120.68925000000002 92.58375000000002 122.23425 92.39175000000003 123.828 L 76.73100000000001 123.828 z"
fill-opacity="0.5"></path>
<path fill="#404247" stroke="#ffffff" stroke-width="0.1" stroke-miterlimit="10"
d="M 87.6945 120.73725 C 87.63900000000001 119.99549999999999 87.4815 119.28075 87.2205 118.59375 C 86.95875 117.9075 86.60249999999999 117.30975000000001 86.14874999999999 116.80125000000001 C 85.69575 116.29275000000001 85.14525 115.881 84.50025 115.56450000000001 C 83.8545 115.24875000000002 83.13300000000001 115.0905 82.3365 115.0905 C 81.51225 115.0905 80.763 115.23450000000001 80.09025 115.52325 C 79.41675 115.81125 78.83999999999999 116.21025 78.35924999999999 116.71875 C 77.87774999999999 117.22725 77.49374999999999 117.82499999999999 77.20499999999998 118.51124999999999 C 76.91624999999999 119.19899999999998 76.75799999999998 119.94075 76.73099999999998 120.73724999999999 L 87.6945 120.73724999999999 z">
</path>
</g>
<g id="part69" class="part active"
style="transform: translate(726.4035252px, 207.94150549999995px) rotate(180deg)">