-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
2286 lines (2286 loc) · 95.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Logo tilt</title>
</head>
<body>
<header>
<a href="#" class="home">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 200 200"
class="logo"
width="6rem"
height="6rem"
>
<path
d="m75.597 113.38-4.682 4.699s-9.184 2.636-9.609 2.636c-.425 0-7.228-1.446-7.228-1.446l-3.061-1.7-.085-2.807 3.951-1.547"
style="
fill: #e5b6ad;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #000;
stroke-width: 0;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m79.55 183.803-14.13-13.388-8.617-10.793-10.997-24.796-4.096-13.26-6.364-5.59-1.952-4.054-3.023-9.16-.177-5.453.99-.915 2.402.381 3.315 2.721-3.097-5.086c-.485-.689-1.47-3.289-2.016-4.394l-4.482-13.392-2.418-14.855c-.157-3.825-.59-5.684-.141-8.317.447-2.628 2.852-6.732 4.218-9.601 4.285-9.002 16.45-18.528 23.793-22.901 16.587-8.863 26.567-8.413 44.277-8.564 10.609 3.409 21.073 6.23 31.655 9.72 6.685 5.515 11.6 12.104 13.296 15.948l2.534 9.687s.292 5.245.336 8.062c.048 3.034.96 6.196 1.33 9.311.355 2.991.961 6.133 1.226 9.066.186 2.066.606 3.947.884 5.953l13.053 7.7 9.605 5.64 4.04 2.974c.736 2.17.748 2.224-1.22 3.125l-41.927-25.156L37.93 92.712l27.748 63.424L79.9 178.37z"
style="
fill: #07ece4;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m137.94 81.549.625 43.353c2.145 20.09-5.403 34.567-21 45.54-4.964 9.919-11.403 16.731-21.6 16.009-17.14-.326-26.008-17.87-37.943-29.806l-12.09-27.201-9.685-42.387"
style="
fill: #fae6e3;
fill-opacity: 1;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
"
/>
<path
d="M57.258 102.67c5.94 3.624 10.66 6.137 20.325 6.522l-3.454-6.918c-6.084.427-32.546-7.327-16.87.396zM59.083 118.62c7.935 1.344 8.498-.152 16.168-6.036l-3.836-1.685c-6.085.427-28.008-.002-12.332 7.72z"
style="
fill: #f1ccd3;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m70.349 107.146-4.412-2.668 5.42 1.452c4.604.676 6.727 2.645 7.495 4.83.893 2.538.775 7.886-.482 12.445-.765-2.121.052-6.49-2.547-10.75l-7.884-3.135-11.055 1.106-2 2.789c-5.087.97-4.826-2.032-2.153-3.959 2.086-1.504 7.197-2.843 11.84-2.933 2.085-.04 4.53.512 5.778.823z"
style="
fill: #bd6b6a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #000;
stroke-width: 0;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M54.261 112.216c1.191-1.234 2.005-2.1 4.874-3.21 6.266-1.853 11.648.648 16.462 3.795l-6.377 1.465c-3.941.226-8.345.212-14.959-2.05z"
style="
fill: #fff;
stroke: none;
stroke-width: 0.56507099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<ellipse
cx="63.849"
cy="111.403"
rx="3.42"
ry="3.373"
style="
fill: #3f242a;
fill-opacity: 1;
stroke: none;
stroke-width: 0.642147;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
paint-order: stroke fill markers;
"
/>
<path
d="m37.55 98.881 9.607-4.079 14.138-1.972 53.593-4.932 26.632-4.932 5.261-2.302-3.526-25.104c-1-7.07 3.495-16.124-15.34-31.803L94.845 13.15l-23.357 1.756c-24.484 8.719-36.425 17.73-45.55 39.848l2.807 21.636 4.932 15.124z"
style="
fill: #fff;
stroke: #000;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="m47.157 94.802-9.207-32.55 9.535-6.247 20.386-4.275 14.466 2.96 9.207 11.179 5.59 12.165 1.643 11.179"
style="
fill: none;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="m75.253 159.802 7.052 11.082 9.671 8.663s-3.224-5.238-2.015-5.44c1.21-.201 8.463-.604 9.268-.604.806 0 15.716-9.47 15.716-9.47-6.471-2.146-6.868-5.364-4.229-9.117z"
style="
fill: #e8c2c7;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.829412;
paint-order: stroke fill markers;
"
/>
<path
d="M68.99 147c.266-1.064.067-4.989 1.075-4.977 5.855.07 11.592 4.415 11.086 4.393l16.185 5.687c-.25-.114 11.153 6.71 10.063 8.517-.156.26-2.956 9.73-4.296 9.172-6.657-2.768-17.625-20.85-19.54-21.578-4.023-1.53-7.086-3.014-7.382-3.17-.62.202-2.853-.77-3.434-.594-.173.05-.337.069-.545.176-1.225.636-2.882.743-3.213 2.375z"
style="
fill: #f4aec1;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M73.296 127.846c-2.467 6.962-3.74 5.804-.165 10.85 3.784-1.126 5.452.73 8.549 2.795l3.288 1.15c2.198-2.27 4.507-3.31 7.398-4.273l4.603.822c5.003-3.108-.95-8.945-3.288-12.33"
style="
fill: none;
stroke: #e89a91;
stroke-width: 0.90118903;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
"
/>
<path
d="m74.38 143.894 8.615 4.009c11.018 2.753 15.147 7.05 22.522 11.014 1.59 4.502.002 8.304-3.221 9.975-1.246.646-3.11 1.825-5.233 2.378-7.798-.386-15.924-4.865-18.827-9.712-1.357-2.267-2.073-4.042-.878-6.56-.32-1.505-2.075-.353-3.644-1.24-1.188-.673-2.184-2.397-3.377-3.06-3.359-4.303.168-5.49 4.043-6.804z"
style="
fill: #c84050;
fill-opacity: 1;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="m76.584 148.231 4.204 6.81c2.235-.64 2.546.744 3.851.917l2.63 3.124 2.138 2.465 5.918 2.302 2.959-3.123v-2.795l-2.137-3.288-3.781-2.795-9.37-3.945-6.248-2.302-.822 1.973z"
style="
fill: #aa3843;
fill-opacity: 1;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="m45.61 107.687 5.812-4.418c8.603 1.73 9.695 3.305 17.204.233l-3.487-2.325c-11.593-1.165-18.556-6.141-19.53 6.51z"
style="
fill: #000;
fill-opacity: 0.864706;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 0.582353;
"
/>
<path
d="M43.244 121.325c-3.948-1.828-6.066-4.867-8.664-8.192l-3.452-10.11.082-4.933c1.454-1.87 5.763 1.39 6.74 3.617l1.316 3.617 1.726 5.507-.497 1.04z"
style="
fill: #e99a93;
fill-opacity: 1;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<ellipse
cx="63.798"
cy="109.902"
rx="1.712"
ry="1.842"
style="
fill: #2b2422;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.54830098;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
paint-order: stroke fill markers;
"
/>
<ellipse
cx="63.852"
cy="109.613"
rx=".811"
ry=".601"
style="
fill: #fff;
fill-opacity: 1;
stroke: none;
stroke-width: 0.47474799;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
paint-order: stroke fill markers;
"
/>
<path
d="M38.666 65.688c2.41 13.015 6.75 20.031 8.49 29.114l7.931-2.368s-2.24 2.986 1.99 2.24c4.23-.747 6.47 1.741 9.455.746 2.986-.995 4.976-4.23 4.976-4.23l15.923-2.737s1.592 4.217 6.47 2.488c4.876-1.728.248-21.148.248-21.148L82.337 54.69s-19.724-2.484-22.274-2.064c-2.55.42-12.578 3.379-12.578 3.379l-9.535 6.247z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 2.40317011;
stroke-linecap: square;
stroke-linejoin: round;
paint-order: stroke fill markers;
"
/>
<path
d="M57.514 53.046s-.494-5.425-.494-6.247c0-.822 1.151-3.782 1.151-3.782l1.315-12.494 9.207-8.548s8.48-7.126 10.453-7.784c11.76.748 22.75 7.85 32.947 13.044 11.368 14.219 10.67 18.956 13.48 36.496l1.316 22.194-28.112 3.288s-4.612-19.319-6.42-21.456c-1.809-2.137-10.02-13.067-10.02-13.067l-11.796-1.387z"
style="
fill: #0f090b;
fill-opacity: 1;
stroke: #000;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="m98.764 89.286-3.487-12.722c-10.998 1.906-32.901 5.534-50.78 8.228l3.054 10.046L88.08 90.42z"
style="
fill: #333;
fill-opacity: 1;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="M93.579 186.568c-4.409-2.803-8.817-5.968-13.226-9.306l-7.3-9.67-5.795-9.038c-6.198-16.637-9.694-28.424-18.119-32.942l-3.834-12.378 1.325-17.477c-1.783.38-3.989 8.818-6.135 16.114l5.58 19.995 12.09 27.201 17.257 19.725 5.309 4.827c3.89 1.577 8.42 2.983 12.848 2.949z"
style="
mix-blend-mode: normal;
fill: #efc8c3;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M73.296 127.846c1.357.26 1.964.896 2.89 1.372-1.887 3.426-.296 5.433 1.264 9.034l6.564 5.19 3.957-2.934c-.147 2.433-10.84-.158-11.4-4.942-.19-1.624.04-6.603.04-6.603-2.436-3.389-2.7-4.338-3.315-1.117z"
style="
fill: #bf7670;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #000;
stroke-width: 0;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M74.73 112.363c4.098 6.26 2.375 12.019 1.906 17.222l2.581-9.204c.412-2.847-2.922-9.067-4.486-8.018z"
style="
fill: #e8a89f;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #000;
stroke-width: 0;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M71.68 128.538c-5.742 5.5-5.715 7.529-3.575 14.693.883-1.273 2.936-3.892 4.675-4.338 0 0-2.087-.088-3.157-.818-.77-.525-.738-3.851-.809-4.242-.17-.936 4.482-5.987 4.482-5.987z"
style="
fill: #e89a91;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #000;
stroke-width: 0;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M32.015 104.05c1.71-4.67 2.668-1.649 5.244 1.03l2.132.842-3.43-3.607c-.587-1.24-1.054-2.521-3.2-3.242-1.419 1.84-1.274 2.867-.746 4.976z"
style="
fill: #822e2a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 2.40317011;
stroke-linecap: square;
stroke-linejoin: round;
paint-order: stroke fill markers;
"
/>
<path
d="m40.495 111.871 2.152 1.152s-.125-5.536-.062-6.47c.037-.554 2.07 1.896.786-3.759-.232-1.021.53-1.92.707-2.274.435-.87 2.363-3.98 2.799-4.354.435-.373 5.349-1.492 5.784-1.555.436-.062 1.68-.497 1.68-.497l-7.184.688-9.607 4.08-.688.394s3.608 9.766 3.732 10.201c.125.436.398 1.354.398 1.354z"
style="
fill: #1d120c;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 2.40317011;
stroke-linecap: square;
stroke-linejoin: round;
paint-order: stroke fill markers;
"
/>
<path
d="M54.477 112.563c.787-.943 2.157-3.238 3.158-3.565 4.96-1.622 6.858-1.5 9.98-.022 1.232.528 4.319 1.67 4.319 1.67"
style="
fill: none;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #120301;
stroke-width: 1.20158005;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M53.994 113.063c1.964-2.271 1.432-2.13 2.498-3.085"
style="
fill: none;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #120301;
stroke-width: 1.20158005;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M60.916 114.4c2.69.425 5.196.293 7.728.242 2.276-.5 4.697-.782 6.668-1.738"
style="
fill: none;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #ffb4d3;
stroke-width: 0.420555;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M74.12 114.205s-5.97 4.105-6.468 4.105c-5.476.926-7.663.408-12.44-1.742"
style="
fill: none;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #ffb4d3;
stroke-width: 1.20158005;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.829412;
paint-order: stroke fill markers;
"
/>
<path
d="M73.736 153.592c2.173.562 5.156.642 4.916 2.185l2.187-.448c-1.235-1.102-1.143-3.496-1.352-4.786l-2.396-.465c-.706-1.04-1.215-1.856-1.39-2.636-.145-.642-.094-1.229.524-2.157l-5.491.567c-3.422.967 1.338 6.839 3.002 7.74z"
style="
fill: #f9798f;
fill-opacity: 1;
fill-rule: evenodd;
stroke-width: 1.80245996;
stroke-linecap: square;
stroke-linejoin: round;
paint-order: stroke fill markers;
"
/>
<path
d="M76.155 145.493c-1.935-.085-4.265.165-6.325.456l2.289-1.292c2.782-.8 3.258-.722 4.592.263l3.45 1.79 3.08 2.813c1.097.059 2.981.091 4.484.347l3.822 1.74 3.295 1.365 2.171 1.366 4.327 2.64-2.954 1.042-.043 3.117-2.937 2.686-1.574-2.12c-.163-1.68-.46-4.469-6.456-7.025l2.08-1.704.681 1.207 2.162-.37-2.814-2.03s-10.551-1.09-9.54-1.075c6.701.095-2.516.235-2.516.235l.006-.335c-.223-.348 1.1.88.249.209-1.834-1.804-3.032-3.17-1.529-5.325z"
style="
fill: #6f2c24;
fill-opacity: 1;
stroke: none;
stroke-width: 0.60080099px;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-opacity: 1;
"
/>
<path
d="M72.23 146.23c.545 1.557 1.823 2.924 2.44 4.464 0 0 2.993-.02 3.37-1.337.376-1.318-1.677-3.84-1.677-3.84-1.042-.617-2.972.713-4.132.713z"
style="
fill: #e46c78;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M69.846 146.136c.474 1.318-.205 3.539.789 4.283.987.739 2.111 2.385 3.153 2.843 1.64.721 3.075.075 3.454.33l1.883 1.863-1.046-1.311c-1.187.584-1.212.454-4.028 1.154-3.094-2.34-6.343-6.819-4.205-9.162z"
style="
fill: #9a3b41;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.240316;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M69.303 147.978c-2.316-11.315 7.98-7.894 15.767-2.82l-.741-2.63-4.411-2.633c-4.001-2.572-8.616-2.304-11.173.77-1.034 2.282-.107 5.032.558 7.313z"
style="
fill: #db8680;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M71.864 136.992c1.322 2.106 2.412 1.754 4.412 1.495l3.276 2.548c2.496 1.68 4.151 1.385 6.828.521"
style="
fill: none;
fill-opacity: 1;
fill-rule: evenodd;
stroke: #5d221c;
stroke-width: 1.80245996;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M69.21 147.352c2.422-1.604 4.209-1.301 6.306-1.93l-4.142.094c-.723.669-2.658 1.653-2.165 1.836z"
style="
fill: #e46c78;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M77.305 150.411c-1.395-1.912-2.036-2.62-1.224-4.707l.797.095.941 1.628.527 2.104z"
style="
fill: #8f2328;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m75.626 153.006 1.864-1.997 2.249-.117-.314 2.209z"
style="
fill: #d7677f;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m70.235 156.734 1.464-.999c-.687-1.84-3.35-3.401-1.597-4.925 0 0-.267-.6-.6-.6-3.384.542-.262 4.76.733 6.524z"
style="
opacity: 0.43142102;
fill: #e89fe3;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m73.238 111.245-.856 2.267 3.526-.907z"
style="
fill: #c6878b;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.420555;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
paint-order: stroke fill markers;
"
/>
<path
d="m47.612 106.02.997 3.704.57 4.274 1.425 1.282 3.846-1.995-1.71-.57-2.564.855.428-3.846-.855-2.137z"
style="
fill: #e8c2c7;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.420555;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.582353;
paint-order: stroke fill markers;
"
/>
<path
d="m32.938 102.03-.285 3.705 1.282 4.274 2.137 4.274 2.137 2.137 4.701 4.416-.997-4.131-1.282-5.984-1.71-5.271-.997-.428.997 5.557-1.567 1.852-1.71-.713-1.994-5.84z"
style="
fill: #d7817f;
fill-opacity: 0.702941;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.829412;
paint-order: stroke fill markers;
"
/>
<path
d="m35.562 102.985.302 3.929-.806 4.03 1.914-3.93-.403-3.526z"
style="
fill: #d7817f;
fill-opacity: 0.702941;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.829412;
paint-order: stroke fill markers;
"
/>
<path
d="M66.187 160.004c2.026 1.422 6.275 12.94 11.887 17.327l3.627.806c-4.608-5.924-9.76-12.03-11.283-16.925-3.729-3.648-2.903-.92-4.231-1.208z"
style="
fill: #dba7a0;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M94.302 75.207c-1.179 0-12.38 7.37-12.38 7.37l-10.317 7.958-4.421 3.242-6.485 7.074 3.296-6.538s2.305-1.42 7.02-5.547c4.717-4.126 16.213-10.022 16.802-11.2.59-1.18 6.485-2.359 6.485-2.359z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.84112602;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M60.11 98.368c1.043-2.918 2.193-4.492 3.652-5.742s9.588-4.794 12.714-7.295c3.126-2.501 13.548-8.546 13.548-8.546l-3.96-4.794 3.335-3.543-1.668 5.628s-4.794 5.419-5.836 5.836c-1.042.417-11.047 6.253-11.047 6.253l-8.128 3.96-3.544 3.751s-.78.841-.78 1.675c0 .834 1.032 2.602 1.032 2.602M62.72 88.666l-6.253 5.21s.625-3.543 2.71-5.836c2.084-2.292 9.17-9.796 9.17-9.796s5.628-3.96 7.087-7.503c1.459-3.543 2.71-16.05 2.71-16.05h3.334s-3.126 17.926-3.751 19.176c-.626 1.25-7.712 8.963-8.546 9.796-.834.834-6.461 5.003-6.461 5.003z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.84112602;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M52.298 92.417c4.586-3.126 18.134-15.423 18.134-15.423s-13.965 6.67-14.382 7.712c-.417 1.042-3.752 7.711-3.752 7.711z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.84112602;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M49.797 92.417c3.127-2.71 9.171-12.088 9.171-12.088z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.84112602;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M74.746 77.924c-1.042 2.501-23.281 17.828-23.281 17.828l-4.352-.56-3.497-12.047z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.84112602;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M74.11 91.714c5.632-4.071 7.348-2.659 21.264-14.801l3.497 12.443z"
style="
fill: #b4b0de;
fill-opacity: 0.232353;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M56.259 94.085c-.626 1.25-1.668-.626 4.793-2.084 6.462-1.46 25.22-14.382 25.22-14.382l-13.34 1.25z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.84112602;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="m323.627 282.357-.23-.193a8.7 8.7 0 0 1-2.473 2.048c-.88.496-1.849.868-2.935 1.193-1.015.303-2.187.577-3.102.813-1.395.36-2.19.628-2.932.933.71-.292 1.586-.54 2.959-.817.91-.184 2.122-.395 3.153-.64 1.112-.263 2.136-.586 3.083-1.055 1.274-.633 2.13-1.399 2.707-2.09l-.23-.192zM330.627 280.73l-.27-.132a7.71 7.71 0 0 1-1.274 1.852c-.494.542-1.067 1.046-1.724 1.56-1.485 1.164-2.982 2.213-3.61 2.765 1.043-.916 1.708-1.144 3.786-2.521.7-.464 1.335-.937 1.892-1.466.75-.712 1.2-1.377 1.47-1.925l-.27-.133zM322.585 287.756l-.23-.193a5.168 5.168 0 0 1-.91.869c-.322.24-.676.45-1.084.659-.922.472-1.897.913-2.362 1.166.701-.382 1.231-.462 2.48-.89.44-.15.847-.316 1.228-.53a3.983 3.983 0 0 0 1.108-.888l-.23-.193zM324.252 284.025l-.21-.216c-1.455 1.413-3.182 2.694-6.378 4.289-2.78 1.387-5.614 2.685-6.96 3.43 2.215-1.227 3.318-1.498 7.088-3.158 3.23-1.422 5.194-2.699 6.67-4.13l-.21-.215z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.697059;
paint-order: stroke fill markers;
"
transform="translate(-249.235 -198.068)"
/>
<path
d="m315.081 289.235-.21-.214c-.978.956-2.08 1.86-4.209 3.145-1.832 1.106-3.675 2.151-4.543 2.697 1.333-.837 2.274-1.198 4.69-2.434 2.154-1.104 3.51-2.027 4.482-2.98l-.21-.214zM318 289.86l-.183-.239c-1.585 1.205-6.106 5.168-7.53 6.284 1.424-1.116 6.314-4.605 7.894-5.805l-.182-.24zM318.416 291.111l-.297-.043c-.028.19-.096.486-.383.948a8.273 8.273 0 0 1-.849 1.096c-.328.37-.708.761-.996 1.063-.46.483-.611.66-.81.896.16-.189.426-.427.891-.81.322-.264.747-.604 1.127-.935a8.8 8.8 0 0 0 1.029-1.03c.376-.46.542-.838.585-1.142l-.297-.043z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 0.60080099;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.697059;
paint-order: stroke fill markers;
"
transform="translate(-249.235 -198.068)"
/>
<path
d="M38.209 37.835h16.132v14.581H38.209z"
style="
fill: #f0f;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.757761;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.697059;
paint-order: stroke fill markers;
"
transform="matrix(.99817 -.06051 .12198 .99253 0 0)"
/>
<path
d="M60.646 31.402h15.981V45.94H60.646z"
style="
fill: #f0f;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.75309902;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.697059;
paint-order: stroke fill markers;
"
transform="matrix(.99876 .0498 -.08827 .9961 0 0)"
/>
<switch
style="fill: #000"
transform="rotate(-.46 10643.702 -16948.83) scale(.09484)"
>
<g style="fill: #000">
<path
d="m53.6 95.5 26-42.5c1.7-2.9-.3-6.5-3.6-6.5H61.7V5.9c0-1.9-1.5-3.4-3.4-3.4H41.7c-1.9 0-3.4 1.5-3.4 3.4v40.6H24c-3.3 0-5.4 3.7-3.6 6.5l26 42.5c1.6 2.7 5.6 2.7 7.2 0z"
style="fill: #000"
transform="rotate(3.793 50.077 50.323)"
/>
</g>
</switch>
<g style="fill: #000; fill-opacity: 1">
<path
d="M31.545 44.791h4.808v16.346h-4.808zM45.969 44.791h4.808v16.346h-4.808z"
style="
fill: #000;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 1;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.697059;
paint-order: stroke fill markers;
"
transform="matrix(.49429 -.0341 .0341 .49429 29.071 17.002)"
/>
<path
d="m36.3 44.723 4.86 6.078 4.809-6.01.595 6.68-5.403 6.301-4.86-6.078z"
style="
fill: #000;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 1;
stroke-linecap: square;
stroke-linejoin: round;
stroke-miterlimit: 4;
stroke-dasharray: none;
stroke-opacity: 0.697059;
paint-order: stroke fill markers;
"
transform="matrix(.49429 -.0341 .0341 .49429 29.071 17.002)"
/>
</g>
<path
d="m326.321 283.303-.45-.029c-.03.47-.1 1.068-.39 1.829-.218.57-.519 1.128-.896 1.725-.853 1.349-1.782 2.633-2.145 3.267.57-.998 1.168-1.42 2.508-3 .465-.548.872-1.097 1.19-1.69.428-.799.597-1.51.633-2.073l-.45-.03zM319.422 286.86l-.18-.412c-.92.402-2.142 1.152-3.679 2.25-1.596 1.14-2.585 1.925-3.472 2.475a99.3 99.3 0 0 1 3.71-2.092c1.88-1.003 2.698-1.325 3.801-1.808l-.18-.412zM320.392 287.184l-.438.105c.07.29.129.606.052.946-.06.267-.196.524-.421.81-.213.27-.493.547-.717.786-.346.369-.486.57-.632.803.13-.209.36-.414.746-.667.276-.18.604-.366.915-.597.314-.233.597-.507.783-.872.254-.498.246-1.02.15-1.42l-.438.106zM310.474 288.693l-.408-.192c-.248.527-.526 1.038-1.376 1.87-.296.291-.63.59-.89.826-.357.324-.619.583-.776.73.17-.16.446-.338.88-.586.302-.173.699-.39 1.063-.614.979-.602 1.615-1.206 1.914-1.842l-.407-.192zM309.18 293.976l-.394-.219a1.347 1.347 0 0 0-.148.672c.005.195.044.366.085.53.042.165.079.304.088.455a.842.842 0 0 1-.116.502c.089-.136.183-.248.29-.464.077-.157.128-.301.188-.47.061-.171.108-.292.176-.42.082-.156.172-.272.225-.368l-.394-.218zM309.072 296.24l-.45-.031c-.01.167-.01.329-.046.466a.664.664 0 0 1-.206.33c-.118.111-.274.212-.412.309-.226.158-.276.217-.395.327.092-.085.241-.135.46-.162.14-.017.363-.03.544-.069a1.16 1.16 0 0 0 .598-.315c.242-.245.34-.574.357-.824l-.45-.031z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-opacity: 0.83823494;
paint-order: stroke fill markers;
"
transform="translate(-249.235 -198.068)"
/>
<path
d="m308.749 293.76-.447.056c.035.28.237.54.43.774.076.092.14.172.178.259.052.118.046.234 0 .313.044-.076.12-.16.178-.31.044-.114.066-.238.079-.382.019-.217.032-.744.029-.766l-.447.056zM307.886 288.801l-.339-.297c-.32.366-1.02 1.276-1.767 2.186-.704.86-1.473 1.793-1.667 1.992.278-.286 1.038-.886 1.987-1.674.963-.8 1.77-1.505 2.125-1.91l-.339-.297zM302.712 290.634l-.374-.252c-.401.595-.654 1.015-1.553 2.03-.479.54-1.68 1.829-1.739 1.887.415-.414 1.054-.822 2.043-1.554.964-.714 1.635-1.324 1.996-1.86l-.373-.251zM299.37 292.898l-.436-.114c-.03.11-.048.266-.143.493a3.15 3.15 0 0 1-.31.55c-.16.238-.842 1.126-.836 1.12.227-.271.594-.438 1.15-.795a3.44 3.44 0 0 0 .585-.456c.234-.235.372-.48.425-.684l-.435-.114zM298.291 290.957l-.445.067c.023.157.064.364.023.646a2.64 2.64 0 0 1-.229.716c-.114.25-.266.522-.388.75-.228.425-.23.458-.362.732.083-.173.247-.372.505-.626.186-.183.407-.381.617-.601.212-.223.404-.462.541-.736.187-.376.226-.736.184-1.014l-.446.066zM324.273 284.273l-.443-.08c-.137.753-.28 1.42-.843 2.588-.473.98-.968 1.902-1.193 2.343.32-.627.77-1.053 1.576-2.106.76-.99 1.2-1.86 1.346-2.664l-.443-.081zM297.213 285.028l-.417-.17c-.471 1.153-.862 2.763-1.173 4.983-.283 2.019-.481 4.023-.674 4.997.106-.535.723-3.374 1.116-4.91.59-2.307 1.06-3.496 1.565-4.73l-.417-.17z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-opacity: 0.83823494;
paint-order: stroke fill markers;
"
transform="translate(-249.235 -198.068)"
/>
<path
d="m296.89 284.057-.407-.194c-.46.962-1.444 3.985-1.857 4.83.413-.845 2.207-3.473 2.67-4.441l-.406-.195zM294.734 282.764l-.45.026c.033.558.076 1.005-.101 2.052-.067.394-.436 2.196-.42 2.126.125-.538.426-1.053.85-1.994.407-.903.606-1.634.57-2.236l-.45.026zM293.764 278.56l-.445-.073c-.133.821.1 3.177.013 3.953.087-.776.75-3.022.876-3.809l-.444-.072z"
style="
fill: #271a1a;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-opacity: 0.83823494;
paint-order: stroke fill markers;
"
transform="translate(-249.235 -198.068)"
/>
<path
d="m292.362 276.188-.444.075c0 .007.041.012.085.063.034.041.063.1.085.178.02.075.034.16.044.232a.753.753 0 0 1 .014.206c.012-.04.067-.082.148-.132.058-.036.137-.08.21-.133a.824.824 0 0 0 .209-.212.524.524 0 0 0 .093-.353l-.444.076z"
style="
fill: #3d2929;
fill-opacity: 1;
fill-rule: nonzero;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-opacity: 0.83823494;
paint-order: stroke fill markers;
"
transform="translate(-249.235 -198.068)"
/>
<path
d="M88.262 187.055c9.491 1.464 18.595.048 23.553-4.2.6-.516 3.692-4.726 4.525-6.497 1.435-3.051 2.361-6.595 5.45-8.32 7.776-4.346 15.044-13.12 15.044-13.12 2.96-8.753 2.858-17 5.093-22.438.364-.886 1.383-2.829 1.894-3.556 3.364-4.782 6.424-4.498 5.21-11.283 3.978-6.083 6.7-9.565 7.417-16.496 5.61-.13 17.757 2.128 18.536-3.282-6.972.47-10.78.013-20.67-.953-1.603 6.76-6.026 13.99-8.11 18.632-1.338 2.984.218 6.369-.16 9.991-1.662.915-5.35 1.097-6.452 2.449-3.708 4.547-2.6 12.197-4.283 21.218l-1.372 6.48-16.923 15.018c-7.802 15.645-19.207 16.026-36.755 12.368l-3.006-2.843c1.761 5.126 5.951 5.923 11.009 6.832z"
style="
mix-blend-mode: normal;
fill: #07ece4;
fill-opacity: 1;
fill-rule: evenodd;
stroke: none;
stroke-width: 0.90118903;
stroke-linecap: square;
stroke-linejoin: round;
stroke-opacity: 1;
paint-order: stroke fill markers;
"
/>
<path
d="M101.95 171.057c-3.918 3.817-11.72.428-16.025-1.739-6.629-3.335-8.954-5.776-9.01-9.023l1.227.642.234.043-.519-.432.334-5.784 2.574 7.464 6.752 4.661 16.715-.377c.202 1.245-1.064 3.655-2.282 4.545z"