-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1314 lines (1298 loc) · 111 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">
<title>Новогоднее соревнование в CS центре</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/favicon.ico"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,900;1,400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<meta property="og:image" content="https://advent.compscicenter.ru/img/meta.jpg">
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (m, e, t, r, i, k, a) {
m[i] = m[i] || function () {
(m[i].a = m[i].a || []).push(arguments)
};
m[i].l = 1 * new Date();
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a)
})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(86596316, "init", {
clickmap: true,
trackLinks: true,
accurateTrackBounce: true
});
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/86596316" style="position:absolute; left:-9999px;" alt=""/></div>
</noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body>
<header class="header">
<div class="header__logo"><img src="img/logo-csc.svg" width="160" height="80" alt=""></div>
<div class="header__menu">
<a class="header__link" href="/rules.html"><img src="img/rules.svg" width="48" height="48"
alt="">Правила
участия</a>
<a class="header__link" href="/top.html"><img src="img/star.svg" width="48" height="48"
alt="">Рейтинг</a>
</div>
</header>
<img src="img/logo-3.svg" style="width: 90%; max-width: 600px; margin: 0 auto 20px auto;" alt="">
<p class="subtitle">Адвент-календарь от CS центра: рассказываем про десять языков программирования и предлагаем задачи, чтобы попробовать их на практике. Соревнование завершено, но можно
<a href="https://stepik.org/course/104639/promo" target="_blank" rel="nofollow">поупражняться в задачах</a>.</p>
<div class="steps-wrapper">
<a href="https://stepik.org/course/104639/promo" target="_blank" rel="nofollow" class="step" id="start">
<div class="svg-wrapper">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 520 972"
xml:space="preserve">
<path d="M466.6 554.1 259.3 434.6 53.6 554.2l.5.3h.2l206.4 119.2 205.2-119.2h-.7l.9-.1.5-.3z" fill="#ffb1b0"/>
<g id="side-back">
<path
d="M370 553.1H148.9c.2 16.3 11.1 32.6 32.6 45 21.6 12.5 50 18.7 78.3 18.7 2.1 0 4.1 0 6.2-.1 4.3-.1 8.6-.4 12.9-.9 3.4-.3 6.7-.8 10-1.3 6.3-1 12.4-2.3 18.4-3.9 2.9-.8 5.7-1.6 8.4-2.6.1 0 .1 0 .2-.1 4.6-1.6 9-3.4 13.3-5.4.1 0 .2-.1.3-.1 2.9-1.4 5.7-2.8 8.4-4.4 21.4-12.3 32-28.6 32.1-44.9z"
fill="#ff7a63"/>
<path
d="M350.1 522.6zM370 529c-5.9-8.6-14.9-16.5-26.6-23.3-15.4-8.9-34.3-15.1-54.9-18 20.6 3 39.5 9.1 54.9 18 11.7 6.8 20.7 14.7 26.6 23.3zM176 505.7c15.5-9 34.5-15.2 55.3-18.1-20.7 3-39.8 9.1-55.3 18.1-20 11.6-31.8 26.6-34 42.8 2.2-16.1 14.1-31.2 34-42.8zM53.6 554.2l205.8-119.6z"
fill="none"/>
<path
d="M378.4 554.2c0-6.9-1.8-13.6-5.2-20-.3-.5-.6-1.1-.9-1.6-.7-1.2-1.5-2.4-2.3-3.6-5.9-8.6-14.9-16.5-26.6-23.3-15.4-8.9-34.3-15.1-54.9-18-9.4-1.4-19.1-2-28.9-2-9.7 0-19.1.7-28.3 2-20.8 2.9-39.8 9.1-55.3 18.1-20 11.6-31.8 26.6-34 42.8-.3 1.9-.4 3.8-.4 5.7v.3h.4v1.4h236v-1.4h.4v-.4z"
fill="#ff7a63"/>
<path
d="M143.2 556.2h8.2c-.2-16.1 10.2-32.3 31.4-44.6 2.5-1.4 5-2.8 7.7-4.1 1.9-.9 3.8-1.7 5.8-2.6 1.2-.5 2.5-1 3.8-1.5 8.9-3.4 18.5-5.9 28.5-7.6 2.7-.5 5.4-.9 8.1-1.2 7.4-.9 14.8-1.4 22.3-1.4h.2c7.4 0 14.8.5 22 1.3 2.8.3 5.5.7 8.2 1.2 13.8 2.3 26.9 6.2 38.6 11.8.4.2.7.4 1.1.5 2.3 1.1 4.5 2.3 6.6 3.5 6.2 3.6 11.5 7.5 15.9 11.7.1.1.3.2.4.4 1.2 1.2 2.4 2.4 3.4 3.6.2.2.4.5.6.7l.1.1c7.6 8.8 11.4 18.5 11.4 28.2h8.5c.1-17.4-11.4-34.8-34.4-48.1-16.8-9.7-37.4-15.8-59.1-18.4-.3 0-.5-.1-.8-.1-2.4-.3-4.9-.5-7.4-.7-7.7-.6-15.5-.7-23.3-.4h-.3c-9 .4-18 1.3-26.7 2.9-1.2.2-2.5.5-3.7.7-1.9.4-3.8.8-5.6 1.3-.1 0-.1 0-.2.1-13.6 3.3-26.3 8.2-37.4 14.6-22.8 13.2-34.1 30.7-33.9 48.1z"
fill="#fbd854"/>
<path
d="M259.3 434.6 53.6 554.2l.5.3 87.6 10v-10.3c0-1.9.1-3.8.4-5.7 2.2-16.2 14.1-31.2 34-42.8 15.5-9 34.5-15.2 55.3-18.1 9.1-1.3 18.6-2 28.3-2 9.9 0 19.6.7 28.9 2 20.6 3 39.5 9.1 54.9 18 11.7 6.8 20.7 14.7 26.6 23.3.8 1.2 1.6 2.4 2.3 3.6.3.5.6 1.1.9 1.6 3.4 6.4 5.1 13.1 5.2 20v10.3l87.6-10 .5-.3-207.3-119.5z"
fill="#ffb1b0"/>
<path
d="M288.5 487.7c-9.4-1.4-19.1-2-28.9-2-9.7 0-19.1.7-28.3 2 9.1-1.3 18.6-2 28.3-2 9.9 0 19.6.6 28.9 2zM141.6 554.2c0-1.9.1-3.8.4-5.7-.2 1.9-.4 3.8-.4 5.7v.3c.1-.1 0-.2 0-.3zM370 529c.8 1.2 1.6 2.4 2.3 3.6-.7-1.2-1.5-2.4-2.3-3.6z"
fill="#ffb1b0"/>
<path fill="#8886fc"
d="m53.6 554.2 205.7-119.6 207.1 119.6-.5.3h6.1L259.3 431.4 48 554.2l.5.3h5.6zM259.3 434.6l207.1 119.6z"/>
<path
d="M335 532.8c-2.4-1.4-5-2.7-7.6-3.9-42.2-19.9-104.7-18.5-143.9 4-16.1 9.2-25.9 20.7-29.5 32.7 3.6 12.1 13.7 23.7 30 33.1 41.9 23.9 109.9 23.9 151.5 0 16.1-9.2 25.9-20.7 29.5-32.7-1.8-5.8-5-11.6-9.7-17-5.1-5.9-11.8-11.4-20.3-16.2z"
fill="#8886fc"/>
</g>
<g id="flag">
<g id="group_00000018919276473074870070000007630770149804417209_">
<path id="wood" d="m423.6 5.6 9.6 8.1-100.4 119.4-9.6-8.1L423.6 5.6z" fill="#a1a3a8"/>
<g id="textile">
<path d="m423.8 5 14.9 12.6-12.6 14.9-14.9-12.6L423.8 5z" fill="#8886fc"/>
<path d="m438.7 17.6 14.9 12.6L441 45.1l-14.8-12.6 12.5-14.9z" fill="#fff"/>
<path d="m453.6 30.1 14.9 12.6L456 57.6 441 45l12.6-14.9zM483.5 55.3l14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z"
fill="#8886fc"/>
<path
d="m468.5 42.7 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9zM411.2 19.9l14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z"
fill="#fff"/>
<path d="m426.2 32.6 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z" fill="#8886fc"/>
<path
d="M441.1 45.1 456 57.6l-12.5 14.9-14.9-12.6 12.5-14.8zM470.9 70.2l14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z"
fill="#fff"/>
<path d="m456 57.6 14.9 12.6-12.6 14.9-14.9-12.6L456 57.6z" fill="#8886fc"/>
<path d="M386.1 49.7 401 62.3l-12.6 14.9-14.9-12.6 12.6-14.9z" fill="#fff"/>
<path d="m401 62.3 14.9 12.6-12.6 14.9-14.9-12.6L401 62.3z" fill="#8886fc"/>
<path d="m416 74.9 14.9 12.6-12.6 14.9-14.9-12.6L416 74.9zM445.8 100l14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z"
fill="#fff"/>
<path
d="m430.9 87.5 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9zM398.7 34.9l14.9 12.6L401 62.4l-14.9-12.6 12.6-14.9z"
fill="#8886fc"/>
<path d="M413.6 47.4 428.5 60l-12.6 14.9L401 62.4l12.6-15z" fill="#fff"/>
<path d="m428.5 59.9 14.9 12.6-12.6 14.9L416 74.9l12.5-15zM458.3 85l14.9 12.6-12.5 14.9-14.9-12.6L458.3 85z"
fill="#8886fc"/>
<path d="m498.4 67.9 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z" fill="#fff"/>
<path d="m485.8 82.7 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z" fill="#8886fc"/>
<path d="m473.3 97.7 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z" fill="#fff"/>
<path d="m460.7 112.5 14.9 12.6L463 140l-14.8-12.5 12.5-15z" fill="#8886fc"/>
<path d="m443.4 72.5 14.9 12.6-12.6 14.9-14.9-12.6 12.6-14.9z" fill="#fff"/>
</g>
</g>
</g>
<g id="hand">
<g id="finger">
<g id="group_00000143580606124979761300000018075199754390629787_">
<path
d="M319.8 345.7s13.7-13.9 13.4-13.9c16.1-15.9 11.3-35.3-10.3-38.3-6.7 1-21.1 16.4-21.1 16.4-1.2 1.2-5.5 6.5-6.8 7.8l-3.8 3.7 28.6 24.3zm-12.3-25.2s.1 0 0 0c.1 0 0 0 0 0z"
fill="#fbd854"/>
<path d="m300.3 329.9 21.1-21.3c5.4-3.3 12.4 4.4 7.9 9-.2.2-19.1 21.5-19.1 21.5l-9.9-9.2z" fill="#fbae2f"/>
</g>
</g>
<g id="group">
<path
d="M327.4 220.2c-8.7 10.4-41.7 49.7-51 60.7l-50-42 51-60.7 7.2 6 12.1 10.2c2.8 2.3 8.5 7.2 11.3 9.5l12.1 10.2 7.3 6.1zM326.5 203.4l21.6-25.7 9.9 8.3-21.6 25.7-9.9-8.3zM315.7 284.3l-16.2 19.2-15-12.6 1.3-1.5 31.4-37.4c6.8 9.6 6.2 23.5-1.5 32.3z"
fill="#8ac8e1"/>
<path d="M306.1 321.5s-.1 0 0 0c-.1 0 0 0 0 0z" fill="#fff"/>
<path d="M247.8 361.3c-.4.1-.8.2-1.2.2.4-.1.8-.1 1.2-.2z" fill="#adc6ff"/>
<path
d="M295.6 314.4c-.3 1.3-.6 4.7-.8 6 0 0-42.2 42.6-43.9 43.1 0 0-6-3.6-5.9-3.6.4-14.8 8.7-29.2 16.1-42.1l16.2-19.2 18.3 15.8z"
fill="#adc6ff"/>
<path
d="M246.6 361.5c.4 0 .8-.1 1.2-.2-.4.1-.8.1-1.2.2zm67.7-4.4-.1.1c.1 0 .1 0 .1-.1.1 0 0 0 0 0zm-67.7 4.4c.4 0 .8-.1 1.2-.2-.4.1-.8.1-1.2.2z"
fill="#fff"/>
<path
d="m301 310.5-1-.3c-1.3 1.3-5.8 6.8-7.2 8.2 0 0-41.1 40.9-41.8 41.4h-1c-3 3.2-7.9-.1-10-2.1-5.2-6.5 1.5-17.5 3.2-24.4-6.8-4.7-17.6 1.1-22.3 6.4-7.1 8.5-8.5 21.1-7.4 30.4l12.6 61.5-33.7 217.9c-.3 1.9.2 3.8 1.5 5.2 1.2 1.4 3 2.3 4.9 2.3h97.8c3.5 0 6.3-2.7 6.5-6.1L314 459.8l53.6-53.6c7.3-7.3 7.3-19.1 0-26.4-2-2-4.4-3.5-7-4.4 2.2-9.7-4.5-20-14.2-22 1.1-8.8-5.4-17.2-14.4-19m-26-12.9s.1 0 0 0c.1 0 0 0 0 0z"
fill="#fbd854"/>
<path
d="M306 321.5s.1 0 0 0c.1 0 0 0 0 0zm8.3 35.6-.1.1c.1 0 .1 0 .1-.1.1 0 0 0 0 0zM303 199.7l5 4.2-5-4.2z"
fill="#fff"/>
<path d="m300.5 112 2.1-2.5 10 8.4-11 12.1-1.1-18z" fill="#8ac8e1"/>
<path d="m314.3 357.1-.1.1c.1 0 .1 0 .1-.1.1 0 0 0 0 0zm-8.3-35.6s.1 0 0 0c.1 0 0 0 0 0z" fill="#fbae2f"/>
<path
d="M306 321.5s.1 0 0 0c.1 0 0 0 0 0zm0 0s.1 0 0 0c.1 0 0 0 0 0zm-59.4 40c.4 0 .8-.1 1.2-.2-.4.1-.8.1-1.2.2zm3.4-1.7h1-1z"
fill="#fbd854"/>
<path
d="M323 324.5c-7.8 9.6-17.9 21.2-24.9 29.8l-1.3 1.6c-2.2 2.7-1.9 6.6.7 8.9s6.5 2.2 8.9-.2l3.3-3.3 4.5-4.5h.2s0-.1-.1-.1l9.5-9.5c1.9-1.9 4.9-2.2 7.1-.7 3.1 1.9 3.3 6.4.7 8.9L329 358h.1c-4.5 4.4-11.3 11.2-15.8 15.6l9.4 9.2 9.3-9.1 6.5-6.5c3.5-3.6 9.9-1 9.9 4.1 0 1.5-.6 3-1.7 4l-5.8 5.7c-2.8 2.8-7.6 7.5-10.5 10.3l4.7 4.6 4.7 4.6c4-3.9 9.5-9.4 13.5-13.3 5.6-1.6 9.9 5.3 5.7 9.5-3.5 3.4-10.5 10.4-14 13.8L303.5 452c-1.2 1.1-1.9 2.7-2 4.4l-.1 2.2L290.8 644h-84.1l32.9-211.7c.1-.8.1-1.6-.1-2.3l-12.8-62.3c-.6-6.8.6-16.1 5.5-20.8.4 5 .9 10.7 1.2 13.4 1.1 9.6 9.1 15.4 18.2 13.2 3.9-.9 7.9-3.1 11.2-6.4l30.2-30.2 18.9-18.9"
fill="#fbae2f"/>
<g>
<path d="M355.9 152.4c-7.7 9.2-30.1 35.8-38.2 45.4-4.3-3.6-29.6-24.9-34.4-28.9l38.2-45.4 34.4 28.9z"
fill="#8ac8e1"/>
<path d="M269.6 294.4c-30.9 28-75.5-7.7-55.3-43.9.3-.6 4.3-6 4.6-6.6l56.7 44.7-6 5.8z" fill="#adc6ff"/>
<path
d="m345.5 218 28.6-34.1-18.3-15.4 14.7-17.6c-18.1-15.3-52.2-44-70-58.9l-13 15.4 2.3 35c-15 17.8-57.8 68.9-73.4 87.5-13.8 13.4-21.2 33.8-14.1 52-14.1-1.8-28.6 3.8-37.7 14.8l9.9 8.4c9.9-12.3 29.5-14 41.4-3.6 9.7 8.2 22.2 11.9 34.7 10.4-3.7 6.7-6.6 13.6-8.8 20.8 0 0 0-.1-.1-.1-1.2 6.2-9 22-1.9 26 2 2.6 7.7 3.8 11 1.1.6-15.4 4.9-31.1 13.5-44.1l12.7-15.1 16.4 13.8c-.3 1.3-.6 2.7-.8 4 3.5-3.6 8.4-8.1 11.5-12l.2.2c19-26.3 50.2-1.7 32.6 20.2l-5.2 6.4c2.7.6 5.2 1.8 7.3 3.5l8.3-9.8c13.6-15.3 1.5-41.2-18.9-40.7 7.2-13 5.3-30.6-4.4-41.8m12.2-34.1-8.4-7 20.3-24.2 8.4 7-20.3 24.2zm-33.5-99.3 8.4 7.1-8.7 9.6-1-15.2 1.3-1.5zm18.6 15.6 31.7 26.6c-7.1 8.5-27.7 32.9-35.1 41.8-4-3.3-27.2-22.9-31.7-26.6l35.1-41.8zM267 292c-29.5 24.2-68.8-11.2-48.3-43l49.7 41.8c-.5.4-1 .8-1.4 1.2zm47.7-7.2-14.9 17.8L286 291l1.2-1.4 29-34.5c6.2 8.7 5.6 21.6-1.5 29.7zm-.4-49-37.9 45.1-50-42 51-60.7 7.2 6-27.1 32.2c-2.8 3.3-2.4 8.3 1 11.2 3.4 2.8 8.4 2.4 11.2-1l27.1-32.2c2.8 2.3 8.5 7.2 11.3 9.5L281 236.1c-2.8 3.3-2.4 8.3 1 11.2 3.3 2.8 8.3 2.4 11.2-1l27.1-32.2 7.3 6.1-13.3 15.6z"
fill="#fff"/>
<path
d="M242.5 332.6c-.1.2-.2.5-.2.8l-.1-.1.2-.8.1.1zm5.3 28.7c-.4.1-.8.2-1.2.2.4-.1.8-.1 1.2-.2zm3.8-9.2-1.6 7.7c1 0 .9 0 1 .1 0-2.6.2-5.2.6-7.8z"
fill="#fff"/>
</g>
</g>
</g>
<g id="side-front">
<path
d="m472.6 748.6-.1-48.9-.1-47.3-.1-49.7-.1-48.2-66 37.4-81.6 47.1-65.3 37.7.1 48.9v.8l.1 47.3v1.6l.1 47.3v.8l.1 48.1v.8l.1 48.9 65.3-37.7.7-.4 80.9-46.7 66-38.1-.1-49.7z"
fill="#8886fc"/>
<path fill="#ff935e"
d="m263.6 719-.1-39.9 57.5-33.2.1 40zM329.5 876.2l-.2-40 73.1-42.1.1 39.9zM411 829.1l-.1-40 57.5-33.1.1 39.9zM452 756.4l-.1-39.9 16.3-9.4.1 39.9zM370.5 803.5l-.2-39.9 73.1-42.2.1 39.9zM410.8 731.2l-.2-39.9 57.5-33.1.1 39.9zM451.8 659.4l-.1-39.9 16.2-9.4.2 39.9zM264.2 913.9l-.1-40 57.4-33.1.1 39.9zM288.9 850.6l-.1-39.9 73-42.2.1 39.9zM329.2 778.3l-.1-39.9 73-42.1.1 39.9zM370.2 706.5l-.1-39.9 73-42.2.1 39.9zM410.5 634.2l-.1-39.9 57.4-33.1.1 39.9zM288.6 753.6l-.1-39.9 73-42.2.2 39.9zM328.9 681.3l-.1-39.9 73-42.2.2 40z"/>
<g>
<path fill="#ff935e" d="m263.9 816-.1-39.9 57.4-33.2.2 40z"/>
</g>
<g>
<path fill="#ff935e" d="m263.8 767.9-.1-39.9 16.3-9.4.1 39.9z"/>
</g>
<g>
<path fill="#ff935e" d="m264 864.9-.1-39.9 16.3-9.4.1 39.9z"/>
</g>
<g>
<path d="m50.8 558.7 207.1 119.6-.7 238L50.1 796.7l.7-238z" fill="#fbae2f"/>
</g>
<g>
<path d="m47.9 553.8 212.8 122.9-.7 244.5L47.2 798.3l.7-244.5zm209.3 362.5.7-238L50.8 558.7l-.7 238 207.1 119.6"
fill="#8886fc"/>
</g>
<g>
<path
d="M344 602.7c-20.7 12-47.8 19-76.9 20 29-1 56.2-8 76.9-20 12.5-7.3 21.9-15.9 27.6-25.3-5.8 9.4-15.1 18-27.6 25.3zM141.9 558.8c2 16.6 14.1 32.1 34.7 43.9 22.4 12.9 52.2 20.1 83.8 20.1-31.6 0-61.4-7.1-83.8-20.1-20.6-11.9-32.7-27.3-34.7-43.9zM374.7 571.5c-.9 2-1.9 4-3.1 5.9 1.2-2 2.2-3.9 3.1-5.9z"
fill="none"/>
<path
d="M374.4 554.5c0 16.9-11.1 33.7-33.2 46.6-7.7 4.5-16.3 8.2-25.5 11.1-3.7 1.2-7.6 2.3-11.5 3.2-1.7.4-3.3.8-5 1.1-6.2 1.3-12.5 2.3-18.8 2.9-2.2.2-4.3.4-6.5.6-2.6.2-5.2.3-7.8.4h-.7c-21.3.5-42.9-2.4-62-8.7-8.6-2.8-16.6-6.4-24-10.6-22.3-12.9-33.5-29.7-33.8-46.6h-4c0 1.4.1 2.9.3 4.3 2 16.6 14.1 32.1 34.7 43.9 22.4 12.9 52.2 20.1 83.8 20.1 2.2 0 4.4 0 6.6-.1 29.1-.9 56.2-7.9 76.9-20 12.5-7.3 21.9-15.9 27.6-25.3 1.2-1.9 2.2-3.9 3.1-5.9l.9-2.1c1.8-4.8 2.8-9.8 2.8-14.8h-3.9v-.1z"
fill="#ff7a63"/>
<path
d="M261 621c8.7-.1 17.4-.7 25.8-1.8 2.9-.4 5.8-.9 8.6-1.4 1.4-.3 2.7-.5 4.1-.8 3.4-.7 6.8-1.5 10.2-2.5.5-.1.9-.2 1.4-.4 11.2-3.2 21.8-7.5 31.1-12.9 22.5-13.1 33.8-30.2 33.8-47.4h-8.5c-.1 15.9-10.5 31.8-31.4 43.9-2.6 1.5-5.3 3-8.2 4.3-.1 0-.2.1-.3.1-4.1 1.9-8.5 3.7-13 5.2-.1 0-.1 0-.2.1-2.7.9-5.5 1.8-8.2 2.5-5.8 1.6-11.8 2.9-18 3.8-3.2.5-6.5.9-9.8 1.3-4.2.4-8.4.7-12.6.8-2 .1-4 .1-6 .1-27.7 0-55.4-6.1-76.5-18.3-21-12.1-31.6-28-31.8-43.9h-8.2c.2 17.2 11.7 34.4 34.5 47.5 7.5 4.3 15.7 7.9 24.5 10.8 18.1 5.9 38.4 8.9 58.6 8.8-.1.2 0 .2.1.2z"
fill="#fbd854"/>
<path
d="m375.6 569.3-.9 2.1c-.9 2-1.9 4-3.1 5.9-5.8 9.4-15.1 18.1-27.6 25.3-20.7 12-47.8 19-76.9 20-2.2.1-4.4.1-6.6.1-31.6 0-61.4-7.1-83.8-20.1-20.6-11.9-32.7-27.3-34.7-43.9-.2-1.4-.3-2.8-.3-4.3H54.1l206.6 119.3 205.2-119.2h-87.6c0 5.1-.9 10-2.7 14.8z"
fill="#ffb1b0"/>
<path
d="m375.6 569.3-.9 2.1c.3-.6.6-1.4.9-2.1zM141.7 554.5zM260.4 622.8c2.2 0 4.4 0 6.6-.1-2.2 0-4.4.1-6.6.1z"
fill="#ffb1b0"/>
<path fill="#8886fc" d="M260.7 673.8 54.1 554.5h-5.6L260.7 677 472 554.5h-6.1zM54.1 554.5l206.6 119.3z"/>
</g>
</g>
<g id="btn">
<path fill="#ff7a63"
d="m131.8 719-6.5-3.7-.1 19.7-6.5-3.7v-19.8l-7.1-4.1v-6.2l20.2 11.7zM95.8 710.4l2.1 1.3v11l-2.1-1.2-4.4-2.6-.1 17.4v2.4l-2.1-1.2-6.5-3.8-2.2-1.2V730l.1-17.3-5-2.9-2.1-1.2v-11l2.1 1.2zM114 739.1l2.6-6 2.6 9z"/>
<path fill="#eee5c4" d="M95.8 712.9v6.1l-6.5-3.7-.1 19.7-6.5-3.7v-19.8l-7.1-4.1v-6.2z"/>
<path
d="m131.4 758.5 1.2 4.1-3.2-1.9-6.8-3.9-1.4-.8-.5-1.8-1.1-3.9-6.1-3.5-1.1 2.6-.5 1.2-1.4-.8-6.6-3.8-3.2-1.9 1.3-2.7 9.9-21 .6-1.2 1.4.8 6.1 3.5 1.4.8.5 1.8 9.5 32.4zm-8.7-4.1 6.8 3.9-9.7-32.3-6.1-3.5-9.9 21 6.6 3.8 1.7-3.8 9 5.2 1.6 5.7M152.1 752.7v3.6l-3.2-1.8v-3.7z"
fill="#ff7a63"/>
<path
d="M149.9 749.6c2.2 1.3 3.6 3.2 3.6 5.5 0 2.1-1.4 2.7-3.6 1.4l-3-1.7V748l3 1.6zm2.2 6.7v-3.7l-3.2-1.8v3.7l3.2 1.8M191.1 765.5l2.1 1.2v11l-2.1-1.2-4.4-2.6-.1 17.4v2.4l-2.1-1.2-6.5-3.8-2.2-1.2v-2.4l.1-17.4-5-2.9-2.1-1.2v-11l2.1 1.2z"
fill="#ff7a63"/>
<path
d="m33.7 647.2 169.5 97.9-.2 84-169.5-97.9.2-84zm95.8 113.5 3.2 1.9-1.2-4.1-9.7-32.3-.5-1.8-1.4-.8-6.1-3.5-1.4-.8-.6 1.2-9.9 21-1.3 2.7 3.2 1.9 6.6 3.8 1.4.8.5-1.2 1.1-2.6 6.1 3.5 1.1 3.9.5 1.8 1.4.8 7 3.8m-63.6-43.1 1.3-1.3-1.7-2.4-4.8-6.7-1.6-2.3-1.3 1c-1.3 1-2.1 1.1-3.6.3-2.2-1.3-3.4-4.3-3.4-6.6s1.2-4 3.4-2.7c1.4.8 2.3 2 3.4 4.1l1.3 2.6 1.7-.5 4.7-1.5 1.6-.5-1.2-2.6c-2.7-6-6.6-10.4-11.4-13.2-8-4.6-14.3-1.1-14.3 8s6.1 19.7 13.9 24.3c5.2 3.1 8.9 3 12 0m84.2 47.5c7.4 4.3 12.2 2.3 12.2-5.1 0-7.2-4.6-14.6-11.8-18.7l-10.1-5.8-2.1-1.2v2.5l-.1 26.6v2.4l2.1 1.2 6.5 3.8 2.1 1.2v-7.5l1.2.6m43.1 4v-2.5l-2.1-1.2-20.2-11.7-2.1-1.2v11l2.1 1.2 5 2.9v19.7l2.1 1.2 6.5 3.8 2.1 1.2v-19.7l4.4 2.5 2.1 1.2v-2.4l.1-6m-95.3-55v-2.5l-2.1-1.2-20.2-11.7-2.1-1.2v11l2.1 1.2 5 2.9v19.7l2.1 1.2 6.5 3.8 2.1 1.2v-19.7l4.4 2.5 2.1 1.2v-2.4l.1-6"
fill="#8ac8e1"/>
<path
d="m65.4 713.9 1.7 2.4-1.3 1.3c-3 3-6.8 3.1-11.9.1-7.8-4.5-14-15.2-13.9-24.3 0-9.1 6.3-12.6 14.3-8 4.8 2.8 8.6 7.2 11.4 13.2l1.2 2.6-1.6.5-4.7 1.5-1.7.5-1.3-2.6c-1.1-2.1-2-3.3-3.4-4.1-2.2-1.3-3.4.4-3.4 2.7s1.1 5.3 3.4 6.6c1.4.8 2.3.8 3.6-.3l1.3-1 1.6 2.3 4.7 6.6zm-11.5 1.4c5.1 2.9 8 2.1 10.2-.1l-4.8-6.7c-1.4 1.1-2.8 1.6-5.2.2-3.2-1.9-5.5-6.3-5.5-10.2s2.3-5.8 5.5-3.9c2.2 1.3 3.7 3.3 5.1 6l4.7-1.5c-2-4.4-4.9-8.5-9.7-11.2-7-4-12.1-1-12.2 6.8.1 7.9 5.4 16.8 11.9 20.6M150.5 741.3c7.2 4.1 11.8 11.5 11.8 18.7 0 7.3-4.8 9.3-12.2 5.1l-1.1-.6v7.5l-2.1-1.2-6.5-3.8-2.1-1.2v-2.4l.1-26.6v-2.5l2.1 1.2 10 5.8zm-.4 21.4c5.8 3.3 10 2.4 10-3.9 0-6-3.8-11.7-9.6-15.1l-10.1-5.8-.1 26.6 6.5 3.8v-7.5l3.3 1.9"
fill="#ff7a63"/>
<path d="M27.3 636.2 27 734l181.6 104.8.3-97.8L27.3 636.2zM203 829 33.5 731.2l.2-84 169.5 97.9-.2 83.9"
fill="#ff7a63"/>
<path
d="M54.3 687.9c4.7 2.7 7.6 6.8 9.7 11.2l-4.7 1.5c-1.3-2.7-2.9-4.7-5.1-6-3.2-1.9-5.5 0-5.5 3.9 0 4 2.2 8.4 5.5 10.2 2.4 1.4 3.8.9 5.2-.2l4.8 6.7c-2.2 2.2-5.1 3-10.2.1-6.6-3.8-11.9-12.6-11.8-20.6-.1-7.8 5.1-10.8 12.1-6.8zM119.8 726l9.7 32.3-6.8-3.9-1.7-5.8-9-5.2-1.7 3.8-6.6-3.8 9.9-21 6.2 3.6zm-5.8 13.1 5.2 3-2.5-9-2.7 6M150.5 743.8c5.9 3.4 9.7 9.1 9.6 15.1 0 6.3-4.2 7.2-10 3.9l-3.2-1.8v7.5l-6.5-3.8.1-26.6 10 5.7zm-.6 12.6c2.2 1.3 3.6.7 3.6-1.4 0-2.2-1.3-4.2-3.6-5.5l-2.9-1.7v6.8l2.9 1.8M191.1 774l-6.5-3.7-.1 19.8-6.5-3.8v-19.8l-7.1-4.1v-6.2l20.2 11.7zM243.1 719.2l-34.6 21.4L26.9 635.8l34.6-21.4z"
fill="#eee5c4"/>
<path fill="#eee5c4" d="m243 718.9.3 97.8-34.5 21.4-.3-97.8z"/>
</g>
<path fill="#fbae2f" d="m257 868.5 1-190-204-114-.8 53 181.6 104.8.1-.2.3 142.4z" id="btn-hidder"/>
</svg>
</div>
</a>
<a href="/perl.html" class="step" id="perl">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
viewBox="0 0 520 630">
<defs>
<clipPath id="disketa__hidder">
<polygon stroke="black" stroke-width="20" points="27,416 27,409 81,378 141,412 80,447 "/>
</clipPath>
</defs>
<g id="pc">
<polygon fill="#ff7a63" points="84,463.5 92.2,468.6 84,473.3"/>
<polygon fill="#8d3a40" points="68,463.9 84,473.1 84,463.5 68,454.2"/>
<polygon fill="#8d3a40" points="250.9,570.5 267,579.8 267.1,570.1 251,560.8"/>
<polygon fill="#fbae2f" stroke="#fbae2f" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
points="480.4,321.7 266.3,446.1 53.6,323.2 269.2,200"/>
<path fill="#adc6ff" stroke="#adc6ff" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
d="M53.2 323.5 266 446.4l-.2 121.7L53 446.3l.2-122.8z"/>
<line x1="192" x2="192" y1="483" y2="525" fill="none"/>
<g fill="#663682">
<polygon points="79.1,427.6 65,419.5 64.9,435.7 79,443.8"/>
<polygon points="86,447.8 100,455.9 100,439.9 86,431.8"/>
<polygon points="107,460 121,468.1 121.1,451.9 107,443.8"/>
<polygon points="88.1,393.6 75,386.1 75,391.9 88,399.4"/>
<polygon points="205.1,433 196,427.7 195.9,466.8 205,472.2"/>
<polygon points="217.1,440.5 208,435.3 207.9,473.9 217,479.2"/>
<path
d="M150.2 393.3 61 341.8l-.2 55.7L150 449l.2-55.7zm-45.7-3.7L78 374.8v3.8l-6-3.5v3.5l6 3.5v2.3l27 15.2V412l-34-19.7.1-25.7 33.5 19.4-.1 3.6zm.5-6.9L71 363v-5.5l34 19.7v5.5zm36 50.5-34-19.6V401l25 13.9v-9.7l-25-14v-3.6l34 19.6v26zm0-29.2-34-19.6v-6 .5l34 19.6v5.5z"/>
<polygon points="132,411.4 139,415.5 139,412.4 132,408.3"/>
<polygon points="259.1,543.9 249,538 249,549.6 259,555.5"/>
<polygon points="192.2,425.7 183,420.4 182.9,459.5 192,464.9"/>
<polygon points="230.1,447.6 221,442.3 220.9,481.5 230,486.8"/>
<polygon points="243.1,455.1 234,449.9 233.9,488.6 243,493.8"/>
<polygon points="255.1,462.2 246,456.9 245.9,496.1 255,501.4"/>
<polygon
points="264.5,527.2 266.5,523.8 55.2,401.9 53.2,405.2 125,446.7 125,489.8 129,491.9 129,449 190,484.3 190,527.1 194,529.3 194,486.5"/>
</g>
<polygon fill="#8d3a40" points="283,560.8 283,570.5 267,579.8 267,570.1"/>
<polygon fill="#ff7a63" points="450,463.8 449.9,473.9 433,464.2 433.1,454"/>
<polygon fill="#8d3a40" points="466,454.5 466,464.2 450,473.4 450,463.7"/>
<path fill="#ff7a63" stroke="#ff7a63" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
d="M266.8 444.1 480 321l.2 123.5L267 567.6l-.2-123.5z"/>
<polygon fill="#8d3a40" points="377,405.1 377.1,444.2 368,449.6 367.9,410.4"/>
<polygon fill="#8d3a40" points="365,412.4 365.1,451.5 356,456.9 355.9,417.7"/>
<polygon fill="#8d3a40" points="352,420 352.1,458.7 343,463.9 342.9,425.3"/>
<polygon fill="#8d3a40" points="339,427 339.1,466.2 330,471.5 329.9,432.4"/>
<polygon fill="#8d3a40" points="314,441.6 314.1,480.8 305,486.2 304.9,447"/>
<polygon fill="#8d3a40" points="301,449 301.2,488.1 292,493.5 291.9,454.3"/>
<polygon fill="#8d3a40" points="289,456.3 289.1,495.4 280,500.8 279.9,461.6"/>
<polygon fill="#8d3a40" points="326,434.3 326.2,473.5 317,478.8 316.9,439.7"/>
<polygon fill="#8d3a40" points="440,368.5 440.2,407.7 431,413 430.9,373.9"/>
<polygon fill="#8d3a40" points="428,375.9 428.1,415.1 419,420.4 418.8,381.2"/>
<polygon fill="#8d3a40" points="415,383.2 415.1,422.4 406,427.7 405.9,388.5"/>
<polygon fill="#8d3a40" points="466,353.9 466.1,393 457,398.4 456.9,359.2"/>
<polygon fill="#8d3a40" points="453,361.2 453.1,400.4 444,405.7 443.9,366.6"/>
<polygon fill="#8d3a40" points="440,368.5 440.2,407.7 431,413 430.9,373.9"/>
<polygon fill="#8d3a40" points="390,397.8 390.1,437 381,442.3 380.9,403.2"/>
<polygon fill="#8d3a40" points="377,405.4 377.1,444.1 368,449.3 367.9,410.7"/>
<polygon fill="#8d3a40" points="402,390.5 402.1,429.7 393,435 392.8,395.8"/>
<polygon fill="#fb504d" points="450.5,326.8 270.4,429.8 91,326.3 271.1,223.2"/>
<g>
<path fill="#ff7a63" stroke="#ff7a63" stroke-miterlimit="10" stroke-width="4"
d="M454.5 175.2c0-22.8-26.5-37.1-26.5-37.1l.5 166.7S454 283.5 454 255l.5-79.8z"/>
<path fill="#adc6ff" stroke="#adc6ff" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
d="M59.6 92.4 272 215.1l-.6 202.4L59 294.8l.6-202.4z"/>
<polygon fill="#fc6949" stroke="#fc6949" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" stroke-width="4" points="428,128.5 428.6,319.4 416,326.8 415.4,131.1"/>
<polygon fill="#8d3a40" points="86,298.6 86,304.2 71,295.5 71.1,290"/>
<path fill="#ff7a63"
d="m240 344 .3-92.3c0-12-8.4-26.7-18.9-32.7L111 155.3c-10.4-6-19-1.2-19 10.8l-.3 92c0 12 8.4 26.7 18.9 32.7L221 354.5c10.5 6.1 19 1.2 19-10.8v.3z"/>
<path fill="none" stroke="#663682" stroke-miterlimit="10" stroke-width="13"
d="m85.5 132.1-.6 153.1 161.6 93.7V226.2l-161-94.1z"/>
<polygon fill="#fb504d" points="97.4,154.2 85.3,132.1 246.3,226.2 233.4,233.6"/>
<polygon fill="#fbae2f" points="246,378.5 233.9,349.2 87.7,271.1 84,285.3"/>
<path fill="#ff7a63" stroke="#ff7a63" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
d="M271.5 215.1 415 132.3l1 194.6v8l-75 43.3-69 39.8-.5-202.9z"/>
<polygon fill="#8d3a40" points="394,316.6 394,319.9 295,377.1 295,375.5 295,373.8"/>
<polygon fill="#8d3a40" points="394,296.1 394,299.4 295,356.6 295,354.9 295,353.3"/>
<polygon fill="#8d3a40" points="393,173 393,176.2 294,233.4 294,231.8 294,230.2"/>
<polygon fill="#8d3a40" points="393,214 393,217.3 294,274.5 294,272.8 294,271.2"/>
<polygon fill="#8d3a40" points="393,194.6 393,197.8 294,255 294,253.4 294,251.8"/>
<polygon fill="#8d3a40" points="394,234.5 394,237.8 295,295 295,293.4 295,291.7"/>
<polygon fill="#8d3a40" points="394,255.1 394,258.3 295,315.5 295,313.9 295,312.3"/>
<polygon fill="#8d3a40" points="394,277.4 394,280.6 295,337.8 295,336.2 295,334.6"/>
<polygon fill="#f87e37" stroke="#f87e37" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
points="428.4,128.5 415.4,131.1 202.6,8.2 225.9,12.6"/>
<polygon fill="#fbae2f" stroke="#fbae2f" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="4"
points="412.1,131.1 269.9,213.7 59,92.4 201.2,9.8"/>
<polygon fill="#fb504d" points="246,378.5 246,225.6 233,233.1 233,353.1"/>
<polygon fill="#fbae2f" points="85,132.1 84,285.3 100.3,274.7 97.1,154.2"/>
<path fill="#9657b6"
d="M221.1 218.9c10.4 6 18.9 20.7 18.9 32.8l-.3 92.4c0 12-8.6 16.9-19 10.8L109.9 291C99.5 285 91 270.3 91 258.2l.3-92.4c0-12 8.6-16.9 19-10.8l110.8 63.9zM236 342l.3-91.9c0-10.2-6.2-22.6-15-27.7l-110.2-63.6c-8.9-5.1-16.1-1-16.1 9.2l-.3 91.7c0 10.2 7.2 22.6 16 27.7L220.8 351c8.9 5.1 15.2 1 15.2-9z"/>
<polygon fill="#fb504d" points="86,304.2 87.7,303.3 87.8,297.7 72.8,289.1 71.1,290 86,298.6"/>
<path fill="#663682"
d="M221 222.3c8.9 5.1 16.1 17.6 16 27.8l-.3 92.2c0 10.2-7.3 14.3-16.2 9.2L110 287.6c-8.9-5.1-16.1-17.6-16-27.8l.3-92.2c0-10.2 7.3-14.3 16.1-9.2L221 222.3z"/>
</g>
<polygon fill="#8d3a40" points="265.2,527.6 263.2,524.1 482,397.8 482,402.4"/>
</g>
<g id="screen">
<path id="screen--on" fill="#fff"
d="M221 222.3c8.9 5.1 16.1 17.6 16 27.8l-.3 92.2c0 10.2-7.3 14.3-16.2 9.2L110 287.6c-8.9-5.1-16.1-17.6-16-27.8l.3-92.2c0-10.2 7.3-14.3 16.1-9.2L221 222.3z"/>
<path id="perl-camel" fill="#f87e37"
d="M193.1 269.5c-1.3.4 1 5.7.9 5.5-.3-.4-1.1-.8-1.3-.8.6 2.4.3 3.5.3 3.5l-.6-.9c.4 1-.2 3.5-1.1 4.1-.9.6-.9 2-.9 2l-1.8 1.1c-2.5-8.2 4.8-7.3.5-19.1-.3 3.7-1.7 5.2-1.8 5.3-1.5 7.2 1.1 13.8-.2 18.2 1.9 3.1-2 8.7-1.4 13-.1 2.5 2.1 5.1.4 6.2 3 4.6-1.9 3.7-3.3.9-2.4.7-3.3-3.9-.7-3.9-.7-2.6 1.3-4.2 1.4-4.9 1.3-5.9-.9-9.4.6-13.3-2.4-7-4.8-20.1-4.2-20-4.9 5.6-4.7 11.1-4.1 16.1-.7.4-7 5.8-6.3 6.6.6.8.4 1.3.4 1.3 3.4 2.1 3.2 10.1.8 7.7-1.6 1.1-3.2-6.3-3.1-6-.2.6-.6.4-.8.3 1.8 5.8-4.9.7-6.7-.7-1.7-2.5 2.3-2.4 3.1-1.5-.1-1.2 1-1 1-1-.3-1.6.8-1.8.8-1.8-.4-3.9-10-14.5-6.9-16.5-.3-5.1 2.3-9.8 2.5-10-.9-.3-3.9-2.2-4.1-2.3 0 .3-.7 5-1.9 7-1.2 1.9-.6 4.4-.6 4.5-.4-.3-.7-.6-.7-.6 1.6 6.6-2.4 6.5-1.7 10.4-1.2.5-.5 7.2-2.1 7.5-.6.3.1.8 0 1.8-1 3.8-14.3-8.9-3.6-4.8.1-3.7 2.4 0 3.4-7 .9-4.8-.6-6 .3-8.9-.3-.6-1.3-4.1-.2-4.6-2.6-7 3.6-13.5-3.6-12.5.1-.8-.2-1.7-.2-1.7 0 .8-.9 1.5-1 1.5-.6-2.1-3.4-4.5-5.3-7.2-1.8-2.7-3.5-7.3-3.6-7.5-.4.1-.5 1-.5 1-1.2-2.4-1-4.4-1-4.5-.1 0-.4.5-.4.5-2.9-8.1-.9-13.2-.8-13.5-.4-.2-.9.1-.9.1.4-2.1 2-2.7 2.1-2.7-.3-.2-.6-.3-.8-.5 1.9-.8 2.3-2.5 2.4-2.6-.3-1.8-4.6-3.6-4.8-4.9-1.7-1.1-1.2-2.3-1.2-2.4-.9-.3-.2-1.8.4-1.6.2-1.1.7-1.1.8-1.1 1.4-2.4 6.6 3.5 8.4 2.3-.1-.3-.4-.6-.4-.6.6-1.5 2.1-.6 2.6-.1.1-.6.9-.4.9-.4.1.8.5 1.4.6 1.5.3-.3 1.1.1 1.2.1-.2.2-.3.5-.4.5 1.9 1 5.6 7.7 4.3 9 2 1.9 1.7 7.7 1.1 9.3-.2-.4-.6-.7-.6-.7.8 2.2-.4 4.3-.5 4.5.1-.4-.3-1-.4-1-.7 1.6-1.8 5.7.8 6.4-.2-5.4 3-10.3 9.2-9.7 2.6-.6 4.6-4.5 6.7-5 15.8-.4 16.9 13.3 20 23.8 2.6 4.6 3.9 14.6 7.1 19.6 1.6 3.2 1.9 5.8 1.9 6-.1 0-.2-.2-.4-.3zm-23 12.3c1.5-.6-.5-16.7.4-16.6l-.7-.4c-.3 3-2.7 4.3-2.4 6.5-.3-.3-.7-.9-.7-.9-.3 2.2-1.2 3.9-2.7 5.2-.2-1.1-.6-1.4-.7-1.4-.2 1.5-1.2 2.4-1.2 2.4.4 1.1 3.9 8.9 4.8 9.2l3.2-4"/>
<path id="screen__hidder" style="fill:#663682;" d="M221,222c8.9,5.1,16.1,17.8,16,28v92c0,10.2-8.1,15.1-17,10l-110-64
c-8.9-5.1-16.1-17.8-16-28v-93c0-10.2,7.2-14.1,16-9L221,222z"/>
</g>
<g clip-path="url(#disketa__hidder)">
<g id="disketa">
<polygon style="fill:#FBD854;" points="127.1,413.3 80.7,439.9 27,409 81,378 130,406 "/>
<polygon style="fill:#FE9C99;" points="80.5,439.9 81,446.4 27.6,415.6 27,409.2 "/>
<polygon style="fill:#FB504D;" points="127,420.1 81.5,446.4 80.6,439.9 127,412.8 "/>
<polygon style="fill:#9657B6;" points="118.6,399.4 95.1,412.8 71.8,399.4 95.2,385.9 "/>
<polygon style="fill:#FBD854;" points="114.9,399.4 95.2,410.5 87,405.7 106.7,394.6 "/>
<path style="fill:#FFFDFF;stroke:#8886FC;stroke-miterlimit:10;" d="M36.8,414.5l25.3-14.2c0.9-0.5,1.9-0.5,2.8,0l30,17.3
c1.9,1.1,1.9,3.8,0,4.9L72.4,435"/>
</g>
</g>
</svg>
</div>
</a>
<a href="/lua.html" class="step" id="lua">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 520 570">
<polygon fill="#fb504d" points="259.5,304.7 259.8,549.2 46,426.4 46.7,181.8"/>
<polygon fill="#8886fc" points="259.4,304.6 47.7,182.2 261.2,58.9 472.5,182.1"/>
<polygon fill="#fbae2f" points="259.8,304.7 259.5,549.2 473.3,426.4 472.6,181.8"/>
<g id="lua-right-side">
<polygon fill="#8886fc" points="338,347.4 338.5,521.3 489.8,433.9 489.3,260.1"/>
<g id="right-side-inner">
<polygon fill="#fb504d" points="410.8,384.2 411.1,496.5 508.8,440 508.5,327.7"/>
<polygon fill="#e84b4b" points="469.4,305 508.5,327.7 410.8,384.2 411.1,496.5 371.9,473.7 371.6,361.4"/>
</g>
<polygon fill="#8886fc"
points="489.3,260.1 489.5,316.8 468.2,304.5 371.2,361.5 372.2,480.5 390.2,491.4 338.5,521.3 338,347.4"/>
<polygon fill="#6f6fe2" points="450.2,237.3 489.3,260.1 338,347.4 338.5,521.3 299.3,498.5 298.9,324.7"/>
</g>
<g id="lua-left-side">
<polygon fill="#fbae2f" points="181.3,347.4 180.8,521.3 29.5,433.9 30,260.1"/>
<g id="left-side-inner">
<polygon fill="#8886fc" points="108.5,384.2 108.2,496.5 10.5,440 10.8,327.7"/>
<polygon fill="#6f6fe2" points="50,305 10.8,327.7 108.5,384.2 108.2,496.5 147.4,473.7 147.7,361.4"/>
</g>
<polygon fill="#ff935e" points="69.1,237.3 30,260.1 181.3,347.4 180.8,521.3 220,498.5 220.5,324.7"/>
<polygon fill="#fbae2f"
points="30,260.1 29.8,316.8 51.1,304.5 148.1,361.5 147.1,480.5 129.1,491.4 180.8,521.3 181.3,347.4"/>
</g>
<g id="lua-top-side">
<polygon fill="#fb504d" points="261.7,215.6 111.5,127.9 263,40.8 413.2,128.5"/>
<g id="top-side-inner">
<polygon fill="#fbae2f" points="266.4,134.2 169.4,77.6 267.2,21.3 364.2,77.9"/>
<polygon fill="#ff935e" points="364.3,123.2 364.2,77.9 266.4,134.2 169.4,77.6 169.4,122.8 266.4,179.4"/>
</g>
<polygon fill="#fb504d"
points="413.2,128.5 364.2,99.8 364.1,124.4 266.2,179.7 163.7,119.2 163.3,98.1 111.5,127.9 261.7,215.6"/>
<polygon fill="#e84b4b" points="413.2,173.7 413.2,128.5 261.7,215.6 111.5,127.9 111.6,173.2 261.7,260.8"/>
</g>
<polygon fill="#fbae2f"
points="449.2,236.5 297.2,324.5 297.2,519.5 259.5,549.2 259.8,304.7 472.6,181.8 472.8,249.3"/>
<polygon fill="#fb504d"
points="70.1,236.5 222.1,324.5 222.1,519.5 259.8,549.2 259.5,304.7 46.7,181.8 46.5,249.3"/>
<polygon fill="#8886fc"
points="413.4,174.9 261.1,262.3 92.4,164.5 47.7,182.2 259.4,304.6 472.5,182.1 414.2,148.1"/>
</svg>
</div>
</a>
<a href="/python-piet.html" class="step" id="python-piet">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 520 690">
<g id="Layer_1">
<path fill="#adc6ff"
d="m55.4 274.1-.7 244.5 212.8 122.9.7-244.5L55.4 274.1zM30.7 559.5l-.1 27.2L6.9 573l.1-27.2 23.7 13.7z"/>
<path fill="#ff935e" d="m457 316 23.7-13.5-.1 27.4-23.7 13.4.1-27.3z"/>
<path fill="#9657b6" d="m481.1 273.2-1.2 247.6-212.8 120.7 1.2-245.2 212.8-123.1z"/>
<path fill="#aaeefd" d="m266.8 151.2 212.8 122.9L268.2 397 55.4 274.1l211.4-122.9z"/>
<path fill="#8886fc" d="m268.1 375 173.7-100.9-174.9-100.9L93.3 274.1 268.1 375"/>
<path fill="#fbae2f" d="m93.3 262.2 174.8 101v11.9l-174.8-101v-11.9z"/>
<path fill="#8886fc"
d="m266.9 161.3 174.8 100.9-173.6 101-174.8-101 173.6-100.9zm1.2 200.2 170.8-99.3-172-99.3-170.8 99.3 172 99.3"/>
<path fill="#663682" d="M413.6 262.2 268 346.9l-146.6-84.7L267 177.6l146.6 84.6z"/>
<path fill="#fffdff"
d="m266.9 163 172 99.2-170.8 99.3-172-99.3L266.9 163zm1.1 183.9 145.6-84.7L267 177.6l-145.6 84.6L268 346.9"/>
<path fill="#663682" d="M267 177.6v121.3l41.8 24.2 104.8-60.9L267 177.6z"/>
<path fill="#8886fc" d="M303.8 261.8H333v-145c0-9.9-8.1-18-18-18h-11.3l.1 163z"/>
<path fill="#663682" d="M308.8 323.1 267 298.9l-41 23.8 42 24.2 40.8-23.8z"/>
<path fill="#ff935e"
d="M441.6 262.2v11.9L268.1 375v-11.8l173.5-101zM300 328.3l-32 18.6-36.3-20.9 28.8-248.9c1-8.5 13.4-8.4 14.3.1L300 328.3z"/>
<path fill="#ff7a63" d="m300 328.3-32 18.6.2-270.6c0-4.2 6.1-4.5 6.5-.3L300 328.3z"/>
<circle cx="268.1" cy="45.7" r="35.4" fill="#f87e37"/>
<path fill="#fc6949"
d="M250.5 14.9c16-9.2 36.4-3.7 45.6 12.3s3.7 36.4-12.3 45.6-36.4 3.7-45.6-12.3c-9.1-16-3.6-36.4 12.3-45.6-17 9.8-22.8 31.4-13.1 48.4 9.8 17 31.4 22.8 48.4 13.1S308.6 45 298.9 28c-9.8-17-31.4-22.8-48.4-13.1z"/>
<ellipse cx="256.9" cy="24.7" fill="#fffdff" rx="15.3" ry="8.2" transform="rotate(-23.78 256.901 24.731)"/>
<path fill="#ff935e" d="m170.1 53.5 80.6 116.2 6.7-51-80.9-70.9c-1.4-1.3-3.6-1.4-5.2-.4-2.2 1.3-2.7 4.1-1.2 6.1z"/>
<path fill="#ff935e" d="m225 120.4-48.1-1.7-1.5 5.7 60 11-10.4-15z"/>
<circle cx="164.1" cy="117.4" r="28.4" fill="#ff7a63"/>
<ellipse cx="153.6" cy="101.6" fill="#fffdff" rx="12" ry="6.4" transform="rotate(-34.006 153.597 101.574)"/>
<path fill="#fb504d"
d="M164.1 89c-14.4 0-26.2 11.7-26.2 26.2s11.7 26.2 26.2 26.2c14.4 0 26.2-11.7 26.2-26.2S178.6 89 164.1 89c15.7 0 28.4 12.7 28.4 28.4s-12.7 28.4-28.4 28.4-28.4-12.7-28.4-28.4c.1-15.7 12.8-28.4 28.4-28.4z"/>
<path fill="#ff935e"
d="m265.1 159.4 46.1-34.6-1.4-34.3h5.2l5.9 29.4 32.4-24.8 3.8 2.6-76.7 79c-6.6 6.8-18.1 3.2-19.7-6.1-.8-4.2.9-8.6 4.4-11.2z"/>
<path fill="#fbd854"
d="M308.8 221h-17.2l-1.6 5.2c0 8 2.2 24.3 2.2 24.3H304v5.4l-44.3.2.4 29.2h48.6c13.6 0 24.5-11 24.5-24.5v-15.2c.2-13.6-10.8-24.6-24.4-24.6zm-58.6-79.1h24.6l2.3-29.6h-8.8c-9.9 0-18 8.1-18 18l-.1 11.6z"/>
<g>
<path fill="#ff935e" d="m266 222.2 72.5-40.7 6.2 5-65.8 53c-6.1 5.7-16 2.7-18-5.3-1.2-4.7.9-9.6 5.1-12z"/>
<circle cx="338.9" cy="188.3" r="26.6" fill="#ff935e"/>
<ellipse cx="329.6" cy="172.7" fill="#fffdff" rx="12.4" ry="6.6" transform="rotate(-29.908 329.605 172.723)"/>
<path fill="#fc6949"
d="M325.6 165.3c12-6.9 27.3-2.8 34.2 9.2 6.9 12 2.8 27.3-9.2 34.2s-27.3 2.8-34.2-9.2c-7-12-2.8-27.3 9.2-34.2-12.7 7.3-17.1 23.6-9.8 36.3 7.3 12.7 23.6 17.1 36.3 9.8 12.7-7.3 17.1-23.6 9.8-36.3-7.3-12.8-23.6-17.1-36.3-9.8z"/>
</g>
<path fill="#fbd854"
d="M161.7 172v21.2c0 13.6 11 24.5 24.5 24.5h34.6v13.9l22.3-.7 3.2-31c-3.9-6.2-10.4-10.5-18-11.4l-37.3-.2v-15.4l-29.3-.9z"/>
<g fill="#ff935e">
<path d="M218.7 25.9 207.2 96l-7.8-8.9 16.2-62.4 3.1 1.2z"/>
<path d="m211.4 49.5-7.7-14.6-3-1.2 7 25.2 3.7-9.4z"/>
</g>
<g>
<path fill="#8886fc"
d="M252.4 221.2h-39.8c-13.6 0-24.5 11-24.5 24.5v11.6c0 13.3 10.6 24.1 23.9 24.5h24.9l3-25.9h-24.8l.1-5.5h37.1l.1-29.2z"/>
</g>
</g>
<g id="colors">
<path fill="#fbd854" d="m101.9 545.9-.1 27.2-23.7-13.7.1-27.2 23.7 13.7z"/>
<path fill="#9657b6" d="M102 491.5v27.2l-23.7-13.6.1-27.2v-.1l23.6 13.7z"/>
<path fill="#8886fc" d="M125.7 505.2v27.2L102 518.7v-27.2l23.7 13.7z"/>
<path fill="#fbae2f"
d="m102.1 464.1-.1 27.4-23.6-13.7v.1-27.5l23.7 13.7zm47.3 54.7-.1 27.3-23.6-13.7v-27.2l23.7 13.6z"/>
<path fill="#fbd854" d="M102.2 436.9v.3l-.1 26.9-23.7-13.7.1-26.9v-.3l23.7 13.7z"/>
<path fill="#8ff4ee" d="M220.2 614.2v27.3l-23.7-13.7v-27.2l23.7 13.6z"/>
<path fill="#8886fc" d="M220.2 614.2v27.3l23.6-13.7-23.6-13.6z"/>
<path fill="#ff7a63" d="m101.9 545.9-.1 27.2 23.7-13.7-23.6-13.5z"/>
<path fill="#9657b6" d="m149.4 518.9 23.7 13.7-.1 27.2-23.7-13.7.1-27.2z"/>
<path fill="#fc6949" d="m102.3 409.9-.1 27-23.7-13.7v.3l.1-27.2 23.7 13.6z"/>
<path fill="#9657b6" d="m196.8 546.2-.1 27.2-23.7-13.6.1-27.2v-.1l23.7 13.7z"/>
<path fill="#ff935e" d="m173.2 505.4-.1 27.1v.1L149.4 519v-.1l.1-27.2 23.7 13.7z"/>
<path fill="#663682" d="m126 423.6-.1 27.3-23.7-13.7v-.3l.1-27 23.7 13.7z"/>
<path fill="#fbd854" d="M102.3 382.7v27.2l-23.7-13.6.1-27.2 23.6 13.6z"/>
<path fill="#fb504d" d="m220.5 559.9-.1 27.4-23.7-13.6.1-27.5 23.7 13.7z"/>
<path fill="#8886fc" d="M173.2 478.1v.1l-.1 27.1-23.7-13.6.1-27.2 23.7 13.6z"/>
<path fill="#9657b6" d="m149.7 437.3-.1 27.2-23.7-13.6.1-27.3 23.7 13.7z"/>
<path fill="#ff935e" d="M173.2 450.9v27.2l-23.7-13.7.1-27.1 23.6 13.6z"/>
<path fill="#fc6949" d="m244.2 546.5-.1 27.2-23.7-13.7.1-27.2 23.7 13.7z"/>
<path fill="#aaeefd"
d="m173.2 478.2 23.6 13.7 23.7 13.7-.1 54.3-47.4-27.4.1-27.1-23.7-13.7-.1 27.1-23.7-13.6-23.7-13.7.1-27.4.1-26.9 23.7 13.7 23.7 13.6-.1 27.2 23.7 13.6.1-27.1z"/>
<path fill="#9657b6" d="m197 464.7-.1 27.2-23.6-13.7V451l23.7 13.7z"/>
<path fill="#adc6ff" d="m173.4 423.7-.1 27.2-23.6-13.7v-27.1l23.7 13.6z"/>
<path fill="#9657b6" d="M244.2 519.2v27.2l-23.7-13.7v-27.1l23.7 13.6z"/>
<path fill="#663682" d="m220.7 478.3-.1 27v.2l-23.7-13.6.1-27.2 23.7 13.6z"/>
<path fill="#fb504d" d="m244.4 491.7-.1 27.2-23.7-13.6.1-27v-.3l23.7 13.7z"/>
<path fill="#fbd854" d="m197.2 383-.1 27.2-23.7-13.7.1-27.2 23.7 13.7z"/>
<path fill="#ff935e" d="m244.6 437.6-.1 27.2-23.7-13.7.1-27.2 23.7 13.7z"/>
<path fill="#8886fc" d="M244.6 410.3v27.2l-23.7-13.6v-27.3l23.7 13.7z"/>
<path fill="#f87e37" d="m149.8 382.9 23.7 13.6-.1 27.2-23.8-13.7.2-27.1z"/>
<path fill="#9657b6"
d="M220.9 396.7v27.2l-23.7-13.7.1-27.2 23.6 13.7zm-47.3-27.4-.1 27.2-23.7-13.6.1-27.3 23.7 13.7z"/>
<path fill="#8886fc" d="m102.4 355.5-.1 27.2-23.6-13.6v-27.3l23.7 13.7z"/>
<path fill="#fb504d" d="m126.2 341.9-.1 27.3-23.7-13.7.1-27.2 23.7 13.6z"/>
<path fill="#aaeefd"
d="m173.5 396.5 47.4 27.4-.1 27.2-.1 27.2-23.7-13.6-23.8-13.7.1-27.3-23.7-13.6v27.2L126 423.6l-23.7-13.7v-27.2l.1-27.2 47.4 27.4-.1 27.1 23.7 13.7.1-27.2z"/>
<path fill="#fbae2f" d="m244.5 464.8-.1 26.9-23.7-13.7v.3l.1-27.2 23.7 13.7z"/>
<path fill="#fbd854" d="m244.2 573.7-.1 27.3-23.7-13.7.1-27.4 23.7 13.8z"/>
<path fill="#fb504d" d="m468.9 587.4-.1 27.2-23.7-13.7.1-27.2 23.7 13.7z"/>
<path fill="#ff935e" d="m492.4 573.7-23.5 13.7-23.7-13.7 23.5-13.7 23.7 13.7z"/>
<path fill="#8d3a40" d="m468.9 587.4-.1 27.2 23.7-13.7-.1-27.2-23.5 13.7z"/>
<path fill="#9657b6" d="m172.8 587-23.6 13.6-23.8-13.6 23.6-13.7 23.8 13.7z"/>
<path fill="#663682" d="m149.2 600.6-.1 27.3 23.7-13.7V587l-23.6 13.6z"/>
<path fill="#aaeefd" d="m54.2 545.8-23.5 13.7L7 545.8l23.5-13.7 23.7 13.7z"/>
<path fill="#9657b6" d="m30.7 559.5-.1 27.2L54.3 573l-.1-27.2-23.5 13.7z"/>
<path fill="#fc6949" d="m102.5 328.3-.1 27.2-23.7-13.7.1-27.2 23.7 13.7z"/>
<path fill="#f87e37" d="m149.2 600.6-.1 27.2-23.7-13.6.1-27.3 23.7 13.7z"/>
<path fill="#8886fc" d="m149.9 355.6-.1 27.2-23.7-13.6.1-27.3 23.7 13.7z"/>
<path fill="#fb504d" d="m268.1 396.4.2-.1 23.5-13.3-.1 27.3-23.6 13.3-.1.1.1-27.3z"/>
<path fill="#663682"
d="m338.5 410.5 71-40.3-.1 27.3 23.7-13.4-.4 79.1v2.8L409 479.5l-.1 27.3-23.7 13.5.3-54.7 23.6-13.4.2-27.4-23.7 13.5.1-27.4-23.7 13.5-.1 27.3-23.7 13.4-.1 27.4 23.7-13.5-.3 54.7-23.7 13.4.2-27.3-23.7 13.4.4-82 23.7-13.4.1-27.3z"/>
<path fill="#fbae2f" d="m432.6 493.4-.2 27.3 23.7-13.4.1-27.3-23.6 13.4z"/>
<path fill="#adc6ff" d="m432.8 438.7 23.7-13.4-.1 27.3-23.8 13.4v-2.8l.2-24.5z"/>
<path fill="#ff935e" d="m361.4 561 23.7-13.4-.2 27.1v.2l-23.7 13.5v-.2l.2-27.2z"/>
<path fill="#fbd854" d="m361.8 479 23.8-13.5-.3 27.4-23.7 13.5.2-27.4z"/>
<path fill="#9657b6" d="m385.2 492.9.2-27.3-.3 54.7.1-27.4z"/>
<path fill="#adc6ff"
d="m361.6 506.4 23.7-13.5-.1 27.4-23.7 13.4.1-27.3zm24-68.1 23.7-13.5-.2 27.4-23.6 13.4.1-27.3z"/>
<path fill="#9657b6" d="m361.8 479-.2 27.4-.1 27.3.3-54.7z"/>
<path fill="#ff7a63" d="m361.9 451.7 23.7-13.4-.1 27.3-23.7 13.4.1-27.3z"/>
<path fill="#adc6ff" d="m409.6 342.8 23.7-13.4-.2 27.3-23.7 13.5.2-27.4z"/>
<path fill="#fb504d" d="m362 424.4 23.7-13.5-.1 27.4-23.7 13.4.1-27.3z"/>
<path fill="#fc6949" d="m338.1 465.1 23.7-13.4-.1 27.3-23.6 13.5v-27.4z"/>
<path fill="#adc6ff" d="m290.6 546.7 23.7-13.5-.2 27.4-23.6 13.4.1-27.3z"/>
<path fill="#fbd854" d="m291 464.7 23.7-13.5-.2 27.4-23.6 13.4.1-27.3z"/>
<path fill="#f87e37" d="m315.1 369.2 23.7-13.4v.2l-.2 27.1-23.7 13.5.2-27.2v-.2z"/>
<path fill="#fbd854" d="m456.6 398 23.7-13.5-.1 27.4-23.7 13.4.1-27.3z"/>
<path fill="#fbae2f" d="m385.6 465.6-23.7-13.9.1-27.3 23.7 13.9-.1 27.3z"/>
<path fill="#fbd854" d="m385.6 438.3-23.7-13.9 23.7-13.5 23.6 13.9-23.6 13.5z"/>
<path fill="#fbae2f" d="m361.2 588.4-23.6-13.9.1-27.4 23.6 13.9-.1 27.4z"/>
<path fill="#fbd854" d="m361.4 561-23.6-13.9 23.6-13.4 23.7 13.9-23.7 13.4z"/>
<path fill="#fbae2f" d="m125.9 450.9 23.8-13.6v27.2L126 478.9l-.1-28z"/>
<path fill="#ff935e" d="m125.9 450.9.1 28-23.9-14.8.1-27 23.7 13.8z"/>
<path fill="#fbd854" d="m126 423.6-23.8 13.5 23.7 13.8 23.8-13.6-23.7-13.7z"/>
<path fill="#8886fc" d="m173.2 505.3 23.8-13.5-.2 54.4-23.5-13.3-.1-27.6z"/>
<path fill="#ff935e" d="m173.2 505.3.1 27.6-23.9-14.1.1-27.2 23.7 13.7z"/>
<path fill="#8886fc" d="m149.6 464.5 23.6 40.8 23.8-13.5-47.4-27.3z"/>
<path fill="#663682"
d="m173.1 478.1-23.6 13.5 23.5 13.7 23.8-13.5-23.7-13.7zm47.5 27.4-47.3 27.3 23.5 13.4 23.8-13.4v-27.3zm-23.8 40.7 23.7 13.7.1-27.1-23.8 13.4z"/>
<path fill="#8886fc"
d="m409 479.5-23.4-13.9-.3 27.3 23.6 13.9.1-27.3zm23.6-95.4-23.4 13.4-.2 54.7 23.6 13.8v-81.9z"/>
<path fill="#8886fc"
d="m409.5 370.2-23.6 13.4 23.6 13.9v-27.3zm-71.1 94.9-23.7-13.9-.2 27.4 23.7 13.9.2-27.4zm23.6-40.7-23.5-13.9-.1 27.3 23.5 13.9.1-27.3zm-.4 54.6-23.4 13.5-.2 27.3 23.5 13.9.1-54.7z"/>
<path fill="#663682" d="m408.9 506.8-23.6-13.9-.1 27.4 23.7-13.5z"/>
</g>
<path id="yellow-body" fill="#fbd854"
d="M194.8 137.8h-8.6c-13.6 0-24.5 11-24.5 24.5l.1 13 29.2-.1v-8h59.7c9.9 0 18-8.1 18-18v-11.6h-73.9v.2z"/>
<g id="yellow-head">
<path fill="#fbd854"
d="m294 255.9-32.3.2c-12.2 1.4-21.8 11.8-21.8 24.4v14.9c0 13.6 11 24.5 24.5 24.5h10.2c13.6 0 24.5-11 24.5-24.5 0-2.6-2.1-4.7-4.7-4.7h-25.3v-5.4h24.6l.3-29.4z"/>
<circle cx="287.1" cy="304.8" r="5.1" fill="#8886fc"/>
</g>
<g id="blue-head">
<path fill="#8886fc"
d="M254.2 186.6h-5.1c-13.6 0-24.5 11-24.5 24.5 0 2.6 2.1 4.7 4.7 4.7h20.2v5.4h-36.1l1 29.2h40l2.8-.2c12.2-1.4 21.8-11.8 21.8-24.4v-14.6c-.4-13.6-11.4-24.6-24.8-24.6z"/>
<circle cx="236.8" cy="201.8" r="5.1" fill="#fbd854"/>
</g>
<path id="Layer_5" fill="#8886fc"
d="M303.8 98.8H299c-13.6 0-24.5 11-24.5 24.5v6.1h-41.8v29.3H286c9.9 0 18-8.1 18-18V98.8h-.2z"/>
<path id="blue-body" fill="#8886fc"
d="M236.7 129.4V85.1c0-5.9-4.8-10.7-10.7-10.7h-7.8c-5.9 0-10.7 4.8-10.7 10.7v55.6c0 9.9 8.1 18 18 18h9.2l2-29.3z"/>
</svg>
</div>
</a>
<a href="/kotlin.html" class="step" id="kotlin">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="snowball" x="0" y="0" version="1.1"
viewBox="0 0 520 700">
<polygon fill="#fc6949" points="138.1,430 505.1,458.1 504.7,500.2 260.6,642.1"/>
<polygon fill="#fbd854" points="505.1,458.1 259.1,316.3 16.1,458.1 16,458.2 261.1,600.1"/>
<polygon fill="#fb504d" points="261.4,599.7 260.1,642.1 260.6,642.1 14.9,500.2 15.7,457.9"/>
<polygon fill="#fff"
points="96.9,518.3 96.8,534.8 93.7,532.9 93.7,526.3 87.9,523 87.9,529.6 84.7,527.8 84.8,511.3 87.9,513.1 87.9,519.6 93.7,523 93.7,516.5"/>
<polygon fill="#fff"
points="113.1,527.6 113,544.1 110.3,542.6 103.4,528.1 103.4,538.5 100.3,536.7 100.3,520.3 103.2,522 109.9,536 110,525.8"/>
<polygon fill="#fff"
points="129.2,536.9 123.7,543.7 123.6,550.2 120.5,548.4 120.5,541.9 115,528.8 118.7,530.9 122.1,539.5 125.6,534.9"/>
<path fill="#fff"
d="M136 540.6c3 1.7 4.9 4.9 4.9 7.9 0 2.8-1.2 3.5-3.8 4.3l-2.3.7 6.3 3.6v3.1l-10.6-6.1v-2.9l4.8-1.7c1.8-.7 2.5-1.2 2.5-2.5 0-1.4-.8-2.6-1.9-3.3-1.1-.6-1.9-.4-2.9.5l-2.2-3.3c1.2-1.3 2.6-1.8 5.2-.3zM149.7 548.5c3.8 2.2 6.3 7.4 6.3 12.1v.1c0 4.8-2.6 7-6.4 4.8-3.8-2.2-6.3-7.4-6.3-12.1 0-4.8 2.6-7.1 6.4-4.9zm3.1 10.4c0-3-1.3-6-3.1-7.1-1.9-1.1-3.1.4-3.1 3.4v.1c0 3 1.2 6 3.1 7.1s3.1-.5 3.1-3.5M163.5 556.5c3 1.7 4.9 4.9 4.9 7.9 0 2.8-1.2 3.5-3.8 4.2l-2.3.7 6.2 3.6v3.1l-10.6-6.1V567l4.8-1.7c1.8-.7 2.5-1.2 2.5-2.5 0-1.4-.8-2.6-1.9-3.3-1.1-.6-1.9-.4-2.9.5l-2.2-3.3c1.3-1.3 2.7-1.7 5.3-.2zM176.2 563.9c3 1.7 4.9 4.9 4.9 7.9 0 2.8-1.2 3.5-3.8 4.3l-2.3.7 6.2 3.6v3.1l-10.6-6.1v-2.9l4.8-1.7c1.8-.7 2.5-1.2 2.5-2.5 0-1.4-.8-2.6-1.9-3.3-1.1-.6-1.9-.4-2.9.5l-2.2-3.3c1.4-1.4 2.8-1.8 5.3-.3z"/>
<g>
<polygon fill="#fff"
points="351.8,559 351.9,575.5 348.7,577.3 348.7,570.7 342.9,574.1 342.9,580.7 339.8,582.5 339.7,566 342.9,564.2 342.9,570.7 348.7,567.4 348.7,560.9"/>
<polygon fill="#fff"
points="368,549.7 368.1,566.2 365.4,567.7 358.4,561.2 358.4,571.7 355.3,573.5 355.3,557 358.2,555.4 364.9,561.6 364.9,551.5"/>
<polygon fill="#fff"
points="384.2,540.4 378.7,553.5 378.7,560 375.5,561.9 375.5,555.4 370,548.6 373.7,546.4 377.1,551.1 380.6,542.4"/>
<path fill="#fff"
d="M390.9 536.2c3-1.7 4.9-.8 4.9 2.2 0 2.8-1.2 4.9-3.7 8.6l-2.3 3.4 6.3-3.6v3.1l-10.6 6.1v-2.9l4.8-7.2c1.8-2.7 2.5-4 2.5-5.4s-.8-1.7-1.9-1c-1.1.6-1.9 1.8-2.9 3.9l-2.2-.8c1.2-2.9 2.6-4.9 5.1-6.4zM404.7 528.3c3.8-2.2 6.4 0 6.4 4.8s-2.5 10-6.4 12.2c-3.8 2.2-6.4 0-6.4-4.8s2.5-10 6.4-12.2zm3.1 6.7c0-3-1.3-4.6-3.2-3.5-1.9 1.1-3.1 4-3.1 7s1.3 4.5 3.2 3.4c1.9-1 3.1-3.9 3.1-6.9M418.4 520.4c3-1.7 4.9-.9 5 2.2 0 2.8-1.2 4.9-3.8 8.6l-2.3 3.4 6.2-3.6v3.1l-10.6 6.1v-2.9l4.8-7.2c1.8-2.7 2.5-4 2.5-5.4s-.8-1.7-1.9-1c-1.1.6-1.9 1.8-2.9 3.9l-2.2-.8c1.3-3 2.7-5 5.2-6.4zM431.2 513c3-1.7 4.9-.8 4.9 2.2 0 2.8-1.2 4.9-3.7 8.6l-2.3 3.4 6.2-3.6v3.1l-10.6 6.1v-2.9l4.8-7.2c1.8-2.7 2.5-4 2.5-5.4s-.8-1.7-1.9-1c-1.1.6-1.9 1.8-2.9 3.9l-2.2-.8c1.3-2.9 2.6-4.9 5.2-6.4z"/>
</g>
<g>
<polygon fill="#adc6ff" points="176.2,412.5 431.6,432 431.3,472.3 261.4,571"/>
<polygon fill="#8886fc" points="431.6,432 260.4,333.4 91.3,432 91.2,432.1 261.8,530.9"/>
<polygon fill="#9657b6" points="261.9,530.6 261.1,571 261.4,571 90.4,472.3 91,431.9"/>
</g>
<g>
<ellipse cx="261.6" cy="434.9" fill="#663682" opacity=".5" rx="93.8" ry="32.2"/>
<circle cx="261.2" cy="261.7" r="183.7" fill="#8886fc"/>
<path fill="#f5f5f5"
d="m430.6 332.9-170.1-98L92 333.2c27.9 65.9 93.2 112.2 169.2 112.2 76.2 0 141.5-46.4 169.4-112.5z"/>
<polygon fill="#8f4bd5" points="199.5,301 311.8,237.8 366.6,331.3 261.3,392.6"/>
<polygon fill="#764bee" points="264.6,268.7 208.5,301 261.3,392.6 155.3,331.3 155.6,209.5"/>
<polygon fill="#b14cc9" points="261.6,270.7 366.8,209.6 260.8,148.5 261.1,209.7 155.9,209.7"/>
<path fill="#9595d8"
d="M262.5 426.6c-99.8 0-180.9-79.5-183.6-178.6-.3 4.5-.5 9.1-.5 13.7 0 101.4 82.2 183.7 183.7 183.7s183.7-82.2 183.7-183.7c0-1.7 0-3.4-.1-5-7 95-86.4 169.9-183.2 169.9z"
opacity=".7"/>
</g>
<g id="snow" opacity=".92">
<path fill="#cbd9f7"
d="M444.9 262.6c0-101.4-82.2-183.7-183.7-183.7-57.3 0-108.5 26.2-142.2 67.4 35.6 14.8 96.4 46.5 82.1 85.9-18.5 50.7 6.6 140.1 101.6 209.4 81.5-18.9 142.2-91.9 142.2-179z"/>
<path fill="#e8e8fc"
d="M387.6 129C316.5 61.4 204 61.5 133 130.6c-72.7 70.8-74.3 187-3.5 259.7 9.4 9.7 19.7 18.1 30.5 25.3 28.8-13.1 32-78.7 95.9-110.4 100.2-49.6 38.4-167.1 131.7-176.2z"/>
<path fill="#d7e0f4"
d="M219.3 441.1c73.5 17.5 147.2-11.9 189.7-68.8-54.7-15.1-133-45.5-143.1-97.3-11.4-58.4-105.7-97.6-156.9-114.8C97.2 178 88.2 198.1 83 220c-23.4 98.7 37.6 197.7 136.3 221.1z"/>
</g>
<ellipse id="ball-shine" cx="261.6" cy="93.7" fill="#fff" rx="45.5" ry="15.6"/>
<circle id="border" cx="261.2" cy="261.7" r="183.7" fill="none" stroke="#a9a9e0" stroke-miterlimit="10"
stroke-width="3"/>
</svg>
</div>
</a>
<a href="/ocaml.html" class="step" id="ocaml">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 520 530">
<polygon id="shadow" fill="#8fa2c9" points="68.2,370.5 260.8,481.8 452.2,370.5 260.8,276" opacity=".7"/>
<g id="Layer_7">
<polygon fill="#fbae2f" points="20.5,333.3 3.5,323.6 3.5,238.9 20.5,248.6"/>
<polygon fill="#8886fc" points="20.5,333.3 37.6,323.6 37.6,238.9 20.5,248.6"/>
<polygon fill="#f87e37" points="37.6,238.8 20.5,248.7 3.5,238.8 20.4,229"/>
<ellipse cx="20.5" cy="238.8" fill="#fc6949" rx="8.5" ry="3"/>
</g>
<g id="pyramide">
<polygon fill="#fbd854" points="260.9,472.5 260.9,37.7 491,338.7"/>
<polygon fill="#fc6949" points="260.9,472.5 29.4,338.7 260.9,37.7"/>
<g fill="#fbae2f">
<polygon points="260.9,443.5 276.2,463.6 279.7,461.5 260.9,436.9"/>
<path
d="m463.3 302.6-2.4-3.2-34 19.7-28.6-37.5 33.9-19.6-2.4-3.2-34 19.5-28.6-37.5 33.8-19.6-2.4-3.2-33.8 19.6-28.6-37.5 33.7-19.5-2.4-3.2-33.7 19.5-28.6-37.5 33.7-19.5-2.4-3.2-33.7 19.5-28.6-37.5L308 99.2l-2.4-3.2-33.6 19.5-11-14.4v6.6l7.4 9.7-7.4 4.3v4.6l9.8-5.7 28.6 37.5-38.4 22.4v11.2l25.1 33-25.1 14.5v4.6l27.6-16 28.6 37.5-40.9 23.7-15.3-20v6.6l11.8 15.5-11.8 6.8v4.6l14.2-8.3 28.6 37.5-40.8 23.9-2-2.6v8.4l.9-.5 28.6 37.5-29.5 17.1v4.6l32-18.5 27.7 36.3 3.5-2-27.7-36.3 40.8-23.8 27.7 36.3 3.5-2-27.7-36.3 40.8-23.8 27.7 36.3 3.5-2-27.8-36.2 40.8-23.8 27.7 36.3 3.5-2-27.7-36.4 34-19.6zm-70.9-22.3-40.8 23.8-28.6-37.5 40.8-23.8 28.6 37.5zm-131.5-95.2 40.8-23.8 28.6 37.5-40.8 23.8-28.6-37.5zm31.1 40.7 40.8-23.8 28.6 37.5-40.8 23.8-28.6-37.5zm-13.3 66.5 40.8-23.8 28.6 37.5-40.8 23.8-28.6-37.5zm15.2 104-28.6-37.5 40.8-23.8 28.6 37.5-40.8 23.8zm44.3-25.8L309.7 333l40.8-23.8 28.6 37.5-40.9 23.8zm44.4-25.7L354 307.3l40.8-23.8 28.6 37.5-40.8 23.8z"/>
<polygon points="274.3,55.1 260.9,62.9 260.9,67.6 276.7,58.4"/>
</g>
<g fill="#fbae2f">
<polygon points="260.9,443.5 245.7,463.6 242.2,461.5 260.9,436.9"/>
<path
d="m92.5 322.2-27.7 36.3 3.5 2L96 324.2l40.8 23.8-27.7 36.3 3.5 2 27.7-36.3 40.8 23.8-27.6 36.2 3.5 2 27.7-36.3 40.8 23.8-27.7 36.3 3.5 2 27.7-36.3 32 18.5v-4.6l-29.5-17.1 28.6-37.5.9.5v-8.4l-2 2.6-40.8-23.8 28.6-37.5 14.2 8.3v-4.6l-11.8-6.8 11.8-15.5V269l-15.3 20-40.8-23.7 28.6-37.5 27.6 16v-4.7L236 224.6l25.1-33v-11.2L222.7 158l28.6-37.5 9.8 5.7v-4.6l-7.4-4.3 7.4-9.7V101l-10.8 14.2-33.6-19.4-2.4 3.2 33.6 19.5-28.6 37.5-33.7-19.5-2.4 3.2 33.7 19.5-28.6 37.5-33.7-19.5-2.4 3.2 33.7 19.5-28.6 37.5-33.8-19.6-2.4 3.2 33.8 19.6-28.9 37.7-33.9-19.6-2.4 3.2 33.9 19.6L95 319l-34-19.6-2.4 3.2 33.9 19.6zm65.6-79.4 40.8 23.8-28.6 37.5-40.8-23.8 28.6-37.5zm74.3-20.2-40.8-23.8 28.6-37.5 40.8 23.8-28.6 37.5zm-31.1 40.8-40.8-23.8 28.6-37.5 40.8 23.8-28.6 37.5zm13.3 66.4L173.8 306l28.6-37.5 40.8 23.8-28.6 37.5zm-27.5 42.8 28.6-37.5 40.8 23.8-28.6 37.5-40.8-23.8zm-44.4-25.7 28.6-37.5 40.8 23.8-28.5 37.4-40.9-23.7zm-44.3-25.8 28.6-37.5 40.8 23.8-28.6 37.5-40.8-23.8z"/>
<polygon points="247.6,55.1 260.9,62.9 260.9,67.6 245.2,58.4"/>
</g>
<polygon fill="#9657b6" points="361.4,239.3 315.6,211.6 332.8,202.1"/>
<polygon fill="#8886fc" points="320.6,263.4 361.4,239.3 315.6,211.6 292,225.8"/>
<polygon fill="#9657b6" points="156.9,412.3 201.7,385.7 184.5,376"/>
<polygon fill="#8886fc" points="197.7,436.3 156.9,412.3 201.7,385.7 225.3,399.8"/>
<polygon fill="#9657b6" points="129.5,280.3 174.3,252.3 158.1,242.8"/>
<polygon fill="#8886fc" points="170.3,304.1 129.5,280.3 174.3,252.3 198.9,266.6"/>
</g>
<g id="sticks">
<polygon fill="#fbae2f" points="290.2,495.7 273.2,486 273.2,401.3 290.2,411"/>
<polygon fill="#8886fc" points="290.2,495.7 307.2,486 307.2,401.3 290.2,411"/>
<polygon fill="#f87e37" points="307.2,401.2 290.2,411.1 273.2,401.2 290.1,391.4"/>
<ellipse cx="290.2" cy="401.2" fill="#fc6949" rx="8.5" ry="3"/>
<g>
<polygon fill="#fbae2f" points="498.7,373.4 481.7,363.7 481.7,279 498.7,288.7"/>
<polygon fill="#8886fc" points="498.7,373.4 515.8,363.7 515.8,279 498.7,288.7"/>
<polygon fill="#f87e37" points="515.8,278.9 498.7,288.8 481.7,278.9 498.6,269.1"/>
<ellipse cx="498.7" cy="278.9" fill="#fc6949" rx="8.5" ry="3"/>
</g>
</g>
<g id="fire-3">
<path fill="#adc6ff" d="M20.8 192.4s15.9 21.3 15.9 30.3-7.3 16.2-16.2 16.2"/>
<path fill="#fb504d" d="M20.5 238.9c-9 0-16.2-7.3-16.2-16.2 0-9 16.6-30.3 16.6-30.3"/>
<path fill="#8886fc" d="M20.7 207.1s10.2 13.6 10.2 19.3c0 5.7-4.7 10.4-10.4 10.4"/>
<path fill="#fbae2f" d="M20.5 236.9c-5.7 0-10.4-4.7-10.4-10.4s10.6-19.3 10.6-19.3"/>
</g>
<g id="fire-2">
<path fill="#adc6ff" d="M290.5 354.8s15.9 21.3 15.9 30.3-7.3 16.2-16.2 16.2"/>
<path fill="#fb504d" d="M290.2 401.3c-9 0-16.2-7.3-16.2-16.2 0-9 16.6-30.3 16.6-30.3"/>
<path fill="#8886fc" d="M290.4 369.5s10.2 13.6 10.2 19.3c0 5.7-4.7 10.4-10.4 10.4"/>
<path fill="#fbae2f" d="M290.2 399.3c-5.7 0-10.4-4.7-10.4-10.4s10.6-19.3 10.6-19.3"/>
</g>
<g id="fire-1">
<path fill="#adc6ff" d="M499 232.5s15.9 21.3 15.9 30.3-7.3 16.2-16.3 16.2"/>
<path fill="#fb504d" d="M498.7 279c-9 0-16.2-7.3-16.2-16.2 0-9 16.6-30.3 16.6-30.3"/>
<path fill="#8886fc" d="M498.9 247.2s10.2 13.6 10.2 19.3c0 5.7-4.7 10.4-10.4 10.4"/>
<path fill="#fbae2f" d="M498.7 277c-5.7 0-10.4-4.7-10.4-10.4s10.6-19.3 10.6-19.3"/>
</g>
</svg>
</div>
</a>
<a href="/vim.html" class="step" id="vim">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="Layer_1" x="0" y="0" version="1.1"
viewBox="0 0 520 590">
<polygon class="vim-shadow" fill="#636375" points="405.3,466.4 213.3,578 20.1,466.4 212.1,354.9" opacity=".3"/>
<polygon class="vim-side" fill="#8886fc"
points="380,381.8 177,260.2 228,62.7 250.5,60.3 422.9,160.5 431,184.3"/>
<polygon class="vim-side" fill="#fc6949" points="420,174.3 228,62.7 308.9,16 500.9,127.6 490,144 442,178"/>
<polygon class="vim-side" fill="#8886fc"
points="332.2,508.7 140.2,397.2 41.7,170.3 107,167 299,263 306,296 344,492"/>
<polygon class="vim-side" fill="#fc6949" points="233.7,281.8 41.7,170.3 125.4,122 317.4,233.5 315,252 253,283"/>
<polygon class="vim-side" fill="#fbd854"
points="500.9,127.6 403.7,467.5 332.2,508.7 233.7,281.8 317.4,233.5 369,371.8 420,174.3"/>
</svg>
</div>
</a>
<a href="/JS.html" class="step" id="JS">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 520 762">
<g id="Layer_1">
<path fill="#663682" d="m37.7 343.2 70.5-41 70.9 41-70.5 41-70.9-41z"/>
<polygon fill="#fffdff" points="391,302.2 320.5,343.2 249.6,302.2 320,261.2"/>
<polygon fill="#fffdff" points="249.6,302.2 179.1,343.2 108.1,302.2 178.6,261.2"/>
<path fill="#663682"
d="m461.9 343.2-70.5 41-70.9-41 70.5-41 70.9 41zm-70.5 31.3 53.9-31.3-54.3-31.4-53.9 31.3 54.3 31.4"/>
<polygon fill="#663682" points="419.1,347.8 391.3,363.8 355.6,343.2 383.3,327.1"/>
<path fill="#663682" d="m249.6 302.2 70.9 41-70.5 41-70.9-41 70.5-41z"/>
<path fill="#ff7a63" d="m391 311.8 54.2 31.3-53.9 31.3-54.2-31.3 53.9-31.3z"/>
<polygon fill="#fffdff" points="391.4,384.2 321,425.1 250,384.2 320.5,343.2"/>
<polygon fill="#fffdff" points="250,384.2 179.5,425.1 108.6,384.2 179.1,343.2"/>
<path fill="#663682" d="m250.5 466.1-70.9-41 70.5-41 70.9 41-70.5 41z"/>
<polygon fill="#ff7a63" points="117.7,369.5 108.6,374.8 54.3,343.5 63.5,338.2"/>
<path fill="#663682"
d="m249.1 220.2 70.9 41-70.5 41-70.9-41 70.5-41zm2.3 73.5 9.2-5.3-54.2-31.3-9.2 5.3 54.2 31.3"/>
<path fill="#ff7a63"
d="m179.1 352.8 54.2 31.3-53.9 31.3-54.2-31.3 53.9-31.3zm.3 52 27.7-16.1-35.8-20.7-27.7 16.1 35.8 20.7"/>
<polygon fill="#ff7a63" points="260.5,288.3 251.4,293.7 197.2,262.4 206.3,257.1"/>
<polygon fill="#ff7a63"
points="294.6,421.3 294.8,428.8 256.3,428.8 256.4,451.1 243.4,451.1 243.3,428.8 205,428.8 204.9,421.3 243.3,421.3 243.2,399.2 256.2,399.2 256.3,421.3"/>
<path fill="#8886fc" d="m250.5 466.1 211.4-122.9.7 244.5-212.8 122.8.7-244.4z"/>
<path fill="#adc6ff"
d="m37.7 343.2 212.8 122.9-.7 244.6L37 587.8l.7-244.6zm178.7 283.7.3-102.8c0-5-3.5-11-7.8-13.5L126 462.7c-2.4-1.4-4.6-3.9-6.1-7l-4.2-8.5c-1.5-3-3.7-5.6-6.1-7L79 422.5c-4.3-2.5-7.8-.5-7.8 4.5v12.9l-.2 20.6-.2 82.4c0 5 3.5 11 7.8 13.5l130 75c4.2 2.5 7.7.5 7.8-4.5"/>
<path fill="#663682"
d="M109.5 440.2c2.4 1.4 4.6 3.9 6.1 7l4.2 8.5c1.5 3 3.7 5.6 6.1 7l82.9 47.9c4.3 2.5 7.8 8.5 7.8 13.5l-.3 102.9c0 5-3.5 6.9-7.8 4.5l-130-75c-4.3-2.5-7.8-8.5-7.8-13.5l.2-82.4.1-20.5v-12.9c0-5 3.5-6.9 7.8-4.5l30.7 17.5z"/>
<path fill="#9657b6"
d="M208.9 510.5 185 496.8 80.2 557.2l128.3 74.1c4.3 2.5 7.8.5 7.8-4.5l.3-102.8c.1-5-3.4-11-7.7-13.5z"/>
<path fill="#9657b6" d="m170.5 488.5-1.5-.9-98.1 56.7c.6 4.6 3.8 9.8 7.7 12.1l1.6 1L185 496.8l-14.5-8.3z"/>
<polygon fill="#fbd854" points="372.8,149.5 380.2,162.5 373.6,166.2 366.2,153.2 369.4,151.4"/>
<path fill="#fbd854"
d="m404.8 207.9 9.2 5.3-.5 183.5-253.9-146.6.5-172.9V66.6l9.2 5.3 235.5 136zm-.5 172.9.5-162.3L169.3 82.6l-.5 162.3 235.5 135.9"/>
<path fill="#fc6949"
d="m169.5 21.2 235.4 135.9-.1 50.7L169.4 72l.1-50.8zm224.7 165.5-7.5-13 7.5-4.3-3.3-5.6-3.3-5.6-7.5 4.3-7.5-13-3.3 1.9-3.3 1.9 7.5 13-7.5 4.3 3.3 5.6 3.3 5.6 7.5-4.3 7.5 13 3.3-1.9 3.3-1.9"/>
<polygon fill="#fbd854" points="386.8,173.8 394.2,186.7 390.9,188.6 387.6,190.5 380.1,177.5"/>
<polygon fill="#fbd854"
points="387.8,158.2 391,163.8 394.2,169.5 386.8,173.8 380.1,177.5 372.6,181.8 369.4,176.2 366.1,170.5 373.6,166.2 380.2,162.5"/>
<polygon fill="#fbd854"
points="414.2,152 414,213.2 404.8,207.9 404.9,157.2 169.5,21.2 169.4,72 160.1,66.7 160.1,77.2 160.3,5.4"/>
<g>
<path fill="#aaeefd" d="m169.3 82.6 235.4 135.9-.5 162.3-235.3-135.9.4-162.3z"/>
</g>
<g>
<path fill="#663682"
d="M124.1 26 378 172.6l-.2 61.3v10.6l-.5 172.9-253.9-146.6.5-172.9V87.3l.2-61.3zm244 375.5.5-162.3-235.5-136-.5 162.3 235.5 136m.5-172.9.1-50.7L133.3 42l-.1 50.7 235.4 135.9"/>
<polygon fill="#663682"
points="351.5,178.9 358,190.1 350.5,194.4 358,207.4 354.8,209.2 351.4,211.1 343.9,198.1 336.4,202.4 333.1,196.8 329.9,191.2 337.4,186.9 329.9,173.9 336.5,170.2 344,183.2"/>
<path fill="#adc6ff"
d="m133.3 42 235.4 135.9-.1 50.7L133.1 92.7l.2-50.7zM358 207.4l-7.5-13 7.5-4.3-6.5-11.3-7.5 4.2-7.5-13-6.5 3.7 7.5 13-7.5 4.3 3.3 5.6 3.3 5.6 7.5-4.3 7.5 13 3.3-1.9 3.1-1.6"/>
<g>
<path fill="#aaeefd" d="m133.1 103.2 235.4 135.9-.5 162.4-235.3-136 .4-162.3z"/>
</g>
</g>
<g>
<polygon fill="#adc6ff" points="147.9,128.7 147.9,131.9 145,130.2 130.4,121.8 130.4,118.6 145,127"/>
</g>
<g>
<polygon fill="#adc6ff"
points="143.8,119.2 149.7,131.2 143.7,136.6 141.5,133.2 145,130.2 147.9,131.9 147.9,128.7 145,127 141.5,119.9"/>
</g>
<g>
<path fill="#8886fc" d="m99.3 51.6 44.9 25.9v9.7L99.3 61.3v-9.7zm42 30.6V79l-39.2-22.6v3.2l39.2 22.6"/>
</g>
<g>
<path fill="#fbd854"
d="m266.2 159 77.6 44.8-.7 234.3L80 286.2l.7-246c0-7.9 5.6-11.1 12.5-7.1L162.3 73c4.8 2.8 9.3 8.6 11.3 14.8l4.3 20.1 4.9 2.8 2.9 12.3-14.8-8.5-5.8-27.4c-.6-1.5-1.6-2.8-2.8-3.4L93.1 43.8c-1.8-1-3.2-.2-3.2 1.8L89.3 281 334 422.2l.6-213.1-65.4-37.8-3-12.3z"/>
</g>
<g>
<path fill="#aaeefd"
d="M170.8 114.5 334.5 209l-.6 213.1L89.3 281 90 45.6c0-2 1.4-2.8 3.2-1.8l69.1 39.9c1.1.7 2.2 2 2.8 3.4l5.7 27.4zM313.3 240c6.8 3.9 12.4.8 12.4-7.1 0-7.8-5.5-17.4-12.3-21.3L184.3 137c-6.8-3.9-12.4-.8-12.4 7.1s5.5 17.4 12.3 21.4L313.3 240M99.3 51.6v9.7l44.9 25.9v-9.7L99.3 51.6m31.1 67v3.3l14.6 8.4-3.5 3.1 2.2 3.3 6-5.3-5.9-12.2-2.2.7 3.5 7.1-14.7-8.4m-8.3-1.6v-3.3l-14.6-8.4 3.5-3.1-2.2-3.3-6 5.3 5.9 12.2 2.2-.7-3.4-7.1 14.6 8.4m28.4-34.2 3 5.1-3 1.7 2 3.5 3-1.7 3 5.1 2-1.1-3-5.1 3-1.7-2-3.5-3 1.7-3-5.1-2 1.1"/>
</g>
<g>
<polygon fill="#adc6ff" points="223.8,125.2 228,127.7 228,130.9 223.8,128.5"/>
</g>
<g>
<polygon fill="#adc6ff"
points="223.8,120.4 223.8,125.2 223.8,128.5 223.8,133.2 220.9,131.7 220.9,126.9 221,123.6 221,118.8"/>
</g>
<g>
<path fill="#aaeefd"
d="m252.4 135.7 4.1 17.7-64.2-37.1-4.1-17.7 64.2 37.1zm-24.4-4.8v-3.3l-4.2-2.4v-4.8l-2.8-1.6v4.8l-4.2-2.4v3.3l4.2 2.4v4.8l2.8 1.6v-4.8l4.2 2.4"/>
</g>
<g>
<polygon fill="#adc6ff" points="216.7,124.4 216.8,121.2 221,123.6 220.9,126.9"/>
</g>
<g>
<path fill="#fffdff"
d="M313.4 211.6c6.8 3.9 12.3 13.5 12.3 21.3 0 7.9-5.6 11-12.4 7.1l-129.1-74.6c-6.8-3.9-12.3-13.5-12.3-21.4 0-7.8 5.6-11 12.4-7.1l129.1 74.7z"/>
</g>
<g>
<polygon fill="#aaeefd" points="102.1,59.7 102.1,56.5 141.4,79.1 141.3,82.2"/>
</g>
<g>
<path fill="#fbd854"
d="m266.2 159 2.9 12.3-83.5-48.2-2.9-12.3-7-30 83.5 48.2 7 30zm-73.8-42.6 64.2 37.1-4.1-17.7-64.2-37.1 4.1 17.7"/>
</g>
<g>
<polygon fill="#8886fc" points="122.1,113.8 122.1,117 107.5,108.6 104.6,106.9 104.6,103.7 107.5,105.4"/>
</g>
<g>
<polygon fill="#8886fc"
points="108.8,99 111,102.2 107.5,105.4 104.6,103.7 104.6,106.9 107.5,108.6 111,115.7 108.7,116.4 102.8,104.2"/>
</g>
<g>
<polygon fill="#8886fc"
points="158.4,85.1 160.4,88.6 157.5,90.2 155.5,91.4 152.5,93.1 150.5,89.7 153.5,88 155.5,86.8"/>
</g>
<g>
<polygon fill="#8886fc" points="157.5,90.2 160.4,95.4 158.4,96.6 155.5,91.4"/>
</g>
<g>
<polygon fill="#8886fc" points="152.5,81.7 155.5,86.8 153.5,88 150.5,82.8"/>
</g>
</g>
<g id="folder-1">
<path fill="#9657b6"
d="m291.4 497.7 32.1-18.4-1.2.2c-2.8.4-5.5 1.3-7.9 2.7l-27.1 15.5c-4 2.3-7.2 7.6-7.7 12.3h-.1v112.9c0 5.3 4.5 9.8 9.6 9.4V509.9h-5.3c.3-4.7 3.6-9.9 7.6-12.2z"/>
<path fill="#ff7a63"
d="M421.4 442.7c4.3-2.5 7.8-.5 7.8 4.5l.3 92.5c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5l-.3-92.5c0-5 3.5-11 7.8-13.5l130-75z"/>
<path fill="#fbd854"
d="M322 480c2.4-1.4 4.7-1.4 6.1-.1l4.2 3.7c1.5 1.3 3.7 1.3 6.1-.1l82.9-47.9c4.3-2.5 7.8-.5 7.8 4.5v4.2c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 91.3-.2-75-.1-20.5v-12.9c0-5 3.5-11 7.8-13.5L322 480z"/>
<path fill="#fbae2f"
d="M421.4 439.8c4.3-2.5 7.8-.5 7.8 4.5v3c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 92.5v-4.2l-.3-91.3c0-5 3.5-11 7.8-13.5l130-75z"/>
<g>
<path fill="#fc6949"
d="M429.5 539.7v3c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5v-3c0 5 3.5 7 7.8 4.5l130-75c4.3-2.5 7.8-8.5 7.8-13.5z"/>
</g>
</g>
<g id="folder-2_00000002373275160536943590000001258519323344469687_">
<path fill="#9657b6"
d="m308.8 507.8 32.1-18.4-1.2.2c-2.8.4-5.5 1.3-7.9 2.7l-27.1 15.5c-4 2.3-7.2 7.6-7.7 12.3h-.1V633c0 5.3 4.5 9.8 9.6 9.4V520h-5.3c.4-4.6 3.7-10 7.6-12.2z"/>
<path fill="#ff7a63"
d="M438.9 452.8c4.3-2.5 7.8-.5 7.8 4.5l.3 92.5c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5l-.3-92.5c0-5 3.5-11 7.8-13.5l130-75z"/>
<path fill="#fbd854"
d="M339.4 490c2.4-1.4 4.7-1.4 6.1-.1l4.2 3.7c1.5 1.3 3.7 1.3 6.1-.1l82.9-47.9c4.3-2.5 7.8-.5 7.8 4.5v4.2c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 91.3-.2-75-.1-20.5v-12.9c0-5 3.5-11 7.8-13.5l30.7-17.7z"/>
<path fill="#ff935e"
d="M438.9 449.8c4.3-2.5 7.8-.5 7.8 4.5v3c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 92.5v-4.2l-.3-91.3c0-5 3.5-11 7.8-13.5l130-75z"/>
<g>
<path fill="#fc6949"
d="M447 549.9v3c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5v-3c0 5 3.5 7 7.8 4.5l130-75c4.3-2.5 7.8-8.6 7.8-13.5z"/>
</g>
</g>
<g id="folder-3">
<path fill="#9657b6"
d="m328.4 519 32.1-18.4-1.2.2c-2.8.4-5.5 1.3-7.9 2.7L324.2 519c-4 2.3-7.2 7.6-7.7 12.3h-.1v112.9c0 5.3 4.5 9.8 9.6 9.4V531.2h-5.3c.4-4.7 3.7-10 7.7-12.2z"/>
<path fill="#ff7a63"
d="M458.4 464.1c4.3-2.5 7.8-.5 7.8 4.5l.3 92.5c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5l-.3-92.5c0-5 3.5-11 7.8-13.5l130-75z"/>
<path fill="#fbd854"
d="M358.9 501.4c2.4-1.4 4.7-1.4 6.1-.1l4.2 3.7c1.5 1.3 3.7 1.3 6.1-.1l82.9-47.9c4.3-2.5 7.8-.5 7.8 4.5v4.2c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 91.3-.2-75-.1-20.5v-12.9c0-5 3.5-11 7.8-13.5l30.7-17.7z"/>
<path fill="#fbae2f"
d="M458.4 461.1c4.3-2.5 7.8-.5 7.8 4.5v3c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 92.5v-4.2l-.3-91.3c0-5 3.5-11 7.8-13.5l130-75z"/>
<g>
<path fill="#fc6949"
d="M466.5 561v3c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5v-3c0 5 3.5 7 7.8 4.5l130-75c4.3-2.5 7.8-8.5 7.8-13.5z"/>
</g>
</g>
<g id="folder-4">
<path fill="#9657b6"
d="m346.8 529.2 32.1-18.4-1.2.2c-2.8.4-5.5 1.3-7.9 2.7l-27.1 15.5c-4 2.3-7.2 7.6-7.7 12.3h-.1v112.9c0 5.3 4.5 9.8 9.6 9.4V541.5h-5.3c.4-4.7 3.7-10 7.6-12.3z"/>
<path fill="#ff7a63"
d="M476.9 474.2c4.3-2.5 7.8-.5 7.8 4.5l.3 92.5c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5l-.3-92.5c0-5 3.5-11 7.8-13.5l130-75z"/>
<path fill="#fbd854"
d="M377.4 511.5c2.4-1.4 4.7-1.4 6.1-.1l4.2 3.7c1.5 1.3 3.7 1.3 6.1-.1l82.9-47.9c4.3-2.5 7.8-.5 7.8 4.5v4.2c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 91.3-.2-75-.1-20.5v-12.9c0-5 3.5-11 7.8-13.5l30.7-17.7z"/>
<g id="pAk4i8_00000097471399201893256130000011428778441764497576_">
<path
d="M426.8 464.5c.1-.1.2-.1.3-.2.3-.1.6-.3.8-.4.1-.1.2-.1.3-.2.1 0 .1-.1.2-.1.6-.4 1.3-.8 1.9-1.1.1-.1.2-.1.2-.1.5-.2.8-.1.8.6V473.9c0 3.7 0 7.3-.2 11.1-.2 5.4-2.9 9.6-7.6 12.5-.2.1-.4.2-.5.3s-.2.1-.4.2c-3.3 1.8-6 1.6-7.4-.6-.1-.2-.3-.5-.4-.8 1.5-1.9 2.9-3.7 4.4-5.6.4.4.7.8 1.1 1.1l.1.1.6.3c.5.1 1 .1 1.6-.2.1-.1.3-.1.4-.2.4-.2.7-.5 1.1-.9 1.3-1.3 1.6-2.7 1.6-4.1v-11.4c0-2.9 0-5.9-.1-8.8V466.6c0-.9.3-1.5 1-2l.2-.1z"/>
<path fill="#fbae2f"
d="M399.5 449.7c19.4-11.2 38.7-22.4 58.1-33.5.1 22.2.1 44.5.2 66.8-19.4 11.2-38.7 22.4-58.1 33.5-.1-22.3-.2-44.5-.2-66.8zm53.6 24.2c.2-1 .3-1.8.3-2.6 0-3.2-1.4-5.1-4.1-5.4-1.2-.1-2.5 0-3.8 0-1 0-2.1.1-3.1 0-.7-.1-1.1-.6-1.1-1.5 0-.3 0-.6.1-1 .4-1.5 1.2-2.4 2.3-3.1.1 0 .1-.1.2-.1h.1c.1-.1.1-.1.2-.1 1.2-.6 2-.3 2.7.3.2.2.4.3.5.5 1.5-1.9 2.9-3.8 4.2-5.6-.1-.2-.2-.4-.4-.5-1.5-2-3.9-2.1-7-.5-.1.1-.2.1-.3.2-.4.3-.8.5-1.2.8-3.4 2.4-6 6.2-6.8 10-.2 1-.3 1.8-.3 2.7 0 2.9 1.2 4.9 3.5 5.4 1 .2 2.2.1 3.3.1 1.2 0 2.5-.1 3.7-.1.9 0 1.5.6 1.4 1.7 0 .2 0 .4-.1.7-.2 1.6-1.2 2.7-2.3 3.6-.1.1-.3.2-.4.3-.2.2-.4.3-.7.4-.1.1-.2.1-.3.2-.1 0-.1.1-.2.1-1.7.9-3.2 1-4.4-.2-.2-.2-.5-.4-.8-.6-1.5 1.9-2.9 3.7-4.5 5.6 1 1.5 2.2 2.3 3.8 2.5h.6c1.8 0 3.6-.7 5.6-1.8 0 0 .1 0 .1-.1.3-.2.6-.3.8-.5.3-.2.5-.3.8-.5 3.9-2.6 6.9-6.9 7.6-10.9m-21.9 11c.1-3.7.2-7.4.2-11.1V462.9c0-.7-.3-.8-.8-.6-.1 0-.1.1-.2.1-.7.4-1.3.8-1.9 1.2-.1 0-.1.1-.2.1-.1.1-.2.1-.3.2-.3.2-.6.3-.8.4-.1.1-.2.1-.3.2-.1 0-.1.1-.2.1-.7.5-1 1.1-1 2V466.9c0 2.9 0 5.9.1 8.8v11.4c0 1.4-.3 2.8-1.6 4.1-.4.4-.7.6-1.1.9-.1.1-.3.1-.4.2-.6.2-1.1.3-1.6.2-.2-.1-.4-.1-.6-.3l-.1-.1c-.4-.3-.7-.7-1.1-1.1-1.5 1.9-2.9 3.7-4.4 5.6.1.3.3.5.4.8 1.4 2.2 4.1 2.4 7.4.6.1-.1.2-.1.4-.2s.4-.2.5-.3c4.7-3 7.4-7.1 7.6-12.6"/>
<path
d="M443.9 454.2c.2-.1.3-.2.4-.2 3-1.7 5.5-1.5 7 .5.1.2.2.3.4.5-1.4 1.8-2.8 3.6-4.2 5.6-.2-.2-.3-.4-.5-.5-.7-.6-1.5-.9-2.7-.3l-.1.1c-.1 0-.1.1-.1.1-.1 0-.1.1-.2.1-1.1.7-1.9 1.6-2.3 3.1-.1.4-.1.7-.1 1 0 .9.4 1.4 1.1 1.5 1 .2 2.1 0 3.1 0 1.3 0 2.6-.2 3.8 0 2.7.3 4.1 2.2 4.1 5.4 0 .8-.1 1.7-.3 2.6-.7 4-3.7 8.3-7.3 10.7-.3.2-.5.4-.8.5-.2.2-.5.3-.7.5-.1.1-.1.1-.2.1-1.9 1.1-3.8 1.8-5.6 1.8h-.6c-1.6-.2-2.8-1-3.8-2.5 1.5-1.9 3-3.7 4.5-5.6.3.2.5.4.8.6 1.2 1.1 2.7 1.1 4.4.2.1 0 .1-.1.2-.1.1-.1.2-.1.3-.2.2-.1.4-.3.7-.4.1-.1.3-.2.4-.3 1.1-.9 2.1-2 2.3-3.6 0-.2.1-.5.1-.7 0-1.1-.5-1.7-1.4-1.7-1.2 0-2.5.1-3.7.1-1.1 0-2.3.1-3.3-.1-2.3-.5-3.5-2.4-3.5-5.4 0-.8.1-1.7.3-2.7.8-3.8 3.4-7.6 6.8-10-.1-.2.3-.4.7-.7z"/>
</g>
<polygon fill="#fffdff" points="457.6,416.2 452.9,413.5 403.9,441.7 394.8,447 399.5,449.7"/>
<polygon fill="#aaeefd" points="394.8,447 394.8,518.7 399.8,515.9 399.5,449.7"/>
<path fill="#ff935e"
d="M476.9 471.3c4.3-2.5 7.8-.5 7.8 4.5v3c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 92.5v-4.2l-.3-91.3c0-5 3.5-11 7.8-13.5l130-75z"/>
<g>
<path fill="#fc6949"
d="M485 571.2v3c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5v-3c0 5 3.5 7 7.8 4.5l130-75c4.3-2.5 7.8-8.5 7.8-13.5z"/>
</g>
</g>
<g id="folder-5">
<path fill="#9657b6"
d="m365.3 540.5 32.1-18.4-1.2.2c-2.8.4-5.5 1.3-7.9 2.7l-27.1 15.5c-4 2.3-7.2 7.6-7.7 12.3h-.1v112.9c0 5.3 4.5 9.8 9.6 9.4V552.7h-5.3c.4-4.7 3.7-9.9 7.6-12.2z"/>
<path fill="#ff7a63"
d="M495.4 485.5c4.3-2.5 7.8-.5 7.8 4.5l.3 92.5c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5l-.3-92.5c0-5 3.5-11 7.8-13.5l130-75z"/>
<path fill="#fbd854"
d="M395.9 522.8c2.4-1.4 4.7-1.4 6.1-.1l4.2 3.7c1.5 1.3 3.7 1.3 6.1-.1l82.9-47.9c4.3-2.5 7.8-.5 7.8 4.5v4.2c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 91.3-.2-75-.1-20.5V554c0-5 3.5-11 7.8-13.5l30.7-17.7z"/>
<path fill="#fbae2f"
d="M495.4 482.5c4.3-2.5 7.8-.5 7.8 4.5v3c0-5-3.5-6.9-7.8-4.5l-130 75c-4.3 2.5-7.8 8.5-7.8 13.5l.3 92.5v-4.2l-.3-91.3c0-5 3.5-11 7.8-13.5l130-75z"/>
<g>
<path fill="#fc6949"
d="M503.5 582.5v3c0 5-3.5 11-7.8 13.5l-130 75c-4.3 2.5-7.8.5-7.8-4.5v-3c0 5 3.5 7 7.8 4.5l130-75c4.3-2.5 7.8-8.5 7.8-13.5z"/>
</g>
</g>
<g id="message">
<polygon fill="#fbd854" points="216.3,292.5 231.4,288.5 280.8,358.9 151.5,284.2 201.2,270.9"/>
<polygon fill="#fbd854" points="148.3,195.6 193.4,259.9 148,271.9"/>
<path fill="#fbd854" d="m284.6 261.2-68.3 18.1-68-96.8c.2-1.7 1.5-2.3 3.2-1.4l130 75c1.6 1 2.9 3.2 3.1 5.1z"/>
<polygon fill="#fbd854" points="239.2,286.4 284.6,274.4 284.4,350.7"/>
<path fill="#8886fc"
d="M281.5 245.6c6.8 4 12.4 13.6 12.4 21.4l-.3 95.5c0 7.9-5.6 11.1-12.5 7.1l-130-75c-6.8-4-12.4-13.6-12.4-21.4l.3-95.5c0-7.9 5.6-11.1 12.5-7.1l130 75zm-130-64.4c-1.6-.9-3-.3-3.2 1.4l68 96.8 68.3-18.1c-.2-1.9-1.5-4.1-3.1-5l-130-75.1m0 103 129.3 74.7-49.4-70.4-15.1 4-15.1-21.5-49.7 13.2m132.9 66.5.2-76.4-45.4 12 45.2 64.4M148 271.9l45.4-12-45.2-64.2-.2 76.2"/>
</g>
<path id="blick-1" fill="#fffdff"
d="M209 587c3.8 26.3 6.9 31.7 27.8 48.2-21-7.7-24.1-5.9-28 16-3.8-26.3-6.9-31.7-27.8-48.2 20.9 7.6 24 5.7 28-16z"/>
<path id="blick-2" fill="#fffdff"
d="M56.5 361.5c3.8 26.3 6.9 31.7 27.8 48.2-21-7.7-24.1-5.9-28 16-3.8-26.3-6.9-31.7-27.8-48.2 20.9 7.6 24 5.7 28-16z"/>
<path id="blick-3" fill="#fffdff"
d="M333.8 264.5c3.8 26.3 6.9 31.7 27.8 48.2-21-7.7-24.1-5.9-28 16-3.8-26.3-6.9-31.7-27.8-48.2 20.8 7.6 24 5.7 28-16z"/>
</svg>
</div>
</a>
<a href="/julia.html" class="step" id="julia">
<div class="svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 520 530">
<g id="Layer_1">
<polygon fill="#aaeefd" points="408.7,416.7 408.7,237.4 356.4,142.1 195.2,49.3 194.9,297.7"/>
<polygon fill="#9657b6" points="461.3,386.6 408.7,416.7 408.7,237.4 461.3,206.9"/>
<polygon fill="#adc6ff" points="409.9,112 356.4,142.1 194.9,49.3 247.4,19.2"/>
<polygon fill="#8886fc" points="409.9,112 461.3,206.9 408.7,237.4 356.4,142.1"/>
<path fill="#7f2827" d="M175.2 281.3c24.5-14.2 117.5-68.4 140.4-81.2-24.5 14.2-117.5 68.4-140.4 81.2z"/>
<polygon fill="#f87e37" points="271.5,336.9 353,286.9 353,319.8 271.4,369.8"/>
<polygon fill="#fbae2f" points="215.8,304.7 297.3,254.7 353,286.9 271.5,336.9"/>
<polygon fill="#fc6949" points="235.1,261.1 316.7,211.1 316.6,243.7 235,293.7"/>
<polygon fill="#f87e37" points="216,228 297.5,178 316.7,211.1 235.1,261.1"/>
<polygon fill="#fbae2f" points="175.5,171.6 257,121.6 353.4,177.2 271.8,227.2"/>
<polygon fill="#f87e37" points="271.8,227.2 353.4,177.2 353.3,210.2 271.7,260.2"/>
<polygon fill="#fb504d"
points="271.8,227.2 271.7,260.2 216,228 235.1,261.1 235,293.7 215.8,304.7 271.5,336.9 271.4,369.8 175.1,314.2 175.2,281.3 208.7,262.2 175.5,204.6 175.5,171.6"/>
<g>
<polygon fill="#aaeefd" points="300,480 300,300.7 247.6,205.3 86.4,112.6 86.1,360.9"/>
<polygon fill="#9657b6" points="352.5,449.9 300,480 300,300.7 352.5,270.2"/>
<polygon fill="#adc6ff" points="301.1,175.3 247.6,205.3 86.1,112.6 138.6,82.5"/>
</g>
<polygon fill="#8886fc" points="301.1,175.3 352.5,270.2 300,300.7 247.6,205.3"/>
<g>
<path fill="#7f2827" d="M65.9 357.4c24.5-14.2 117.4-68.4 140.3-81.2-24.5 14.2-117.4 68.4-140.3 81.2z"/>
<polygon fill="#f87e37" points="162.2,413 243.7,363 243.6,395.9 162.1,445.9"/>
<polygon fill="#fbae2f" points="106.5,380.8 188,330.8 243.7,363 162.2,413"/>
<polygon fill="#fc6949" points="125.8,337.2 207.3,287.2 207.3,319.8 125.7,369.8"/>
<polygon fill="#f87e37" points="106.7,304.1 188.2,254.1 207.3,287.2 125.8,337.2"/>
<polygon fill="#fbae2f" points="66.2,247.7 147.7,197.7 244,253.3 162.5,303.3"/>
<polygon fill="#f87e37" points="162.5,303.3 244,253.3 244,286.3 162.4,336.3"/>
<polygon fill="#fb504d"
points="162.5,303.3 162.4,336.3 106.7,304.1 125.8,337.2 125.7,369.8 106.5,380.8 162.2,413 162.1,445.9 65.8,390.3 65.9,357.4 99.4,338.3 66.1,280.7 66.2,247.7"/>
</g>
</g>
<g id="peace-8">
<polygon fill="#fb504d" points="467,390.3 451.1,383.7 441.5,406.7 457.4,413.5"/>
<polygon fill="#fb504d" points="483.8,350.3 467.8,343.7 458.2,366.9 474.1,373.5"/>
<polygon fill="#fbae2f" points="460.6,367.9 444.6,361.4 437.7,378 453.6,384.7"/>
<polygon fill="#f87e37"
points="483.8,350.2 493.6,354.2 467.2,417.5 457.4,413.5 467,390.3 453.6,384.7 460.6,367.9 474.1,373.4"/>
<path fill="#8886fc" d="M493.6 354.2c-5.2-2.3-20.5-9.3-25.8-10.5 6.1 2.5 19.9 8.1 25.8 10.5z"/>
</g>
<g id="peace-7">
<path fill="#adc6ff"
d="M500 119.6c-.1-.1-27.3-15.8-27.5-15.8-5.8-1.2-11.2 2.4-15.1 6.4-1.8 1.9-3.3 4.1-4.7 6.2 0 0 0 .1-.1.1-3.5 6.3-6.6 15.2-2.6 22 4.3 2.6 27.2 16.5 28.7 17.7 2.7-4.6 21.3-36.6 21.3-36.6z"/>
<path fill="#8ff4ee"
d="M489.3 120.6c8.3-4.8 15.1-1 15.1 8.6 0 9.5-6.8 21.2-15.1 26-8.3 4.8-15.1 1-15.1-8.6s6.7-21.3 15.1-26z"/>
</g>
<g id="peace-6">
<polygon fill="#fbae2f" points="410.1,274.7 414.6,277.2 393.1,290.7 388.5,288.3"/>
<polygon fill="#fb504d" points="372.9,298.1 377.4,300.6 382.4,311.8 377.8,309.4"/>
<polygon fill="#fb504d" points="382.9,268 387.5,270.5 377.4,300.6 372.9,298.1"/>
<polygon fill="#fbae2f" points="400.4,252.9 404.9,255.3 393.6,252.3 389,249.8"/>
<polygon fill="#f87e37"
points="393.6,252.3 404.9,255.3 393.1,290.7 414.6,277.2 419.6,288.4 382.4,311.8 377.4,300.6 387.5,270.5 369.2,282 364.2,270.8"/>
<polygon fill="#fbae2f" points="389,249.8 393.6,252.3 364.2,270.8 359.6,268.3"/>
<polygon fill="#fb504d" points="359.6,268.3 364.2,270.8 369.2,282 364.6,279.5"/>
</g>
<g id="peace-5">
<path fill="#803d32" d="M279.9 67.3v4.2c0-3.1-.1-17.9-.1-20.7l.1 16.5z"/>
<rect width="28.4" height="49.1" x="300.6" y="79.2" fill="#f87e37"/>
<rect width="28.4" height="49.1" x="251.5" y="79.2" fill="#f87e37"/>
<polygon fill="#fbae2f"
points="329,67.3 329.1,79.2 300.6,79.2 300.7,95.7 280,95.7 279.9,79.2 251.5,79.2 251.4,67.3 279.9,67.3 279.8,50.8 300.5,50.8 300.6,67.3"/>
<rect width="20.7" height="49.1" x="280" y="95.7" fill="#fc6949"/>
</g>
<g id="peace-4">
<path fill="#adc6ff"
d="M70.9 42.4 19.6 68.3c5.7-2.9 22.2 29.3 18.4 31.5 1.2-1 52.5-26.5 53.5-28 8-5.2-6.5-35.5-20.6-29.4z"/>
<path fill="#8886fc" d="M20.4 67.6c11.9-7 30.4 24.9 18.5 31.8-12 7-30.5-24.9-18.5-31.8z"/>
</g>
<g id="peace-3">
<path fill="#fc6949"
d="M188.8 156.7c2.1-17.3-13.4-40.8-30.3-41 0-1.8-37.9 21.2-39.5 21.9 1.1-.7 36.6 43.4 28.8 49.6 13.2-9.9 38.5-15.8 41-30.5z"/>
<path fill="#fb504d" d="M119.4 137.1c18.6-11 47.6 38.9 28.8 49.6-18.6 11-47.6-38.9-28.8-49.6z"/>
</g>
<g id="peace-2">
<path fill="#663682"
d="m57.1 397.4-25.3 14.7c6.4-3.2 24.9 32.8 20.6 35.3 1.4-1.1 26.6-15.4 27.7-17 7.1-4.4-9.2-37.9-23-33z"/>
<path fill="#9657b6" d="M32.7 411.3c13.3-7.9 34.1 27.9 20.7 35.6-13.4 7.9-34.1-27.9-20.7-35.6z"/>
</g>
<g id="peace-1">
<g fill="#f87e37">