File: bench-z4-rss-2.svg

package info (click to toggle)
solvespace 3.1%2Bds1-3.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,964 kB
  • sloc: cpp: 122,491; ansic: 11,375; javascript: 1,919; sh: 89; xml: 44; makefile: 25
file content (974 lines) | stat: -rw-r--r-- 82,582 bytes parent folder | download | duplicates (4)
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
<?xml version='1.0' encoding='UTF-8'?>
<!-- This file was generated by dvisvgm 2.4.2 -->
<svg height='182.025pt' version='1.1' viewBox='106.736 51.674 381.623 182.025' width='381.623pt' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
<defs>
<clipPath id='clip10'>
<path d='M135.949 186.074H487.961V60.828H135.949Z'/>
</clipPath>
<use id='g2-40' transform='scale(1.6)' xlink:href='#g1-40'/>
<use id='g2-41' transform='scale(1.6)' xlink:href='#g1-41'/>
<use id='g2-45' transform='scale(1.6)' xlink:href='#g1-45'/>
<use id='g2-49' transform='scale(1.6)' xlink:href='#g1-49'/>
<use id='g2-54' transform='scale(1.6)' xlink:href='#g1-54'/>
<use id='g2-56' transform='scale(1.6)' xlink:href='#g1-56'/>
<use id='g2-78' transform='scale(1.6)' xlink:href='#g1-78'/>
<use id='g2-97' transform='scale(1.6)' xlink:href='#g1-97'/>
<use id='g2-98' transform='scale(1.6)' xlink:href='#g1-98'/>
<use id='g2-99' transform='scale(1.6)' xlink:href='#g1-99'/>
<use id='g2-100' transform='scale(1.6)' xlink:href='#g1-100'/>
<use id='g2-101' transform='scale(1.6)' xlink:href='#g1-101'/>
<use id='g2-103' transform='scale(1.6)' xlink:href='#g1-103'/>
<use id='g2-104' transform='scale(1.6)' xlink:href='#g1-104'/>
<use id='g2-105' transform='scale(1.6)' xlink:href='#g1-105'/>
<use id='g2-106' transform='scale(1.6)' xlink:href='#g1-106'/>
<use id='g2-108' transform='scale(1.6)' xlink:href='#g1-108'/>
<use id='g2-109' transform='scale(1.6)' xlink:href='#g1-109'/>
<use id='g2-110' transform='scale(1.6)' xlink:href='#g1-110'/>
<use id='g2-111' transform='scale(1.6)' xlink:href='#g1-111'/>
<use id='g2-112' transform='scale(1.6)' xlink:href='#g1-112'/>
<use id='g2-114' transform='scale(1.6)' xlink:href='#g1-114'/>
<use id='g2-115' transform='scale(1.6)' xlink:href='#g1-115'/>
<use id='g2-116' transform='scale(1.6)' xlink:href='#g1-116'/>
<use id='g2-119' transform='scale(1.6)' xlink:href='#g1-119'/>
<use id='g2-120' transform='scale(1.6)' xlink:href='#g1-120'/>
<path d='M1.519 -3.736C1.435 -3.736 1.425 -3.736 1.365 -3.681C0.737 -3.133 0.418 -2.247 0.418 -1.245C0.418 -0.304 0.702 0.603 1.36 1.181C1.425 1.245 1.435 1.245 1.519 1.245H1.758C1.743 1.235 1.26 0.822 1.031 0.045C0.912 -0.344 0.852 -0.752 0.852 -1.245C0.852 -2.969 1.659 -3.651 1.758 -3.736H1.519Z' id='g1-40'/>
<path d='M0.533 1.245C0.618 1.245 0.628 1.245 0.687 1.191C1.315 0.643 1.634 -0.244 1.634 -1.245C1.634 -2.187 1.35 -3.093 0.692 -3.671C0.628 -3.736 0.618 -3.736 0.533 -3.736H0.294C0.309 -3.726 0.792 -3.313 1.021 -2.535C1.141 -2.147 1.2 -1.738 1.2 -1.245C1.2 0.478 0.394 1.161 0.294 1.245H0.533Z' id='g1-41'/>
<path d='M0.956 -0.005V-0.448H0.508V0H0.648L0.503 0.638H0.727L0.956 -0.005Z' id='g1-44'/>
<path d='M1.465 -0.951V-1.265H0.06V-0.951H1.465Z' id='g1-45'/>
<path d='M0.956 -0.448H0.508V0H0.956V-0.448Z' id='g1-46'/>
<path d='M2.431 -1.619C2.431 -1.858 2.431 -2.441 2.197 -2.849C1.943 -3.298 1.559 -3.372 1.32 -3.372C1.096 -3.372 0.707 -3.303 0.458 -2.874C0.219 -2.476 0.209 -1.933 0.209 -1.619C0.209 -1.25 0.229 -0.797 0.438 -0.418C0.658 -0.015 1.026 0.105 1.32 0.105C1.818 0.105 2.092 -0.184 2.242 -0.498C2.416 -0.852 2.431 -1.31 2.431 -1.619ZM1.32 -0.224C1.111 -0.224 0.872 -0.344 0.747 -0.702C0.648 -1.006 0.643 -1.32 0.643 -1.684C0.643 -2.142 0.643 -3.044 1.32 -3.044S1.998 -2.142 1.998 -1.684C1.998 -1.355 1.998 -0.981 1.878 -0.663C1.738 -0.304 1.484 -0.224 1.32 -0.224Z' id='g1-48'/>
<path d='M1.599 -3.372H1.489C1.166 -3.073 0.757 -3.054 0.458 -3.044V-2.73C0.653 -2.735 0.902 -2.745 1.151 -2.844V-0.314H0.488V0H2.262V-0.314H1.599V-3.372Z' id='g1-49'/>
<path d='M1.41 -0.384C1.35 -0.384 1.29 -0.379 1.23 -0.379H0.663L1.435 -1.061C1.524 -1.141 1.768 -1.325 1.863 -1.405C2.082 -1.604 2.376 -1.863 2.376 -2.296C2.376 -2.859 1.958 -3.372 1.245 -3.372C0.717 -3.372 0.389 -3.088 0.219 -2.58L0.453 -2.286C0.568 -2.705 0.742 -3.029 1.176 -3.029C1.594 -3.029 1.913 -2.735 1.913 -2.286C1.913 -1.873 1.669 -1.639 1.37 -1.355C1.27 -1.255 1.001 -1.031 0.897 -0.932C0.752 -0.802 0.408 -0.468 0.264 -0.344V0H2.376V-0.384H1.41Z' id='g1-50'/>
<path d='M0.498 -2.555C0.702 -2.954 1.061 -3.064 1.3 -3.064C1.594 -3.064 1.813 -2.894 1.813 -2.61C1.813 -2.346 1.634 -2.022 1.255 -1.958C1.23 -1.953 1.21 -1.953 0.882 -1.928V-1.599H1.27C1.743 -1.599 1.918 -1.225 1.918 -0.912C1.918 -0.523 1.679 -0.224 1.29 -0.224C0.936 -0.224 0.533 -0.394 0.284 -0.712L0.219 -0.389C0.508 -0.065 0.912 0.105 1.3 0.105C1.953 0.105 2.421 -0.384 2.421 -0.907C2.421 -1.315 2.092 -1.644 1.699 -1.758C2.077 -1.953 2.271 -2.286 2.271 -2.61C2.271 -3.034 1.838 -3.372 1.305 -3.372C0.867 -3.372 0.503 -3.143 0.294 -2.844L0.498 -2.555Z' id='g1-51'/>
<path d='M1.973 -0.832H2.491V-1.161H1.973V-3.268H1.479L0.149 -1.161V-0.832H1.544V0H1.973V-0.832ZM0.573 -1.161C0.722 -1.395 1.579 -2.725 1.579 -3.024V-1.161H0.573Z' id='g1-52'/>
<path d='M0.817 -2.924H2.197V-3.268H0.418V-1.405H0.782C0.902 -1.674 1.136 -1.793 1.36 -1.793C1.564 -1.793 1.873 -1.654 1.873 -1.021C1.873 -0.369 1.46 -0.224 1.205 -0.224C0.877 -0.224 0.558 -0.399 0.389 -0.682L0.199 -0.384C0.443 -0.08 0.812 0.105 1.205 0.105C1.863 0.105 2.376 -0.403 2.376 -1.011C2.376 -1.629 1.918 -2.122 1.37 -2.122C1.156 -2.122 0.966 -2.047 0.817 -1.923V-2.924Z' id='g1-53'/>
<path d='M2.187 -3.273C1.918 -3.372 1.729 -3.372 1.634 -3.372C0.877 -3.372 0.219 -2.66 0.219 -1.609C0.219 -0.259 0.827 0.105 1.33 0.105C1.733 0.105 1.943 -0.085 2.097 -0.244C2.416 -0.583 2.421 -0.936 2.421 -1.111C2.421 -1.763 2.067 -2.306 1.584 -2.306C1.096 -2.306 0.832 -2.052 0.687 -1.908C0.752 -2.59 1.101 -3.064 1.639 -3.064C1.738 -3.064 1.938 -3.054 2.187 -2.959V-3.273ZM0.692 -1.096C0.692 -1.126 0.692 -1.2 0.697 -1.225C0.697 -1.564 0.912 -1.978 1.355 -1.978C1.963 -1.978 1.963 -1.28 1.963 -1.111C1.963 -0.922 1.963 -0.712 1.828 -0.503C1.709 -0.324 1.559 -0.224 1.33 -0.224C0.802 -0.224 0.717 -0.877 0.692 -1.096Z' id='g1-54'/>
<path d='M1.23 -2.884C1.29 -2.884 1.35 -2.889 1.41 -2.889H2.037C1.28 -2.147 0.797 -1.106 0.797 0.05H1.265C1.265 -1.405 1.973 -2.451 2.421 -2.919V-3.268H0.219V-2.884H1.23Z' id='g1-55'/>
<path d='M1.704 -1.763C2.032 -1.868 2.346 -2.132 2.346 -2.501C2.346 -2.954 1.913 -3.372 1.32 -3.372S0.294 -2.954 0.294 -2.501C0.294 -2.127 0.618 -1.863 0.936 -1.763C0.498 -1.629 0.219 -1.29 0.219 -0.907C0.219 -0.374 0.692 0.105 1.32 0.105S2.421 -0.374 2.421 -0.907C2.421 -1.29 2.137 -1.629 1.704 -1.763ZM1.32 -1.928C0.966 -1.928 0.677 -2.132 0.677 -2.496C0.677 -2.814 0.902 -3.064 1.32 -3.064C1.733 -3.064 1.963 -2.814 1.963 -2.496C1.963 -2.142 1.684 -1.928 1.32 -1.928ZM1.32 -0.224C0.976 -0.224 0.672 -0.443 0.672 -0.912C0.672 -1.36 0.961 -1.599 1.32 -1.599S1.968 -1.355 1.968 -0.912C1.968 -0.443 1.659 -0.224 1.32 -0.224Z' id='g1-56'/>
<path d='M0.384 -0.125C0.628 0.055 0.852 0.105 1.086 0.105C1.783 0.105 2.421 -0.598 2.421 -1.669C2.421 -3.029 1.818 -3.372 1.34 -3.372C0.897 -3.372 0.692 -3.163 0.548 -3.019C0.229 -2.695 0.219 -2.351 0.219 -2.157C0.219 -1.514 0.568 -0.961 1.056 -0.961C1.619 -0.961 1.928 -1.335 1.953 -1.365C1.883 -0.573 1.494 -0.224 1.086 -0.224C0.827 -0.224 0.667 -0.319 0.553 -0.413L0.384 -0.125ZM1.938 -2.162C1.943 -2.132 1.943 -2.082 1.943 -2.052C1.943 -1.684 1.719 -1.29 1.285 -1.29C1.096 -1.29 0.946 -1.345 0.817 -1.549C0.687 -1.743 0.677 -1.933 0.677 -2.157C0.677 -2.351 0.677 -2.575 0.832 -2.795C0.936 -2.944 1.086 -3.064 1.335 -3.064C1.818 -3.064 1.923 -2.481 1.938 -2.162Z' id='g1-57'/>
<path d='M2.959 -0.438C2.884 -0.438 2.874 -0.438 2.834 -0.418C2.59 -0.334 2.336 -0.279 2.072 -0.279C1.27 -0.279 0.697 -0.956 0.697 -1.729C0.697 -2.565 1.345 -3.178 2.042 -3.178C2.182 -3.178 2.511 -3.143 2.675 -2.745C2.535 -2.824 2.381 -2.859 2.252 -2.859C1.719 -2.859 1.27 -2.361 1.27 -1.729C1.27 -1.081 1.733 -0.598 2.247 -0.598C2.635 -0.598 3.228 -0.912 3.228 -1.798C3.228 -2.301 3.193 -3.507 2.047 -3.507C1.101 -3.507 0.294 -2.725 0.294 -1.729C0.294 -0.742 1.091 0.05 2.052 0.05C2.511 0.05 2.939 -0.139 3.228 -0.438H2.959ZM2.252 -0.927C1.943 -0.927 1.674 -1.27 1.674 -1.729C1.674 -2.202 1.953 -2.531 2.247 -2.531C2.555 -2.531 2.824 -2.187 2.824 -1.729C2.824 -1.255 2.545 -0.927 2.252 -0.927Z' id='g1-64'/>
<path d='M3.083 -0.608C2.735 -0.394 2.575 -0.299 2.077 -0.299C1.305 -0.299 0.837 -1.021 0.837 -1.738C0.837 -2.476 1.35 -3.168 2.077 -3.168C2.406 -3.168 2.745 -3.064 2.974 -2.889L3.054 -3.342C2.705 -3.472 2.426 -3.512 2.062 -3.512C1.076 -3.512 0.339 -2.695 0.339 -1.733C0.339 -0.707 1.121 0.05 2.092 0.05C2.58 0.05 2.785 -0.05 3.113 -0.229L3.083 -0.608Z' id='g1-67'/>
<path d='M2.725 -1.624V-1.953H0.986V-3.098H1.714C1.773 -3.098 1.833 -3.093 1.893 -3.093H2.874V-3.442H0.483V0H2.949V-0.389H2.501C2.082 -0.389 1.664 -0.379 1.245 -0.379H0.986V-1.624H2.725Z' id='g1-69'/>
<path d='M3.173 -1.489H2.057V-1.161H2.735V-0.399C2.516 -0.344 2.301 -0.299 2.077 -0.299C1.31 -0.299 0.837 -1.021 0.837 -1.733C0.837 -2.416 1.3 -3.168 2.052 -3.168C2.511 -3.168 2.8 -3.029 3.049 -2.819L3.128 -3.273C2.785 -3.437 2.481 -3.517 2.102 -3.517C1.096 -3.517 0.339 -2.73 0.339 -1.733C0.339 -0.762 1.091 0.05 2.072 0.05C2.431 0.05 2.854 -0.03 3.173 -0.194V-1.489Z' id='g1-71'/>
<path d='M3.248 -3.457H2.745V-1.963H0.986V-3.457H0.483V0H0.986V-1.634H2.745V0H3.248V-3.457Z' id='g1-72'/>
<path d='M0.986 -3.457H0.483V0H0.986V-3.457Z' id='g1-73'/>
<path d='M1.176 -3.457H0.498V0H0.917V-3.064H0.922L2.555 0H3.233V-3.457H2.814V-0.394H2.809L1.176 -3.457Z' id='g1-78'/>
<path d='M3.611 -1.714C3.611 -2.745 2.854 -3.562 1.953 -3.562S0.294 -2.745 0.294 -1.714S1.061 0.105 1.953 0.105C2.849 0.105 3.611 -0.687 3.611 -1.714ZM1.953 -0.249C1.35 -0.249 0.797 -0.852 0.797 -1.793C0.797 -2.675 1.355 -3.218 1.953 -3.218S3.108 -2.675 3.108 -1.793C3.108 -0.847 2.555 -0.249 1.953 -0.249Z' id='g1-79'/>
<path d='M1.868 -1.42C2.511 -1.42 3.083 -1.873 3.083 -2.446C3.083 -2.979 2.555 -3.457 1.833 -3.457H0.488V0H0.991V-1.42H1.868ZM1.709 -3.163C2.271 -3.163 2.63 -2.864 2.63 -2.446C2.63 -2.037 2.291 -1.729 1.709 -1.729H0.976V-3.163H1.709Z' id='g1-80'/>
<path d='M3.143 -3.457H2.71V-1.161C2.71 -0.493 2.262 -0.189 1.833 -0.189S0.986 -0.498 0.986 -1.156V-3.457H0.483V-1.166C0.483 -0.433 1.111 0.105 1.828 0.105C2.54 0.105 3.143 -0.438 3.143 -1.166V-3.457Z' id='g1-85'/>
<path d='M1.968 -1.823L3.228 -3.457H2.685L1.724 -2.182L0.742 -3.457H0.149L1.479 -1.823L0.075 0H0.618L1.724 -1.499L2.854 0H3.447L1.968 -1.823Z' id='g1-88'/>
<path d='M2.934 -3.238V-3.457H0.369V-3.123H1.41C1.479 -3.123 1.539 -3.128 1.609 -3.128H2.291L0.294 -0.229V0H2.964V-0.354H2.466C1.958 -0.354 1.45 -0.344 0.941 -0.344L2.934 -3.238Z' id='g1-90'/>
<path d='M2.122 -1.435C2.122 -1.943 1.733 -2.286 1.24 -2.286C0.927 -2.286 0.687 -2.222 0.408 -2.072L0.438 -1.709C0.603 -1.818 0.847 -1.968 1.24 -1.968C1.46 -1.968 1.689 -1.803 1.689 -1.43V-1.23C0.951 -1.205 0.224 -1.051 0.224 -0.588C0.224 -0.339 0.394 0.05 0.832 0.05C1.046 0.05 1.44 0.005 1.704 -0.189V0H2.122V-1.435ZM1.689 -0.707C1.689 -0.608 1.689 -0.478 1.514 -0.374C1.355 -0.284 1.161 -0.279 1.106 -0.279C0.832 -0.279 0.623 -0.403 0.623 -0.593C0.623 -0.912 1.465 -0.941 1.689 -0.951V-0.707Z' id='g1-97'/>
<path d='M0.842 -3.457H0.423V0H0.857V-0.234C0.966 -0.139 1.205 0.05 1.569 0.05C2.112 0.05 2.55 -0.458 2.55 -1.111C2.55 -1.714 2.207 -2.262 1.709 -2.262C1.395 -2.262 1.091 -2.162 0.842 -1.978V-3.457ZM0.857 -1.569C0.857 -1.649 0.857 -1.709 1.031 -1.823C1.106 -1.868 1.24 -1.933 1.41 -1.933C1.743 -1.933 2.117 -1.709 2.117 -1.111C2.117 -0.503 1.704 -0.279 1.355 -0.279C1.171 -0.279 0.996 -0.364 0.857 -0.588V-1.569Z' id='g1-98'/>
<path d='M2.167 -0.543C1.918 -0.384 1.649 -0.294 1.34 -0.294C0.882 -0.294 0.613 -0.663 0.613 -1.111C0.613 -1.494 0.812 -1.943 1.355 -1.943C1.694 -1.943 1.853 -1.873 2.107 -1.714L2.172 -2.072C1.873 -2.222 1.743 -2.286 1.355 -2.286C0.608 -2.286 0.179 -1.684 0.179 -1.106C0.179 -0.498 0.658 0.05 1.335 0.05C1.684 0.05 1.983 -0.055 2.197 -0.179L2.167 -0.543Z' id='g1-99'/>
<path d='M2.306 -3.457H1.888V-1.998C1.569 -2.232 1.245 -2.262 1.101 -2.262C0.578 -2.262 0.179 -1.738 0.179 -1.106S0.573 0.05 1.086 0.05C1.395 0.05 1.684 -0.09 1.873 -0.259V0H2.306V-3.457ZM1.873 -0.618C1.748 -0.413 1.559 -0.279 1.32 -0.279C0.971 -0.279 0.613 -0.523 0.613 -1.101C0.613 -1.724 1.036 -1.933 1.375 -1.933C1.574 -1.933 1.743 -1.848 1.873 -1.679V-0.618Z' id='g1-100'/>
<path d='M2.142 -0.543C1.863 -0.344 1.549 -0.279 1.335 -0.279C0.902 -0.279 0.573 -0.633 0.558 -1.091H2.192C2.192 -1.32 2.167 -1.654 1.973 -1.938C1.793 -2.192 1.494 -2.286 1.25 -2.286C0.643 -2.286 0.174 -1.753 0.174 -1.121C0.174 -0.483 0.672 0.05 1.33 0.05C1.619 0.05 1.918 -0.035 2.172 -0.189L2.142 -0.543ZM0.593 -1.39C0.707 -1.788 1.001 -1.958 1.25 -1.958C1.469 -1.958 1.793 -1.853 1.888 -1.39H0.593Z' id='g1-101'/>
<path d='M2.506 -2.262C2.396 -2.262 2.062 -2.257 1.684 -2.112L1.674 -2.107C1.494 -2.227 1.32 -2.262 1.176 -2.262C0.687 -2.262 0.324 -1.878 0.324 -1.45C0.324 -1.275 0.384 -1.096 0.498 -0.956C0.428 -0.872 0.354 -0.732 0.354 -0.543C0.354 -0.349 0.433 -0.224 0.478 -0.164C0.204 -0.005 0.149 0.224 0.149 0.344C0.149 0.722 0.672 1.021 1.32 1.021C1.973 1.021 2.491 0.722 2.491 0.344C2.491 -0.359 1.619 -0.359 1.405 -0.359H0.941C0.862 -0.359 0.648 -0.359 0.648 -0.618C0.648 -0.717 0.682 -0.767 0.687 -0.777C0.862 -0.667 1.036 -0.633 1.171 -0.633C1.659 -0.633 2.022 -1.016 2.022 -1.445C2.022 -1.604 1.978 -1.748 1.888 -1.883C1.868 -1.913 1.868 -1.918 1.868 -1.923C1.868 -1.943 2.167 -1.943 2.192 -1.943C2.197 -1.943 2.386 -1.943 2.565 -1.923L2.506 -2.262ZM1.176 -0.941C0.907 -0.941 0.707 -1.111 0.707 -1.445C0.707 -1.833 0.956 -1.953 1.171 -1.953C1.44 -1.953 1.639 -1.783 1.639 -1.45C1.639 -1.061 1.39 -0.941 1.176 -0.941ZM1.41 0.03C1.524 0.03 2.112 0.03 2.112 0.349C2.112 0.563 1.738 0.712 1.32 0.712S0.528 0.563 0.528 0.349C0.528 0.324 0.528 0.03 0.932 0.03H1.41Z' id='g1-103'/>
<path d='M2.316 -1.474C2.316 -1.863 2.202 -2.262 1.589 -2.262C1.161 -2.262 0.932 -2.012 0.832 -1.908V-3.457H0.413V0H0.847V-1.21C0.847 -1.539 0.986 -1.933 1.37 -1.933C1.883 -1.933 1.883 -1.584 1.883 -1.44V0H2.316V-1.474Z' id='g1-104'/>
<path d='M0.877 -3.417H0.374V-2.914H0.877V-3.417ZM0.837 -2.212H0.418V0H0.837V-2.212Z' id='g1-105'/>
<path d='M0.986 -3.417H0.483V-2.914H0.986V-3.417ZM-0.324 0.847C-0.095 0.971 0.13 1.016 0.319 1.016C0.663 1.016 0.986 0.752 0.986 0.294V-2.212H0.568V0.329C0.568 0.418 0.568 0.498 0.463 0.583C0.349 0.667 0.209 0.667 0.164 0.667C-0.045 0.667 -0.174 0.573 -0.234 0.518L-0.324 0.847Z' id='g1-106'/>
<path d='M0.837 -3.457H0.418V0H0.837V-3.457Z' id='g1-108'/>
<path d='M3.786 -1.474C3.786 -1.863 3.671 -2.262 3.059 -2.262C2.64 -2.262 2.381 -2.017 2.262 -1.858C2.212 -1.993 2.087 -2.262 1.589 -2.262C1.305 -2.262 1.031 -2.147 0.812 -1.883V-2.247H0.413V0H0.847V-1.21C0.847 -1.539 0.986 -1.933 1.37 -1.933C1.883 -1.933 1.883 -1.584 1.883 -1.44V0H2.316V-1.21C2.316 -1.539 2.456 -1.933 2.839 -1.933C3.352 -1.933 3.352 -1.584 3.352 -1.44V0H3.786V-1.474Z' id='g1-109'/>
<path d='M2.316 -1.474C2.316 -1.863 2.202 -2.262 1.589 -2.262C1.305 -2.262 1.031 -2.147 0.812 -1.883V-2.247H0.413V0H0.847V-1.21C0.847 -1.539 0.986 -1.933 1.37 -1.933C1.883 -1.933 1.883 -1.584 1.883 -1.44V0H2.316V-1.474Z' id='g1-110'/>
<path d='M2.491 -1.091C2.491 -1.748 1.968 -2.286 1.32 -2.286S0.149 -1.743 0.149 -1.091C0.149 -0.458 0.677 0.05 1.32 0.05C1.968 0.05 2.491 -0.458 2.491 -1.091ZM1.32 -0.294C0.927 -0.294 0.583 -0.583 0.583 -1.146S0.951 -1.958 1.32 -1.958C1.694 -1.958 2.057 -1.699 2.057 -1.146C2.057 -0.578 1.704 -0.294 1.32 -0.294Z' id='g1-111'/>
<path d='M0.857 -0.234C1.121 0.005 1.405 0.05 1.574 0.05C2.102 0.05 2.55 -0.453 2.55 -1.111C2.55 -1.709 2.222 -2.262 1.729 -2.262C1.504 -2.262 1.131 -2.197 0.842 -1.973V-2.212H0.423V0.966H0.857V-0.234ZM0.857 -1.654C0.971 -1.793 1.166 -1.918 1.405 -1.918C1.803 -1.918 2.117 -1.549 2.117 -1.111C2.117 -0.618 1.743 -0.279 1.355 -0.279C1.28 -0.279 1.156 -0.289 1.026 -0.394C0.877 -0.508 0.857 -0.583 0.857 -0.677V-1.654Z' id='g1-112'/>
<path d='M0.842 -1.061C0.842 -1.599 1.29 -1.888 1.729 -1.893V-2.262C1.31 -2.257 1.006 -2.052 0.807 -1.788V-2.247H0.423V0H0.842V-1.061Z' id='g1-114'/>
<path d='M1.818 -2.132C1.479 -2.271 1.23 -2.286 1.051 -2.286C0.927 -2.286 0.174 -2.286 0.174 -1.624C0.174 -1.39 0.304 -1.26 0.369 -1.2C0.543 -1.026 0.752 -0.986 1.016 -0.936C1.25 -0.892 1.519 -0.842 1.519 -0.603C1.519 -0.289 1.106 -0.289 1.036 -0.289C0.717 -0.289 0.418 -0.403 0.219 -0.543L0.149 -0.169C0.319 -0.085 0.623 0.05 1.036 0.05C1.26 0.05 1.479 0.015 1.664 -0.12C1.848 -0.259 1.908 -0.478 1.908 -0.648C1.908 -0.737 1.898 -0.932 1.689 -1.121C1.504 -1.285 1.325 -1.32 1.086 -1.365C0.792 -1.42 0.563 -1.465 0.563 -1.684C0.563 -1.968 0.927 -1.968 1.001 -1.968C1.285 -1.968 1.504 -1.908 1.753 -1.778L1.818 -2.132Z' id='g1-115'/>
<path d='M0.936 -1.898H1.674V-2.212H0.936V-2.844H0.553V-2.212H0.1V-1.898H0.538V-0.638C0.538 -0.304 0.623 0.05 0.981 0.05S1.614 -0.065 1.763 -0.134L1.679 -0.453C1.514 -0.334 1.34 -0.294 1.2 -0.294C0.991 -0.294 0.936 -0.498 0.936 -0.727V-1.898Z' id='g1-116'/>
<path d='M2.316 -2.212H1.883V-0.767C1.883 -0.369 1.544 -0.244 1.255 -0.244C0.887 -0.244 0.847 -0.344 0.847 -0.573V-2.212H0.413V-0.543C0.413 -0.1 0.608 0.05 0.956 0.05C1.161 0.05 1.599 0.01 1.898 -0.229V0H2.316V-2.212Z' id='g1-117'/>
<path d='M3.537 -2.212H3.148C3.103 -2.072 2.824 -1.23 2.67 -0.712C2.63 -0.568 2.58 -0.408 2.565 -0.294H2.56C2.531 -0.498 2.356 -1.036 2.346 -1.071L1.978 -2.212H1.599C1.455 -1.783 1.081 -0.667 1.041 -0.304H1.036C0.996 -0.658 0.628 -1.758 0.548 -1.998C0.508 -2.117 0.508 -2.127 0.483 -2.212H0.075L0.802 0H1.22C1.225 -0.02 1.36 -0.413 1.534 -0.966C1.609 -1.21 1.758 -1.689 1.783 -1.908L1.788 -1.913C1.798 -1.808 1.828 -1.699 1.863 -1.574S1.933 -1.315 1.968 -1.2L2.351 0H2.809L3.537 -2.212Z' id='g1-119'/>
<path d='M1.38 -1.141L2.346 -2.212H1.908L1.2 -1.395L0.478 -2.212H0.03L1.026 -1.141L0 0H0.443L1.2 -0.936L1.988 0H2.436L1.38 -1.141Z' id='g1-120'/>
<path d='M2.112 -2.002V-2.212H0.219V-1.893H0.951C1.011 -1.893 1.071 -1.898 1.131 -1.898H1.519L0.149 -0.219V0H2.127V-0.334H1.355C1.295 -0.334 1.235 -0.329 1.176 -0.329H0.742L2.112 -2.002Z' id='g1-122'/>
<path d='M3.891 -2.914C4.806 -3.165 5.452 -3.811 5.452 -4.546C5.452 -5.469 4.411 -6.223 3.129 -6.223H0.87V0H1.704V-2.824H3.138L4.842 0H5.703L3.891 -2.914ZM1.704 -3.407V-5.694H3.022C4.062 -5.694 4.671 -5.192 4.671 -4.546C4.671 -3.963 4.125 -3.407 3.022 -3.407H1.704Z' id='g0-82'/>
<path d='M3.694 -2.591C3.694 -3.479 3.04 -4.133 2.152 -4.133C1.569 -4.133 1.139 -3.981 0.708 -3.739L0.762 -3.102C1.21 -3.434 1.65 -3.569 2.143 -3.569C2.645 -3.569 2.95 -3.165 2.95 -2.582V-2.206C1.408 -2.17 0.395 -1.766 0.395 -1.04C0.395 -0.619 0.672 0.099 1.453 0.099C1.632 0.099 2.412 0.081 2.977 -0.341V0H3.694V-2.591ZM2.95 -1.255C2.95 -1.067 2.95 -0.843 2.627 -0.655C2.403 -0.52 2.107 -0.484 1.928 -0.484C1.47 -0.484 1.085 -0.699 1.085 -1.058C1.085 -1.695 2.833 -1.722 2.95 -1.722V-1.255Z' id='g0-97'/>
<path d='M3.829 -1.964C3.829 -2.242 3.82 -2.923 3.47 -3.461C3.093 -4.026 2.52 -4.133 2.179 -4.133C1.139 -4.133 0.314 -3.174 0.314 -2.026C0.314 -0.843 1.193 0.099 2.313 0.099C2.744 0.099 3.264 -0.009 3.784 -0.341L3.73 -0.959C3.165 -0.556 2.636 -0.484 2.322 -0.484C1.578 -0.484 1.004 -1.139 0.977 -1.964H3.829ZM1.031 -2.493C1.175 -3.067 1.614 -3.551 2.179 -3.551C2.511 -3.551 3.12 -3.398 3.291 -2.493H1.031Z' id='g0-101'/>
<path d='M1.524 -6.133H0.664V-5.272H1.524V-6.133ZM1.453 -3.981H0.735V0H1.453V-3.981Z' id='g0-105'/>
<path d='M1.453 -6.223H0.735V0H1.453V-6.223Z' id='g0-108'/>
<path d='M1.462 -1.91C1.462 -2.851 2.197 -3.425 3.013 -3.434V-4.08C2.367 -4.071 1.775 -3.748 1.408 -3.219V-4.035H0.744V0H1.462V-1.91Z' id='g0-114'/>
<path d='M3.165 -3.847C2.609 -4.098 2.197 -4.133 1.829 -4.133C1.623 -4.133 0.305 -4.133 0.305 -2.95C0.305 -2.52 0.565 -2.251 0.664 -2.152C1.004 -1.856 1.237 -1.811 1.847 -1.695C2.134 -1.641 2.645 -1.542 2.645 -1.085C2.645 -0.502 1.919 -0.502 1.802 -0.502C1.273 -0.502 0.762 -0.681 0.377 -0.95L0.26 -0.296C0.798 -0.009 1.345 0.099 1.802 0.099C2.385 0.099 3.318 -0.09 3.318 -1.157C3.318 -1.47 3.192 -1.784 2.878 -2.053C2.573 -2.313 2.304 -2.367 1.748 -2.475C1.426 -2.537 0.977 -2.618 0.977 -3.04C0.977 -3.569 1.614 -3.569 1.748 -3.569C2.403 -3.569 2.789 -3.362 3.049 -3.219L3.165 -3.847Z' id='g0-115'/>
<path d='M1.623 -3.425H2.914V-3.981H1.623V-5.12H0.959V-3.981H0.17V-3.425H0.933V-1.13C0.933 -0.601 1.049 0.099 1.704 0.099C2.098 0.099 2.564 0.018 3.067 -0.233L2.914 -0.798C2.681 -0.619 2.367 -0.511 2.089 -0.511C1.739 -0.511 1.623 -0.825 1.623 -1.291V-3.425Z' id='g0-116'/>
<path d='M4.116 -3.981H3.407L2.699 -2.161C2.52 -1.695 2.188 -0.825 2.143 -0.493H2.125C2.107 -0.646 2.08 -0.816 1.587 -2.107C1.318 -2.833 0.879 -3.927 0.861 -3.981H0.126L1.704 0H2.537L4.116 -3.981Z' id='g0-118'/>
</defs>
<g id='page10'>
<path d='M194.617 194.93V186.074M253.285 194.93V186.074M311.953 194.93V186.074M370.625 194.93V186.074M429.293 194.93V186.074M194.617 51.973V60.828M253.285 51.973V60.828M311.953 51.973V60.828M370.625 51.973V60.828M429.293 51.973V60.828' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
<path d='M165.281 190.324V186.074M223.953 190.324V186.074M282.621 190.324V186.074M341.289 190.324V186.074M399.957 190.324V186.074M458.629 190.324V186.074M165.281 56.574V60.828M223.953 56.574V60.828M282.621 56.574V60.828M341.289 56.574V60.828M399.957 56.574V60.828M458.629 56.574V60.828' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
<path d='M135.949 186.074H140.199M135.949 154.762H140.199M135.949 123.449H140.199M135.949 92.141H140.199M135.949 60.828H140.199M487.961 186.074H483.711M487.961 154.762H483.711M487.961 123.449H483.711M487.961 92.141H483.711M487.961 60.828H483.711' fill='none' stroke='#808080' stroke-miterlimit='10' stroke-width='0.199'/>
<path d='M135.949 186.074V60.828H487.961V186.074H135.949Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -21.265 59.571)'>
<use x='168.285' xlink:href='#g2-97' y='140.503'/>
<use x='172.353' xlink:href='#g2-108' y='140.503'/>
<use x='174.373' xlink:href='#g2-108' y='140.503'/>
<use x='176.393' xlink:href='#g2-111' y='140.503'/>
<use x='180.863' xlink:href='#g2-99' y='140.503'/>
<use x='184.627' xlink:href='#g2-45' y='140.503'/>
<use x='187.449' xlink:href='#g2-116' y='140.503'/>
<use x='190.507' xlink:href='#g2-101' y='140.503'/>
<use x='194.271' xlink:href='#g2-115' y='140.503'/>
<use x='197.517' xlink:href='#g2-116' y='140.503'/>
<use x='200.575' xlink:href='#g2-49' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 36.532 59.571)'>
<use x='168.285' xlink:href='#g2-97' y='140.503'/>
<use x='172.353' xlink:href='#g2-108' y='140.503'/>
<use x='174.373' xlink:href='#g2-108' y='140.503'/>
<use x='176.393' xlink:href='#g2-111' y='140.503'/>
<use x='180.863' xlink:href='#g2-99' y='140.503'/>
<use x='184.627' xlink:href='#g2-45' y='140.503'/>
<use x='187.449' xlink:href='#g2-116' y='140.503'/>
<use x='190.507' xlink:href='#g2-101' y='140.503'/>
<use x='194.271' xlink:href='#g2-115' y='140.503'/>
<use x='197.517' xlink:href='#g2-116' y='140.503'/>
<use x='200.575' xlink:href='#g2-78' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 94.98 59.571)'>
<use x='168.285' xlink:href='#g2-115' y='140.503'/>
<use x='171.531' xlink:href='#g2-104' y='140.503'/>
<use x='175.904' xlink:href='#g2-54' y='140.503'/>
<use x='180.138' xlink:href='#g2-98' y='140.503'/>
<use x='184.746' xlink:href='#g2-101' y='140.503'/>
<use x='188.509' xlink:href='#g2-110' y='140.503'/>
<use x='192.882' xlink:href='#g2-99' y='140.503'/>
<use x='196.646' xlink:href='#g2-104' y='140.503'/>
<use x='201.018' xlink:href='#g2-78' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 153.649 59.571)'>
<use x='168.285' xlink:href='#g2-115' y='140.503'/>
<use x='171.531' xlink:href='#g2-104' y='140.503'/>
<use x='175.904' xlink:href='#g2-56' y='140.503'/>
<use x='180.138' xlink:href='#g2-98' y='140.503'/>
<use x='184.746' xlink:href='#g2-101' y='140.503'/>
<use x='188.509' xlink:href='#g2-110' y='140.503'/>
<use x='192.882' xlink:href='#g2-99' y='140.503'/>
<use x='196.646' xlink:href='#g2-104' y='140.503'/>
<use x='201.018' xlink:href='#g2-78' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 207.225 59.571)'>
<use x='168.285' xlink:href='#g2-120' y='140.503'/>
<use x='172.187' xlink:href='#g2-109' y='140.503'/>
<use x='178.912' xlink:href='#g2-97' y='140.503'/>
<use x='182.98' xlink:href='#g2-108' y='140.503'/>
<use x='185' xlink:href='#g2-108' y='140.503'/>
<use x='187.02' xlink:href='#g2-111' y='140.503'/>
<use x='191.49' xlink:href='#g2-99' y='140.503'/>
<use x='195.254' xlink:href='#g2-45' y='140.503'/>
<use x='198.076' xlink:href='#g2-116' y='140.503'/>
<use x='201.134' xlink:href='#g2-101' y='140.503'/>
<use x='204.898' xlink:href='#g2-115' y='140.503'/>
<use x='208.144' xlink:href='#g2-116' y='140.503'/>
<use x='211.202' xlink:href='#g2-78' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 263.494 59.571)'>
<use x='168.285' xlink:href='#g2-99' y='140.503'/>
<use x='172.049' xlink:href='#g2-97' y='140.503'/>
<use x='176.117' xlink:href='#g2-99' y='140.503'/>
<use x='179.88' xlink:href='#g2-104' y='140.503'/>
<use x='184.253' xlink:href='#g2-101' y='140.503'/>
<use x='188.017' xlink:href='#g2-45' y='140.503'/>
<use x='190.839' xlink:href='#g2-115' y='140.503'/>
<use x='194.086' xlink:href='#g2-99' y='140.503'/>
<use x='197.849' xlink:href='#g2-114' y='140.503'/>
<use x='200.741' xlink:href='#g2-97' y='140.503'/>
<use x='204.81' xlink:href='#g2-116' y='140.503'/>
<use x='207.868' xlink:href='#g2-99' y='140.503'/>
<use x='211.631' xlink:href='#g2-104' y='140.503'/>
<use x='216.004' xlink:href='#g2-78' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 -40.942 47.205)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-120' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 15.894)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-120' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -15.418)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-120' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -46.729)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-120' y='140.503'/>
</g>
<g transform='matrix(1 0 0 1 -45.059 -78.041)'>
<use x='168.285' xlink:href='#g1-50' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-120' y='140.503'/>
</g>
<path clip-path='url(#clip10)' d='M135.949 123.449H487.961' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M140.125 186.074H143.363V123.449H140.125ZM198.797 186.074H202.035V123.449H198.797ZM257.465 186.074H260.703V123.449H257.465ZM316.133 186.074H319.371V123.449H316.133ZM374.801 186.074H378.039V123.449H374.801ZM433.473 186.074H436.711V123.449H433.473Z' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M140.125 186.074H143.363V123.449H140.125ZM198.797 186.074H202.035V123.449H198.797ZM257.465 186.074H260.703V123.449H257.465ZM316.133 186.074H319.371V123.449H316.133ZM374.801 186.074H378.039V123.449H374.801ZM433.473 186.074H436.711V123.449H433.473Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M141.746 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M139.754 123.449H143.738' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M141.746 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M139.754 123.449H143.738' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M200.414 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M198.422 123.449H202.406' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M200.414 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M198.422 123.449H202.406' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M259.082 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M257.09 123.449H261.078' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M259.082 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M257.09 123.449H261.078' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M317.754 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M315.762 123.449H319.746' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M317.754 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M315.762 123.449H319.746' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M376.422 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M374.43 123.449H378.414' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M376.422 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M374.43 123.449H378.414' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M435.09 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M433.098 123.449H437.082' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M435.09 123.449V123.449' fill='#f0e0f0'/>
<path clip-path='url(#clip10)' d='M433.098 123.449H437.082' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M145.356 186.074H148.594V120.071H145.356ZM204.028 186.074H207.266V121.571H204.028ZM262.695 186.074H265.934V122.699H262.695ZM321.363 186.074H324.602V125.895H321.363ZM380.031 186.074H383.27V173.172H380.031ZM438.703 186.074H441.942V93.391H438.703Z' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M145.356 186.074H148.594V120.071H145.356ZM204.028 186.074H207.266V121.571H204.028ZM262.695 186.074H265.934V122.699H262.695ZM321.363 186.074H324.602V125.895H321.363ZM380.031 186.074H383.27V173.172H380.031ZM438.703 186.074H441.942V93.391H438.703Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M146.977 120.071V120.071' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M144.984 120.07H148.968' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M146.977 120.071V120.071' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M144.984 120.07H148.968' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M205.645 121.571V121.571' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M203.652 121.57H207.636' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M205.645 121.571V121.571' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M203.652 121.57H207.636' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M264.313 122.699V122.699' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M262.32 122.699H266.308' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M264.313 122.699V122.699' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M262.32 122.699H266.308' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M322.984 125.895V125.895' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M320.992 125.894H324.976' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M322.984 125.895V125.895' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M320.992 125.894H324.976' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M381.652 173.172V173.172' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M379.66 173.172H383.644' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M381.652 173.172V173.172' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M379.66 173.172H383.644' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M440.32 93.391V93.391' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M438.328 93.391H442.312' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M440.32 93.391V93.391' fill='#e1c2e1'/>
<path clip-path='url(#clip10)' d='M438.328 93.391H442.312' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M150.586 186.074H153.824V122.699H150.586ZM209.258 186.074H212.496V124.766H209.258ZM267.926 186.074H271.164V121.762H267.926ZM326.594 186.074H329.832V118.692H326.594ZM385.262 186.074H388.5V154.324H385.262ZM443.934 186.074H447.172V111.238H443.934Z' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M150.586 186.074H153.824V122.699H150.586ZM209.258 186.074H212.496V124.766H209.258ZM267.926 186.074H271.164V121.762H267.926ZM326.594 186.074H329.832V118.692H326.594ZM385.262 186.074H388.5V154.324H385.262ZM443.934 186.074H447.172V111.238H443.934Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M152.207 122.699V122.699' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M150.215 122.699H154.199' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M152.207 122.699V122.699' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M150.215 122.699H154.199' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M210.875 124.766V124.766' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M208.883 124.766H212.867' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M210.875 124.766V124.766' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M208.883 124.766H212.867' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M269.543 121.762V121.762' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M267.551 121.762H271.539' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M269.543 121.762V121.762' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M267.551 121.762H271.539' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M328.215 118.692V118.692' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M326.223 118.691H330.207' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M328.215 118.692V118.692' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M326.223 118.691H330.207' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M386.883 154.324V154.324' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M384.891 154.324H388.875' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M386.883 154.324V154.324' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M384.891 154.324H388.875' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M445.551 111.238V111.238' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M443.559 111.238H447.543' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M445.551 111.238V111.238' fill='#d1a3d1'/>
<path clip-path='url(#clip10)' d='M443.559 111.238H447.543' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M155.817 186.074H159.055V119.696H155.817ZM214.488 186.074H217.727V121.887H214.488ZM273.156 186.074H276.395V113.43H273.156ZM331.824 186.074H335.063V119.004H331.824ZM390.492 186.074H393.731V89.133H390.492ZM449.164 186.074H452.402V120.633H449.164Z' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M155.817 186.074H159.055V119.696H155.817ZM214.488 186.074H217.727V121.887H214.488ZM273.156 186.074H276.395V113.43H273.156ZM331.824 186.074H335.063V119.004H331.824ZM390.492 186.074H393.731V89.133H390.492ZM449.164 186.074H452.402V120.633H449.164Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M157.438 119.696V119.696' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M155.445 119.695H159.429' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M157.438 119.696V119.696' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M155.445 119.695H159.429' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M216.106 121.887V121.887' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M214.113 121.886H218.097' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M216.106 121.887V121.887' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M214.113 121.886H218.097' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M274.774 113.43V113.43' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M272.781 113.43H276.769' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M274.774 113.43V113.43' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M272.781 113.43H276.769' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M333.445 119.004V119.004' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M331.453 119.004H335.437' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M333.445 119.004V119.004' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M331.453 119.004H335.437' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M392.113 89.133V89.133' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M390.121 89.133H394.105' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M392.113 89.133V89.133' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M390.121 89.133H394.105' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M450.781 120.633V120.633' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M448.789 120.633H452.773' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M450.781 120.633V120.633' fill='#c285c2'/>
<path clip-path='url(#clip10)' d='M448.789 120.633H452.773' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M161.047 186.074H164.285V109.738H161.047ZM219.719 186.074H222.957V112.555H219.719ZM278.387 186.074H281.625V86.192H278.387ZM337.055 186.074H340.293V106.543H337.055ZM395.723 186.074H398.961V172.172H395.723ZM454.395 186.074H457.633V122.949H454.395Z' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M161.047 186.074H164.285V109.738H161.047ZM219.719 186.074H222.957V112.555H219.719ZM278.387 186.074H281.625V86.192H278.387ZM337.055 186.074H340.293V106.543H337.055ZM395.723 186.074H398.961V172.172H395.723ZM454.395 186.074H457.633V122.949H454.395Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M162.668 109.738V109.738' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M160.676 109.738H164.66' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M162.668 109.738V109.738' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M160.676 109.738H164.66' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M221.336 112.555V112.555' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M219.344 112.554H223.328' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M221.336 112.555V112.555' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M219.344 112.554H223.328' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M280.004 86.192V86.192' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M278.012 86.191H282' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M280.004 86.192V86.192' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M278.012 86.191H282' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M338.676 106.543V106.543' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M336.684 106.543H340.668' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M338.676 106.543V106.543' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M336.684 106.543H340.668' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M397.344 172.172V172.172' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M395.352 172.172H399.336' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M397.344 172.172V172.172' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M395.352 172.172H399.336' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M456.012 122.949V122.949' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M454.02 122.949H458.004' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M456.012 122.949V122.949' fill='#b366b3'/>
<path clip-path='url(#clip10)' d='M454.02 122.949H458.004' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M166.278 186.074H169.516V98.278H166.278ZM224.949 186.074H228.188V94.77H224.949ZM283.617 186.074H286.856V78.051H283.617ZM342.285 186.074H345.524V92.453H342.285ZM400.953 186.074H404.192V154.762H400.953ZM459.625 186.074H462.863V113.242H459.625Z' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M166.278 186.074H169.516V98.278H166.278ZM224.949 186.074H228.188V94.77H224.949ZM283.617 186.074H286.856V78.051H283.617ZM342.285 186.074H345.524V92.453H342.285ZM400.953 186.074H404.192V154.762H400.953ZM459.625 186.074H462.863V113.242H459.625Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M167.899 98.278V98.278' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M165.906 98.277H169.89' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M167.899 98.278V98.278' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M165.906 98.277H169.89' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M226.567 94.77V94.77' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M224.574 94.77H228.558' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M226.567 94.77V94.77' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M224.574 94.77H228.558' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M285.234 78.051V78.051' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M283.242 78.051H287.23' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M285.234 78.051V78.051' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M283.242 78.051H287.23' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M343.906 92.453V92.453' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M341.914 92.453H345.898' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M343.906 92.453V92.453' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M341.914 92.453H345.898' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M402.574 154.762V154.762' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M400.582 154.761H404.566' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M402.574 154.762V154.762' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M400.582 154.761H404.566' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M461.242 113.242V113.242' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M459.25 113.242H463.234' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M461.242 113.242V113.242' fill='#a447a4'/>
<path clip-path='url(#clip10)' d='M459.25 113.242H463.234' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M171.508 186.074H174.746V109.172H171.508ZM230.18 186.074H233.414V112.617H230.18ZM288.848 186.074H292.086V86.254H288.848ZM347.516 186.074H350.754V107.418H347.516ZM406.184 186.074H409.422V172.235H406.184ZM464.856 186.074H468.094V124.266H464.856Z' fill='#942994'/>
<path clip-path='url(#clip10)' d='M171.508 186.074H174.746V109.172H171.508ZM230.18 186.074H233.414V112.617H230.18ZM288.848 186.074H292.086V86.254H288.848ZM347.516 186.074H350.754V107.418H347.516ZM406.184 186.074H409.422V172.235H406.184ZM464.856 186.074H468.094V124.266H464.856Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M173.129 109.172V109.172' fill='#942994'/>
<path clip-path='url(#clip10)' d='M171.137 109.172H175.121' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M173.129 109.172V109.172' fill='#942994'/>
<path clip-path='url(#clip10)' d='M171.137 109.172H175.121' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M231.797 112.617V112.617' fill='#942994'/>
<path clip-path='url(#clip10)' d='M229.805 112.617H233.789' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M231.797 112.617V112.617' fill='#942994'/>
<path clip-path='url(#clip10)' d='M229.805 112.617H233.789' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M290.465 86.254V86.254' fill='#942994'/>
<path clip-path='url(#clip10)' d='M288.473 86.254H292.461' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M290.465 86.254V86.254' fill='#942994'/>
<path clip-path='url(#clip10)' d='M288.473 86.254H292.461' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M349.137 107.418V107.418' fill='#942994'/>
<path clip-path='url(#clip10)' d='M347.145 107.418H351.129' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M349.137 107.418V107.418' fill='#942994'/>
<path clip-path='url(#clip10)' d='M347.145 107.418H351.129' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M407.805 172.235V172.235' fill='#942994'/>
<path clip-path='url(#clip10)' d='M405.813 172.234H409.797' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M407.805 172.235V172.235' fill='#942994'/>
<path clip-path='url(#clip10)' d='M405.813 172.234H409.797' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M466.473 124.266V124.266' fill='#942994'/>
<path clip-path='url(#clip10)' d='M464.481 124.266H468.465' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M466.473 124.266V124.266' fill='#942994'/>
<path clip-path='url(#clip10)' d='M464.481 124.266H468.465' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M411.414 186.074H414.652V151.946H411.414ZM176.738 186.074H179.977V117.375H176.738ZM235.41 186.074H238.645V119.567H235.41ZM294.078 186.074H297.317V116.813H294.078ZM352.746 186.074H355.984V123.891H352.746ZM470.086 186.074H473.324V117.313H470.086Z' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M411.414 186.074H414.652V151.946H411.414ZM176.738 186.074H179.977V117.375H176.738ZM235.41 186.074H238.645V119.567H235.41ZM294.078 186.074H297.317V116.813H294.078ZM352.746 186.074H355.984V123.891H352.746ZM470.086 186.074H473.324V117.313H470.086Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M413.035 151.946V151.946' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M411.043 151.945H415.027' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M413.035 151.946V151.946' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M411.043 151.945H415.027' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M178.36 117.375V117.375' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M176.367 117.375H180.351' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M178.36 117.375V117.375' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M176.367 117.375H180.351' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M237.027 119.567V119.567' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M235.035 119.566H239.019' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M237.027 119.567V119.567' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M235.035 119.566H239.019' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M295.695 116.813V116.813' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M293.703 116.813H297.691' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M295.695 116.813V116.813' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M293.703 116.813H297.691' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M354.367 123.891V123.891' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M352.375 123.89H356.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M354.367 123.891V123.891' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M352.375 123.89H356.359' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M471.703 117.313V117.313' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M469.711 117.313H473.695' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M471.703 117.313V117.313' fill='#850a85'/>
<path clip-path='url(#clip10)' d='M469.711 117.313H473.695' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M181.969 186.074H185.207V121.762H181.969ZM240.641 186.074H243.875V122.074H240.641ZM299.309 186.074H302.547V122.574H299.309ZM357.977 186.074H361.215V121.949H357.977ZM475.317 186.074H478.555V113.746H475.317Z' fill='#760076'/>
<path clip-path='url(#clip10)' d='M181.969 186.074H185.207V121.762H181.969ZM240.641 186.074H243.875V122.074H240.641ZM299.309 186.074H302.547V122.574H299.309ZM357.977 186.074H361.215V121.949H357.977ZM475.317 186.074H478.555V113.746H475.317Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M183.59 121.762V121.762' fill='#760076'/>
<path clip-path='url(#clip10)' d='M181.598 121.762H185.583' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M183.59 121.762V121.762' fill='#760076'/>
<path clip-path='url(#clip10)' d='M181.598 121.762H185.583' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M242.258 122.074V122.074' fill='#760076'/>
<path clip-path='url(#clip10)' d='M240.266 122.074H244.25' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M242.258 122.074V122.074' fill='#760076'/>
<path clip-path='url(#clip10)' d='M240.266 122.074H244.25' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M300.926 122.574V122.574' fill='#760076'/>
<path clip-path='url(#clip10)' d='M298.933 122.574H302.921' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M300.926 122.574V122.574' fill='#760076'/>
<path clip-path='url(#clip10)' d='M298.933 122.574H302.921' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M359.598 121.949V121.949' fill='#760076'/>
<path clip-path='url(#clip10)' d='M357.606 121.949H361.59' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M359.598 121.949V121.949' fill='#760076'/>
<path clip-path='url(#clip10)' d='M357.606 121.949H361.59' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M476.934 113.746V113.746' fill='#760076'/>
<path clip-path='url(#clip10)' d='M474.942 113.746H478.926' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M476.934 113.746V113.746' fill='#760076'/>
<path clip-path='url(#clip10)' d='M474.942 113.746H478.926' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M187.199 186.074H190.438V122.887H187.199ZM245.871 186.074H249.106V122.637H245.871ZM304.539 186.074H307.777V123.387H304.539ZM363.207 186.074H366.445V125.391H363.207ZM421.875 186.074H425.113V169.164H421.875ZM480.547 186.074H483.785V121.571H480.547Z' fill='#670067'/>
<path clip-path='url(#clip10)' d='M187.199 186.074H190.438V122.887H187.199ZM245.871 186.074H249.106V122.637H245.871ZM304.539 186.074H307.777V123.387H304.539ZM363.207 186.074H366.445V125.391H363.207ZM421.875 186.074H425.113V169.164H421.875ZM480.547 186.074H483.785V121.571H480.547Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M188.82 122.887V122.887' fill='#670067'/>
<path clip-path='url(#clip10)' d='M186.828 122.886H190.813' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M188.82 122.887V122.887' fill='#670067'/>
<path clip-path='url(#clip10)' d='M186.828 122.886H190.813' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M247.488 122.637V122.637' fill='#670067'/>
<path clip-path='url(#clip10)' d='M245.496 122.637H249.481' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M247.488 122.637V122.637' fill='#670067'/>
<path clip-path='url(#clip10)' d='M245.496 122.637H249.481' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M306.156 123.387V123.387' fill='#670067'/>
<path clip-path='url(#clip10)' d='M304.164 123.387H308.152' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M306.156 123.387V123.387' fill='#670067'/>
<path clip-path='url(#clip10)' d='M304.164 123.387H308.152' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M364.828 125.391V125.391' fill='#670067'/>
<path clip-path='url(#clip10)' d='M362.836 125.39H366.82' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M364.828 125.391V125.391' fill='#670067'/>
<path clip-path='url(#clip10)' d='M362.836 125.39H366.82' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M423.496 169.164V169.164' fill='#670067'/>
<path clip-path='url(#clip10)' d='M421.504 169.164H425.488' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M423.496 169.164V169.164' fill='#670067'/>
<path clip-path='url(#clip10)' d='M421.504 169.164H425.488' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M482.164 121.571V121.571' fill='#670067'/>
<path clip-path='url(#clip10)' d='M480.172 121.57H484.156' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M482.164 121.571V121.571' fill='#670067'/>
<path clip-path='url(#clip10)' d='M480.172 121.57H484.156' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path clip-path='url(#clip10)' d='M419.477 233.301H487.762V211.324H419.477Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 254.512 88.837)'>
<use x='168.285' xlink:href='#g1-72' y='129.265'/>
<use x='172.021' xlink:href='#g1-80' y='129.265'/>
<use x='175.402' xlink:href='#g1-45' y='129.265'/>
<use x='177.167' xlink:href='#g1-90' y='129.265'/>
<use x='180.401' xlink:href='#g1-52' y='129.265'/>
<use x='183.047' xlink:href='#g1-45' y='129.265'/>
<use x='184.812' xlink:href='#g1-71' y='129.265'/>
<use x='188.34' xlink:href='#g1-52' y='129.265'/>
<use x='190.987' xlink:href='#g1-44' y='129.265'/>
<use x='194.221' xlink:href='#g1-49' y='129.265'/>
<use x='196.867' xlink:href='#g1-54' y='129.265'/>
<use x='199.514' xlink:href='#g1-71' y='129.265'/>
<use x='203.042' xlink:href='#g1-98' y='129.265'/>
<use x='168.285' xlink:href='#g1-56' y='134.884'/>
<use x='170.931' xlink:href='#g1-45' y='134.884'/>
<use x='172.695' xlink:href='#g1-99' y='134.884'/>
<use x='175.048' xlink:href='#g1-111' y='134.884'/>
<use x='177.547' xlink:href='#g1-114' y='134.884'/>
<use x='179.355' xlink:href='#g1-101' y='134.884'/>
<use x='183.471' xlink:href='#g1-73' y='134.884'/>
<use x='184.941' xlink:href='#g1-110' y='134.884'/>
<use x='187.674' xlink:href='#g1-116' y='134.884'/>
<use x='189.585' xlink:href='#g1-101' y='134.884'/>
<use x='191.938' xlink:href='#g1-108' y='134.884'/>
<use x='194.965' xlink:href='#g1-88' y='134.884'/>
<use x='198.493' xlink:href='#g1-69' y='134.884'/>
<use x='201.667' xlink:href='#g1-79' y='134.884'/>
<use x='205.576' xlink:href='#g1-78' y='134.884'/>
<use x='211.076' xlink:href='#g1-64' y='134.884'/>
<use x='214.605' xlink:href='#g1-50' y='134.884'/>
<use x='217.251' xlink:href='#g1-46' y='134.884'/>
<use x='218.721' xlink:href='#g1-55' y='134.884'/>
<use x='221.368' xlink:href='#g1-71' y='134.884'/>
<use x='224.896' xlink:href='#g1-104' y='134.884'/>
<use x='227.629' xlink:href='#g1-122' y='134.884'/>
<use x='168.285' xlink:href='#g1-85' y='140.503'/>
<use x='171.917' xlink:href='#g1-98' y='140.503'/>
<use x='174.65' xlink:href='#g1-117' y='140.503'/>
<use x='177.383' xlink:href='#g1-110' y='140.503'/>
<use x='180.116' xlink:href='#g1-116' y='140.503'/>
<use x='182.027' xlink:href='#g1-117' y='140.503'/>
<use x='186.524' xlink:href='#g1-49' y='140.503'/>
<use x='189.17' xlink:href='#g1-56' y='140.503'/>
<use x='191.817' xlink:href='#g1-46' y='140.503'/>
<use x='193.287' xlink:href='#g1-48' y='140.503'/>
<use x='195.933' xlink:href='#g1-52' y='140.503'/>
<use x='198.58' xlink:href='#g1-46' y='140.503'/>
<use x='200.05' xlink:href='#g1-49' y='140.503'/>
<use x='202.696' xlink:href='#g1-44' y='140.503'/>
<use x='205.931' xlink:href='#g1-71' y='140.503'/>
<use x='209.459' xlink:href='#g1-67' y='140.503'/>
<use x='212.841' xlink:href='#g1-67' y='140.503'/>
<use x='217.986' xlink:href='#g1-55' y='140.503'/>
<use x='220.633' xlink:href='#g1-46' y='140.503'/>
<use x='222.103' xlink:href='#g1-52' y='140.503'/>
<use x='224.749' xlink:href='#g1-46' y='140.503'/>
<use x='226.219' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 2.877 285.711)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 61.546 285.711)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 120.215 285.711)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 178.884 285.711)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 237.553 285.711)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 296.222 285.711)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 8.107 282.329)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-53' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 66.776 283.832)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-51' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 125.445 284.96)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 184.114 288.153)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-57' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 242.783 335.434)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 301.452 255.652)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-52' y='140.503'/>
<use x='175.048' xlink:href='#g1-56' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 13.338 284.96)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 72.007 287.026)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-57' y='140.503'/>
<use x='175.048' xlink:href='#g1-56' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 130.676 284.02)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-51' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 189.345 280.952)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-56' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 248.014 316.584)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 306.683 273.5)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 18.568 281.954)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 77.237 284.146)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-51' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 135.906 275.691)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 194.575 281.265)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-55' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 253.244 251.394)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-53' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 311.913 282.893)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-52' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 23.799 271.997)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-50' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 82.468 274.815)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-55' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 141.137 248.45)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-54' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 199.806 268.803)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-55' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 258.475 334.432)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-50' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 317.144 285.21)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 29.029 260.537)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-52' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 87.698 257.03)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-52' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 146.367 240.309)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-55' y='140.503'/>
<use x='175.048' xlink:href='#g1-50' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 205.036 254.713)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-52' y='140.503'/>
<use x='175.048' xlink:href='#g1-57' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 263.705 317.023)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 322.374 275.504)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 34.26 271.433)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-51' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 92.929 274.877)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-55' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 151.598 248.513)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-57' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 210.267 269.68)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 268.936 334.494)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-50' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 327.605 286.525)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-57' y='140.503'/>
<use x='175.048' xlink:href='#g1-57' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 274.166 314.205)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-53' y='140.503'/>
<use x='175.048' xlink:href='#g1-52' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 39.49 279.637)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 98.159 281.828)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 156.828 279.073)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 215.497 286.149)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-57' y='140.503'/>
<use x='175.048' xlink:href='#g1-57' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 332.835 279.574)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 44.72 284.02)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-51' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 103.389 284.333)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-50' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 162.058 284.834)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 220.727 284.208)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-50' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 338.065 276.005)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-49' y='140.503'/>
<use x='175.048' xlink:href='#g1-54' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 49.951 285.147)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 108.62 284.897)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-49' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 167.289 285.648)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-48' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 225.958 287.652)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-57' y='140.503'/>
<use x='175.048' xlink:href='#g1-55' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 284.627 331.426)'>
<use x='168.285' xlink:href='#g1-48' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-50' y='140.503'/>
<use x='175.048' xlink:href='#g1-55' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 343.296 283.832)'>
<use x='168.285' xlink:href='#g1-49' y='140.503'/>
<use x='170.931' xlink:href='#g1-46' y='140.503'/>
<use x='172.401' xlink:href='#g1-48' y='140.503'/>
<use x='175.048' xlink:href='#g1-51' y='140.503'/>
</g>
<g transform='matrix(0 -1 1 0 -27.345 343.63)'>
<use x='168.285' xlink:href='#g0-82' y='140.503'/>
<use x='174.255' xlink:href='#g0-101' y='140.503'/>
<use x='178.351' xlink:href='#g0-108' y='140.503'/>
<use x='180.551' xlink:href='#g0-97' y='140.503'/>
<use x='184.979' xlink:href='#g0-116' y='140.503'/>
<use x='188.307' xlink:href='#g0-105' y='140.503'/>
<use x='190.507' xlink:href='#g0-118' y='140.503'/>
<use x='194.755' xlink:href='#g0-101' y='140.503'/>
<use x='201.922' xlink:href='#g0-114' y='140.503'/>
<use x='205.07' xlink:href='#g0-115' y='140.503'/>
<use x='208.603' xlink:href='#g0-115' y='140.503'/>
<use x='215.207' xlink:href='#g2-40' y='140.503'/>
<use x='218.5' xlink:href='#g2-108' y='140.503'/>
<use x='220.521' xlink:href='#g2-111' y='140.503'/>
<use x='224.52' xlink:href='#g2-119' y='140.503'/>
<use x='230.068' xlink:href='#g2-101' y='140.503'/>
<use x='233.832' xlink:href='#g2-114' y='140.503'/>
<use x='239.547' xlink:href='#g2-105' y='140.503'/>
<use x='241.567' xlink:href='#g2-115' y='140.503'/>
<use x='247.636' xlink:href='#g2-98' y='140.503'/>
<use x='252.244' xlink:href='#g2-101' y='140.503'/>
<use x='256.008' xlink:href='#g2-116' y='140.503'/>
<use x='259.066' xlink:href='#g2-116' y='140.503'/>
<use x='262.124' xlink:href='#g2-101' y='140.503'/>
<use x='265.887' xlink:href='#g2-114' y='140.503'/>
<use x='268.779' xlink:href='#g2-41' y='140.503'/>
</g>
<path d='M136.149 231.446H402.137V214.453H136.149Z' fill='#ffffff'/>
<path d='M136.149 231.446H402.137V214.453H136.149Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<path d='M139.336 224.941H142.324V216.972H139.336ZM145.313 224.941H148.301V218.964H145.313Z' fill='#f0e0f0'/>
<path d='M139.336 224.941H142.324V216.972H139.336ZM145.313 224.941H148.301V218.964H145.313Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -33.522 84.43)'>
<use x='185.011' xlink:href='#g2-109' y='140.503'/>
<use x='191.736' xlink:href='#g2-105' y='140.503'/>
</g>
<path d='M163.422 224.941H166.41V216.973H163.422ZM169.398 224.941H172.391V218.965H169.398Z' fill='#e1c2e1'/>
<path d='M163.422 224.941H166.41V216.972H163.422ZM169.398 224.941H172.391V218.964H169.398Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -32.56 83.976)'>
<use x='208.137' xlink:href='#g2-116' y='140.503'/>
<use x='211.195' xlink:href='#g2-99' y='140.503'/>
</g>
<path d='M185.586 224.941H188.574V216.973H185.586ZM191.563 224.941H194.555V218.965H191.563Z' fill='#d1a3d1'/>
<path d='M185.586 224.941H188.574V216.972H185.586ZM191.563 224.941H194.555V218.964H191.563Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -32.159 84.43)'>
<use x='229.9' xlink:href='#g2-106' y='140.503'/>
<use x='232.155' xlink:href='#g2-101' y='140.503'/>
</g>
<path d='M206.949 224.941H209.938V216.973H206.949ZM212.926 224.941H215.914V218.965H212.926Z' fill='#c285c2'/>
<path d='M206.949 224.941H209.938V216.972H206.949ZM212.926 224.941H215.914V218.964H212.926Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -32.958 83.47)'>
<use x='252.061' xlink:href='#g2-115' y='140.503'/>
<use x='255.307' xlink:href='#g2-110' y='140.503'/>
</g>
<path d='M229.91 224.941H232.898V216.973H229.91ZM235.887 224.941H238.875V218.965H235.887Z' fill='#b366b3'/>
<path d='M229.91 224.941H232.898V216.972H229.91ZM235.887 224.941H238.875V218.964H235.887Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -32.781 83.47)'>
<use x='274.845' xlink:href='#g2-114' y='140.503'/>
<use x='277.737' xlink:href='#g2-112' y='140.503'/>
</g>
<path d='M252.516 224.941H255.504V216.973H252.516ZM258.496 224.941H261.484V218.965H258.496Z' fill='#a447a4'/>
<path d='M252.516 224.941H255.504V216.972H252.516ZM258.496 224.941H261.484V218.964H258.496Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -39.001 84.467)'>
<use x='303.672' xlink:href='#g2-104' y='140.503'/>
<use x='308.045' xlink:href='#g2-111' y='140.503'/>
<use x='312.279' xlink:href='#g2-97' y='140.503'/>
<use x='316.112' xlink:href='#g2-114' y='140.503'/>
<use x='319.004' xlink:href='#g2-100' y='140.503'/>
</g>
<path d='M287.563 224.941H290.551V216.973H287.563ZM293.543 224.941H296.531V218.965H293.543Z' fill='#942994'/>
<path d='M287.563 224.941H290.551V216.972H287.563ZM293.543 224.941H296.531V218.964H293.543Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -37.472 84.467)'>
<use x='337.19' xlink:href='#g2-103' y='140.503'/>
<use x='341.424' xlink:href='#g2-108' y='140.503'/>
<use x='343.444' xlink:href='#g2-105' y='140.503'/>
<use x='345.464' xlink:href='#g2-98' y='140.503'/>
<use x='350.072' xlink:href='#g2-99' y='140.503'/>
</g>
<path d='M319.551 224.941H322.539V216.973H319.551ZM325.527 224.941H328.52V218.965H325.527Z' fill='#850a85'/>
<path d='M319.551 224.941H322.539V216.972H319.551ZM325.527 224.941H328.52V218.964H325.527Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -35.051 84.467)'>
<use x='366.757' xlink:href='#g2-116' y='140.503'/>
<use x='369.815' xlink:href='#g2-98' y='140.503'/>
<use x='374.187' xlink:href='#g2-98' y='140.503'/>
</g>
<path d='M346.699 224.941H349.688V216.973H346.699ZM352.676 224.941H355.664V218.965H352.676Z' fill='#760076'/>
<path d='M346.699 224.941H349.688V216.972H346.699ZM352.676 224.941H355.664V218.964H352.676Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -34.135 83.47)'>
<use x='392.986' xlink:href='#g2-115' y='140.503'/>
<use x='396.233' xlink:href='#g2-109' y='140.503'/>
</g>
<path d='M372.012 224.941H375V216.973H372.012ZM377.988 224.941H380.977V218.965H377.988Z' fill='#670067'/>
<path d='M372.012 224.941H375V216.972H372.012ZM377.988 224.941H380.977V218.964H377.988Z' fill='none' stroke='#000000' stroke-miterlimit='10' stroke-width='0.399'/>
<g transform='matrix(1 0 0 1 -35.145 84.43)'>
<use x='419.31' xlink:href='#g2-115' y='140.503'/>
<use x='422.556' xlink:href='#g2-109' y='140.503'/>
<use x='429.281' xlink:href='#g2-105' y='140.503'/>
</g>
</g>
</svg>