-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheat_sheet.html
1076 lines (1050 loc) · 68.3 KB
/
cheat_sheet.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>Mosaic UI and Key Functions Cheat Sheet</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
font-size: 11px;
line-height: 1.3;
}
h1 {
font-size: 18px;
margin: 15px 0;
text-align: center;
}
h2 {
font-size: 13px;
margin: 10px 0 5px 0;
color: #444;
border-bottom: 1px solid #eee;
padding-bottom: 3px;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 15px;
}
.section {
border: 1px solid #ddd;
padding: 8px;
border-radius: 4px;
}
.command {
display: flex;
align-items: center;
margin-bottom: 6px;
}
.command img {
margin-right: 8px;
flex-shrink: 0;
width: 80px;
}
.command-text {
flex: 1;
min-width: 0;
}
.merge-modes, .locks {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 5px;
font-size: 10px;
margin-top: 8px;
}
.merge-mode, .lock {
padding: 3px;
background: #f5f5f5;
border-radius: 2px;
}
.logo {
text-align: center;
margin-bottom: 15px;
background: #1f232b;
padding: 20px;
border-radius: 4px;
}
.logo svg {
height: auto;
width: 180px;
}
.footer {
text-align: center;
font-size: 9px;
color: #666;
margin-top: 10px;
border-top: 1px solid #eee;
padding-top: 5px;
}
.masks-section {
grid-column: span 2;
margin-top: 15px;
}
.masks-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-top: 10px;
}
.mask-type {
background: #f5f5f5;
padding: 4px 8px;
border-radius: 3px;
margin-bottom: 5px;
}
ul {
margin: 5px 0;
padding-left: 20px;
}
li {
margin-bottom: 3px;
}
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 1000;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: white;
padding: 20px;
border-radius: 8px;
max-width: 90%;
max-height: 90%;
position: relative;
}
.modal-content svg {
width: auto;
height: auto;
max-width: 100%;
max-height: 80vh;
}
.close-button {
position: absolute;
top: 10px;
right: 10px;
background: #1f232b;
color: white;
border: none;
padding: 5px 10px;
border-radius: 4px;
cursor: pointer;
}
.command img {
cursor: pointer;
transition: transform 0.2s;
}
.command img:hover {
transform: scale(1.05);
}
</style>
</head>
<body>
<div id="imageModal" class="modal">
<div class="modal-content">
<button class="close-button">X</button>
<div id="modalImage"></div>
</div>
</div>
<div class="logo">
<svg viewBox="0 0 707.08154 569.32043" width="200">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="707.08154"
height="569.32043"
version="1.1"
id="svg279"
sodipodi:docname="logo.svg"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview281"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
showguides="true"
inkscape:zoom="1.7073129"
inkscape:cx="131.78603"
inkscape:cy="268.25779"
inkscape:window-width="3440"
inkscape:window-height="1369"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg279">
<sodipodi:guide
position="-429.91533,518.36317"
orientation="0,-1"
id="guide1058"
inkscape:locked="false" />
<sodipodi:guide
position="-377.78663,569.32044"
orientation="0,-1"
id="guide1060"
inkscape:locked="false" />
<sodipodi:guide
position="661.27303,232.5339"
orientation="1,0"
id="guide1062"
inkscape:locked="false" />
<sodipodi:guide
position="52.128698,270.60543"
orientation="1,0"
id="guide1064"
inkscape:locked="false" />
</sodipodi:namedview>
<path
d="m 0,0 h 706.31 c 0.37975,0.661178 0.52778,1.112453 0.56317,1.873206 0.2596,5.59312 0.0418,11.296785 0.0418,16.90164 l 0.002,32.387395 0.005,98.865789 -0.003,302.3707 -0.004,82.9087 -0.002,22.88886 c 0,3.13122 0.43659,6.88833 -0.0954,9.93011 -0.0794,0.45738 -0.28105,0.79748 -0.5074,1.19404 H 1.7e-4 Z"
fill="#1f232b"
stroke-width="1.06946"
id="path2" />
<defs
id="defs11">
<linearGradient
id="gradient_0"
x1="79.061996"
x2="79.205002"
y1="144.73"
y2="152.5"
gradientTransform="rotate(90,220.2321,206.59576)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#536069"
offset="0"
id="stop6" />
<stop
stop-color="#7F888A"
offset="1"
id="stop8" />
</linearGradient>
</defs>
<defs
id="defs22">
<linearGradient
id="gradient_1"
x1="79.582001"
x2="79.774002"
y1="138.27"
y2="143.27"
gradientTransform="rotate(90,220.2321,206.59576)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#263243"
offset="0"
id="stop17" />
<stop
stop-color="#42525E"
offset="1"
id="stop19" />
</linearGradient>
</defs>
<defs
id="defs143">
<linearGradient
id="gradient_2"
x1="465.89001"
x2="468.20001"
y1="126.55"
y2="97.037003"
gradientTransform="rotate(90,336.49667,91.502618)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#D0D3D3"
offset="0"
id="stop138" />
<stop
stop-color="#F6F6F3"
offset="1"
id="stop140" />
</linearGradient>
</defs>
<defs
id="defs168">
<linearGradient
id="gradient_3"
x1="349.85001"
x2="351.64999"
y1="182.81"
y2="250.49001"
gradientTransform="rotate(90,410.00399,397.53908)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#6B767B"
offset="0"
id="stop163" />
<stop
stop-color="#97A2A5"
offset="1"
id="stop165" />
</linearGradient>
</defs>
<defs
id="defs185">
<linearGradient
id="gradient_4"
x1="465.87"
x2="467.87"
y1="268.57999"
y2="315.42001"
gradientTransform="rotate(90,336.49667,91.502618)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#999E9F"
offset="0"
id="stop180" />
<stop
stop-color="#D4D8D8"
offset="1"
id="stop182" />
</linearGradient>
</defs>
<defs
id="defs196">
<linearGradient
id="gradient_5"
x1="75.666"
x2="83.019997"
y1="377.48001"
y2="305.94"
gradientTransform="rotate(90,454.51838,440.29632)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#B2B8B9"
offset="0"
id="stop191" />
<stop
stop-color="#D6D9D8"
offset="1"
id="stop193" />
</linearGradient>
</defs>
<defs
id="defs217">
<linearGradient
id="gradient_6"
x1="179.87"
x2="210.36"
y1="193.53"
y2="97.350998"
gradientTransform="rotate(90,-109.8187,-141.61223)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#C5C6C4"
offset="0"
id="stop212" />
<stop
stop-color="#F2F2F0"
offset="1"
id="stop214" />
</linearGradient>
</defs>
<path
d="m 534.21,411.16564 4.677,-0.208 c 0.188,17.593 -0.31,35.186 -0.129,52.772 l 0.145,36.072 c -0.014,7.104 0.169,14.309 -0.333,21.396 -5.006,-0.884 -10.126,-0.832 -15.194,-0.922 l -4.655,-0.267 c -0.308,-14.711 0.16,-29.346 0.262,-44.051 l 0.011,-64.633 q 7.609,0.031 15.216,-0.159 z"
fill="#f6f7f3"
id="path221" />
<defs
id="defs244">
<linearGradient
id="gradient_7"
x1="500.85001"
x2="430.54999"
y1="208.92"
y2="167.39999"
gradientTransform="rotate(90,336.49667,91.502618)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#889A9D"
offset="0"
id="stop239" />
<stop
stop-color="#B0B0B0"
offset="1"
id="stop241" />
</linearGradient>
</defs>
<defs
id="defs253">
<linearGradient
id="gradient_8"
x1="597.13"
x2="565"
y1="131.14"
y2="250.55"
gradientTransform="rotate(90,336.49667,91.502618)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#C2C6C7"
offset="0"
id="stop248" />
<stop
stop-color="#FFFFF9"
offset="1"
id="stop250" />
</linearGradient>
</defs>
<path
d="m 241.71286,93.784656 c 0.958,0.985 2.531,2.17 3.029,3.45 1.253,3.221004 1.668,13.529004 0.44901,16.712004 -0.809,0.746 -1.246,0.692 -2.312,0.868 1.13,-5.092 -0.087,-15.919004 -1.166,-21.030004 z"
fill="#49545e"
id="path4" />
<path
d="m 289.03286,56.689659 c 0.52699,6.3466 0.772,12.823997 0.31,19.179997 -2.255,-0.1124 -4.522,-0.2848 -6.778,-0.3317 l -1.857,0.01 c -4.758,0.4971 -9.121,1.2646 -13.931,1.1219 0.118,-0.0959 0.231,-0.1994 0.356,-0.2877 1.416,-1.0048 7.329,0.2961 7.621,-1.1306 0.602,-2.9416 -0.654,-7.1048 -0.801,-10.149997 -0.132,-2.7286 0.497,-6.1134 -0.116,-8.7318 -2.314,-0.0373 -5.105,0.1713 -7.324,-0.4889 4.246,-0.2584 8.46,-0.4372 12.704,-0.0377 2.969,0.045 6.988,1.3558 9.816,0.8473 z"
fill="url(#gradient_0)"
id="path13"
style="fill:url(#gradient_0)" />
<path
d="m 281.70286,57.872659 0.574,0.3767 c 1.879,5.2748 1.039,11.853997 0.296,17.288997 l -1.857,0.01 c 0.426,-0.178 0.651,-0.2968 0.98,-0.6376 1.962,-2.0323 0.135,-14.020997 0.007,-17.037997 z"
fill="#49545e"
id="path15" />
<path
d="m 289.03286,56.689659 c 0.52699,6.3466 0.772,12.823997 0.31,19.179997 -2.255,-0.1124 -4.522,-0.2848 -6.778,-0.3317 0.743,-5.4355 1.583,-12.013997 -0.296,-17.288997 l -0.574,-0.3767 -0.364,0.6556 c -0.055,-0.1198 -0.108,-0.2404 -0.164,-0.3595 -0.517,-1.0969 -0.87,-1.6828 -1.95,-2.3259 2.969,0.045 6.988,1.3558 9.816,0.8473 z"
fill="url(#gradient_1)"
id="path24"
style="fill:url(#gradient_1)" />
<path
d="m 661.74807,325.66609 c 0.149,8.16 0.247,16.745 -0.636,24.854 -6.443,0.042 -12.91,-0.255 -19.358,-0.301 1.292,-8.03 1.232,-15.971 0.74199,-24.065 6.42,-0.014 12.849,0.044 19.252,-0.488 z"
fill="#88969a"
id="path26" />
<path
d="m 662.60807,361.90609 c -0.125,9.838 0.045,19.823 -0.815,29.624 q -8.921,-0.17 -17.832,-0.636 c -0.113,-4.611 0.30099,-9.317 0.425,-13.935 0.13,-4.861 -0.054,-9.678 -0.33,-14.531 q 9.285,0.042 18.552,-0.522 z"
fill="#f6f7f3"
id="path28" />
<path
d="m 625.33877,145.77876 c -0.1078,2.758 -0.7003,5.039 -2.3893,7.27 -2.3615,3.12 -6.2603,5.138 -10.106,5.62 q -0.6868,0.08 -1.3781,0.092 -0.6913,0.011 -1.3804,-0.045 -0.689,-0.057 -1.3691,-0.182 -0.6801,-0.125 -1.3445,-0.316 -0.6645,-0.191 -1.3067,-0.447 -0.6423,-0.256 -1.2561,-0.575 -0.6138,-0.318 -1.1931,-0.696 -0.5793,-0.377 -1.1185,-0.81 c -3.0798,-2.467 -3.9425,-5.253 -4.3603,-9.062 0.0445,-3.092 0.6468,-5.862 2.5252,-8.386 1.9398,-2.607 4.7419,-4.323 7.9602,-4.795 q 0.7418,-0.114 1.4912,-0.154 0.7495,-0.04 1.4992,-0.005 0.7497,0.036 1.4921,0.146 0.7425,0.11 1.4702,0.293 0.7277,0.184 1.4335,0.439 0.7058,0.256 1.3825,0.58 0.6767,0.325 1.3176,0.716 0.641,0.39 1.2397,0.843 c 3.1642,2.43 4.8534,5.556 5.3911,9.474 z"
fill="#717d83"
id="path30" />
<path
d="m 581.97807,256.03609 c 0.091,2.616 0.174,5.202 -0.62101,7.729 q -0.204,0.641 -0.47,1.258 -0.26699,0.617 -0.59299,1.205 -0.327,0.588 -0.71,1.14 -0.38301,0.552 -0.82,1.064 -0.436,0.511 -0.921,0.977 -0.485,0.465 -1.014,0.88 -0.529,0.415 -1.096,0.776 -0.56801,0.36 -1.168,0.662 c -2.879,1.448 -6.035,1.472 -9.039,0.414 -4.458,-1.571 -7.426,-5.007 -9.459,-9.154 -0.647,-2.871 -0.629,-5.639 0.538,-8.387 1.478,-3.48 4.505,-6.175 8.013,-7.514 3.156,-1.204 6.585,-1.146 9.661,0.279 3.738,1.732 6.318,4.835 7.699,8.671 z"
id="path32"
style="fill:#a9b4b6" />
<path
d="m 580.84807,284.83609 c -0.97301,9.642 -0.85401,19.201 -0.682,28.875 -6.794,-0.199 -13.46,-0.352 -20.249,0.152 1.122,-9.949 1.563,-19.425 1.142,-29.446 6.613,0.118 13.167,0.559 19.789,0.419 z"
id="path34"
style="fill:#a9b4b6" />
<path
d="m 371.04886,141.37466 c -0.1989,3.23 -0.808,6.725 -3.1025,9.182 -2.516,2.693 -6.1278,2.937 -9.5713,2.982 -4.0847,0.055 -8.6164,0.108 -11.683,-3.057 -2.5425,-2.624 -2.922,-5.956 -2.8207,-9.414 0.4607,-2.619 1.4586,-5.105 3.0916,-7.215 q 0.4356,-0.571 0.9261,-1.096 0.4906,-0.524 1.0312,-0.997 0.5406,-0.473 1.1258,-0.89 0.5852,-0.416 1.2092,-0.772 0.6239,-0.355 1.2803,-0.647 0.6564,-0.291 1.3387,-0.515 0.6823,-0.225 1.3836,-0.379 0.7012,-0.155 1.4145,-0.239 c 3.416,-0.373 6.6599,0.859 9.2811,3.007 3.2935,2.698 4.6709,5.892 5.0956,10.05 z"
id="path36"
style="fill:#a9b4b6" />
<path
d="m 541.48807,297.25609 c 0.203,3.133 -0.245,5.825 -2.01,8.476 -1.934,2.907 -4.996,5.156 -8.452,5.817 -3.664,0.702 -8.27,0.007 -11.364,-2.147 -3.275,-2.281 -4.709,-5.545 -5.393,-9.356 -0.121,-2.243 0.465,-4.405 1.449,-6.407 1.667,-3.391 4.782,-6.347 8.406,-7.526 3.147,-1.024 6.658,-0.607 9.573,0.918 4.089,2.14 6.456,5.933 7.791,10.225 z"
fill="#717d83"
id="path40" />
<path
d="m 77.204288,373.07696 c 0.317,3.307 -0.82101,6.464 -2.881,9.029 -2.339,2.915 -6.015,5.32 -9.795,5.67 -3.536,0.328 -7.007,-1.094 -9.666,-3.372 -2.796,-2.395 -4.665,-5.724 -4.924,-9.413 -0.185,-2.054 0.859,-4.782 1.78,-6.598 1.645,-3.24 4.454,-5.747 7.923,-6.867 3.234,-1.043 6.526,-0.718 9.533,0.846 4.396,2.288 6.595,6.125 8.03,10.705 z"
fill="#88969a"
id="path42" />
<path
d="m 77.594288,259.67696 c 0.13,2.406 -0.572,4.423 -1.779,6.469 -1.991,3.374 -5.495,6.269 -9.345,7.18 -3.556,0.842 -7.372,-0.099 -10.438,-1.989 -3.675,-2.265 -5.439,-5.316 -6.447,-9.434 -0.182,-2.802 0.233,-5.042 1.681,-7.483 q 0.36,-0.61 0.78,-1.18 0.42,-0.57 0.895,-1.095 0.475,-0.525 1.001,-1 0.525,-0.474 1.096,-0.893 0.571,-0.419 1.181,-0.778 0.61,-0.359 1.254,-0.655 0.643,-0.296 1.313,-0.525 0.669,-0.229 1.359,-0.39 c 3.661,-0.86 7.755,-0.455 10.965,1.587 3.737,2.377 5.556,5.979 6.484,10.186 z"
fill="#a9b4b6"
id="path44" />
<path
d="m 76.442857,101.33466 c 0.219,2.752 -0.22001,5.008 -1.666,7.374 -2.072,3.392 -6.029,6.534 -9.962,7.355 -3.631,0.759 -8.256,-0.408 -11.264,-2.542 -2.999,-2.128 -4.394,-5.163 -5.015,-8.693 -0.047,-2.313 0.372,-4.187 1.369,-6.257004 1.873,-3.884 5.444,-7.088 9.537,-8.468 2.906,-0.979 5.78,-0.763 8.505,0.622 4.344,2.208 6.994,6.085 8.496,10.609004 z"
fill="#88969a"
id="path46" />
<path
d="m 243.35286,141.10466 c -0.07,3.555 -0.913,6.492 -3.125,9.311 -2.215,2.823 -5.345,5.002 -8.968,5.426 -3.634,0.426 -7.625,-1.047 -10.451,-3.282 -2.811,-2.224 -4.589,-4.982 -4.975,-8.563 0.203,-3.058 0.532,-5.704 2.211,-8.339 2.008,-3.151 5.568,-5.771 9.259,-6.505 3.406,-0.676 7.067,0.336 9.9,2.269 3.394,2.315 5.425,5.681 6.149,9.683 z"
fill="#a9b4b6"
id="path48" />
<path
d="m 331.33429,323.04696 c 0.47361,9.652 0.3133,19.6 -0.1075,29.252 -1.8167,0.855 -14.688,0.252 -17.288,-0.186 -0.613,-0.766 -0.481,-1.92 -0.5,-2.866 -0.689,-9.487 -0.21599,-19.348 -0.30099,-28.887 2.73,1.662 13.797,0.12 17.596,0.528 0.6057,0.644 0.5025,1.296 0.6006,2.159 z"
fill="#f6f7f3"
id="path50" />
<path
d="m 77.264288,181.29696 c 0.15199,2.695 -0.28,4.999 -1.642,7.327 -1.798,3.074 -5.001,5.462 -8.442,6.36 -3.585,0.935 -7.54,0.107 -10.692,-1.758 -3.692,-2.184 -6.112,-5.427 -7.144,-9.562 0.045,-2.903 0.457,-5.14 1.99,-7.653 q 0.38201,-0.632 0.825,-1.222 0.442,-0.591 0.941,-1.135 0.499,-0.544 1.05,-1.036 0.55,-0.492 1.147,-0.927 0.596,-0.434 1.233,-0.808 0.636,-0.373 1.307,-0.682 0.67,-0.309 1.368,-0.549 0.698,-0.241 1.416,-0.411 c 3.481,-0.832 6.88,-0.429 9.933,1.518 3.847,2.454 5.774,6.191 6.71,10.538 z"
fill="#88969a"
id="path52" />
<path
d="m 162.12429,372.89696 c 0.011,0.084 0.023,0.168 0.033,0.253 0.412,3.494 -0.444,6.992 -2.686,9.738 -2.495,3.056 -6.313,4.981 -10.231,5.317 q -0.677,0.064 -1.356,0.059 -0.68,-0.005 -1.355,-0.078 -0.676,-0.073 -1.34,-0.214 -0.665,-0.141 -1.312,-0.348 -0.64801,-0.207 -1.271,-0.479 -0.623,-0.271 -1.215,-0.604 -0.593,-0.332 -1.149,-0.723 -0.556,-0.39 -1.07,-0.835 c -2.729,-2.396 -3.799,-5.311 -4.041,-8.864 -0.418,-2.189 0.078,-5.713 1.082,-7.752 1.353,-2.747 3.687,-4.607 6.533,-5.618 3.762,-1.336 8.849,-1.245 12.458,0.532 3.989,1.964 5.648,5.598 6.92,9.616 z"
fill="#f6f7f3"
id="path58" />
<path
d="m 414.43729,220.50696 c 0.1148,2.431 -0.242,4.462 -1.304,6.641 q -0.3432,0.689 -0.7518,1.341 -0.4085,0.652 -0.8785,1.261 -0.47,0.609 -0.9971,1.17 -0.527,0.56 -1.1061,1.067 -0.579,0.506 -1.2046,0.954 -0.6255,0.448 -1.2917,0.833 -0.6661,0.385 -1.3665,0.703 -0.7005,0.318 -1.4285,0.567 c -3.2436,1.074 -6.6122,0.804 -9.6419,-0.781 -4.1552,-2.173 -6.3411,-5.8 -7.6871,-10.156 -0.4812,-2.824 -0.0436,-5.493 1.3335,-8.006 1.7973,-3.28 4.9906,-5.734 8.5795,-6.747 3.5467,-1.001 7.2493,-0.426 10.447,1.372 3.9058,2.198 6.1367,5.52 7.2979,9.781 z"
fill="#a9b4b6"
id="path60" />
<path
d="m 158.58429,347.14696 c 0.091,1.09 0.152,2.119 0.053,3.21 -3.669,-0.039 -18.667,0.669 -20.959,-0.63 0.565,-8.356 0.483,-16.578 0.16699,-24.935 -0.052,-0.775 -0.016,-1.548 0.002,-2.324 1.423,-1.74 17.186,1.101 20.565,-0.745 0.085,8.419 -0.54,17.037 0.17201,25.424 z"
fill="#88969a"
id="path62" />
<path
d="m 622.39177,91.728756 c -0.1122,9.663004 0.3374,19.449004 -0.1537,29.086004 -6.5691,0.209 -13.15,0.488 -19.722,0.359 -0.5868,-9.816 0.2934,-19.788 -0.0669,-29.651004 q 9.9646,0.757 19.943,0.206 z"
fill="#f6f7f3"
id="path64" />
<path
d="m 328.60286,138.07466 c 0.3478,3.785 0.5698,8.844 -1.5657,12.192 -1.137,1.783 -2.887,2.787 -4.927,3.212 -3.818,0.797 -13.558,0.872 -16.852,-1.444 -2.557,-1.798 -3.174,-4.568 -3.715,-7.441 -0.337,-3.534 -0.081,-6.837 1.805,-9.936 1.628,-2.674 4.221,-4.749 7.3,-5.467 4.082,-0.952 10.129,0.117 13.655,2.376 2.606,1.67 3.6147,3.61 4.2997,6.508 z"
fill="#a9b4b6"
id="path66" />
<path
d="m 538.13807,207.14609 c -0.36099,3.86 -0.24299,7.855 -0.43099,11.737 -0.245,5.047 -0.745,10.094 -1.117,15.134 -6.242,-0.033 -14.558,1.164 -20.484,0.278 q -0.083,-13.792 0.358,-27.577 c 6.787,0.257 15.288,-0.247 21.674,0.428 z"
fill="#f6f7f3"
id="path68" />
<path
d="m 118.84286,98.004656 c 0.367,3.638004 0.354,7.586004 -1.05,11.022004 -1.261,3.088 -3.747,5.359 -6.804,6.625 -3.471,1.436 -7.842,1.673 -11.341003,0.205 -3.511,-1.473 -5.161,-4.031 -6.515,-7.423 -0.79701,-3.544 -1.224,-7.357 0.23099,-10.800004 1.212,-2.87 3.386,-5.194 6.304,-6.363 5.387003,-2.158 12.889003,-0.343 18.016003,1.768 0.59,1.599 0.84301,3.298 1.159,4.966 z"
fill="#f6f7f3"
id="path70" />
<path
d="m 499.56807,337.08609 c 0.125,3.139 -0.637,6.032 -2.515,8.572 -2.191,2.963 -5.671,5.204 -9.34,5.726 -3.646,0.519 -7.438,-0.651 -10.341,-2.87 -3.35,-2.56 -5.052,-5.908 -5.584,-10.031 0.172,-3.092 0.985,-5.942 2.828,-8.474 2.129,-2.925 5.39,-5.08 8.994,-5.613 3.645,-0.538 7.413,0.669 10.337,2.844 3.375,2.51 5.043,5.742 5.621,9.846 z"
fill="#a9b4b6"
id="path72" />
<path
d="m 499.25807,257.55609 c 0.385,3.412 0.262,6.299 -1.717,9.276 -2.142,3.224 -5.847,5.627 -9.648,6.325 -3.569,0.656 -7.223,-0.227 -10.199,-2.277 -3.431,-2.363 -5.46,-5.596 -6.205,-9.661 -0.125,-2.451 0.536,-4.661 1.591,-6.854 1.713,-3.561 4.643,-6.681 8.462,-7.937 3.254,-1.07 6.546,-0.472 9.532,1.058 4.281,2.191 6.718,5.583 8.184,10.07 z"
fill="#88969a"
id="path74" />
<path
d="m 457.50807,336.60609 c 0.103,2.155 -0.034,3.959 -0.921,5.956 -1.698,3.819 -5.015,6.995 -8.949,8.44 -3.195,1.174 -6.484,0.965 -9.546,-0.51 -4.619,-2.224 -7.523,-6.306 -9.172,-11.044 -0.304,-2.648 0.401,-5.062 1.734,-7.333 2.103,-3.582 5.893,-6.381 9.926,-7.362 3.3,-0.803 6.454,-0.131 9.312,1.611 3.858,2.353 6.528,5.865 7.616,10.242 z"
id="path76"
style="fill:#a9b4b6" />
<path
d="m 119.75429,181.58696 c 0.156,2.845 -0.486,5.495 -2.025,7.895 -2.125,3.315 -5.845,5.949 -9.717,6.725 -3.655,0.732 -7.796,-0.247 -10.849002,-2.354 -3.447,-2.379 -4.708,-5.646 -5.414,-9.633 -0.158,-2.983 0.451,-5.492 2.002,-8.055 2.052,-3.392 5.423,-5.998 9.299002,-6.922 3.253,-0.776 6.386,-0.124 9.177,1.646 q 0.705,0.455 1.363,0.975 0.658,0.52 1.262,1.101 0.605,0.581 1.151,1.217 0.547,0.637 1.029,1.323 0.483,0.685 0.898,1.415 0.414,0.729 0.757,1.494 0.342,0.766 0.61,1.561 0.267,0.795 0.45699,1.612 z"
id="path78"
style="fill:#a9b4b6" />
<path
d="m 371.95429,181.03696 c 0.2629,3.244 -0.439,6.28 -2.4129,8.895 -2.3813,3.155 -6.1906,5.181 -10.077,5.704 -3.7859,0.509 -7.6818,-0.264 -10.718,-2.658 -3.0701,-2.42 -4.2599,-5.404 -4.6947,-9.207 0.1571,-3.032 0.6722,-5.678 2.293,-8.294 q 0.3861,-0.626 0.832,-1.21 0.446,-0.584 0.9474,-1.122 0.5014,-0.537 1.0534,-1.023 0.552,-0.485 1.1492,-0.913 0.5972,-0.429 1.2337,-0.796 0.6366,-0.368 1.3063,-0.67 0.6697,-0.303 1.366,-0.538 0.6963,-0.236 1.4124,-0.401 c 3.4412,-0.761 6.8707,-0.035 9.7908,1.913 3.7503,2.503 5.6506,5.991 6.518,10.32 z"
id="path80"
style="fill:#a9b4b6" />
<path
d="m 413.58986,140.13466 c 0.096,2.744 -0.3279,4.969 -1.7756,7.334 -2.1767,3.558 -6.3152,6.743 -10.417,7.642 -3.5567,0.778 -7.4625,-0.322 -10.462,-2.286 -3.1048,-2.033 -5.2688,-5.093 -6.0257,-8.725 0.031,-2.788 0.3542,-5.001 1.6894,-7.49 1.9325,-3.604 5.5835,-7.035 9.5599,-8.2 3.3454,-0.98 6.8785,-0.25 9.8611,1.443 4.0425,2.296 6.3719,5.875 7.5705,10.282 z"
fill="#88969a"
id="path84" />
<path
d="m 245.16429,182.78696 c -0.179,3.194 -1.551,6.236 -3.65,8.629 -2.422,2.761 -5.649,4.405 -9.321,4.631 -3.964,0.244 -7.979,-0.918 -10.949,-3.605 -3.064,-2.772 -4.169,-5.958 -4.362,-10.016 0.12601,-2.898 0.74501,-5.403 2.484,-7.784 2.295,-3.141 6.047,-5.041 9.848,-5.595 3.55,-0.516 6.951,0.383 9.821,2.535 3.729,2.795 5.518,6.681 6.129,11.205 z"
id="path86"
style="fill:#a9b4b6" />
<path
d="m 77.062857,141.77466 c -0.142,2.651 -1.088,4.961 -2.603,7.125 -2.236,3.196 -5.916,6.206 -9.865,6.801 -3.464,0.522 -7.172,-0.748 -9.909,-2.854 -3.388,-2.607 -5.426,-6.339 -5.957,-10.545 q 0.085,-1.095 0.31,-2.169 0.225,-1.075 0.587,-2.112 0.362,-1.036 0.855,-2.017 0.493,-0.982 1.108,-1.891 c 2.094,-3.056 5.306,-5.531 9.019,-6.164 3.59,-0.613 7.111,0.502 10.011,2.625 3.776,2.763 5.745,6.649 6.444,11.201 z"
id="path88"
style="fill:#a9b4b6" />
<path
d="m 500.81375,62.931318 c 0.269,3.12 0.0629,5.675998 -1.5819,8.412998 -1.9156,3.187 -5.4709,5.562 -9.0658,6.38 -3.7689,0.858 -7.6925,-0.058 -10.911,-2.137 -3.5441,-2.289 -5.1807,-5.327 -6.0748,-9.378998 -0.139,-3.085 0.1353,-5.709 1.6726,-8.452 1.8109,-3.232 5.076,-6.115 8.7141,-7.022 3.4248,-0.854 7.3126,0.037 10.281,1.864 3.9618,2.439 5.8918,5.921 6.9659,10.333 z"
id="path90"
style="fill:#a9b4b6" />
<path
d="m 663.37246,64.373464 c 0.2052,3.1482 -0.5279,5.746402 -2.422,8.276002 -2.4231,3.2362 -6.1361,5.718 -10.189,6.2305 -3.6981,0.4678 -7.6904,-0.8026 -10.612,-3.0766 -2.9835,-2.322 -4.3324,-5.2888 -4.7735,-8.972402 0.0338,-3.0808 0.5671,-5.7125 2.1625,-8.3882 1.9284,-3.2343 5.0954,-5.9857 8.8002,-6.9051 3.3116,-0.8218 6.8016,0.0215 9.6637,1.7787 4.1403,2.542 6.2363,6.4593 7.3704,11.057 z"
id="path92"
style="fill:#a9b4b6" />
<path
d="m 414.00629,371.62696 c 0.4793,3.977 -0.1851,7.339 -2.6115,10.583 -2.3017,3.078 -5.996,5.728 -9.8877,6.171 -3.5718,0.406 -7.5084,-0.967 -10.3,-3.173 -2.8722,-2.269 -4.3644,-5.29 -4.764,-8.883 -0.3974,-2.077 0.0626,-4.632 0.8049,-6.594 q 0.2425,-0.654 0.5494,-1.28 0.3068,-0.626 0.6749,-1.218 0.368,-0.592 0.7935,-1.144 0.4256,-0.553 0.9043,-1.059 0.4787,-0.507 1.0058,-0.964 0.5271,-0.456 1.0973,-0.857 0.5702,-0.401 1.1777,-0.743 0.6075,-0.342 1.2462,-0.621 c 3.3807,-1.45 7.1697,-1.549 10.579,-0.137 4.5609,1.889 6.9241,5.521 8.7305,9.919 z"
id="path94"
style="fill:#a9b4b6" />
<path
d="m 119.21286,142.12466 c 0.137,2.726 -0.356,5.126 -1.918,7.395 -2.242,3.258 -6.401,5.738 -10.28,6.382 -3.597,0.596 -7.423003,-0.451 -10.352003,-2.588 -3.578,-2.612 -4.815,-6.068 -5.466,-10.298 -0.039,-3.153 0.851,-5.778 2.699,-8.323 2.27,-3.127 5.742,-5.658 9.618003,-6.251 3.446,-0.527 6.902,0.54 9.667,2.612 3.754,2.813 5.343,6.553 6.032,11.071 z"
id="path96"
style="fill:#a9b4b6" />
<path
d="m 161.89429,182.33696 c 0.242,2.932 -0.505,5.742 -2.199,8.147 -2.138,3.037 -5.581,5.232 -9.252,5.827 -4.01,0.651 -8.409,-0.688 -11.646,-3.074 -3.427,-2.527 -4.575,-5.635 -5.186,-9.74 -0.049,-2.919 0.928,-5.615 2.561,-8.019 q 0.418,-0.626 0.897,-1.206 0.479,-0.581 1.013,-1.111 0.534,-0.531 1.118,-1.005 0.584,-0.474 1.213,-0.888 0.629,-0.414 1.296,-0.763 0.666,-0.348 1.364,-0.629 0.699,-0.281 1.421,-0.491 0.723,-0.209 1.463,-0.346 c 3.37,-0.59 6.601,0.319 9.371,2.27 3.803,2.678 5.823,6.514 6.566,11.028 z"
id="path98"
style="fill:#a9b4b6" />
<path
d="m 457.16807,180.10609 c 0.293,2.902 0.08,5.387 -1.16,8.063 -1.596,3.442 -4.687,6.527 -8.309,7.77 -3.441,1.181 -7.284,0.431 -10.467,-1.169 -4.087,-2.055 -6.469,-5.408 -7.917,-9.659 -0.505,-2.904 -0.131,-5.588 1.17,-8.237 q 0.315,-0.642 0.692,-1.249 0.377,-0.608 0.812,-1.176 0.435,-0.567 0.924,-1.089 0.489,-0.522 1.026,-0.993 0.538,-0.472 1.12,-0.888 0.581,-0.416 1.201,-0.773 0.619,-0.356 1.271,-0.65 0.652,-0.295 1.329,-0.523 c 3.519,-1.174 7.495,-0.955 10.806,0.747 4.075,2.094 6.145,5.597 7.502,9.826 z"
id="path100"
style="fill:#a9b4b6" />
<path
d="m 542.04807,258.37609 c 0.154,3.512 -0.061,6.495 -2.033,9.502 -1.833,2.796 -4.705,4.924 -8.004,5.594 -3.782,0.768 -8.003,-0.062 -11.212,-2.203 -3.561,-2.375 -5.52,-5.706 -6.369,-9.832 -0.033,-3.452 0.505,-6.692 2.493,-9.592 q 0.39101,-0.572 0.836,-1.102 0.44601,-0.53 0.941,-1.015 0.495,-0.484 1.036,-0.917 0.54,-0.433 1.12,-0.811 0.58,-0.378 1.195,-0.698 0.614,-0.319 1.257,-0.576 0.643,-0.258 1.308,-0.451 0.665,-0.193 1.346,-0.32 c 3.469,-0.621 7.202,0.11 10.091,2.155 3.499,2.478 5.246,6.151 5.995,10.266 z"
id="path104"
style="fill:#f6f7f3" />
<path
d="m 372.50829,370.95696 c 0.6101,4.127 0.167,8.011 -2.2018,11.539 -1.956,2.914 -4.8172,5.046 -8.3012,5.703 -3.9005,0.736 -8.6455,0.026 -11.919,-2.305 -2.6736,-1.904 -4.2024,-4.666 -4.7122,-7.856 -0.4796,-3.025 -0.4038,-6.133 0.6605,-9.036 1.0535,-2.873 3.0272,-5.549 5.8927,-6.803 3.6489,-1.597 9.7678,-1.401 13.408,0.134 3.9274,1.656 5.669,4.863 7.1731,8.624 z"
id="path106"
style="fill:#f6f7f3" />
<path
d="m 119.98429,371.94696 c 0.372,3.664 -0.067,6.881 -2.175,9.998 -2.2,3.251 -5.892,5.54 -9.733,6.261 -3.508,0.66 -7.068,-0.057 -10.003002,-2.106 -3.454,-2.411 -5.191,-6.262 -5.884,-10.312 -0.65801,-2.299 0.161,-5.239 1.188,-7.341 q 0.311,-0.647 0.685,-1.26 0.373,-0.613 0.806,-1.185 0.433,-0.573 0.92,-1.1 0.488,-0.527 1.025,-1.002 0.538,-0.476 1.12,-0.896 0.582,-0.42 1.203,-0.78 0.621,-0.359 1.274002,-0.656 0.654,-0.296 1.334,-0.526 c 3.396,-1.127 7.454,-1.132 10.671,0.552 4.143,2.17 6.203,6.07 7.569,10.353 z"
id="path108"
style="fill:#f6f7f3" />
<path
d="m 665.20807,219.52609 c 0.305,3.121 -0.546,6.004 -2.273,8.6 -2.05,3.083 -5.3,5.792 -9.015,6.477 -3.742,0.689 -7.978,-0.469 -11.05,-2.653 -3.5,-2.487 -5.217,-5.86 -5.918,-10.008 0.34801,-3.12 0.90701,-5.651 2.654,-8.308 2.185,-3.322 5.722,-6.428 9.706,-7.239 3.284,-0.668 6.792,0.342 9.513,2.222 3.805,2.629 5.572,6.475 6.383,10.909 z"
id="path110"
style="fill:#f6f7f3" />
<path
d="m 624.06807,257.82609 c 0.075,3.296 -0.264,6.506 -1.845,9.451 -1.708,3.181 -4.619,5.715 -8.116,6.707 q -0.628,0.182 -1.27,0.301 -0.643,0.119 -1.294,0.175 -0.651,0.056 -1.305,0.047 -0.653,-0.009 -1.303,-0.082 -0.649,-0.073 -1.288,-0.209 -0.639,-0.136 -1.262,-0.335 -0.623,-0.198 -1.223,-0.457 -0.6,-0.259 -1.172,-0.575 c -3.968,-2.225 -6.182,-6.154 -7.417,-10.396 -0.362,-3.65 0.241,-6.862 2.152,-10.014 1.872,-3.089 4.737,-5.468 8.303,-6.276 3.633,-0.822 7.748,0.039 10.851,2.064 3.481,2.271 5.358,5.602 6.189,9.599 z"
id="path112"
style="fill:#f6f7f3" />
<path
d="m 542.06807,336.11609 c 0.121,3.173 -0.143,5.94 -1.853,8.697 -2.179,3.514 -6.371,6.494 -10.396,7.426 -3.184,0.737 -6.485,0.108 -9.244,-1.622 -3.638,-2.281 -5.647,-5.744 -6.568,-9.851 -0.309,-3.367 0.245,-6.661 1.937,-9.612 1.839,-3.208 4.854,-5.825 8.477,-6.753 3.606,-0.924 7.564,-0.153 10.726,1.752 3.769,2.27 5.886,5.771 6.921,9.963 z"
id="path114"
style="fill:#f6f7f3" />
<path
d="m 458.04807,258.82609 c 0.185,3.234 -0.5,5.886 -2.403,8.522 -2.191,3.035 -5.541,5.427 -9.286,5.998 -3.893,0.595 -8.085,-0.678 -11.227,-2.994 -3.635,-2.68 -5.262,-6.054 -5.959,-10.428 0.14299,-2.717 1.202,-5.313 2.656,-7.592 2.217,-3.474 5.527,-6.101 9.619,-6.919 3.483,-0.697 6.931,0.2 9.821,2.215 3.874,2.701 5.965,6.631 6.779,11.198 z"
fill="#a9b4b6"
id="path118" />
<path
d="m 286.44286,142.03466 c 0.173,3.069 -0.46601,5.784 -2.286,8.284 -2.159,2.964 -5.82,5.296 -9.458,5.856 -3.742,0.577 -7.723,-0.958 -10.683,-3.185 -3.602,-2.711 -5.062,-6.016 -5.724,-10.385 0.035,-3.456 1.015,-6.384 3.188,-9.091 2.546,-3.171 6.287,-5.466 10.37,-5.878 3.441,-0.347 6.715,0.784 9.338,3.012 3.561,3.024 4.842,6.863 5.255,11.387 z"
id="path120"
style="fill:#f6f7f3" />
<path
d="m 458.09604,62.427033 c 0.4114,3.256 0.2186,6.445003 -1.3155,9.399003 q -0.3115,0.602 -0.6803,1.172 -0.369,0.569 -0.791,1.1 -0.423,0.53 -0.895,1.017 -0.472,0.487 -0.99,0.925 -0.517,0.439 -1.075,0.825 -0.557,0.386 -1.15,0.715 -0.593,0.33 -1.215,0.6 -0.622,0.271 -1.267,0.479 c -3.691,1.165 -7.78,0.703 -11.195,-1.084 -4.097,-2.143 -6.241,-5.43 -7.589,-9.735 -0.426,-3.212003 -0.186,-6.215003 1.379,-9.101003 1.869,-3.446 5.317,-6.18 9.089,-7.239 3.598,-1.011 7.655,-0.344 10.887,1.482 3.79,2.141 5.6944,5.342 6.8078,9.445 z"
id="path122"
style="fill:#f6f7f3" />
<path
d="m 500.53807,297.29609 c 0.16,3.814 -0.142,6.961 -2.658,10.037 q -0.488,0.586 -1.029,1.122 -0.542,0.536 -1.133,1.017 -0.591,0.481 -1.226,0.903 -0.634,0.422 -1.307,0.781 -0.67201,0.358 -1.376,0.65 -0.704,0.292 -1.433,0.515 -0.728,0.223 -1.475,0.374 -0.747,0.151 -1.505,0.23 c -3.545,0.341 -7.175,-0.424 -9.956,-2.738 -3.204,-2.666 -4.548,-6.338 -4.963,-10.376 -0.112,-3.315 0.724,-6.701 2.605,-9.455 2.019,-2.955 5.219,-5.148 8.768,-5.747 3.808,-0.642 8.069,0.583 11.163,2.839 3.406,2.482 4.885,5.782 5.525,9.848 z"
id="path124"
style="fill:#f6f7f3" />
<path
d="m 373.51229,220.98696 c 0.0558,2.887 -0.3264,5.184 -1.7525,7.729 -1.8335,3.272 -4.9654,6.131 -8.63,7.141 -3.6329,1.001 -8.1566,0.139 -11.362,-1.774 -3.9372,-2.351 -5.8076,-6.202 -6.8757,-10.512 -0.1002,-3.512 0.6361,-6.63 2.6658,-9.547 q 0.4065,-0.595 0.8712,-1.145 0.4646,-0.55 0.9826,-1.051 0.5181,-0.5 1.0841,-0.945 0.5661,-0.446 1.1743,-0.831 0.6083,-0.386 1.2525,-0.708 0.6442,-0.322 1.3177,-0.577 0.6735,-0.255 1.3693,-0.441 0.6959,-0.185 1.407,-0.299 c 3.7912,-0.621 7.7173,0.153 10.835,2.441 3.5817,2.63 5.0097,6.268 5.6602,10.519 z"
id="path126"
style="fill:#f6f7f3" />
<path
d="m 203.37429,182.00696 c 0.094,3.651 -1.035,6.901 -3.445,9.653 q -0.512,0.582 -1.078,1.111 -0.566,0.528 -1.181,0.999 -0.616,0.47 -1.274,0.878 -0.659,0.408 -1.354,0.749 -0.696,0.341 -1.422,0.612 -0.725,0.271 -1.474,0.47 -0.749,0.198 -1.513,0.322 -0.765,0.124 -1.538,0.172 c -3.709,0.217 -7.413,-0.891 -10.193,-3.407 -2.993,-2.708 -3.653,-5.783 -3.88,-9.676 0.001,-3.233 0.684,-6.504 2.476,-9.236 q 0.382,-0.575 0.819,-1.11 0.436,-0.535 0.923,-1.025 0.486,-0.49 1.019,-0.929 0.532,-0.44 1.104,-0.826 0.573,-0.386 1.18,-0.714 0.608,-0.328 1.245,-0.595 0.63599,-0.267 1.296,-0.47 0.65999,-0.204 1.336,-0.342 c 3.56,-0.71 7.196,-0.055 10.192,2.021 3.946,2.733 5.908,6.738 6.762,11.343 z"
id="path128"
style="fill:#f6f7f3" />
<path
d="m 157.82286,51.131659 c -0.529,5.4456 -0.293,10.939 -0.334,16.403 -0.033,4.384297 -0.325,8.781997 -0.503,13.163997 -3.371,0.0942 -19.423,1.1855 -21.26,0.1725 0.477,-9.8737 0.354,-19.821997 0.062,-29.699997 7.333,-0.198 14.691,0.1239 22.035,-0.0397 z"
id="path130"
style="fill:#f6f7f3" />
<path
d="m 78.514288,220.70696 c 0.233,3.09 -0.625,5.906 -2.294,8.496 -2.045,3.174 -5.159,5.716 -8.907,6.504 -3.702,0.778 -7.912,-0.043 -11.046,-2.164 -3.631,-2.458 -5.935,-6.556 -6.763,-10.798 -0.09,-2.917 0.764,-6.026 2.297,-8.506 2.069,-3.346 5.437,-5.457 9.228,-6.343 3.608,-0.843 7.32,-0.485 10.491,1.512 4.119,2.595 5.981,6.707 6.994,11.299 z"
id="path132"
style="fill:#f6f7f3" />
<path
d="m 665.49807,260.79609 c 0.20099,2.91 -0.89501,6.008 -2.538,8.387 -2.081,3.01 -5.346,5.378 -8.986,6.027 -3.818,0.681 -8.068,-0.597 -11.184,-2.822 -3.798,-2.712 -5.502,-6.467 -6.293,-10.947 0.026,-3.171 1.452,-6.364 3.3,-8.901 2.303,-3.16 5.643,-5.439 9.553,-6.003 3.63,-0.524 7.359,0.701 10.224,2.931 3.717,2.894 5.365,6.764 5.924,11.328 z"
id="path134"
style="fill:#f6f7f3" />
<path
d="m 330.61429,211.11696 c 0.5983,7.53 0.14,15.353 0.1722,22.92 -10.902,-0.474 -21.65,-0.202 -32.545,-1.216 -0.436,-0.118 -0.89,-0.275 -1.333,-0.356 -0.245,-0.045 -0.413,-0.181 -0.633,-0.312 1.212,-0.123 2.504,0.008 3.723,0.046 2.625,-5.629 4.906,-13.101 4.155,-19.425 -0.104,-0.876 -0.233,-1.233 -0.897,-1.803 -0.392,-0.05 -0.625,-0.047 -0.983,0.14 -1.524,0.797 -2.75,0.567 -4.403,0.406 0.99199,-0.515 2.577,-0.033 3.686,-0.581 0.089,-0.044 0.167,-0.107 0.251,-0.16 9.614,-0.549 19.211,-0.705 28.807,0.341 z"
fill="url(#gradient_2)"
id="path145"
style="fill:url(#gradient_2)" />
<path
d="m 582.91777,142.72876 c 0.263,3.389 0.1344,6.442 -1.5351,9.492 q -0.3225,0.594 -0.7025,1.152 -0.3801,0.559 -0.8141,1.077 -0.433,0.518 -0.917,0.99 -0.483,0.473 -1.011,0.894 -0.527,0.422 -1.095,0.789 -0.567,0.367 -1.168,0.676 -0.601,0.309 -1.229,0.556 -0.629,0.248 -1.279,0.431 c -3.792,1.051 -8.483,0.679 -11.926,-1.289 -3.927,-2.245 -5.734,-5.823 -6.868,-10.046 -0.342,-3.457 0.107,-6.317 1.894,-9.32 1.97,-3.311 5.128,-6.089 8.926,-7.015 3.753,-0.915 8.223,-0.173 11.486,1.886 3.659,2.309 5.3436,5.613 6.2387,9.727 z"
id="path147"
style="fill:#f6f7f3" />
<path
d="m 663.64548,105.37876 c 0.2145,3.181 -0.5353,6.08 -2.404,8.682 -2.5035,3.486 -6.7685,6.136 -11.021,6.765 -3.5527,0.526 -7.5087,-0.384 -10.388,-2.557 -3.3374,-2.517 -4.7121,-6.271 -5.2631,-10.283 -0.008,-3.245 0.7547,-6.327 2.5329,-9.069004 2.1339,-3.29 5.3902,-5.702 9.2673,-6.463 3.7953,-0.745 7.9929,0.257 11.146,2.464 3.6204,2.533 5.3816,6.208004 6.1302,10.461004 z"
id="path149"
style="fill:#f6f7f3" />
<path
d="m 458.43807,298.37609 c 0.15199,2.81 -0.53,5.415 -2,7.809 -2.091,3.408 -5.609,6.265 -9.549,7.157 -3.691,0.835 -7.836,-0.096 -10.976,-2.153 -3.932,-2.576 -5.873,-6.427 -6.791,-10.92 -0.052,-3.386 0.943,-6.503 2.878,-9.282 q 0.439,-0.632 0.938,-1.217 0.5,-0.586 1.055,-1.118 0.55599,-0.532 1.162,-1.007 0.60501,-0.474 1.255,-0.886 0.651,-0.411 1.338,-0.756 0.68799,-0.344 1.407,-0.619 0.719,-0.274 1.461,-0.475 0.74299,-0.201 1.502,-0.327 c 3.441,-0.602 6.66,0.191 9.505,2.196 3.968,2.794 6.031,6.905 6.815,11.598 z"
id="path151"
style="fill:#f6f7f3" />
<path
d="m 76.777141,63.493464 c 0.19799,3.1617 -0.298,5.800602 -1.991,8.498802 -2.142,3.4119 -5.648,6.3789 -9.659,7.2146 -3.754,0.782 -7.988,-0.1321 -11.174,-2.2369 -3.859,-2.5493 -5.459,-6.2418 -6.379,-10.619002 -0.083,-3.1217 0.693,-5.7198 2.29,-8.3908 2.14,-3.5781 5.56,-6.4795 9.659,-7.4844 q 0.638,-0.1507 1.288,-0.2367 0.65,-0.086 1.305,-0.1065 0.655,-0.0205 1.309,0.0247 0.654,0.0452 1.3,0.1556 0.646,0.1105 1.278,0.2851 0.631,0.1747 1.243,0.4117 0.611,0.237 1.195,0.5341 0.584,0.297 1.136,0.6511 c 4.107,2.5961 6.146,6.7014 7.2,11.299 z"
id="path153"
style="fill:#f6f7f3" />
<path
d="m 415.03129,181.64696 c -0.1908,3.539 -1.0976,6.558 -3.373,9.345 -2.6934,3.3 -6.6778,5.519 -10.94,5.866 -3.6702,0.299 -7.5787,-0.613 -10.395,-3.071 -3.1354,-2.738 -4.3046,-6.59 -4.5711,-10.615 0.0505,-3.098 0.7022,-6.075 2.3981,-8.713 2.17,-3.374 5.5684,-5.478 9.474,-6.263 3.7288,-0.749 7.4109,-0.087 10.56,2.074 3.9315,2.698 5.9587,6.807 6.8468,11.377 z"
id="path155"
style="fill:#f6f7f3" />
<path
d="m 463.1789,132.99695 c -0.7154,7.445 -0.3733,14.726 -0.0269,22.176 -10.828,0.117 -21.755,-0.419 -32.598,-0.486 q 0.15301,-11.227 -0.252,-22.448 10.138,0.287 20.278,0.445 c 4.189,0.058 8.4312,-0.119 12.599,0.313 z"
fill="#a9b4b6"
id="path159" />
<path
d="m 157.32429,286.98696 c -0.089,0.019 -0.176,0.04 -0.265,0.057 -4.408,0.857 -9.978,0.275 -14.509,0.278 -9.986,0.006 -19.87,-0.06 -29.839,0.568 -1.999,0.126 -4.609,-0.244 -6.484,0.383 -0.472,2.258 -0.446,4.406 -0.785,6.634 -0.554,3.639 -1.72,6.633 -1.111,10.366 0.127,0.779 0.12,1.483 -0.272,2.189 3.407,-0.09 18.195,-0.59 20.528,0.462 -2.998,0.781 -14.613,0.127 -18.601,0.173 l -39.651002,0.364 c -3.95,0.022 -7.934,0.367 -11.876,0.294 -1.08,-0.021 -2.052,-0.09 -3.078,-0.464 -2.077,-2.238 -2.198,-5.988 -2.274,-8.887 -0.081,-3.108 -0.264,-8.879 2.203,-11.236 0.933,-0.891 2.102,-1 3.333,-1.085 4.346,-0.3 8.861,-0.072 13.23,-0.096 11.285,-0.062 22.542,0.122 33.822002,0.193 18.533,0.117 37.092,-0.493 55.629,-0.193 z"
fill="#a9b4b6"
id="path161" />
<path
d="m 625.13807,328.13609 c 0.169,6.795 -0.635,13.865 -1.162,20.645 -7.611,0.924 -15.743,0.202 -23.427,0.099 q -22.176,-0.486 -44.357,-0.303 c 0.873,-6.801 0.541,-13.787 0.381,-20.626 15.488,-0.561 30.927,-0.039 46.408,0.013 7.313,0.025 14.916,-1.12 22.157,0.172 z"
fill="url(#gradient_3)"
id="path170"
style="fill:url(#gradient_3)" />
<path
d="m 202.15286,133.48466 c 0.472,6.137 0.729,14.212 -0.263,20.237 -4.915,0.269 -9.928,-0.158 -14.852,-0.249 l -31.562,-0.517 q -7.483,-0.091 -14.966,-0.041 c -2.244,0.017 -4.825,0.41 -7.01,0.001 l -0.223,-0.588 q 0.33101,-10.235 0.372,-20.475 c 7.516,0.259 66.474,-0.116 67.523,0.338 0.703,0.304 0.701,0.622 0.98101,1.294 z"
fill="#a9b4b6"
id="path172" />
<path
d="m 414.00529,333.78696 c 0.1101,3.57 0.3744,9.378 -2.1048,12.294 -0.1148,0.057 -0.228,0.117 -0.3443,0.171 -2.4276,1.123 -62.485,1.821 -64.847,0.957 l -0.0356,-9.863 c -0.01,-4.136 -0.2407,-8.286 -0.3898,-12.42 2.4745,1.168 12.927,0.413 16.086,0.358 6.0641,-0.105 46.898,-1.352 49.74,0.937 1.7971,1.447 1.7227,5.406 1.8954,7.566 z"
fill="#f6f7f3"
id="path174" />
<path
d="m 624.04807,210.10609 c 0.177,4.147 0.62,16.545 -1.237,19.946 -1.586,0.748 -3.473,1.007 -5.212,1.113 -6.376,0.39 -12.994,-0.082 -19.4,-0.013 -8.768,0.096 -17.506,0.012 -26.271,-0.041 -5.946,-0.036 -11.928,0.091 -17.86,-0.318 0.35501,-6.896 0.34801,-13.789 0.33601,-20.692 5.283,-0.412 10.667,-0.212 15.966,-0.225 l 28.239,-0.012 c 5.713,-0.002 20.98,-1.025 25.439,0.242 z"
fill="#a9b4b6"
id="path178" />
<path
d="m 159.45429,210.92696 c 0.513,7.398 -0.20999,15.242 -0.459,22.663 -6.053,0.565 -12.368,-0.413 -18.461,-0.381 -11.494,0.061 -22.937,1.019 -34.449,0.577 q -5.339,0.289 -10.685002,0.273 c -0.058,-7.738 -0.364,-15.493 -0.369,-23.225 2.099,-0.095 4.222,-0.257 6.321002,-0.134 q 29.055,-0.85 58.102,0.227 z"
fill="url(#gradient_4)"
id="path187"
style="fill:url(#gradient_4)" />
<path
d="m 101.35429,210.69696 c 2.059,0.858 6.971,1.177 9.174,0.667 0.42001,-0.098 0.834,-0.193 1.257,-0.279 0.962,5.149 0.979,17.59 3.23,21.617 0.042,0.075 0.089,0.148 0.134,0.222 -2.264,1.558 -6.487,-0.598 -8.817,0.674 -0.09,0.049 -0.163,0.123 -0.245,0.185 q -5.339,0.289 -10.685002,0.273 c -0.058,-7.738 -0.364,-15.493 -0.36901,-23.225 2.099,-0.095 4.222,-0.257 6.321002,-0.134 z"
fill="#f6f7f3"
id="path189" />
<path
d="m 588.59971,55.041943 q -0.22899,10.465003 0.127,20.925993 c -5.868,0.3215 -11.81,0.0579 -17.686,0.0225 q -16.718,0.0257 -33.429,-0.4384 c -6.868,-0.1448 -13.961,0.4914 -20.775,-0.109 q -0.57601,-10.33899 0.432,-20.643993 c 5.062,-0.0918 10.122,0.1574 15.186,0.0887 18.673,-0.2533 37.485,-0.6757 56.145,0.1538 z"
fill="url(#gradient_5)"
id="path198"
style="fill:url(#gradient_5)" />
<path
d="m 121.91429,330.45696 c 0.197,5.323 0.523,10.735 0.14699,16.054 -0.285,0.13 -0.579,0.291 -0.884,0.363 -1.913,0.447 -11.273,-0.427 -14.166,-0.426 -7.832002,0.002 -52.103002,1.854 -55.294002,0.024 -0.745,-1.634 -0.8,-3.677 -0.99799,-5.439 -0.47301,-4.106 -1.25,-11.233 0.797,-14.866 0.561,-0.503 1.197,-0.609 1.914,-0.742 6.19,-1.147 65.556002,-1.114 67.309002,0.379 1.09,0.929 1.036,3.31 1.175,4.653 z"
id="path200"
style="fill:#f6f7f3" />
<path
d="m 330.36286,93.184656 q -0.0901,10.776004 -0.06,21.553004 -23.152,0.191 -46.304,-0.052 c -9.949,-0.087 -19.888,-0.076 -29.824,-0.635 -0.957,-1.206 -0.352,-17.525004 -0.336,-20.061004 4.2,-0.406 8.543,-0.332 12.765,-0.452 11.585,-0.329 23.143,-0.226 34.729,-0.215 9.621,0.009 19.446,-0.679 29.03,-0.138 z"
id="path204"
style="fill:#f6f7f3" />
<path
d="m 562.50807,386.89609 c -9.693,0.899 -19.872,0.379 -29.607,0.3 l -48.351,-0.42 c -11.915,-0.104 -23.845,0.097 -35.762,0.117 -5.503,0.009 -11.144,0.324 -16.628,-0.109 -3.026,-4.314 -3.978,-9.578 -3.059,-14.764 0.32401,-1.831 1.279,-4.544 3.025,-5.506 1.355,-0.747 4.258,-0.729 5.799,-0.766 21.584,-0.517 43.227,0.319 64.82,0.121 l 32,-0.135 c 5.922,-0.036 12.592,-0.623 18.444,0.176 -4.116,0.443 -8.553,0.121 -12.699,0.121 l -24.182,0.013 -0.836,20.816 c 9.426,-0.066 18.845,0.162 28.266,0.11 6.198,-0.034 12.595,-0.524 18.77,-0.074 z"
fill="#a9b4b6"
id="path208" />
<path
d="m 295.28331,56.369659 c 0.74422,2.6184 -0.0194,6.0032 0.14083,8.7318 0.17847,3.045497 1.70333,7.208697 0.97246,10.149997 -0.3545,1.4267 -7.53324,0.1258 -9.25235,1.1306 -0.15175,0.0883 -0.28894,0.1918 -0.4322,0.2877 l -77.79089,-0.1992 c -11.75331,0.0394 -23.49691,-0.048 -35.2393,0.4576 0.33144,-6.9946 0.70658,-14.054997 0.36907,-21.051997 19.71634,-0.2749 39.42417,0.3557 59.149,0.1381 q 17.76413,-0.2141 35.52946,-0.2765 c 5.74008,-0.0162 11.96942,-0.362 17.66215,0.1422 2.694,0.6602 6.08244,0.4516 8.89177,0.4889 z"
fill="#a9b4b6"
id="path210"
style="stroke-width:1.10184" />
<path
d="m 199.60429,249.18696 c 0.081,7.192 -0.271,14.448 -0.34801,21.65 -3.439,-0.491 -7.186,-0.283 -10.667,-0.287 l -18.321,-0.004 q -38.452,-0.361 -76.895002,0.569 c 0.132,-7.063 0.509,-14.096 0.466,-21.164 11.310002,-0.269 22.678002,-0.012 33.992002,0.026 q 19.516,0.037 39.032,-0.154 c 10.75,-0.036 22.061,0.636 32.741,-0.636 z"
fill="#a9b4b6"
id="path223" />
<path
d="m 413.69129,293.12696 c 0.2277,3.471 0.2499,7.457 -0.5251,10.849 -0.2702,1.183 -0.8846,3.204 -2.1348,3.715 -2.2901,0.935 -15.547,0.042 -19.058,0.023 l -73.515,-0.815 c -4.099,-0.069 -8.287,0.198 -12.372,-0.036 -0.516,-0.03 -1.024,-0.188 -1.508,-0.36 l -0.425,-6.166 c -0.655,-4.251 -0.746,-8.69 -0.927,-12.986 17.229,-0.656 34.67,-0.069 51.922,-0.103 l 39.72,0.051 c 5.9817,0.05 11.969,-0.055 17.946,0.234 0.5368,1.819 0.6734,3.715 0.8777,5.594 z"
fill="#49545e"
id="path225" />
<path
d="m 245.75159,93.784656 c 1.11987,5.111 2.38297,15.938004 1.21017,21.030004 -4.3373,0.647 -9.02956,0.221 -13.42083,0.227 -6.84793,0.01 -13.68341,0.209 -20.53549,0.158 l -49.9075,-0.12 c -9.29733,-0.037 -18.61749,-0.42 -27.91171,-0.127 q 0.0602,-10.525 -0.0924,-21.050004 48.30812,-0.702 96.61936,-0.276 c 2.08718,0.014 12.54382,-0.554 13.48206,-0.318 0.18267,0.046 0.32071,0.192 0.48054,0.288 z"
fill="#f6f7f3"
id="path227"
style="stroke-width:1.01876" />
<path
d="m 330.69429,364.46696 c 0.5624,2.733 -0.402,16.417 -0.4758,20.471 -0.2445,0.124 -0.3678,0.197 -0.6463,0.283 -1.9631,0.606 -7.7951,-0.355 -10.133,-0.507 -6.165,-0.402 -12.378,-0.124 -18.553,-0.161 q -28.153,-0.305 -56.306,-0.143 c -8.04,0.067 -16.335,1.026 -24.332,0.626 -0.84801,-0.042 -1.087,-0.114 -1.836,-0.572 -0.651,-2.381 -0.22499,-16.854 -0.43799,-20.923 1.55,0.722 17.192,-0.042 19.968,-0.054 q 33.846,-0.121 67.689,0.296 8.288,0.168 16.568,0.554 c 2.688,0.108 5.8735,0.566 8.4952,0.13 z"
fill="#a9b4b6"
id="path229" />
<path
d="m 626.69807,364.99964 c 0.208,7.84048 -0.006,15.83268 -0.333,23.66872 -8.276,0.10521 -16.59,-0.19158 -24.869,-0.29346 l -38.988,-0.37542 c -6.175,-0.49832 -12.572,0.0442 -18.77,0.082 -9.421,0.0576 -18.84,-0.1949 -28.266,-0.12182 l 0.836,-23.0519 24.182,-0.0144 c 4.146,0 8.583,0.35659 12.699,-0.134 17.369,-0.19046 34.652,-0.33222 52.023,-0.11074 7.157,0.092 14.337,-0.0376 21.486,0.35106 z"
id="path231"
style="fill:#f6f7f3;stroke-width:1.05233" />
<path
d="m 544.6309,101.70695 c 0.2586,3.308 1.1496,10.794 -0.5848,13.565 -4.9497,1.182 -11.466,0.414 -16.585,0.391 l -23.929,0.025 -52.727,0.189 c -6.967,-0.016 -13.951,0.195 -20.913,-0.098 l 0.009,-6.656 q 0.097,-7.247 0.526,-14.482004 c 5.191,-0.32 10.507,-0.097 15.71,-0.097 l 28.217,-0.043 c 20.684,-0.062 41.421,-0.714 62.099,-0.463 1.5586,0.019 4.8683,-0.165 6.213,0.614 1.8085,1.048 1.7953,5.195 1.9652,7.055004 z"
id="path233"
style="fill:#f6f7f3" />
<path
d="m 412.21486,56.014659 c 0.4432,2.3537 0.5365,4.8002 0.6174,7.1915 0.0901,2.6637 0.7833,10.693997 -1.2178,12.470997 -0.7647,0.6791 -4.7517,0.832 -5.8832,0.8682 -16.205,0.5185 -32.424,-0.2921 -48.63,-0.0995 l -40.405,0.2227 c -9.037,-0.007 -18.372,0.2689 -27.349,-0.7991 0.462,-6.3565 0.217,-12.832997 -0.31,-19.179997 2.05,-0.9755 5.748,-0.7831 8.062,-0.8488 7.688,-0.2186 15.396,-0.0047 23.088,10e-5 q 22.664,-0.0955 45.326,0.0823 c 15.507,0.0641 31.222,-0.6589 46.702,0.0914 z"
id="path235"
style="fill:#f6f7f3" />
<path
d="m 301.80429,210.77696 c -0.084,0.053 -0.162,0.116 -0.251,0.16 -1.109,0.548 -2.694,0.066 -3.686,0.581 1.653,0.161 2.879,0.391 4.403,-0.406 0.358,-0.187 0.591,-0.19 0.983,-0.14 0.664,0.57 0.793,0.927 0.897,1.803 0.751,6.324 -1.53,13.796 -4.155,19.425 -1.219,-0.038 -2.511,-0.169 -3.723,-0.046 0.22,0.131 0.388,0.267 0.633,0.312 0.443,0.081 0.897,0.238 1.333,0.356 -28.676,-1.236 -57.543,-0.627 -86.246,-0.53 -11.814,0.04 -23.803,0.516 -35.596,-0.113 0.649,-6.743 0.395,-13.418 0.14699,-20.171 15.113,-0.804 30.287,-0.257 45.414,-0.217 26.632,0.071 53.236,0.049 79.847,-1.014 z"
fill="url(#gradient_7)"
id="path246"
style="fill:url(#gradient_7)" />
<path
d="m 299.48429,338.76696 c 0.055,2.257 0.099,4.482 -0.076,6.736 -0.475,0.245 -0.38201,0.225 -0.881,0.375 -1.502,0.453 -17.844,0.157 -20.973,0.203 l -50.556,0.385 c -15.962,0.207 -31.879,0.735 -47.851,0.615 -1.37,-0.01 -2.531,0.062 -3.775,-0.595 -0.49601,-4.624 -0.17901,-9.622 -0.189,-14.292 l -0.393,-7.122 c 0.30199,0.167 0.324,0.2 0.709,0.296 1.575,0.389 14.215,-0.393 16.773,-0.383 25.397,0.095 50.756,0.613 76.159,0.32 4.324,-0.05 29.339,0.706 30.916,-0.094 q -0.016,6.779 0.137,13.556 z"
fill="url(#gradient_8)"
id="path255"
style="fill:url(#gradient_8)" />
<path
d="m 286.05429,286.90696 c 0.471,6.969 0.46,13.952 0.39099,20.934 -0.92599,0.46 -1.66,0.451 -2.675,0.463 -34.505,0.413 -69.055,-0.282 -103.56,-0.23 l -33.073,0.029 c -7.327,0.072 -15.281,0.704 -22.553,-0.181 -2.333,-1.052 -17.121,-0.552 -20.528,-0.462 0.392,-0.706 0.399,-1.41 0.272,-2.189 -0.609,-3.733 0.557,-6.727 1.111,-10.366 0.339,-2.228 0.313,-4.376 0.785,-6.634 1.875,-0.627 4.485,-0.257 6.484,-0.383 9.969,-0.628 19.853,-0.562 29.839,-0.568 4.531,-0.003 10.101,0.579 14.509,-0.278 0.089,-0.017 0.176,-0.038 0.265,-0.057 l 105.1,0.174 c 7.88,0.054 15.76,-0.406 23.637,-0.252 z"
fill="#f6f7f3"
id="path259" />
<path
d="m 663.59623,304.86609 c 0.047,1.895 0.0232,3.794 0.0107,5.693 -2.32967,0.538 -4.74079,-0.035 -7.07601,-0.214 q -5.12012,-0.368 -10.24193,-0.384 l -25.883,0.298 -13.32134,0.026 c -3.13797,0.013 -6.27258,-0.103 -9.40854,0.301 -0.0609,-5.298 0.0192,-10.639 0.0518,-15.939 l -0.032,-6.254 c 3.40758,-0.125 6.82425,0.344 10.23115,0.555 q 7.22883,0.479 14.45933,0.442 l 40.96232,-0.655 c 0.25267,5.174 0.17869,10.879 0.24739,16.131 z"
fill="#a9b4b6"
id="path261"
style="stroke-width:0.580159" />
<path
d="m 660.21657,187.44555 c 0.11799,1.895 0.0581,3.794 0.0269,5.693 -5.84593,0.538 -11.89627,-0.035 -17.75614,-0.214 q -12.84814,-0.368 -25.70049,-0.384 l -64.94931,0.298 -33.42779,0.026 c -7.87426,0.013 -15.74007,-0.103 -23.60925,0.301 -0.15288,-5.298 0.0481,-10.639 0.13006,-15.939 l -0.0803,-6.254 c 8.55079,-0.125 17.12438,0.344 25.67347,0.555 q 18.13959,0.479 36.2834,0.442 l 102.78848,-0.655 c 0.63405,5.174 0.44839,10.879 0.62079,16.131 z"
fill="#a9b4b6"
id="path261-6"
style="stroke-width:0.919024" />
<path
d="m 414.01929,260.11696 c 0.0601,1.522 0.1078,3.04 0.007,4.562 -0.1467,2.212 -0.6585,4.451 -2.4966,5.879 -0.6821,0.53 -1.5293,0.549 -2.3548,0.582 -7.524,0.31 -15.259,-0.253 -22.808,-0.277 -20.815,-0.065 -41.669,-0.34 -62.479,-0.161 q -36.53,0.462 -73.062,0.091 l -21.31,-0.231 c -4.557,-0.053 -9.224,0.128 -13.751,-0.41 0.294,-2.74 0.339,-5.538 0.484,-8.291 l 0.202,-12.135 c 8.654,-0.722 17.588,-0.185 26.281,-0.143 l 43.173,0.017 77.907,0.02 c 13.382,0.016 26.855,-0.292 40.229,0.104 1.7442,0.052 5.2678,-0.041 6.6785,1.082 2.6836,2.137 2.9438,6.175 3.3008,9.311 z"
id="path263"
style="fill:#f6f7f3" />
<path
d="m 608.23,412.11564 c 5.51,-0.519 11.323,-0.31099 16.759,0.68701 9.463,1.739 17.448,5.762 25.3,11.174 1.935,1.333 4.505,2.952 5.845,4.884 -0.865,1.533 -4.263,4.025 -5.709,5.519 -2.571,2.657 -6.549,8.954 -9.266,10.591 0.022,-0.29501 0.046,-0.376 -0.035,-0.703 -0.53,-2.131 -2.535,-3.799 -4.254,-5.005 -7.883,-5.529 -17.218,-8.533 -26.846,-6.79 -8.259,1.496 -16.347,6.485 -21.14,13.405 -5.566,8.036 -7.539,16.762 -5.747,26.384 1.725,9.261 6.635,16.814 14.473,22.105 6.573,4.437 15.115,6.901 23.022,5.305 4.709,-0.951 15.783,-5.649 18.506,-9.701 0.863,-0.49401 1.473,-0.921 2.138,-1.664 2.575,2.365 4.368,5.575 7.192,7.759 2.134,1.649 7.621,4.657 8.865,6.746 -0.107,0.279 -0.127,0.38199 -0.337,0.648 -0.837,1.065 -2.298,2.124 -3.342,3.015 -7.536,6.433 -17.454,11.318 -27.199,13.168 -15.476,2.937 -29.728,-1.118 -42.574,-9.935 -11.732,-8.053 -18.767,-21.662 -21.201,-35.465 -2.393,-13.569 0.478,-28.524 8.385,-39.829 9.287,-13.277 21.529,-19.553 37.165,-22.298 z"
id="path265"
style="fill:#f6f7f3" />
<path
d="m 334.82,410.48564 c 14.189,-0.387 26.299,6.562 37.651,14.252 -4.667,5.109 -8.452,10.433 -12.245,16.195 -4.608,-5.459 -13.527,-8.697 -20.433,-9.535 -5.425,-0.658 -12.859,-0.139 -17.252,3.506 q -0.361,0.299 -0.691,0.633 -0.33,0.333 -0.625,0.697 -0.296,0.365 -0.554,0.756 -0.258,0.392 -0.476,0.807 -0.218,0.415 -0.394,0.85 -0.177,0.435 -0.309,0.885 -0.133,0.449 -0.22,0.91 -0.087,0.461 -0.129,0.928 c -0.258,2.903 0.799,5.529 2.903,7.52 6.076,5.748 22.423,7.74 30.69,10.7 6.146,2.2 12.891,5.895 17.013,11.084 4.489,5.651 5.675,13.262 4.862,20.282 -0.914,7.881 -5.263,15.251 -11.529,20.099 -9.74,7.535 -21.421,10.775 -33.647,9.169 -15.27,-2.982 -23.77,-8.502 -36.588,-16.705 4.729,-5.206 9.808,-10.493 13.951,-16.171 0.19,0.198 0.379,0.398 0.579,0.587 7.049,6.668 18.332,12.821 28.165,12.46 5.526,-0.202 11.576,-2.107 15.395,-6.278 2.022,-2.209 3.189,-4.82 2.989,-7.861 -0.665,-10.127 -22.421,-11.704 -30.379,-14.141 -5.11,-1.566 -10.263,-3.908 -14.303,-7.47 -5.753,-5.073 -9.618,-12.845 -10.106,-20.511 -0.477,-7.504 1.723,-16.151 6.777,-21.859 7.453,-8.418 18.072,-11.126 28.905,-11.789 z"
id="path267"
style="fill:#f6f7f3" />
<path
d="m 440.67,410.79564 c 3.147,-0.09 6.255,-0.076 9.4,0.053 11.853,21.84 21.948,44.591 32.139,67.234 2.401,5.335 5.333,10.427 7.801,15.736 4.008,8.619 7.435,17.548 10.661,26.487 -6.296,0.021 -13.431,-1.046 -19.597,0.116 -3.409,-6.688 -7.071,-14.107 -9.2,-21.296 -4.746,-0.314 -9.6,0.148 -14.345,0.36 -8.413,0.374 -17.068,0.743 -25.48,0.259 1.841,-7.07 5.429,-14.751 8.938,-21.165 q 4.703,-0.439 9.425,-0.547 c 2.307,-0.055 4.866,0.199 7.123,-0.289 0.959,-0.208 1.684,-0.351 2.227,-1.176 0.054,-2.953 -2.075,-6.132 -3.385,-8.713 -1.862,-3.813 -8.236,-19.149 -10.555,-21.266 l -0.75,0.155 c -0.966,0.851 -1.62,1.851 -2.237,2.969 -2.761,5.011 -4.943,10.475 -7.557,15.588 -4.575,8.949 -9.743,17.919 -13.619,27.183 -3.88,9.272 -6.429,19.266 -10.866,28.312 l -0.23,0.463 c -6.677,-1.271 -12.947,-1.004 -19.688,-0.574 2.247,-6.932 4.561,-13.935 7.182,-20.732 1.509,-3.915 3.669,-7.588 5.357,-11.431 q 9.369,-21.813 19.735,-43.171 c 1.431,-2.977 3.092,-5.839 4.517,-8.82 l 8.844,-18.436 c 1.019,-2.085 1.833,-4.569 3.113,-6.494 0.286,-0.431 0.588,-0.598 1.047,-0.805 z"
id="path269"
style="fill:#f6f7f3" />
<path
d="m 140.98,410.25564 q 4.381,0.14999 8.759,0.37099 c 0.166,9.175 -0.601,18.38 -0.532,27.574 0.206,27.572 0.954,55.173 0.981,82.744 -6.573,-0.33799 -13.09,-0.695 -19.675,-0.456 q -0.517,-18.078 -0.209,-36.161 c 0.129,-9.79 0.936,-20.182 -0.543,-29.887 -2.029,2.37 -3.696,5.053 -5.611,7.516 -2.2689,2.917 -4.7219,5.687 -6.9594,8.63 -2.5399,3.341 -4.8502,6.856 -7.3431,10.233 -3.2278,4.372 -6.6365,8.275 -8.8752,13.287 -3.3144,-7.495 -9.2256,-13.141 -14.314,-19.444 q -7.6671,-9.549 -15.091,-19.288 c -1.4094,6.523 -1.152,13.463 -1.172,20.107 -0.097,14.999 0.7703,29.992 0.3963,44.994 -6.3214,-0.251 -12.51,-0.586 -18.82,0.115 -0.2973,-5.175 -0.2535,-10.422 -0.3945,-15.609 -0.5931,-21.819 -0.2739,-43.518 0.1619,-65.329 0.1911,-9.561 -0.1531,-19.13 0.1149,-28.681 2.3322,-0.027 4.4657,0.198 6.7468,0.69 2.1569,1.916 3.9323,4.314 5.8737,6.447 7.534,8.277 14.427,16.956 21.446,25.67 4.281,5.316 8.6378,12.914 14.774,16.19 4.1439,-3.778 7.4588,-8.457 10.871,-12.878 l 14.292,-18.611 c 4.856,-6.23 10.324,-11.906 15.122,-18.224 z"
id="path271"
style="fill:#f6f7f3" />
<path
d="m 218.43,412.06564 c 0.09,-0.013 0.179,-0.03 0.269,-0.04 13.113,-1.449 26.771,3.73 37.17,11.533 11.455,8.596 18.925,20.608 20.933,34.836 2,14.174 -0.954,27.836 -9.648,39.37 -9.245,12.267 -22.173,20.043 -37.402,22.215 -13.246,1.223 -26.869,-3.173 -37.45,-11.206 -11.933,-9.06 -18.703,-21.737 -20.724,-36.484 -2.024,-14.776 1.179,-28.864 10.287,-40.722 8.264,-10.757 23.269,-17.753 36.565,-19.502 z"
id="path273"
style="fill:#f6f7f3" />
<path
d="m 223.85,432.68564 c 7.844,0.07 16.262,2.722 22.391,7.719 6.411,5.227 10.181,13.002 11.01,21.156 q 0.09,0.813 0.138,1.63 0.049,0.81599 0.056,1.634 0.008,0.818 -0.026,1.636 -0.033,0.817 -0.108,1.632 -0.075,0.814 -0.191,1.624 -0.115,0.81 -0.271,1.613 -0.157,0.803 -0.353,1.597 -0.196,0.795 -0.433,1.578 -0.236,0.783 -0.511,1.553 -0.275,0.771 -0.589,1.526 -0.313,0.756 -0.665,1.495 -0.351,0.739 -0.739,1.459 -0.388,0.72 -0.812,1.42 -0.423,0.7 -0.882,1.378 -0.458,0.677 -0.95,1.331 -0.492,0.654 -1.016,1.282 -0.579,0.701 -1.193,1.374 -0.613,0.672 -1.258,1.313 -0.645,0.642 -1.322,1.251 -0.676,0.609 -1.381,1.184 -0.705,0.575 -1.437,1.115 -0.733,0.539 -1.491,1.043 -0.758,0.503 -1.54,0.968 -0.782,0.466 -1.586,0.892 -0.803,0.427 -1.627,0.814 -0.824,0.386 -1.665,0.732 -0.842,0.346 -1.7,0.65 -0.857,0.304 -1.729,0.566 -0.872,0.261 -1.755,0.48 -0.883,0.219 -1.776,0.394 -0.893,0.175 -1.794,0.306 -0.9,0.131 -1.806,0.218 c -8.538,-0.165 -15.8,-2.441 -22.371,-8.1 -6.87,-5.918 -10.842,-13.996 -11.432,-23.057 -0.595,-9.124 2.447,-17.769 8.571,-24.588 6.23,-6.937 15.069,-10.283 24.243,-10.818 z"
fill="#1f232b"
id="path277" />
</svg>
</svg>
</div>
<div class="grid">
<div class="section">
<h2>Global Navigation</h2>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/grid-play-stop-button.svg" width="80" />
<div class="command-text">Start/Stop: Bottom-left button. Press to play. Press again to stop.</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/grid-record-button.svg" width="80" />
<div class="command-text">Arm record: Press to arm recording. Press again to stop recording.</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/grid-channel-editor-select-button.svg" width="80" />
<div class="command-text">Channel Editor: First menu button</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/grid-scale-editor-select-button.svg" width="80" />
<div class="command-text">Scale Editor: Second menu button</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/grid-pattern-editor-select-button.svg" width="80" />
<div class="command-text">Pattern Editor: Third button (press to cycle views)</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/grid-song-editor-select-button.svg" width="80" />
<div class="command-text">Song Editor: Fourth menu button</div>
</div>
</div>
<div class="section">
<h2>Channel Editor Controls</h2>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/channel-select-buttons.svg" width="80" />
<div class="command-text">Select Channel: Top row (hold/shift-press to mute)</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/pattern-assign-buttons.svg" width="80" />
<div class="command-text">Assign Pattern: Second row buttons. Multiple patterns can be assigned to one or more channels.</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/active-scale-slot-visualiser.svg" width="80" />
<div class="command-text">Scale slots: Displays currently active scale slot.</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/channel-sequencer-step-buttons.svg" width="80" />
<div class="command-text">Set Length: Hold start step, press end step</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/octave-select-buttons.svg" width="80" />
<div class="command-text">Set Global Octave: Applies to entire pattern. Press middle fader button to switch off.</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/channel_editor/merge-mode-buttons.svg" width="80" />
<div class="command-text">Merge Modes: 1: trig, 2: note, 3: velocity. Hold shift for length merge modes using button 3.</div>
</div>
<h2>Merge Modes</h2>
<div class="merge-modes">
<div class="merge-mode">Trig: All/Skip/Only</div>
<div class="merge-mode">Note: Avg/High/Low/Pattern</div>
<div class="merge-mode">Velocity: Avg/High/Low/Pattern</div>
<div class="merge-mode">Length: Avg/Long/Short/Pattern</div>
</div>
<h2>Locks</h2>
<div class="locks">
<div class="lock">Trig Locks: Hold step, modify desired trig param</div>
<div class="lock">Mask Lock: Hold step, modify desired mask</div>
<div class="lock">Octave Lock: Hold step, press desired octave</div>
<div class="lock">Channel Scale Lock: Hold step, press desired scale slot. Scale is applied to this channel only on selected step.</div>
</div>
</div>
</div>
<div class="grid">
<div class="section">
<h2>Pattern Editor</h2>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/pattern-select-buttons.svg" width="80" />
<div class="command-text">Pattern Select: Top row buttons (1-16)</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/algorithm-select-buttons.svg" width="80" />
<div class="command-text">Algorithm Select: Drums, Tresillo, Euclidean, NE</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/bank-select-buttons.svg" width="80" />
<div class="command-text">Bank Select: Choose pattern bank/variation</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/bank-pattern-select-fader.svg" width="80" />
<div class="command-text">Pattern Select: Fine/coarse control for algorithm</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/bank-pattern-2-select-fader.svg" width="80" />
<div class="command-text">Pattern Param: Secondary algorithm parameter</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/arm-paint-button.svg" width="80" />
<div class="command-text">Prime/Paint: Preview then commit changes</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/paint-cancel-button.svg" width="80" />
<div class="command-text">Cancel: Discard primed changes</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/pattern_editor/trig_editor/pattern-move-buttons.svg" width="80" />
<div class="command-text">Move: Shift pattern left/right, reset position</div>
</div>
</div>
<div class="section">
<h2>Scale Editor</h2>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/scale_editor/scale-slot-select-buttons.svg" width="80" />
<div class="command-text">Scale Select: Quick press to apply global scale, hold to edit without applying scale</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/scale_editor/scale-step-buttons.svg" width="80" />
<div class="command-text">Scale Lock: Hold step + press scale button</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/scale_editor/transposition-fader.svg" width="80" />
<div class="command-text">Transpose: Global or per-step using locks</div>
</div>
<h2>Locks</h2>
<div class="locks">
<div class="lock">Scale Lock: Hold step, press desired scale slot. Lock applies globally on this step.</div>
<div class="lock">Transposition Lock: Hold step, select desired transposition using the transposition fader. Applies transposition on top of current scale values.</div>
</div>
<h2>Scale precedence</h2>
Scale locks applied per channel in the channel editor > Scale locks applied globally in the scale editor > Global scale selection
</div>
</div>
</div>
<div class="grid">
<div class="section">
<h2>Song Editor</h2>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/song_editor/song-pattern-slot-button.svg" width="80" />
<div class="command-text">Slots: Press to select, hold source + press target to copy</div>
</div>
<div class="command">
<img src="https://raw.githubusercontent.com/subvertnormality/mosaic/refs/heads/main/images/Grid/song_editor/song-slot-pattern-length-fader.svg" width="80" />
<div class="command-text">Length: Adjust sequence length (1-64 steps)</div>
</div>
</div>
<div class="section">
<h2>Essential Shortcuts</h2>
<ul>
<li><strong>Norns Controls:</strong>
<ul>
<li>E1: Navigate pages</li>
<li>E2: Select parameters</li>
<li>E3: Adjust values (hold K3 for fine control)</li>
<li>Step + K2: Clear locks of type based on currently selected page on step</li>
<li>K1 + K2: Clear all locks of type based on currently selected page on channel</li>
</ul>
</li>
<li><strong>Trig Locks:</strong>
<ul>
<li>Hold step + turn E3: Create parameter lock</li>
<li>Hold step + press scale: Create scale lock</li>
<li>Hold step + press transpose: Create transpose lock</li>
<li>Hold step + press octave: Create octave lock</li>
</ul>
</li>
<li><strong>Masks:</strong>
<ul>
<li>Hold K1 + press step: Add/remove trig mask</li>
<li>Hold step on mask page: Set note/velocity/length</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="masks-section">
<div class="section">
<h2Further Reference</h2>
<div class="masks-grid">
<div>
<strong>Quick Operations</strong>
<ul>
<li>Add/Remove trig: Hold K1 + press step</li>
<li>Clear lock: Hold step + K2</li>
<li>Clear all locks of selected page type: Hold K1 + K2</li>
<li>Global set: Press without holding step</li>
<li>Change param on trig lock page: select param and press K2 to view param list.</li>
<li>Save action: K3</li>
<li>Cancel action: K2</li>
</ul>
</div>
<div>
<strong>Mask Types</strong>
<div class="mask-type">Trig: Enable/disable steps</div>
<div class="mask-type">Note: Override pattern notes</div>
<div class="mask-type">Velocity: Set specific velocities</div>
<div class="mask-type">Length: Control note duration</div>
<div class="mask-type">Chord: Add a chord note to trig relative to current scale</div>
</div>
<div>
<strong>Chord Operations</strong>
<ul>
<li>Add chord: Hold step + select up to 4 notes</li>
<li>Strum control: Use with Chord Strum param</li>
<li>Velocity: Use Chord Velocity modifier param</li>
<li>Shape: Use Chord Shape modifier param</li>