-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
/
Copy pathHexagonGrid.tsx
1434 lines (1431 loc) · 53.8 KB
/
HexagonGrid.tsx
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
import type { FC, SVGProps } from 'react';
type HexagonGridProps = SVGProps<SVGSVGElement>;
const HexagonGrid: FC<HexagonGridProps> = props => (
<svg
viewBox="0 0 1216 726"
fill="none"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
{...props}
>
<mask
id="mask0_91_8"
style={{ maskType: 'alpha' }}
maskUnits="userSpaceOnUse"
width="1216"
height="726"
x="0"
y="0"
>
<rect width="1216" height="725.8" fill="url(#paint0_radial_91_8)" />
</mask>
<g mask="url(#mask0_91_8)">
<path
d="M717.133 231.367L759.799 206.733L802.465 231.367V280.633L759.799 305.267L717.133 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.432 306.367L803.099 281.733L845.765 306.367V355.633L803.099 380.267L760.432 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.732 231.367L846.398 206.733L889.065 231.367V280.633L846.398 305.267L803.732 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.032 306.367L889.698 281.733L932.365 306.367V355.633L889.698 380.267L847.032 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.332 381.367L932.998 356.733L975.664 381.367V430.633L932.998 455.267L890.332 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.632 306.367L976.298 281.733L1018.96 306.367V355.633L976.298 380.267L933.632 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.233 306.367L629.899 281.733L672.566 306.367V355.633L629.899 380.267L587.233 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.533 381.367L673.199 356.733L715.865 381.367V430.633L673.199 455.267L630.533 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.833 306.367L716.499 281.733L759.165 306.367V355.633L716.499 380.267L673.833 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M717.133 381.367L759.799 356.733L802.465 381.367V430.633L759.799 455.267L717.133 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.432 456.367L803.099 431.733L845.765 456.367V505.633L803.099 530.267L760.432 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.732 381.367L846.398 356.733L889.065 381.367V430.633L846.398 455.267L803.732 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 381.367L1019.6 356.733L1062.26 381.367V430.633L1019.6 455.267L976.931 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 456.367L1062.9 431.733L1105.56 456.367V505.633L1062.9 530.267L1020.23 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 381.367L1106.2 356.733L1148.86 381.367V430.633L1106.2 455.267L1063.53 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1106.83 456.367L1149.5 431.733L1192.16 456.367V505.633L1149.5 530.267L1106.83 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1150.13 531.367L1192.8 506.733L1235.46 531.367V580.633L1192.8 605.267L1150.13 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1193.43 456.367L1236.1 431.733L1278.76 456.367V505.633L1236.1 530.267L1193.43 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.032 456.367L889.698 431.733L932.365 456.367V505.633L889.698 530.267L847.032 505.633V456.367Z"
fill="white"
fillOpacity="0.25"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.332 531.367L932.998 506.733L975.664 531.367V580.633L932.998 605.267L890.332 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.632 456.367L976.298 431.733L1018.96 456.367V505.633L976.298 530.267L933.632 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 531.367L1019.6 506.733L1062.26 531.367V580.633L1019.6 605.267L976.931 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 606.367L1062.9 581.733L1105.56 606.367V655.633L1062.9 680.267L1020.23 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 531.367L1106.2 506.733L1148.86 531.367V580.633L1106.2 605.267L1063.53 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 81.3666L1019.6 56.7332L1062.26 81.3666V130.633L1019.6 155.267L976.931 130.633V81.3666Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 156.367L1062.9 131.733L1105.56 156.367V205.633L1062.9 230.267L1020.23 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 81.3666L1106.2 56.7332L1148.86 81.3666V130.633L1106.2 155.267L1063.53 130.633V81.3666Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1106.83 156.367L1149.5 131.733L1192.16 156.367V205.633L1149.5 230.267L1106.83 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1150.13 231.367L1192.8 206.733L1235.46 231.367V280.633L1192.8 305.267L1150.13 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1193.43 156.367L1236.1 131.733L1278.76 156.367V205.633L1236.1 230.267L1193.43 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.032 156.367L889.698 131.733L932.365 156.367V205.633L889.698 230.267L847.032 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.332 231.367L932.998 206.733L975.664 231.367V280.633L932.998 305.267L890.332 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.632 156.367L976.298 131.733L1018.96 156.367V205.633L976.298 230.267L933.632 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 231.367L1019.6 206.733L1062.26 231.367V280.633L1019.6 305.267L976.931 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 306.367L1062.9 281.733L1105.56 306.367V355.633L1062.9 380.267L1020.23 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 231.367L1106.2 206.733L1148.86 231.367V280.633L1106.2 305.267L1063.53 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1106.83 306.367L1149.5 281.733L1192.16 306.367V355.633L1149.5 380.267L1106.83 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1150.13 381.367L1192.8 356.733L1235.46 381.367V430.633L1192.8 455.267L1150.13 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1193.43 306.367L1236.1 281.733L1278.76 306.367V355.633L1236.1 380.267L1193.43 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.523 6.36671L283.211 -18.2669L325.899 6.36671V55.6333L283.211 80.2669L240.523 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.167 6.36671L369.855 -18.2669L412.543 6.36671V55.6333L369.855 80.2669L327.167 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M370.486 81.3667L413.174 56.7331L455.862 81.3667V130.633L413.174 155.267L370.486 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M413.81 6.36671L456.498 -18.2669L499.186 6.36671V55.6333L456.498 80.2669L413.81 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M67.2365 6.36671L109.925 -18.2669L152.613 6.36671V55.6333L109.925 80.2669L67.2365 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M110.558 81.3667L153.246 56.7331L195.934 81.3667V130.633L153.246 155.267L110.558 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M153.88 6.36671L196.568 -18.2669L239.256 6.36671V55.6333L196.568 80.2669L153.88 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M197.201 81.3667L239.889 56.7331L282.577 81.3667V130.633L239.889 155.267L197.201 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.523 156.367L283.211 131.733L325.899 156.367V205.633L283.211 230.267L240.523 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M283.845 81.3667L326.533 56.7331L369.221 81.3667V130.633L326.533 155.267L283.845 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M457.13 81.3667L499.818 56.7331L542.506 81.3667V130.633L499.818 155.267L457.13 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M500.452 156.367L543.14 131.733L585.828 156.367V205.633L543.14 230.267L500.452 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M543.775 81.3667L586.463 56.7331L629.151 81.3667V130.633L586.463 155.267L543.775 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.095 156.367L629.783 131.733L672.471 156.367V205.633L629.783 230.267L587.095 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.416 231.367L673.104 206.733L715.792 231.367V280.633L673.104 305.267L630.416 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.738 156.367L716.426 131.733L759.114 156.367V205.633L716.426 230.267L673.738 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.167 156.367L369.855 131.733L412.543 156.367V205.633L369.855 230.267L327.167 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M370.486 231.367L413.174 206.733L455.862 231.367V280.633L413.174 305.267L370.486 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M413.81 156.367L456.498 131.733L499.186 156.367V205.633L456.498 230.267L413.81 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M457.13 231.367L499.818 206.733L542.506 231.367V280.633L499.818 305.267L457.13 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M500.452 306.367L543.14 281.733L585.828 306.367V355.633L543.14 380.267L500.452 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M543.775 231.367L586.463 206.733L629.151 231.367V280.633L586.463 305.267L543.775 280.633V231.367Z"
fill="white"
fillOpacity="0.25"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M500.452 6.36671L543.14 -18.2669L585.828 6.36671V55.6333L543.14 80.2669L500.452 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.383 6.36671L803.071 -18.2669L845.759 6.36671V55.6333L803.071 80.2669L760.383 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.026 6.36671L889.714 -18.2669L932.402 6.36671V55.6333L889.714 80.2669L847.026 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.348 81.3667L933.036 56.7331L975.724 81.3667V130.633L933.036 155.267L890.348 130.633V81.3667Z"
fill="white"
fillOpacity="0.25"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.667 6.36671L976.355 -18.2669L1019.04 6.36671V55.6333L976.355 80.2669L933.667 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.095 6.36671L629.783 -18.2669L672.471 6.36671V55.6333L629.783 80.2669L587.095 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.416 81.3667L673.104 56.7331L715.792 81.3667V130.633L673.104 155.267L630.416 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.738 6.36671L716.426 -18.2669L759.114 6.36671V55.6333L716.426 80.2669L673.738 55.6333V6.36671Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M717.061 81.3667L759.749 56.7331L802.437 81.3667V130.633L759.749 155.267L717.061 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.383 156.367L803.071 131.733L845.759 156.367V205.633L803.071 230.267L760.383 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.702 81.3667L846.39 56.7331L889.078 81.3667V130.633L846.39 155.267L803.702 130.633V81.3667Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.233 606.367L369.899 581.733L412.566 606.367V655.633L369.899 680.267L327.233 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M370.533 681.367L413.199 656.733L455.865 681.367V730.633L413.199 755.267L370.533 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M413.833 606.367L456.499 581.733L499.165 606.367V655.633L456.499 680.267L413.833 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M457.133 681.367L499.799 656.733L542.465 681.367V730.633L499.799 755.267L457.133 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M543.732 681.367L586.398 656.733L629.065 681.367V730.633L586.398 755.267L543.732 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M197.334 681.367L240 656.733L282.666 681.367V730.633L240 755.267L197.334 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M283.933 681.367L326.6 656.733L369.266 681.367V730.633L326.6 755.267L283.933 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.032 456.367L629.698 431.733L672.365 456.367V505.633L629.698 530.267L587.032 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.332 531.367L672.998 506.733L715.664 531.367V580.633L672.998 605.267L630.332 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.632 456.367L716.298 431.733L758.964 456.367V505.633L716.298 530.267L673.632 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M716.931 531.367L759.598 506.733L802.264 531.367V580.633L759.598 605.267L716.931 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.231 606.367L802.897 581.733L845.564 606.367V655.633L802.897 680.267L760.231 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.531 531.367L846.197 506.733L888.864 531.367V580.633L846.197 605.267L803.531 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M457.133 531.367L499.799 506.733L542.465 531.367V580.633L499.799 605.267L457.133 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M500.432 606.367L543.099 581.733L585.765 606.367V655.633L543.099 680.267L500.432 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M543.732 531.367L586.398 506.733L629.065 531.367V580.633L586.398 605.267L543.732 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.032 606.367L629.698 581.733L672.365 606.367V655.633L629.698 680.267L587.032 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.332 681.367L672.998 656.733L715.664 681.367V730.633L672.998 755.267L630.332 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.632 606.367L716.298 581.733L758.964 606.367V655.633L716.298 680.267L673.632 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M846.831 606.367L889.497 581.733L932.163 606.367V655.633L889.497 680.267L846.831 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.131 681.367L932.797 656.733L975.463 681.367V730.633L932.797 755.267L890.131 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.43 606.367L976.097 581.733L1018.76 606.367V655.633L976.097 680.267L933.43 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.73 681.367L1019.4 656.733L1062.06 681.367V730.633L1019.4 755.267L976.73 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.33 681.367L1106 656.733L1148.66 681.367V730.633L1106 755.267L1063.33 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M716.931 681.367L759.598 656.733L802.264 681.367V730.633L759.598 755.267L716.931 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.531 681.367L846.197 656.733L888.864 681.367V730.633L846.197 755.267L803.531 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M-62.7322 381.367L-20.0442 356.733L22.6438 381.367V430.633L-20.0442 455.267L-62.7322 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M-19.4139 456.367L23.2741 431.733L65.9621 456.367V505.633L23.2741 530.267L-19.4139 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M23.9103 381.367L66.5983 356.733L109.286 381.367V430.633L66.5983 455.267L23.9103 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M67.2306 456.367L109.919 431.733L152.607 456.367V505.633L109.919 530.267L67.2306 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M110.553 531.367L153.241 506.733L195.929 531.367V580.633L153.241 605.267L110.553 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M153.875 456.367L196.563 431.733L239.251 456.367V505.633L196.563 530.267L153.875 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M197.195 531.367L239.884 506.733L282.572 531.367V580.633L239.884 605.267L197.195 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.517 606.367L283.205 581.733L325.893 606.367V655.633L283.205 680.267L240.517 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M283.839 531.367L326.527 506.733L369.215 531.367V580.633L326.527 605.267L283.839 580.633V531.367Z"
fill="white"
fillOpacity="0.25"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M-62.7322 531.367L-20.0442 506.733L22.6438 531.367V580.633L-20.0442 605.267L-62.7322 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M-19.4139 606.367L23.2741 581.733L65.9621 606.367V655.633L23.2741 680.267L-19.4139 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M23.9103 531.367L66.5983 506.733L109.286 531.367V580.633L66.5983 605.267L23.9103 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M67.2306 606.367L109.919 581.733L152.607 606.367V655.633L109.919 680.267L67.2306 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M110.553 681.367L153.241 656.733L195.929 681.367V730.633L153.241 755.267L110.553 730.633V681.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M153.875 606.367L196.563 581.733L239.251 606.367V655.633L196.563 680.267L153.875 655.633V606.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M67.2306 156.367L109.919 131.733L152.607 156.367V205.633L109.919 230.267L67.2306 205.633V156.367Z"
fill="white"
fillOpacity="0.25"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M110.553 231.367L153.241 206.733L195.929 231.367V280.633L153.241 305.267L110.553 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M153.875 156.367L196.563 131.733L239.251 156.367V205.633L196.563 230.267L153.875 205.633V156.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M197.195 231.367L239.884 206.733L282.572 231.367V280.633L239.884 305.267L197.195 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.517 306.367L283.205 281.733L325.893 306.367V355.633L283.205 380.267L240.517 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M283.839 231.367L326.527 206.733L369.215 231.367V280.633L326.527 305.267L283.839 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M-62.7322 231.367L-20.0442 206.733L22.6438 231.367V280.633L-20.0442 305.267L-62.7322 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M-19.4139 306.367L23.2741 281.733L65.9621 306.367V355.633L23.2741 380.267L-19.4139 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M23.9103 231.367L66.5983 206.733L109.286 231.367V280.633L66.5983 305.267L23.9103 280.633V231.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M67.2306 306.367L109.919 281.733L152.607 306.367V355.633L109.919 380.267L67.2306 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M110.553 381.367L153.241 356.733L195.929 381.367V430.633L153.241 455.267L110.553 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M153.875 306.367L196.563 281.733L239.251 306.367V355.633L196.563 380.267L153.875 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.161 306.367L369.849 281.733L412.537 306.367V355.633L369.849 380.267L327.161 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M370.484 381.367L413.172 356.733L455.86 381.367V430.633L413.172 455.267L370.484 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M413.803 306.367L456.491 281.733L499.179 306.367V355.633L456.491 380.267L413.803 355.633V306.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M457.126 381.367L499.814 356.733L542.502 381.367V430.633L499.814 455.267L457.126 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M500.448 456.367L543.136 431.733L585.824 456.367V505.633L543.136 530.267L500.448 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M543.768 381.367L586.456 356.733L629.144 381.367V430.633L586.456 455.267L543.768 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M197.195 381.367L239.884 356.733L282.572 381.367V430.633L239.884 455.267L197.195 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.517 456.367L283.205 431.733L325.893 456.367V505.633L283.205 530.267L240.517 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M283.839 381.367L326.527 356.733L369.215 381.367V430.633L326.527 455.267L283.839 430.633V381.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.161 456.367L369.849 431.733L412.537 456.367V505.633L369.849 530.267L327.161 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M370.484 531.367L413.172 506.733L455.86 531.367V580.633L413.172 605.267L370.484 580.633V531.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
<path
d="M413.803 456.367L456.491 431.733L499.179 456.367V505.633L456.491 530.267L413.803 505.633V456.367Z"
stroke="rgba(255, 255, 255, 1.0)"
strokeWidth="1.0"
/>
</g>
<g mask="url(#mask0_91_8)">
<path
d="M717.133 231.367L759.799 206.733L802.465 231.367V280.633L759.799 305.267L717.133 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.432 306.367L803.099 281.733L845.765 306.367V355.633L803.099 380.267L760.432 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.732 231.367L846.398 206.733L889.065 231.367V280.633L846.398 305.267L803.732 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.032 306.367L889.698 281.733L932.365 306.367V355.633L889.698 380.267L847.032 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.332 381.367L932.998 356.733L975.664 381.367V430.633L932.998 455.267L890.332 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.632 306.367L976.298 281.733L1018.96 306.367V355.633L976.298 380.267L933.632 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.233 306.367L629.899 281.733L672.566 306.367V355.633L629.899 380.267L587.233 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.533 381.367L673.199 356.733L715.865 381.367V430.633L673.199 455.267L630.533 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.833 306.367L716.499 281.733L759.165 306.367V355.633L716.499 380.267L673.833 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M717.133 381.367L759.799 356.733L802.465 381.367V430.633L759.799 455.267L717.133 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M760.432 456.367L803.099 431.733L845.765 456.367V505.633L803.099 530.267L760.432 505.633V456.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M803.732 381.367L846.398 356.733L889.065 381.367V430.633L846.398 455.267L803.732 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 381.367L1019.6 356.733L1062.26 381.367V430.633L1019.6 455.267L976.931 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 456.367L1062.9 431.733L1105.56 456.367V505.633L1062.9 530.267L1020.23 505.633V456.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 381.367L1106.2 356.733L1148.86 381.367V430.633L1106.2 455.267L1063.53 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1106.83 456.367L1149.5 431.733L1192.16 456.367V505.633L1149.5 530.267L1106.83 505.633V456.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1150.13 531.367L1192.8 506.733L1235.46 531.367V580.633L1192.8 605.267L1150.13 580.633V531.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1193.43 456.367L1236.1 431.733L1278.76 456.367V505.633L1236.1 530.267L1193.43 505.633V456.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.032 456.367L889.698 431.733L932.365 456.367V505.633L889.698 530.267L847.032 505.633V456.367Z"
fill="white"
fillOpacity="0.25"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.332 531.367L932.998 506.733L975.664 531.367V580.633L932.998 605.267L890.332 580.633V531.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.632 456.367L976.298 431.733L1018.96 456.367V505.633L976.298 530.267L933.632 505.633V456.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 531.367L1019.6 506.733L1062.26 531.367V580.633L1019.6 605.267L976.931 580.633V531.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 606.367L1062.9 581.733L1105.56 606.367V655.633L1062.9 680.267L1020.23 655.633V606.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 531.367L1106.2 506.733L1148.86 531.367V580.633L1106.2 605.267L1063.53 580.633V531.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 81.3666L1019.6 56.7332L1062.26 81.3666V130.633L1019.6 155.267L976.931 130.633V81.3666Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 156.367L1062.9 131.733L1105.56 156.367V205.633L1062.9 230.267L1020.23 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 81.3666L1106.2 56.7332L1148.86 81.3666V130.633L1106.2 155.267L1063.53 130.633V81.3666Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1106.83 156.367L1149.5 131.733L1192.16 156.367V205.633L1149.5 230.267L1106.83 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1150.13 231.367L1192.8 206.733L1235.46 231.367V280.633L1192.8 305.267L1150.13 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1193.43 156.367L1236.1 131.733L1278.76 156.367V205.633L1236.1 230.267L1193.43 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M847.032 156.367L889.698 131.733L932.365 156.367V205.633L889.698 230.267L847.032 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M890.332 231.367L932.998 206.733L975.664 231.367V280.633L932.998 305.267L890.332 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M933.632 156.367L976.298 131.733L1018.96 156.367V205.633L976.298 230.267L933.632 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M976.931 231.367L1019.6 206.733L1062.26 231.367V280.633L1019.6 305.267L976.931 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1020.23 306.367L1062.9 281.733L1105.56 306.367V355.633L1062.9 380.267L1020.23 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1063.53 231.367L1106.2 206.733L1148.86 231.367V280.633L1106.2 305.267L1063.53 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1106.83 306.367L1149.5 281.733L1192.16 306.367V355.633L1149.5 380.267L1106.83 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1150.13 381.367L1192.8 356.733L1235.46 381.367V430.633L1192.8 455.267L1150.13 430.633V381.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M1193.43 306.367L1236.1 281.733L1278.76 306.367V355.633L1236.1 380.267L1193.43 355.633V306.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.523 6.36671L283.211 -18.2669L325.899 6.36671V55.6333L283.211 80.2669L240.523 55.6333V6.36671Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.167 6.36671L369.855 -18.2669L412.543 6.36671V55.6333L369.855 80.2669L327.167 55.6333V6.36671Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M370.486 81.3667L413.174 56.7331L455.862 81.3667V130.633L413.174 155.267L370.486 130.633V81.3667Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M413.81 6.36671L456.498 -18.2669L499.186 6.36671V55.6333L456.498 80.2669L413.81 55.6333V6.36671Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M67.2365 6.36671L109.925 -18.2669L152.613 6.36671V55.6333L109.925 80.2669L67.2365 55.6333V6.36671Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M110.558 81.3667L153.246 56.7331L195.934 81.3667V130.633L153.246 155.267L110.558 130.633V81.3667Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M153.88 6.36671L196.568 -18.2669L239.256 6.36671V55.6333L196.568 80.2669L153.88 55.6333V6.36671Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M197.201 81.3667L239.889 56.7331L282.577 81.3667V130.633L239.889 155.267L197.201 130.633V81.3667Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M240.523 156.367L283.211 131.733L325.899 156.367V205.633L283.211 230.267L240.523 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M283.845 81.3667L326.533 56.7331L369.221 81.3667V130.633L326.533 155.267L283.845 130.633V81.3667Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M457.13 81.3667L499.818 56.7331L542.506 81.3667V130.633L499.818 155.267L457.13 130.633V81.3667Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M500.452 156.367L543.14 131.733L585.828 156.367V205.633L543.14 230.267L500.452 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M543.775 81.3667L586.463 56.7331L629.151 81.3667V130.633L586.463 155.267L543.775 130.633V81.3667Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M587.095 156.367L629.783 131.733L672.471 156.367V205.633L629.783 230.267L587.095 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M630.416 231.367L673.104 206.733L715.792 231.367V280.633L673.104 305.267L630.416 280.633V231.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M673.738 156.367L716.426 131.733L759.114 156.367V205.633L716.426 230.267L673.738 205.633V156.367Z"
stroke="rgba(0, 0, 0, 1.0)"
strokeWidth="1.0"
/>
<path
d="M327.167 156.367L369.855 131.733L412.543 156.367V205.633L369.855 230.267L327.167 205.633V156.367Z"