-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
605 lines (593 loc) · 198 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
<!DOCTYPE html>
<html>
<head>
<title>Coloring game for kids</title>
<link rel="icon" type="image/png" href="https://mohcin147.github.io/favicon.png">
<meta charset="UTF-8">
<meta name="google-site-verification" content="Zfcj56GqyW1ct5AltHgZbxtFyZsrJkVhPVkD32WmZZg" />
<meta http-equiv="Permissions-Policy" content="interest-cohort=()">
<meta name="description" content="Coloring game: This simple game is a collection of coloring pages for children, developed by Mohcin147">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-size: 14px;
line-height: 1.5;
font-family: Tahoma, sans-serif;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media print {
body * {
visibility: hidden;
}
#printable, #printable * {
visibility: visible;
}
#printable {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
}
.aboutus {
display: flex;
text-align: center;
justify-content: center;
align-items: center;
background-color: #404040;
color: #ffffff;
cursor: pointer;
}
.download {
text-align: center;
width: 100%;
padding: 10px;
margin-bottom: 20px;
background-color: #404040;
color: #ffffff;
transition: background-color 0.3s ease;
cursor: pointer;
}
.download:hover {
background-color: #c0c0c0;
color: #404040;
}
.color {
width: 80%;
height: 80%;
}
.container {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.color-button {
display: inline-block;
width: 30px;
height: 30px;
margin: 2px;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.button {
display: inline-block;
width: 20px;
height: 20px;
padding: 10px 10px;
margin: 4px;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="aboutus" style="padding: 20px;" onclick="window.location.href='https://mohcin147.github.io'">
<div>Coloring game: This simple game is a collection of coloring pages for children, developed by Mohcin147.<br>Freepik coloring pages & SVG icons of Streamlinehq.com & SFX of Freesound.org and music by David Renda from esliyanstudios.com.</div>
</div>
<div class="container"><div class="download" onclick="window.location.href='code_coloring_game_for_kids.zip'">Download</div></div>
<div class="container" style="padding: 10px; display: flex;">
<div class="button" style="background-color: #404040;" onclick="playSound(); playMusic();"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" height="100%" width="100%"><path id="Union" fill="#ffffff" fill-rule="evenodd" d="M12.781.23a1.227 1.227 0 0 0-.555.02h-.006L4.587 2.369a1.227 1.227 0 0 0-.905 1.177V9.04a2.477 2.477 0 1 0 1.5 2.277V6.076l7.09-1.97V6.57a2.477 2.477 0 1 0 1.5 2.345V1.402a1.226 1.226 0 0 0-.99-1.172Z" clip-rule="evenodd"></path></svg></div>
<div class="button" style="background-color: #404040;" onclick="playSound(); toggleContent();"><svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" viewBox="0 0 14 14" height="100%" width="100%"><path fill="#ffffff" fill-rule="evenodd" d="M4.35.577a7 7 0 0 1 9.381 4.085c.27.758.15 1.626-.315 2.282A2.526 2.526 0 0 1 11.37 8H9.5a1.5 1.5 0 0 0-.455 2.931c.55.205.935.702.972 1.286a1.43 1.43 0 0 1-1.01 1.524A6.8 6.8 0 0 1 7.129 14a7 7 0 0 1-3.636-1.021A7.055 7.055 0 0 1 .15 6.517a7.055 7.055 0 0 1 4.2-5.94ZM4.5 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm6-3a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm-6 6.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" clip-rule="evenodd"></path></svg></div>
<div class="button" style="background-color: #404040;" onclick="playSound(); window.print();"><svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" viewBox="0 0 14 14" height="100%" width="100%"><path fill="#ffffff" fill-rule="evenodd" d="M3.25.5V3h7.5V.5a.5.5 0 0 0-.5-.5h-6.5a.5.5 0 0 0-.5.5Zm.638 9V13c0 .133.047.26.13.354a.421.421 0 0 0 .314.146h5.336a.421.421 0 0 0 .314-.146.534.534 0 0 0 .13-.354V9.5H3.888ZM.45 4.804a1.53 1.53 0 0 1 1.049-.41h11c.388 0 .766.144 1.05.41.284.267.45.636.45 1.029v4.227c0 .393-.166.762-.45 1.03-.284.265-.662.41-1.05.41h-1.138v-2c0-.69-.56-1.25-1.25-1.25H3.888c-.69 0-1.25.56-1.25 1.25v2H1.5c-.388 0-.766-.145-1.05-.41A1.412 1.412 0 0 1 0 10.06V5.833c0-.393.166-.762.45-1.029Zm8.864 1.444c0-.345.28-.625.625-.625h1.637a.625.625 0 1 1 0 1.25H9.94a.625.625 0 0 1-.625-.625Z" clip-rule="evenodd"></path></svg></div>
</div>
<div id="content1" style="display: block;" class="container">
<svg id="printable" class="color" viewBox="0 0 400 400" width="400" height="400">
<path
id="path259"
d="m 155.35039,368.59418 c -4.81587,-0.86023 -7.30087,-2.33116 -7.03957,-4.1669 0.46126,-3.24049 11.56017,-5.35905 21.79876,-4.16092 6.8964,0.80703 10.1781,2.19836 10.1781,4.31516 0,1.00084 -0.58061,1.80503 -1.8301,2.53476 -3.66046,2.13782 -15.25953,2.87968 -23.10719,1.4779 z"
style="fill:#000000;stroke-width:0.59981447" />
<path
id="path255"
d="m 277.45741,363.22165 c -3.75679,-1.7158 -4.28894,-4.42429 -1.30537,-6.64382 2.46057,-1.83046 10.354,-1.82767 12.80804,0.005 2.24405,1.67542 2.28646,4.16159 0.0988,5.79489 -2.05966,1.53775 -8.98049,2.04146 -11.60152,0.84438 z"
style="fill:#000000;stroke-width:0.59981447" />
<path
id="path251"
d="m 117.46516,346.60103 c -15.50135,-2.61017 -27.728845,-16.48267 -34.876123,-39.56808 -4.209585,-13.59678 -5.90473,-25.70163 -5.879808,-41.98701 0.02348,-15.32762 1.803681,-30.27019 5.217913,-43.79746 1.41029,-5.58759 1.423215,-5.86963 0.606837,-13.23642 -1.40888,-12.71339 -2.297252,-34.37871 -1.971488,-48.08012 l 0.310093,-13.04248 -2.176394,-0.58843 c -1.197022,-0.32364 -2.778691,-1.0118 -3.514825,-1.52922 -1.235312,-0.86831 -1.466393,-0.84698 -2.999081,0.27684 -5.006455,3.67092 -10.342279,0.44706 -13.489658,-8.15034 -1.692712,-4.62379 -2.32661,-17.39174 -0.890817,-17.94271 2.265642,-0.86942 13.02599,6.502 15.962313,10.93503 2.586667,3.90515 3.044732,7.23821 1.53212,11.14823 -0.322932,0.83477 0.178193,1.31348 2.407105,2.29943 1.548215,0.68485 2.931687,1.12844 3.074373,0.98575 0.396244,-0.39624 1.582722,-16.38356 1.568438,-21.13422 -0.0074,-2.30929 -0.199754,-5.61773 -0.428465,-7.35209 l -0.415846,-3.15339 -1.787281,1.50389 c -3.492411,2.93868 -8.893014,1.14076 -8.893014,-2.96058 0,-1.52124 0.555035,-2.51563 2.402935,-4.30511 l 2.402923,-2.32697 -3.618232,-0.36003 c -4.717977,-0.46946 -6.585954,-2.07189 -6.585954,-5.649715 0,-3.591766 1.546625,-4.8301 5.798386,-4.642616 l 3.272474,0.144309 -1.33186,-1.870432 c -0.75027,-1.053652 -1.451561,-3.116192 -1.60598,-4.723244 -0.224171,-2.332914 -0.04287,-3.084121 0.995129,-4.122064 2.046222,-2.046218 4.964079,-1.701608 7.205264,0.850968 1.023864,1.166119 1.861583,2.380743 1.861583,2.699167 0,0.318416 0.20243,0.578874 0.449858,0.57879 0.247418,-8.4e-5 0.474254,-1.151957 0.504074,-2.559714 0.08343,-3.9384 1.038959,-5.237725 3.851852,-5.237725 2.86085,0 4.065288,1.485471 4.711267,5.810583 0.402733,2.696544 0.480027,2.798225 1.173059,1.543352 1.843255,-3.337517 7.187625,-4.06334 9.27168,-1.259196 1.02512,1.37931 1.09169,1.867415 0.4901,3.593118 -0.38288,1.098344 -1.69977,3.028276 -2.926395,4.288745 l -2.230227,2.291759 3.140772,-0.412774 c 5.33916,-0.701693 7.95579,1.269195 7.95579,5.992429 0,3.52351 -2.68752,4.3905 -9.346305,3.01509 -4.728282,-0.97666 -6.085803,-0.86766 -3.882159,0.31169 0.698408,0.37378 2.0711,1.78572 3.050439,3.13767 1.38076,1.90607 1.78063,3.09936 1.78063,5.31382 0,2.45255 -0.26058,3.07501 -1.84547,4.40863 -1.015,0.85406 -2.19323,1.55284 -2.618284,1.55284 -1.155232,0 -3.809809,-2.26377 -4.238527,-3.61453 -0.59205,-1.86539 -1.187047,-1.4035 -1.971836,1.53074 -0.51427,1.92276 -1.138846,2.87165 -2.141043,3.25268 -1.189932,0.45242 -1.476325,1.09382 -1.800773,4.03319 -0.721062,6.53239 -1.49972,17.86203 -1.920085,27.93767 -0.419007,10.04296 -0.418659,10.04689 0.88455,10.04689 2.266811,0 6.155888,-2.32575 5.814469,-3.47716 -1.687634,-5.69137 -0.754304,-8.80114 4.099796,-13.66028 3.623953,-3.62773 11.223008,-8.65459 13.083048,-8.65459 2.19872,0 2.05391,10.82649 -0.236,17.64481 -3.04706,9.07272 -8.399415,12.51014 -13.671231,8.78001 -1.486247,-1.05163 -1.604262,-1.04995 -3.635464,0.0515 -1.154646,0.62614 -3.111535,1.30265 -4.348657,1.50335 l -2.249305,0.36496 0.0084,6.97116 c 0.01486,12.1866 1.566175,36.06214 2.34321,36.06214 0.226205,0 1.035314,-1.9569 1.798035,-4.34865 2.284771,-7.16475 7.334676,-17.72861 11.827727,-24.74235 9.712845,-15.162 13.806965,-23.54128 18.773455,-38.42304 3.46655,-10.38731 5.37847,-14.20408 9.20653,-18.37904 l 2.03458,-2.21895 -0.27996,-7.75291 c -0.21404,-5.92733 -0.0396,-8.83294 0.7405,-12.339625 l 1.02044,-4.586729 -2.82113,-3.135944 c -13.66352,-15.18823 -17.53985,-34.892116 -9.23806,-46.958357 4.51692,-6.565113 14.3451,-12.963556 21.83162,-14.213018 7.39804,-1.2347 11.52495,1.55677 16.20553,10.96155 3.34569,6.722546 5.59561,9.783131 6.87808,9.356266 5.5219,-1.837969 8.44682,-3.146734 10.28346,-4.601375 3.3189,-2.628621 10.71144,-5.966073 13.21501,-5.966073 2.72485,0 3.66052,1.043372 3.16364,3.527803 -0.36658,1.832848 -0.32617,1.879622 1.14151,1.321613 2.32592,-0.884311 8.28194,-1.324816 10.62454,-0.78578 1.25163,0.288001 2.3636,1.023853 2.76557,1.830141 l 0.67229,1.348473 1.06998,-1.633 c 0.5885,-0.89815 1.67995,-3.134972 2.42546,-4.970711 2.01062,-4.950976 3.39129,-5.736962 10.07753,-5.736962 5.02219,0 5.87418,0.17625 9.51195,1.967734 4.26732,2.101528 8.53746,6.2475 10.33408,10.033583 2.78932,5.878074 2.58559,13.665315 -0.56345,21.536698 l -1.47907,3.697095 1.13099,2.976561 c 0.62206,1.63711 1.32683,4.325787 1.56615,5.97484 0.37347,2.573245 0.93678,3.524671 3.97371,6.711635 3.93971,4.134348 5.05056,6.325212 6.16038,12.149772 0.55076,2.89045 1.34116,4.73864 2.89985,6.78061 3.00791,3.94058 4.74532,8.90745 4.77303,13.64503 0.0353,6.03619 -1.04835,8.77814 -5.01984,12.70131 -3.17063,3.13208 -3.41913,3.5704 -3.10869,5.48336 0.43691,2.6924 -0.63982,5.88583 -2.66855,7.91458 -1.3402,1.3402 -1.99262,1.56112 -3.86761,1.30962 -1.88722,-0.25312 -2.55681,-0.0211 -4.10117,1.42163 l -1.8457,1.72414 1.47524,1.96735 c 2.45051,3.26795 4.05139,6.96004 4.86164,11.21227 0.70676,3.70929 1.24363,4.65926 6.65134,11.76897 7.76997,10.2155 15.00797,21.17715 17.4131,26.37146 5.83516,12.60198 3.33103,33.15444 -5.03273,41.30576 l -2.37824,2.31783 1.55298,2.18078 c 1.06324,1.49306 2.79572,2.74234 5.4938,3.96153 2.62284,1.18518 5.15851,2.99062 7.58176,5.39832 3.08551,3.06572 3.90025,4.34961 5.3408,8.41611 2.97066,8.38589 4.00357,10.43783 6.29743,12.51019 2.12544,1.92022 7.97826,4.02007 8.83025,3.16809 0.47502,-0.47502 1.56647,-29.62947 1.14988,-30.71511 -0.18114,-0.47204 -0.94513,-0.86419 -1.69776,-0.87142 -0.75262,-0.007 -2.52428,-0.53781 -3.93703,-1.17901 -2.54638,-1.15572 -2.58538,-1.15563 -4.49861,0.0109 -5.13818,3.13289 -10.01125,-0.11971 -13.12395,-8.75972 -1.45732,-4.04518 -2.33563,-16.65703 -1.23654,-17.75612 0.94087,-0.94086 8.39598,3.22388 12.63058,7.05597 1.97724,1.7893 4.15816,4.41664 4.84649,5.83853 1.33673,2.76128 1.64162,6.95472 0.64153,8.82339 -0.49298,0.92114 -0.33259,1.32146 0.83628,2.08734 0.79543,0.52119 2.46064,1.11222 3.70046,1.31343 l 2.25423,0.3658 -0.40205,-11.03992 c -0.41966,-11.5235 -1.42355,-26.89324 -1.90359,-29.14436 -0.15359,-0.72028 -0.81324,-1.47908 -1.46588,-1.68622 -0.72783,-0.231 -1.58379,-1.4949 -2.21388,-3.26893 l -1.02725,-2.89232 -1.68729,2.32923 c -1.2923,1.78399 -2.09518,2.32925 -3.42965,2.32925 -2.22715,0 -4.84808,-2.95618 -4.84808,-5.46824 0,-2.40026 1.93188,-6.02814 4.24772,-7.97679 1.04558,-0.8798 1.79746,-1.70322 1.67085,-1.82984 -0.12662,-0.12662 -1.8475,0.15016 -3.82417,0.61508 -5.1085,1.20156 -7.8542,1.1024 -9.29217,-0.33557 -1.36536,-1.36534 -1.42615,-1.85963 -0.59623,-4.84724 0.91957,-3.31027 4.59036,-4.64115 9.25668,-3.35611 l 1.76258,0.48539 -2.49203,-2.70353 c -3.87103,-4.19958 -4.17225,-7.9479 -0.7525,-9.36441 2.3378,-0.96833 4.54692,-0.37112 6.74024,1.82219 0.97278,0.97279 1.88291,1.76872 2.02248,1.76872 0.13959,0 0.25378,-1.22689 0.25378,-2.72643 0,-3.31516 1.95153,-5.67097 4.6978,-5.67097 2.36707,0 3.1868,1.17885 3.65507,5.25636 0.30055,2.61701 0.50371,3.12663 0.84837,2.1283 0.67202,-1.94654 4.41599,-4.98541 6.14215,-4.98541 2.05063,0 4.45048,2.51801 4.45048,4.6696 0,0.94877 -0.67367,3.0529 -1.49702,4.67583 -0.82337,1.62292 -1.49816,2.95757 -1.49954,2.96587 -10e-4,0.008 1.51568,0.008 3.37125,0 2.9826,-0.0134 3.51679,0.17482 4.60719,1.62295 1.03131,1.36966 1.14191,1.9991 0.67498,3.84134 -0.79793,3.14812 -3.08683,4.64662 -7.15734,4.68576 -1.81327,0.0174 -3.29713,0.17594 -3.29745,0.35224 -3.2e-4,0.1763 0.82538,0.80843 1.83488,1.40476 1.0095,0.59635 2.28279,2.02231 2.82953,3.16883 0.89296,1.87255 0.90234,2.24827 0.0922,3.69365 -1.87608,3.34697 -5.63226,3.75897 -8.66295,0.95022 -0.85489,-0.79227 -1.65841,-1.4405 -1.78562,-1.4405 -0.12721,0 -0.0818,0.92118 0.1009,2.04709 0.20889,1.28726 -0.0264,2.76583 -0.6338,3.98346 -0.80893,1.62156 -0.87612,2.7759 -0.41328,7.10008 0.30399,2.84003 0.73668,8.20026 0.96154,11.91162 0.44958,7.42019 0.49507,7.48297 4.15618,5.7371 2.31485,-1.10388 2.39603,-1.33259 1.53658,-4.32929 -1.2691,-4.42512 1.41077,-9.71747 7.15384,-14.12776 4.76841,-3.6618 10.05443,-6.5176 11.22939,-6.06674 0.91637,0.35165 0.96062,-1.92907 0.58951,-30.3792 -0.22069,-16.91767 -0.5759,-34.71832 -0.78935,-39.55701 l -0.38811,-8.79763 -2.15808,-0.38833 c -1.18694,-0.21359 -3.30168,-0.93308 -4.69944,-1.59889 l -2.54136,-1.21054 -1.58828,1.24933 c -1.01354,0.79726 -2.46439,1.24934 -4.00946,1.24934 -2.07885,0 -2.77919,-0.37365 -4.95329,-2.64265 -1.48108,-1.54575 -3.06277,-4.06097 -3.81056,-6.05964 -2.57486,-6.88193 -3.10896,-18.889175 -0.84022,-18.889175 1.45196,0 7.49156,3.418025 10.64694,6.025485 6.0969,5.03817 8.26814,9.45953 7.00325,14.26083 -0.37554,1.42548 -0.54058,2.82191 -0.36675,3.10317 0.42668,0.69038 6.15391,2.56366 6.73672,2.20347 0.50862,-0.31433 0.007,-13.76105 -1.02209,-27.392403 -0.93682,-12.410599 -1.23702,-14.395548 -2.17717,-14.395548 -1.04862,0 -2.69034,-2.525333 -3.17165,-4.878751 l -0.3783,-1.849635 -1.49338,2.314522 c -1.21921,1.889581 -1.89351,2.347941 -3.67279,2.496576 -4.64171,0.387749 -6.38159,-5.800624 -2.95918,-10.525123 0.96638,-1.334059 2.36715,-2.852891 3.11283,-3.37518 1.99129,-1.394748 1.24254,-1.586534 -2.45221,-0.628125 -4.39608,1.140324 -8.68011,1.100394 -9.87254,-0.09202 -1.09963,-1.099646 -1.22595,-3.777325 -0.27649,-5.861177 1.00657,-2.209153 2.98996,-2.986843 6.80972,-2.67008 l 3.36471,0.279028 -1.79096,-1.850608 c -4.11315,-4.250148 -4.35704,-8.80722 -0.52588,-9.826809 2.54097,-0.676231 4.86348,0.119681 6.69265,2.293522 l 1.43176,1.701543 0.29863,-2.649339 c 0.55576,-4.930715 3.64039,-7.455832 6.67719,-5.466037 1.51905,0.995314 2.50364,4.396279 1.8599,6.424493 -0.626,1.972381 0.56391,1.305879 1.81451,-1.016357 1.99621,-3.706714 6.30143,-4.587765 8.64128,-1.768415 1.1407,1.374463 0.53662,6.387569 -1.0358,8.595828 l -1.27589,1.791844 3.62598,-0.06572 c 2.94401,-0.05332 3.78649,0.153271 4.47947,1.098602 1.01085,1.378993 1.11766,4.719005 0.2054,6.423575 -0.84986,1.587968 -4.0991,2.908861 -7.15548,2.908861 h -2.44378 l 2.42451,2.306383 c 3.0493,2.900732 3.36782,5.861764 0.84408,7.846928 -2.26532,1.781912 -4.59325,1.57903 -7.09601,-0.618415 l -2.12023,-1.861576 v 2.733071 c 0,1.503196 -0.28628,3.361424 -0.63619,4.129402 -0.45898,1.007342 -0.37453,4.63644 0.30314,13.027444 0.51666,6.397121 1.05356,11.745326 1.19314,11.884896 0.43298,0.43299 3.57902,-0.4724 4.78908,-1.37822 0.98165,-0.73485 1.04769,-1.087 0.44985,-2.39911 -2.5909,-5.686422 2.1067,-13.047392 12.19533,-19.109615 5.09606,-3.062198 6.04007,-2.932998 6.49269,0.888631 0.71763,6.059289 -1.16278,15.096199 -4.114,19.771264 -2.99871,4.75027 -7.34267,6.15985 -10.7422,3.48579 l -1.62741,-1.28017 -2.80211,1.23309 c -1.54117,0.67819 -3.30514,1.39251 -3.91999,1.58738 -0.96797,0.30681 -1.06963,0.77557 -0.75816,3.49598 1.05859,9.24588 1.7657,46.5167 1.81761,95.8038 0.055,52.23628 -0.002,55.48539 -0.98407,55.67539 -0.97333,0.18839 -1.05294,-1.32356 -1.19964,-22.78372 -0.13571,-19.85288 -0.25881,-22.55458 -0.90333,-19.82357 -1.66529,7.05642 -6.09096,12.73536 -9.92137,12.73091 -1.06069,-0.001 -2.84159,-0.55889 -3.95755,-1.23924 l -2.02903,-1.237 -2.88068,1.23924 c -1.58439,0.68157 -3.31655,1.23924 -3.84927,1.23924 -0.86495,0 -0.92796,0.9466 -0.58888,8.84726 0.20883,4.86601 0.11041,15.8651 -0.21873,24.44244 -0.32912,8.57735 -0.53072,15.66337 -0.448,15.74668 0.22988,0.23158 6.35841,-1.96585 8.90239,-3.19202 1.80078,-0.86796 2.38702,-1.58006 2.89975,-3.52231 1.55656,-5.89636 6.87378,-11.1317 11.30581,-11.1317 1.7504,0 1.92424,0.14937 1.6137,1.38663 -0.33956,1.35294 -0.26099,1.38034 3.23396,1.12754 4.39543,-0.31794 4.55184,0.24225 1.39514,4.99661 -2.15993,3.25306 -2.20048,3.42833 -3.29458,14.23635 -2.05733,20.32351 -4.4926,33.06784 -7.42426,38.85321 -1.20838,2.38463 -2.06627,3.1744 -5.08883,4.68479 -7.93063,3.96298 -16.46337,4.06176 -30.59047,0.35419 -11.13806,-2.92312 -16.08579,-3.03973 -25.19221,-0.59371 -3.46392,0.93043 -6.71471,1.90577 -7.22396,2.16742 -0.50924,0.26167 -1.38829,1.9426 -1.95343,3.73543 -1.33573,4.23742 -4.02936,7.90219 -6.8753,9.35408 -1.27979,0.6529 -4.80833,1.46233 -8.07498,1.85236 -9.05755,1.08145 -19.29629,0.0436 -47.73783,-4.83889 -9.6124,-1.65015 -12.77451,-1.30484 -22.03664,2.40644 -7.93221,3.1784 -14.94923,4.1229 -23.3495,3.14289 -4.10042,-0.47836 -6.77262,-0.51347 -8.4095,-0.11046 -2.78142,0.68481 -7.77081,0.68474 -11.83829,-1.6e-4 z"
style="fill:#000000;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path249"
d="m 125.98182,343.07116 c -1.60384,-1.35163 -1.91597,-1.91524 -1.37083,-2.47532 0.55032,-0.56541 1.14508,-0.4567 2.69916,0.49329 4.97858,3.04338 15.44633,4.45477 23.262,3.13648 2.45921,-0.41479 7.14307,-1.82609 10.4086,-3.13623 3.26551,-1.31013 7.79833,-2.63996 10.07292,-2.95517 4.55448,-0.63116 5.41436,-0.53627 24.5293,2.70672 12.36934,2.09855 27.94133,3.8304 28.59184,3.17989 0.19243,-0.19243 -0.45784,-1.02953 -1.44506,-1.86022 -0.98722,-0.83069 -2.43817,-2.93364 -3.22435,-4.67321 -1.3368,-2.958 -1.42505,-3.8234 -1.36237,-13.35973 0.12732,-19.36808 4.01033,-33.13737 11.1795,-39.64289 2.89633,-2.62824 3.0216,-4.10172 0.2999,-3.52814 -3.25616,0.68624 -5.55433,2.01009 -9.53872,5.49474 -2.09393,1.83131 -4.67571,3.70242 -5.73728,4.15802 -4.30961,1.84962 -13.07544,0.47046 -18.97143,-2.98481 -1.4576,-0.8542 -4.87358,-4.05704 -7.59105,-7.11741 -6.53349,-7.35787 -11.24201,-11.34255 -16.75536,-14.17952 -5.65498,-2.90986 -7.59873,-3.53349 -13.20901,-4.23794 -5.55618,-0.69765 -12.61737,0.0461 -18.99388,2.0008 -2.59806,0.79639 -7.01801,2.14741 -9.82215,3.00224 -2.80413,0.85483 -6.25345,2.36352 -7.66517,3.35261 -2.79599,1.95897 -4.33112,2.28831 -4.33112,0.92915 0,-1.08607 3.2054,-3.5686 6.33034,-4.90273 l 2.36697,-1.01051 -2.09935,-0.57073 c -2.0978,-0.57027 -8.69783,-0.28468 -11.24652,0.48668 -1.09106,0.3302 -1.34958,0.17477 -1.34958,-0.81143 0,-0.97981 0.59602,-1.34772 3.02859,-1.86941 4.09823,-0.87891 6.74456,-0.81853 12.57157,0.28683 4.54003,0.86123 5.1348,0.85665 7.41399,-0.0571 7.73436,-3.10084 21.30538,-4.19545 29.13504,-2.34997 2.12526,0.50094 6.30898,2.17375 9.29712,3.71736 4.89551,2.52892 6.35277,3.73523 14.73012,12.19355 8.24511,8.3248 9.69786,9.53505 12.83844,10.69546 8.96442,3.31229 12.13621,2.97946 17.5899,-1.84578 1.90366,-1.6843 4.33801,-3.59121 5.40968,-4.2376 2.53508,-1.52905 1.97094,-2.31954 -1.33224,-1.86678 -3.6909,0.50589 -5.21272,-0.0198 -9.00963,-3.11246 -3.29517,-2.68395 -3.33178,-2.69645 -4.55616,-1.55578 -1.24939,1.164 -5.70808,2.91827 -10.86874,4.27631 -5.3548,1.40914 -8.12482,-0.31501 -13.66468,-8.50532 -5.10846,-7.55253 -7.41109,-9.85483 -11.31835,-11.31672 -1.79538,-0.67173 -9.36406,-2.55968 -16.81927,-4.19544 -22.95625,-5.03684 -30.78822,-8.04039 -36.89826,-14.15042 -6.10284,-6.10284 -10.18391,-16.52428 -11.75159,-30.0088 -0.86505,-7.44099 -0.59707,-20.23566 0.44563,-21.27604 0.40689,-0.40594 0.90541,-0.57246 1.10786,-0.37002 0.20243,0.20244 0.33106,4.26055 0.28582,9.018 -0.22629,23.79585 6.20877,39.78183 18.51451,45.99375 5.80561,2.93065 13.09601,5.08263 28.63371,8.45208 21.44385,4.65024 22.01286,4.94747 28.76577,15.02654 7.41,11.05983 10.90797,12.29182 13.37894,4.7121 0.618,-1.89574 1.42089,-3.27538 1.90613,-3.27538 0.91622,0 0.99067,1.16108 0.30318,4.72839 l -0.44885,2.32914 1.99155,-1.14991 c 3.66752,-2.11761 4.92398,-7.06534 3.19284,-12.57282 -0.27198,-0.86525 -0.10059,-1.38108 0.54068,-1.62716 1.45794,-0.55946 2.36159,1.8165 2.41182,6.34138 0.0247,2.22594 0.20463,4.04787 0.39983,4.04875 0.19521,5.9e-4 0.66757,-1.04193 1.04968,-2.31731 2.91554,-9.73123 -4.20718,-27.56164 -14.49521,-36.28609 -4.92435,-4.17593 -8.77316,-5.93771 -23.79796,-10.89348 -7.75261,-2.55709 -14.48097,-5.00723 -14.95191,-5.44475 -1.66131,-1.54335 1.12085,-1.68685 5.48067,-0.28268 2.29449,0.73899 4.26424,1.25119 4.3772,1.13822 0.60761,-0.6076 -5.44026,-10.93675 -11.00169,-18.78979 -6.57827,-9.2889 -13.73734,-17.2082 -16.50887,-18.26193 -0.87166,-0.3314 -1.58485,-1.01411 -1.58485,-1.51711 0,-1.41271 2.34492,-1.0984 4.59195,0.61549 2.6373,2.01156 2.5585,1.18564 -0.15169,-1.58982 -1.92987,-1.97637 -2.40335,-2.17675 -4.48415,-1.89766 -2.10244,0.282 -2.38562,0.15647 -2.94073,-1.30356 -0.33784,-0.88861 -0.61426,-3.30547 -0.61426,-5.37083 0,-3.23653 -0.20847,-3.95103 -1.5094,-5.17319 -2.41743,-2.27107 -4.5877,-9.94488 -4.93889,-17.46346 -0.3199,-6.84847 0.38662,-12.38621 2.30793,-18.08953 0.76425,-2.26861 0.98587,-3.80994 0.63734,-4.43269 -0.43537,-0.77801 -0.97961,-0.3568 -2.94001,2.27544 -3.29433,4.42336 -3.43724,4.74499 -7.07837,15.932 -3.84222,11.80482 -10.11706,24.87098 -17.08835,35.58324 -6.071627,9.32982 -9.889527,17.15596 -13.460201,27.59146 -7.019075,20.51375 -10.083368,38.96397 -10.061563,60.58126 0.0094,9.39871 0.310301,14.27498 1.276612,20.69361 3.278572,21.77777 10.601136,38.95223 21.004942,49.26533 6.2697,6.21501 13.26821,9.06313 22.53018,9.1689 l 4.17605,0.0478 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path247"
d="m 237.52831,342.14364 c 4.10977,-2.12525 6.74266,-7.6289 8.16575,-17.06934 0.47633,-3.15983 0.86765,-7.93093 0.8696,-10.60243 l 0.003,-4.85728 -5.24839,1.09436 c -2.8866,0.6019 -6.79726,1.82361 -8.69032,2.71492 -3.50933,1.65228 -4.80373,1.5571 -3.69328,-0.27158 0.89817,-1.47914 4.21484,-2.97753 8.97373,-4.05415 7.99462,-1.80866 8.78947,-2.13984 11.72452,-4.88526 3.42637,-3.20496 5.91501,-8.08251 6.32418,-12.39491 0.41042,-4.3255 -1.50394,-7.96629 -5.19175,-9.87389 -2.3027,-1.19113 -3.31588,-1.35278 -6.89786,-1.10056 -15.48804,1.09062 -23.20061,15.29454 -23.33996,42.98424 -0.0486,9.65893 0.0503,10.68825 1.23841,12.89601 1.49971,2.78669 3.48495,4.77803 5.60695,5.62419 2.2799,0.90912 8.23338,0.78933 10.15489,-0.20432 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path245"
d="m 304.44928,329.01054 c 5.02472,-1.34221 7.95892,-3.15949 9.27885,-5.74676 2.60334,-5.10295 5.12701,-17.79051 6.90996,-34.73919 1.19882,-11.39581 1.30825,-10.57212 -1.5169,-11.41855 -2.27001,-0.68011 -2.73345,-0.5874 -7.34773,1.46979 -12.72139,5.67158 -11.69483,5.36427 -17.91921,5.36427 -5.48752,0 -5.9347,-0.0971 -8.38853,-1.82173 -3.51102,-2.46764 -4.73171,-4.45896 -7.70866,-12.57516 -2.88103,-7.85466 -5.12001,-10.71698 -10.74188,-13.73248 l -3.23934,-1.73753 0.44422,1.43762 c 0.24433,0.79069 0.57541,3.59695 0.73576,6.23615 0.30192,4.96927 0.17424,5.5731 -3.03688,14.36261 -0.83704,2.29118 -1.4621,4.20148 -1.38901,4.24513 0.0731,0.0437 0.99061,0.42054 2.03895,0.83751 4.50809,1.79314 5.02715,4.85191 0.94166,5.54936 -4.10523,0.70081 -4.52756,1.16408 -5.31348,5.82837 -0.91356,5.42191 -2.73528,9.15266 -6.24965,12.79873 l -2.79831,2.90322 -0.41191,8.22779 c -0.22655,4.52529 -0.56474,9.0815 -0.75154,10.12491 l -0.33965,1.89714 4.81286,-1.39924 c 11.44128,-3.3263 15.3791,-3.25201 30.12509,0.56836 8.98969,2.32904 16.41013,2.7769 21.86533,1.31968 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path243"
d="M 240.73438 272.98242 C 240.42767 273.01152 239.83363 273.20366 239.20898 273.48828 C 237.41414 274.30606 235.37776 276.90566 234.83398 279.07227 L 234.44531 280.62109 L 236.72266 279.83398 C 237.97499 279.40042 239.18167 278.66166 239.4043 278.19336 C 240.14188 276.64193 241.15102 273.22523 240.93555 273.00977 C 240.9064 272.98062 240.83661 272.97272 240.73438 272.98242 z M 252.43555 274.04297 C 251.01706 274.04297 245.9668 276.92342 245.9668 277.73242 C 245.9668 278.23645 247.50119 278.67697 249.56641 278.76758 C 250.6521 278.81518 251.392 278.29731 252.25 276.88867 C 253.98744 274.03618 253.98792 274.04297 252.43555 274.04297 z M 259.43555 282.7832 C 258.04409 282.72468 256.76367 283.0811 256.76367 283.66016 C 256.76367 284.14345 257.41789 286.04813 257.57812 286.03125 C 257.62513 286.02625 258.74291 285.64477 260.0625 285.18555 C 262.87627 284.20637 263.08761 283.59465 260.82031 282.98828 C 260.37504 282.86919 259.89937 282.80271 259.43555 282.7832 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path241"
d="M 131.03906 130.89648 C 130.50697 130.9042 130.18135 132.31951 129.66016 135.14648 C 127.73022 145.61457 130.51257 161.63522 134.43945 162.66211 C 135.47496 162.93291 135.60156 163.52495 135.60156 168.11914 C 135.60156 171.15565 135.84783 173.27344 136.20117 173.27344 C 136.53108 173.27344 136.80078 173.00373 136.80078 172.67383 C 136.80078 169.92141 145.1338 177.11279 148.25977 182.5625 C 149.20892 184.21721 149.98908 185.92518 149.99219 186.35938 C 149.99519 186.79354 152.83737 191.11284 156.30859 195.95703 C 159.77979 200.80122 164.16505 207.8399 166.05469 211.59961 L 169.49023 218.43555 L 178.51758 221.49805 C 183.48245 223.18165 189.10401 225.50356 191.00977 226.6582 C 197.59777 230.64965 204.51234 238.6287 208.01758 246.28516 L 209.58203 249.70508 L 210.89258 245.82812 C 211.61268 243.69642 212.94403 240.48983 213.85156 238.70117 C 214.75908 236.9125 216.75634 233.76899 218.28906 231.71484 C 219.82178 229.6607 222.69444 225.36376 224.67383 222.16797 C 226.74004 218.83199 229.74253 214.98893 231.72266 213.14258 C 235.12262 209.9723 236.02032 207.91721 234.29688 207.25586 C 233.70415 207.02842 232.75371 208.02272 231.34375 210.34375 C 228.52269 214.98773 226.71517 216.60143 224.60547 216.35742 C 222.42182 216.10484 220.54457 213.17376 221.97461 212.25 C 222.63319 211.82456 223.09488 211.9897 223.69727 212.86523 C 224.14988 213.52306 224.86147 214.0625 225.27734 214.0625 C 225.95857 214.0625 228.48954 210.4667 232.11719 204.3457 C 233.53293 201.95688 234.93528 201.83519 235.33203 204.06641 C 235.68302 206.04028 238.00706 200.68282 239.21484 195.11719 C 240.05132 191.26257 240.09343 189.84608 239.49414 185.73438 C 239.10589 183.07056 238.71651 180.82796 238.62891 180.75195 C 238.54131 180.67585 237.60826 180.7465 236.55469 180.90625 C 235.0569 181.13451 234.55964 181.55929 234.27539 182.85352 C 233.77944 185.11156 231.6351 187.37338 230.79102 186.5293 C 230.3366 186.07488 230.5315 185.12471 231.46094 183.26367 C 232.18172 181.82046 232.7762 180.12952 232.78125 179.50586 C 232.79675 177.59345 233.69522 176.70479 235.14844 177.16602 C 236.38229 177.55764 236.46242 177.42444 236.27344 175.28125 C 236.01283 172.32589 237.60149 172.06419 238.44336 174.92383 C 239.05491 177.00111 240.20462 177.4876 240.80469 175.92383 C 241.51992 174.05996 241.1503 168.59386 240.00586 164.11914 C 238.29923 157.4463 235.52836 153.48467 231.98047 152.64062 C 230.6245 152.31803 229.72159 152.6558 227.40625 154.35547 C 220.35935 159.52838 212.99841 161.50487 206.06641 160.08594 C 202.27984 159.31085 194.95151 156.19187 192.03516 154.11523 C 189.99186 152.66028 187.93123 152.55302 185.06641 153.75 C 183.7405 154.30401 182.98633 155.0266 182.98633 155.74414 C 182.98633 156.36327 182.305 157.51114 181.4707 158.29492 C 180.20098 159.48779 179.24662 159.74307 175.62109 159.85547 C 173.23888 159.92927 170.44656 160.16943 169.41406 160.39062 C 166.98236 160.91155 161.94621 159.84932 157.85156 157.95117 C 153.93514 156.13563 147.79538 150.06215 144.07812 144.32617 C 142.63732 142.10288 141.33733 140.28516 141.18945 140.28516 C 141.04155 140.28516 140.39983 140.56475 139.76172 140.90625 C 137.78718 141.963 136.24776 140.4969 133.65234 135.08789 C 132.30883 132.28796 131.57115 130.88877 131.03906 130.89648 z M 245.19727 137.87305 C 244.46316 137.82796 243.33911 137.9865 241.62695 138.26953 C 239.6152 138.60206 239.23422 138.97304 237.88867 141.91211 C 237.06443 143.71249 235.57504 146.21445 234.58008 147.4707 C 233.5851 148.72696 232.77148 149.92439 232.77148 150.13281 C 232.77148 151.03717 236.44933 148.49801 237.90625 146.58789 L 239.50391 144.49414 L 241.25 145.52734 C 242.57245 146.30852 243.24946 146.40157 244.0332 145.91211 C 245.55515 144.96164 246.54856 142.68808 246.55859 140.13477 C 246.56422 138.58565 246.42078 137.94819 245.19727 137.87305 z M 257.32422 248.20508 L 254.63867 250.17773 C 253.16257 251.2624 248.52307 254.58689 244.32812 257.56641 C 236.88039 262.85627 236.67629 263.06083 235.67188 266.26367 C 234.70688 269.34082 234.23393 273.44336 234.84375 273.44336 C 234.99405 273.44336 236.06451 272.79961 237.22266 272.01367 C 239.65392 270.36377 243.4427 269.47982 244.32031 270.35742 C 244.71626 270.75337 244.48828 271.84093 243.64258 273.58789 C 241.75069 277.496 242.08139 278.04149 244.83398 275.55469 C 246.19001 274.32961 248.20487 272.94718 249.3125 272.48438 C 251.6573 271.50466 257.71572 271.35692 258.27734 272.26562 C 258.48891 272.60796 257.71707 273.93492 256.5625 275.21289 C 254.03357 278.01214 252.98326 279.86244 253.47266 280.6543 C 254.03906 281.57077 255.26318 281.3498 256.93945 280.03125 C 260.04178 277.59095 260.40586 272.83376 257.87109 267.86523 C 256.68865 265.54741 256.73214 263.8457 257.97266 263.8457 C 258.32809 263.8457 259.26888 265.248 260.0625 266.96094 L 261.50391 270.07422 L 262.13281 268.42188 C 263.04174 266.0312 262.90622 259.74806 261.86914 256.25586 C 261.37754 254.60048 260.15251 252.11265 259.14844 250.72656 L 257.32422 248.20508 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path235"
d="m 230.00622,276.80858 c 1.928,-0.80557 2.00587,-0.97115 2.32693,-4.94847 0.18269,-2.26326 0.76906,-5.52423 1.30302,-7.24662 0.86388,-2.78651 1.41502,-3.44292 5.00154,-5.95673 21.99229,-15.41448 24.91766,-18.35587 27.38315,-27.53301 1.39521,-5.19326 1.83891,-14.14513 0.95927,-19.3532 -0.89067,-5.27326 -3.33105,-10.3453 -9.2044,-19.13021 -5.37254,-8.03582 -13.17218,-18.69439 -13.71009,-18.73548 -0.22121,-0.0169 -0.58531,0.84652 -0.8091,1.91867 -0.2238,1.07217 -0.92019,2.35554 -1.54753,2.85196 -0.94045,0.74416 -1.04429,1.2384 -0.59172,2.81643 1.87125,6.52463 1.01654,15.35803 -2.1805,22.53536 -0.848,1.90376 -1.41611,3.58711 -1.26247,3.74075 0.15365,0.15364 2.95963,-1.20155 6.23553,-3.01153 3.2759,-1.81 6.42855,-3.29089 7.00592,-3.29089 2.25202,0 0.87587,1.86958 -2.69909,3.66689 -4.25115,2.13724 -11.28896,6.57052 -13.89134,8.75047 -2.52341,2.11378 -5.65309,6.23899 -9.9195,13.07474 -2.05899,3.29899 -4.37893,6.67302 -5.1554,7.49786 -1.96082,2.08295 -5.98165,10.87814 -7.208,15.76682 -0.8492,3.38522 -0.90693,4.63928 -0.3429,7.44777 0.8371,4.16827 0.86716,8.22448 0.0812,10.96488 -0.62463,2.17795 -0.31709,4.20849 0.63742,4.20849 0.30767,0 0.5594,-0.90443 0.5594,-2.00984 0,-2.7569 1.13743,-5.78775 2.17207,-5.78775 0.70112,0 0.78421,0.84965 0.46152,4.71892 -0.35907,4.30569 -0.28152,4.83092 0.8857,5.99813 1.64512,1.64512 5.23764,1.82588 4.56256,0.22956 -1.73433,-4.10109 -1.76535,-9.14716 -0.0563,-9.14716 0.54881,0 0.91009,1.15932 1.13533,3.64319 0.33988,3.74818 1.40967,5.63466 3.73506,6.58642 1.67483,0.6855 1.88713,0.67181 4.13262,-0.26642 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path233"
d="M 318.68555 266.72266 C 318.32288 266.72087 317.72766 266.9343 316.91992 267.42578 C 314.94835 268.62544 312.37555 272.08345 311.66406 274.49219 C 311.00232 276.73242 312.41125 276.03854 314.09766 273.29297 C 314.95887 271.89091 316.4835 270.0467 317.48633 269.19336 C 319.15468 267.77371 319.48342 266.72658 318.68555 266.72266 z M 325.10742 268.50195 L 323.17773 268.88867 C 321.23408 269.2774 317.31731 272.02657 316.89258 273.30078 C 316.69621 273.88984 319.37252 275.0443 321.24414 275.17773 C 321.57405 275.20123 322.57722 273.7088 323.47461 271.86133 L 325.10742 268.50195 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path
id="path227"
d="M 150.89844 179.28711 C 150.41622 179.35324 149.99845 179.81392 150.00195 180.62109 C 150.00954 182.36606 152.49654 187.69401 154.57422 190.41797 C 155.84204 192.08018 156.49575 192.47182 157.55859 192.20508 C 158.30734 192.01714 159.10356 192.16202 159.32812 192.52539 C 159.55269 192.88875 160.9727 193.96834 162.48242 194.92578 C 165.3858 196.76704 167.99219 197.2094 167.99219 195.85938 C 167.99219 195.41463 166.89391 194.554 165.55273 193.94922 C 164.21156 193.34443 161.77767 191.3867 160.14258 189.59766 C 157.67385 186.89647 157.01925 186.46922 156.2832 187.08008 C 155.53697 187.6994 155.17074 187.3066 153.9707 184.59375 C 153.18674 182.82154 152.38501 180.89959 152.18945 180.32227 C 151.92802 179.55048 151.38066 179.22098 150.89844 179.28711 z M 195.42383 188.99414 C 195.12104 189.02087 194.85192 189.24045 194.75977 189.57031 C 193.20603 195.13206 192.42751 197.26758 191.95312 197.26758 C 191.64008 197.26758 191.38477 196.89586 191.38477 196.44141 C 191.38477 195.98696 190.9952 195.29124 190.51953 194.89648 C 189.80655 194.30475 189.42264 194.63516 188.33594 196.77344 C 187.61098 198.19997 186.09443 200.24078 184.96484 201.31055 C 183.83523 202.38033 183.07783 203.52905 183.2832 203.86133 C 183.48857 204.19362 184.01538 204.46484 184.45312 204.46484 C 185.34433 204.46484 189.58398 200.31394 189.58398 199.44141 C 189.58398 199.13323 190.12536 199.36969 190.78516 199.9668 C 191.93511 201.00748 192.03283 201.00832 193.16211 199.98633 C 195.53252 197.84115 197.45595 189.64501 195.73242 189.03516 C 195.62937 188.99869 195.52476 188.98523 195.42383 188.99414 z M 216.7793 206.50195 C 216.2635 206.43877 215.50011 207.55712 214.90039 209.71289 C 214.16753 212.34733 213.79704 212.86133 212.64062 212.86133 C 211.79976 212.86133 211.1151 213.31812 210.89062 214.02539 C 210.42754 215.48445 206.63461 218.85938 205.45898 218.85938 C 204.97561 218.85938 204.58008 219.40075 204.58008 220.06055 C 204.58008 222.06687 207.47877 221.36839 210.46875 218.64258 C 211.23317 217.9457 212.312 217.37314 212.86719 217.36914 C 214.22743 217.35892 217.16364 211.77093 217.33789 208.86133 C 217.43049 207.31516 217.18047 206.55109 216.7793 206.50195 z "
style="fill:#000000;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path221"
d="M 275.03906 226.89258 C 274.97305 226.88281 274.9255 226.88896 274.90039 226.91406 C 274.57652 227.23794 277.61558 233.10427 279.73828 236.25391 C 282.34953 240.12848 285.75603 243.95334 286.45508 243.79492 C 286.78497 243.72022 287.13775 242.54732 287.23828 241.18945 C 287.45392 238.27697 286.47931 236.18253 283.47656 233.0957 C 281.36753 230.92762 276.02918 227.03914 275.03906 226.89258 z M 272.84961 229.9668 C 272.68966 230.12674 272.77571 231.84498 273.04102 233.78516 C 274.40876 243.78617 279.83779 250.50873 284.05664 247.42383 C 285.12579 246.64204 285.00689 246.39854 281.87305 242.93555 C 280.05023 240.92127 277.34011 237.11367 275.84961 234.47461 C 274.35911 231.83555 273.00954 229.80685 272.84961 229.9668 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path217"
d="M 317.51562 208.7793 C 316.32207 209.01901 309.71356 213.99237 308.02734 215.99219 C 305.63992 218.82359 304.63697 221.55538 305.09375 223.99023 C 305.3071 225.1275 305.66996 226.05859 305.89844 226.05859 C 306.12691 226.05859 307.135 225.18156 308.13867 224.10938 C 309.14234 223.03721 310.6708 221.20051 311.53516 220.0293 C 313.63106 217.18935 318.03036 209.14754 317.67969 208.79688 C 317.65132 208.7685 317.5952 208.76332 317.51562 208.7793 z M 319.31641 212.17383 C 319.01691 212.21701 318.42766 213.20217 317.125 215.56055 C 314.68708 219.97424 312.3633 223.23654 309.29297 226.55078 C 307.50071 228.48541 307.48212 228.56508 308.61328 229.39844 C 310.37899 230.69928 312.20409 230.4342 314.05078 228.60742 C 317.12025 225.57107 320.11612 217.20841 319.63477 213.02148 C 319.57051 212.4626 319.49611 212.14792 319.31641 212.17383 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path213"
d="M 292.37891 167.94727 C 290.98718 167.92878 290.11092 169.84512 290.18359 172.94922 C 290.22589 174.75592 290.43949 176.79916 290.6582 177.48828 C 291.22896 179.28659 292.96957 178.70735 293.42773 176.56641 C 294.22324 172.84914 294.00457 168.45746 293.00586 168.07422 C 292.78729 167.99035 292.57772 167.94991 292.37891 167.94727 z M 302.96875 170.45117 C 302.78481 170.46237 302.59752 170.49655 302.4082 170.55664 C 300.04632 171.30626 296.33037 179.3022 297.62109 180.85742 C 298.48594 181.8995 298.78492 181.88098 300.48047 180.69336 C 302.32603 179.40068 305.34961 174.57956 305.34961 172.92969 C 305.34961 171.43921 304.25632 170.37276 302.96875 170.45117 z M 280.97656 172.30859 C 279.86288 172.23547 278.95701 172.75718 278.96094 173.76367 C 278.96694 175.28779 281.06754 178.16775 283.49609 179.97852 C 285.59097 181.5405 287.37268 181.66939 287.33789 180.25781 C 287.30259 178.82553 284.54331 174.21885 283.05469 173.10742 C 282.38847 172.61002 281.64477 172.35247 280.97656 172.30859 z M 308.61133 182.2832 C 307.28005 182.29938 305.46514 182.72768 303.27344 183.56641 C 300.50589 184.62549 299.92554 185.08731 300.07227 186.11133 C 300.342 187.99372 305.3086 188.84809 308.83398 187.61914 C 310.84083 186.91955 311.6562 185.39052 311.04688 183.4707 C 310.79012 182.66175 309.9426 182.26702 308.61133 182.2832 z M 276.59766 183.64258 C 276.22733 183.63286 275.90322 183.65627 275.64648 183.7207 C 274.06132 184.11855 272.65981 186.62586 273.21484 188.07227 C 273.58486 189.03652 276.86589 189.03174 281.05664 188.05859 C 283.00531 187.60607 284.05469 187.04864 284.05469 186.4668 C 284.05469 185.4289 279.18996 183.71062 276.59766 183.64258 z M 298.4707 191.30469 C 297.23368 191.21474 297.29584 192.61608 298.74219 195.45117 C 299.91824 197.75642 301.97984 199.66602 303.29102 199.66602 C 303.66133 199.66602 304.43163 199.14798 305.00391 198.51562 C 306.38453 196.99005 305.5795 195.49813 302.08203 193.0918 C 300.42277 191.9502 299.21292 191.35866 298.4707 191.30469 z M 287.2793 191.89844 C 286.61258 191.94848 285.71271 192.58459 284.54492 193.81836 C 281.2767 197.27126 280.51784 199.94166 282.29883 201.72266 C 283.5011 202.92493 283.9527 202.90743 285.11133 201.61523 C 286.29375 200.2965 288.70922 193.20266 288.23633 192.4375 C 287.99624 192.04902 287.67933 191.86841 287.2793 191.89844 z M 292.42969 193.66797 C 291.32667 193.66797 291.19217 200.61581 292.25 202.9375 C 293.03064 204.65081 293.39205 204.78374 294.43164 203.74414 C 295.40317 202.77262 295.33721 200.50876 294.22852 196.77539 C 293.66278 194.87036 292.96695 193.66797 292.42969 193.66797 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path207"
d="m 295.17326,190.35813 c 3.14955,-1.62869 3.07261,-5.8775 -0.14986,-8.27655 -1.44929,-1.07899 -1.89201,-1.13325 -4.02704,-0.49357 -4.36993,1.30927 -5.50147,4.91427 -2.48829,7.92744 1.97351,1.97352 3.98629,2.22798 6.66519,0.84268 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path195"
d="M 103.9668 140.95117 C 102.89337 140.97809 97.717536 144.76244 95.300781 147.35742 C 92.044055 150.85431 90.950259 153.37494 91.474609 156.16992 C 91.69225 157.33007 92.101535 158.2793 92.384766 158.2793 C 92.667997 158.2793 94.2079 156.66996 95.806641 154.70312 C 98.809497 151.00886 104.59824 141.47131 104.125 140.99805 C 104.09194 140.96499 104.03836 140.94938 103.9668 140.95117 z M 106.04102 143.88281 C 105.86243 143.88281 104.49198 146.0062 102.99609 148.59961 C 101.50021 151.19302 98.913118 154.80687 97.246094 156.63086 C 93.939105 160.24924 93.685708 160.911 95.263672 161.83008 C 97.153199 162.93063 98.565794 162.51347 100.75586 160.20703 C 102.07174 158.82123 103.4318 156.42443 104.24609 154.05859 C 105.55613 150.25231 106.67982 143.88281 106.04102 143.88281 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path191"
d="M 187.96094 42.929688 L 185.83203 43.275391 C 183.01177 43.733056 177.50821 46.465316 174.72656 48.789062 C 173.49683 49.81637 170.99909 51.113178 169.17578 51.671875 C 165.27958 52.865741 159.51989 56.199811 156.69141 58.898438 C 154.08826 61.382078 147.81355 69.679488 147.28906 71.332031 C 146.94214 72.425079 146.57699 72.560267 144.83984 72.234375 C 142.27827 71.753821 142.09697 72.970618 144.29883 75.857422 C 145.12359 76.93872 145.79883 77.94599 145.79883 78.095703 C 145.79883 78.245424 143.81714 80.356147 141.39648 82.785156 C 136.5943 87.603921 133.36439 93.268822 131.71094 99.773438 C 130.52583 104.4357 130.53918 114.77084 131.73828 121.0918 C 132.84989 126.9518 135.74823 135.18486 137.43945 137.28516 L 138.64844 138.78516 L 139.59766 137.43555 C 140.11974 136.69328 140.85052 136.09409 141.22266 136.10352 C 141.5948 136.11252 143.11506 138.17158 144.59961 140.67773 C 147.85526 146.17384 153.96396 152.94218 157.58203 155.0625 C 162.05449 157.68355 169.19569 159.12731 170.13867 157.60156 C 170.41331 157.15716 171.71825 157.04674 173.94336 157.2793 C 178.64115 157.77032 179.74791 157.35308 180.81445 154.6875 C 181.57093 152.79689 182.20013 152.25351 184.56055 151.44922 C 188.78746 150.00898 190.1261 150.22184 195.30273 153.17188 C 201.94688 156.9582 205.20277 157.96027 210.91016 157.9707 C 215.31243 157.9787 216.1524 157.77425 220.40625 155.67188 C 226.25948 152.77904 232.46807 147.06275 235.08008 142.16211 C 236.11938 140.21219 236.9707 138.48847 236.9707 138.33203 C 236.9707 138.17562 235.75174 137.58271 234.26172 137.01367 L 231.55273 135.97852 L 229.43945 137.83203 C 223.94315 142.65784 216.58553 144.73154 206.37891 144.32812 C 194.49645 143.85851 186.77393 140.21137 183.30664 133.43164 C 180.9252 128.77509 180.76792 122.31522 182.93359 118.0918 C 185.18588 113.69948 188.99468 110.29297 191.6543 110.29297 C 193.17611 110.29297 192.70928 111.99633 190.93359 112.92383 C 188.82995 114.02262 186.42999 116.60853 185.02148 119.29102 C 183.29599 122.57719 183.47533 129.05365 185.38672 132.45898 C 188.67624 138.31965 195.4951 141.43586 206.0957 141.92188 C 213.73044 142.27193 217.79176 141.59746 222.91406 139.13086 C 227.42997 136.95625 230.7441 133.68968 232.69531 129.48828 C 233.93775 126.81301 234.27201 125.03947 234.46484 120.10547 L 234.70312 114.01953 L 231.60742 113.35742 C 229.90557 112.99244 228.26808 112.69336 227.9668 112.69336 C 227.66552 112.69336 225.95318 112.14474 224.16211 111.47461 C 220.55896 110.1265 219.1906 108.13657 219.90625 105.28516 C 220.68696 102.1746 223.11159 100.91149 229.88281 100.08789 C 237.93359 99.108646 237.48602 99.181937 237.86328 98.804688 C 238.04346 98.624508 235.55422 97.456698 232.33203 96.210938 C 229.10985 94.965176 225.32631 93.417133 223.92383 92.769531 C 220.95669 91.399423 217.77539 87.82778 217.77539 85.865234 C 217.77539 84.064393 219.44549 84.080885 220.13281 85.888672 C 220.67622 87.317922 224.60374 91.099609 225.54492 91.099609 C 225.83637 91.099609 226.56953 91.281061 227.17383 91.501953 C 228.18884 91.872962 228.18226 91.799511 227.08984 90.556641 C 226.23381 89.582692 225.84605 88.106073 225.68359 85.207031 C 225.49264 81.799527 225.65328 80.956252 226.75977 79.552734 C 227.64414 78.431045 228.61719 77.904297 229.80078 77.904297 C 234.64421 77.904297 234.97916 89.826398 230.1875 91.669922 C 228.69393 92.244556 228.06986 91.864418 235.12305 94.667969 C 236.91092 95.378617 240.13697 96.881009 242.29297 98.005859 C 244.44897 99.130709 246.31896 99.944723 246.44922 99.814453 C 246.57951 99.684173 246.35972 98.546334 245.96094 97.287109 C 245.13329 94.673657 242.5966 91.245289 239.26172 88.232422 C 237.49324 86.63472 236.9707 85.712867 236.9707 84.195312 C 236.9707 80.896488 234.69587 74.629084 232.07422 70.703125 C 227.97479 64.564189 219.79917 59.042449 208.76367 54.958984 C 203.80817 53.125296 201.36604 52.445246 195.13281 51.166016 C 193.535 50.838103 193.33453 49.318427 194.83398 48.904297 C 195.4113 48.744849 197.17074 48.438461 198.74414 48.224609 C 200.53527 47.981168 201.45738 47.597964 201.21094 47.199219 C 200.59387 46.200774 193.78057 46.990856 189.37109 48.572266 C 187.21514 49.345482 185.25781 49.785173 185.02148 49.548828 C 184.78513 49.312489 185.35091 47.725592 186.27734 46.023438 L 187.96094 42.929688 z M 247.8457 105.79492 L 245.04102 108.62109 C 243.49776 110.1749 241.08424 111.88474 239.67773 112.42188 L 237.11914 113.39844 L 236.84375 119.79297 C 236.62407 124.88432 236.24612 126.97779 234.99023 130.05859 C 234.12261 132.18694 233.51757 134.0332 233.64648 134.16211 C 233.77537 134.29101 234.91411 134.78038 236.17578 135.25 C 239.17641 136.36689 244.05632 135.9378 247.54688 134.24805 C 252.84123 131.6851 255.77866 124.91678 254.45508 118.32617 C 253.74871 114.80894 251.61799 110.33832 249.33984 107.59375 L 247.8457 105.79492 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path
id="path189"
d="m 184.5506,90.570871 c -2.30364,-2.545493 -2.54528,-7.164497 -0.57637,-11.017559 1.04976,-2.054352 3.68663,-2.244409 5.36766,-0.386887 0.90369,0.998559 1.14265,2.177032 1.14265,5.635262 0,3.458232 -0.23896,4.636705 -1.14265,5.635264 -1.41687,1.565636 -3.44432,1.622306 -4.79129,0.13392 z"
style="fill:#000000;stroke-width:0.59981447" />
<path
id="path187"
d="M 188.41797 80.302734 C 186.98222 80.302734 185.87141 81.705039 186.33984 82.925781 C 186.75059 83.996185 189.29213 84.262085 189.88867 83.296875 C 190.52566 82.266202 189.561 80.302734 188.41797 80.302734 z M 230.53906 81 C 229.99383 81.062276 229.56882 81.336086 229.40625 81.759766 C 228.80902 83.316087 229.64532 84.603813 231.11914 84.394531 C 232.11047 84.253762 232.4707 83.802423 232.4707 82.703125 C 232.4707 81.603827 232.11047 81.15249 231.11914 81.011719 C 230.91636 80.982925 230.72081 80.979241 230.53906 81 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path183"
d="M 61.580078 123.05859 C 61.509875 123.04692 61.460323 123.05335 61.435547 123.07812 C 60.664746 123.84892 66.642503 133.63275 70.324219 137.62695 C 73.065959 140.60139 73.796292 140.40442 73.808594 136.68555 C 73.815994 134.54795 72.326128 131.52073 70.009766 128.9707 C 68.492794 127.30069 62.633121 123.23377 61.580078 123.05859 z M 59.332031 125.91406 C 58.777071 125.87736 59.364974 130.38554 60.423828 134.28711 C 61.597213 138.6108 63.862914 142.4492 65.892578 143.55078 C 67.982892 144.68527 68.468402 144.68347 70.099609 143.54102 L 71.443359 142.59961 L 68.521484 139.32227 C 66.91462 137.51939 64.277726 133.77073 62.662109 130.99219 C 61.046502 128.21364 59.54806 125.92833 59.332031 125.91406 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path177"
d="M 299.74023 101.99805 C 299.67846 102.00053 299.63076 102.01573 299.59961 102.04688 C 298.43244 103.21406 308.85361 118.69141 310.80664 118.69141 C 311.09186 118.69141 311.50034 117.99134 311.71484 117.13672 C 312.37155 114.52017 310.8679 110.95323 307.84961 107.96875 C 304.88699 105.03931 300.66682 101.96087 299.74023 101.99805 z M 297.10938 104.29492 C 296.94628 104.29492 296.99424 105.73997 297.21484 107.50586 C 298.61973 118.75017 304.20298 125.81798 308.78711 122.15234 C 309.34121 121.70925 308.70291 120.63639 306.24414 117.87695 C 304.4388 115.85088 301.71155 111.96579 300.18359 109.24414 C 298.65562 106.52249 297.27247 104.29492 297.10938 104.29492 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path175"
d="M 86.460938 82.101562 C 84.872906 82.101562 84.467445 84.443317 85.263672 89.015625 C 85.796218 92.073696 86.165821 92.898438 87 92.898438 C 87.758423 92.898438 88.165526 92.260407 88.431641 90.650391 C 89.308143 85.347624 88.559837 82.101562 86.460938 82.101562 z M 75.326172 84.595703 C 74.270797 84.631677 73.820312 85.295381 73.820312 86.695312 C 73.820312 88.972213 75.492989 92.062479 77.839844 94.123047 C 79.497563 95.578544 80.09934 95.811734 80.771484 95.253906 C 81.236786 94.867745 81.617439 94.113096 81.617188 93.576172 C 81.616923 93.039242 80.823681 90.921836 79.853516 88.871094 C 78.555911 86.128221 77.693635 85.042656 76.589844 84.765625 C 76.097764 84.64212 75.677963 84.583712 75.326172 84.595703 z M 98.466797 86.265625 C 97.26644 86.196459 95.673529 86.833409 94.673828 88.021484 C 92.825735 90.217819 91.57818 93.21817 92.027344 94.388672 C 92.500597 95.621957 92.975175 95.543317 95.513672 93.818359 C 98.032012 92.107112 100.48449 88.473588 99.990234 87.185547 C 99.766348 86.602113 99.187011 86.307125 98.466797 86.265625 z M 70.052734 96.019531 C 69.684012 96.027101 69.357875 96.090499 69.021484 96.197266 C 67.440415 96.699077 67.333501 100.35135 68.873047 101.24805 C 70.249611 102.04982 76.576129 102.06873 78.058594 101.27539 C 80.015251 100.22822 79.364801 99.093654 76.070312 97.808594 C 72.661515 96.478949 71.158902 95.996822 70.052734 96.019531 z M 102.41797 97.818359 C 100.8026 97.726558 98.617063 98.174526 96.357422 99.128906 C 93.397439 100.37907 94.02036 101.16048 98.816406 102.20898 C 103.13419 103.15292 103.4835 103.18469 104.66211 102.73242 C 105.91002 102.25355 105.8746 99.847219 104.60156 98.574219 C 104.15058 98.123234 103.38719 97.87344 102.41797 97.818359 z M 80.498047 105.2168 C 78.573898 105.44789 73.554888 109.16741 73.318359 110.83203 C 72.912615 113.68754 76.562117 114.18402 78.759766 111.57227 C 80.87811 109.05475 81.957333 106.19562 81.109375 105.34766 C 80.983783 105.22206 80.772925 105.18378 80.498047 105.2168 z M 91.390625 106.09961 C 90.915015 106.09787 90.615234 106.34871 90.615234 106.88672 C 90.615234 108.62424 92.483411 113.81949 93.634766 115.2832 C 95.040688 117.07053 96.430934 116.84987 97.244141 114.71094 C 97.951326 112.85088 97.048853 110.52137 94.660156 108.04492 C 93.465018 106.80587 92.183309 106.10252 91.390625 106.09961 z M 86.462891 108.19531 C 84.620184 108.19531 83.189863 116.42423 84.759766 117.99414 C 85.865832 119.1002 86.86808 117.39699 87.341797 113.60547 C 87.822224 109.76028 87.567935 108.19531 86.462891 108.19531 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path167"
d="m 240.32666,109.39208 c 3.05619,-1.79103 5.0409,-4.15843 5.0409,-6.01285 0,-2.39923 -2.84155,-2.63667 -13.81982,-1.1548 -5.94352,0.80226 -7.05642,1.13149 -8.22336,2.4327 -2.53579,2.82758 -1.61984,3.82514 5.24837,5.71593 4.78148,1.31633 8.34072,1.01928 11.75391,-0.98098 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path165"
d="m 90.234406,103.79907 c 2.725592,-2.44396 2.372198,-5.950885 -0.763048,-7.572176 -3.673416,-1.899601 -6.373032,-0.922635 -7.796554,2.821481 -1.772333,4.661605 4.670842,8.237665 8.559602,4.750695 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path163"
d="M 341.73633 83.859375 C 340.84791 83.858025 337.07616 86.419011 333.9707 89.224609 C 330.28756 92.552086 328.57357 96.799342 329.71484 99.773438 C 330.27559 101.23475 331.15269 100.66258 334.33594 96.753906 C 337.33118 93.076084 341.91578 85.389851 341.92969 84.023438 C 341.93081 83.911844 341.86324 83.859568 341.73633 83.859375 z M 344.125 86.300781 C 343.96822 86.300781 342.88053 88.01875 341.70703 90.117188 C 339.30039 94.420646 333.16779 102.49609 332.30664 102.49609 C 331.17149 102.49609 331.78162 103.67873 333.33789 104.49414 C 335.51177 105.63314 336.81573 105.16605 339.19141 102.39062 C 340.38965 100.99074 341.70867 98.401121 342.43945 96.015625 C 343.67298 91.98907 344.65938 86.300781 344.125 86.300781 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path149"
d="m 133.80207,88.57857 c 1.15464,-2.026815 3.6348,-5.30374 5.51148,-7.282059 l 3.41214,-3.596935 -1.16283,-1.478304 c -1.38159,-1.756406 -1.52596,-5.066963 -0.26656,-6.112175 0.49295,-0.409116 1.57906,-0.613323 2.41357,-0.453797 0.83452,0.159534 1.66107,0.05747 1.83678,-0.226867 0.53608,-0.867385 -0.91125,-14.405612 -1.91265,-17.890829 -2.11265,-7.352813 -5.73757,-11.957529 -10.40193,-13.21351 -3.2472,-0.87438 -5.61494,0.188192 -9.7247,4.364142 -3.84419,3.906094 -6.13394,8.2952 -7.09636,13.602599 -1.74844,9.642053 3.4824,23.989865 12.1984,33.459323 1.2905,1.402065 2.51443,2.541185 2.71985,2.531372 0.20539,-0.0098 1.31817,-1.676139 2.47281,-3.70296 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path145"
d="M 316.79688 42.632812 C 316.41338 42.603952 316.05135 42.939826 315.40625 43.734375 C 314.38455 44.992785 314.25675 45.778166 314.55469 48.986328 C 314.74742 51.061644 315.07491 53.033324 315.28125 53.367188 C 316.01068 54.547419 317.05321 53.489156 317.74609 50.867188 C 318.77167 46.986196 318.70693 43.995081 317.57617 43.056641 C 317.26423 42.797753 317.02697 42.650129 316.79688 42.632812 z M 327.33203 44.923828 C 326.22953 44.903908 323.58554 48.482688 322.53125 51.421875 C 320.86046 56.079741 322.0602 57.664432 325.31836 55.101562 C 329.61903 51.718655 330.95041 44.989105 327.33203 44.923828 z M 305.17773 46.804688 C 304.81568 46.862555 304.4422 47.105396 303.89453 47.505859 C 302.88346 48.245179 302.87409 48.42624 303.76367 50.146484 C 304.6624 51.884428 309.27082 56.310547 310.18164 56.310547 C 310.41176 56.310547 310.87558 55.97292 311.21289 55.560547 C 312.06028 54.52462 309.92307 50.136115 307.63281 48.208984 C 306.34994 47.129517 305.78116 46.708242 305.17773 46.804688 z M 333.09961 56.980469 C 329.72419 56.959813 323.72075 59.830611 324.30664 61.357422 C 324.94208 63.013354 331.91712 63.438802 334.04102 61.951172 C 335.88838 60.657229 335.6805 57.302266 333.73633 57.025391 C 333.53739 56.997059 333.32464 56.981846 333.09961 56.980469 z M 301.01172 58.642578 C 298.64392 58.667466 297.55078 59.833973 297.55078 62.210938 C 297.55078 63.661977 297.60818 63.676916 301.59961 63.339844 C 303.82644 63.151791 306.42019 62.703861 307.36328 62.34375 C 309.60576 61.487467 308.7314 60.339651 305.04883 59.308594 C 303.42885 58.855027 302.08799 58.631265 301.01172 58.642578 z M 322.83203 66.126953 C 322.5043 66.103288 322.24694 66.163215 322.08594 66.324219 C 321.25821 67.151956 322.77392 70.789551 324.7832 72.798828 C 326.57869 74.594313 328.1829 74.718304 329.58594 73.167969 C 330.5662 72.0848 330.53042 71.935741 328.83594 70.019531 C 326.98604 67.927579 324.25219 66.229501 322.83203 66.126953 z M 311.51562 66.708984 C 310.96918 66.723419 310.14121 67.407366 308.61328 69.021484 C 306.54877 71.202463 305.94922 72.28855 305.94922 73.849609 C 305.94922 77.566215 308.27851 78.434156 310.12109 75.404297 C 311.82138 72.6084 312.87539 67.794531 311.98242 66.908203 C 311.84734 66.774128 311.69777 66.704173 311.51562 66.708984 z M 316.88672 68.355469 C 315.8941 68.186619 315.30115 71.738049 316.13281 75.744141 C 316.86604 79.276122 317.97665 80.084377 319.13086 77.927734 C 319.76739 76.738368 319.27339 73.300793 317.97461 69.884766 C 317.59305 68.881192 317.21759 68.411752 316.88672 68.355469 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path139"
d="m 236.43228,66.057488 c 1.02245,-2.616482 1.35833,-4.751905 1.39162,-8.847264 0.0384,-4.730185 -0.15273,-5.770994 -1.54469,-8.409279 -1.80281,-3.416993 -7.11327,-8.692068 -8.73043,-8.672261 -1.56272,0.01912 -6.25416,2.254439 -7.82328,3.727499 -1.21764,1.14309 -1.34945,1.828498 -1.34815,7.010589 l 0.001,5.743638 3.16116,1.651618 c 3.86312,2.018358 8.24111,5.575678 10.81013,8.783732 1.05652,1.31931 2.10398,2.412675 2.3277,2.429705 0.22371,0.01704 1.01325,-1.521064 1.75451,-3.417977 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path137"
d="m 320.00848,64.976244 c 1.88538,-1.235354 2.35133,-3.388814 1.2853,-5.940179 -0.97794,-2.340542 -2.76191,-3.081672 -5.96941,-2.479939 -4.19356,0.786717 -5.49712,4.886965 -2.50494,7.879134 1.73162,1.731633 4.99687,1.977342 7.18905,0.540984 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path135"
d="m 149.52024,63.65823 c 1.26275,-2.122209 6.85617,-7.979326 9.1393,-9.57016 l 1.76463,-1.229541 -1.65707,-1.969312 c -0.91139,-1.083121 -2.84792,-4.340444 -4.30341,-7.238483 -3.24047,-6.452175 -5.66147,-9.304071 -8.66127,-10.202827 -2.68463,-0.804332 -6.51026,-0.335871 -9.901,1.212405 l -2.39926,1.09555 2.56291,1.050802 c 6.20576,2.544391 10.37451,11.130518 11.30942,23.293328 0.22016,2.864252 0.57219,5.207728 0.78229,5.207728 0.21011,0 0.82366,-0.74227 1.36346,-1.64949 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path125"
d="m 216.06871,49.459847 c 0.23099,-6.279974 0.97646,-7.691721 5.09309,-9.645196 2.86493,-1.359498 1.98703,-2.098398 -2.49316,-2.098398 -5.21401,0 -6.64501,0.760344 -7.78477,4.136315 -0.51279,1.518857 -1.84577,4.228746 -2.96218,6.021988 l -2.02984,3.260441 4.59254,1.915238 c 2.5259,1.053376 4.76893,1.947952 4.98451,1.987935 0.21557,0.04 0.48549,-2.470258 0.59981,-5.578323 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path
id="path121"
d="m 203.98036,49.731366 c 0,-0.31954 -0.40486,-0.425623 -0.89971,-0.235734 -0.49485,0.189895 -0.89973,0.451336 -0.89973,0.580993 0,0.12965 0.40488,0.235732 0.89973,0.235732 0.49485,0 0.89971,-0.261446 0.89971,-0.580991 z"
style="fill:#000000;stroke-width:0.59981447" />
<path
id="path119"
d="m 59.023616,335.86187 c -2.885752,-1.31024 -3.797236,-2.68453 -3.797236,-5.72527 0,-6.0856 10.843035,-8.49814 15.82104,-3.52014 2.192993,2.193 2.189654,5.69484 -0.0074,7.73098 -2.976318,2.75837 -7.907838,3.37987 -12.016429,1.51443 z"
style="fill:#000000;stroke-width:0.59981447" />
<path
id="path115"
d="m 335.92227,327.87651 c -1.4689,-0.74228 -3.07811,-2.09185 -3.57603,-2.99907 -0.80524,-1.46719 -0.80586,-1.82536 -0.005,-3.2407 2.14989,-3.80223 7.61924,-5.49074 14.11894,-4.35887 9.12677,1.58936 10.58296,8.99602 2.22502,11.31714 -3.99557,1.10963 -9.7902,0.7834 -12.76235,-0.7185 z"
style="fill:#000000;stroke-width:0.59981447" />
<path
id="path111"
d="m 40.525585,306.883 c -0.387385,-1.08538 -2.530198,-23.17357 -3.295479,-33.96989 -1.000479,-14.11441 -1.747611,-41.816 -1.361795,-50.49113 0.314242,-7.06589 0.253033,-7.76046 -0.68391,-7.76046 -0.565968,0 -2.349973,-0.56824 -3.964432,-1.26277 l -2.935385,-1.26276 -1.605359,1.26276 c -1.02991,0.81013 -2.473234,1.26277 -4.026536,1.26277 -4.697743,0 -9.008449,-6.4286 -10.656446,-15.89206 -0.784578,-4.50535 -0.519243,-10.77678 0.499018,-11.79503 0.958241,-0.95826 9.003213,3.74018 13.031835,7.61086 4.882826,4.69142 6.272124,8.57971 4.933239,13.807 -0.431584,1.68502 -0.300538,1.90825 1.672487,2.84912 3.603811,1.71854 3.751521,1.56906 4.177469,-4.22752 0.212121,-2.88661 0.641166,-8.24357 0.953449,-11.90437 0.48662,-5.70445 0.429171,-6.93383 -0.401816,-8.59961 -0.627115,-1.25707 -0.847589,-2.69554 -0.624176,-4.07227 l 0.345431,-2.12866 -1.325107,1.20624 c -3.306687,3.01005 -6.609834,3.1335 -8.815478,0.32947 -1.789145,-2.27453 -1.493916,-3.64271 1.413303,-6.54994 1.441132,-1.44112 2.588279,-2.63097 2.549211,-2.64407 -0.03908,-0.0132 -1.477968,-0.11039 -3.19756,-0.2162 -5.121207,-0.31504 -7.912748,-3.12217 -7.042966,-7.08227 0.546176,-2.48671 2.716607,-3.69294 5.982551,-3.32481 1.478072,0.16659 2.687408,0.21653 2.687408,0.11096 0,-0.10557 -0.582052,-1.17845 -1.293455,-2.38418 -1.55227,-2.6309 -1.814455,-7.0211 -0.497954,-8.33799 0.499271,-0.49942 1.71815,-1.07012 2.708633,-1.26821 2.091074,-0.41823 4.516634,1.17907 6.345963,4.17899 l 1.129735,1.85264 0.0021,-2.58864 c 0.0053,-5.58955 3.580849,-7.98293 6.927372,-4.6364 1.131294,1.1313 1.47228,2.10372 1.47228,4.1987 0,3.04705 0.600728,3.42991 2.009123,1.28042 1.821387,-2.77978 7.334403,-3.25327 8.916103,-0.76576 1.389403,2.1851 -0.378527,6.40136 -4.012232,9.56867 -1.194989,1.0416 -1.185467,1.05298 0.584686,0.69966 0.989694,-0.19754 2.165744,-0.4742 2.613443,-0.6148 0.4477,-0.14058 1.885178,0.0328 3.194401,0.38535 1.869261,0.50333 2.563842,1.08004 3.234744,2.68571 1.163505,2.78467 1.073655,4.26324 -0.345284,5.68218 -1.437962,1.43796 -4.183673,1.53712 -9.292176,0.33557 -1.97667,-0.46492 -3.697537,-0.74172 -3.824159,-0.6151 -0.126621,0.12663 0.625261,0.95006 1.670845,1.82986 2.315834,1.94865 4.247727,5.57653 4.247727,7.97678 0,1.04479 -0.651131,2.55114 -1.579805,3.65481 -2.247452,2.67095 -4.762903,2.37105 -6.816593,-0.8127 l -1.500552,-2.32622 -0.793941,2.80908 c -0.541974,1.91754 -1.246498,3.01526 -2.219844,3.45876 -0.790707,0.36026 -1.565216,1.34756 -1.738636,2.21631 -0.555941,2.78493 -1.54653,20.49442 -1.698085,30.35773 -0.166142,10.81342 -0.3948,10.39543 4.526018,8.27363 1.666694,-0.71866 2.169747,-1.23367 1.883135,-1.92796 -0.821255,-1.98939 -0.970155,-5.98893 -0.298705,-8.02343 1.368262,-4.14589 7.668583,-9.87546 14.906142,-13.55577 1.413377,-0.7187 2.830442,-1.14564 3.149023,-0.94876 0.318582,0.19691 0.57924,2.98453 0.57924,6.19473 0,15.14264 -7.19334,25.12087 -14.745088,20.45363 -1.857063,-1.14773 -2.112108,-1.16749 -3.800142,-0.29458 -0.995214,0.51465 -2.830442,1.15142 -4.078276,1.41507 l -2.268772,0.47934 0.156105,9.26233 c 0.297051,17.62428 2.109243,44.85552 4.139064,62.19593 0.314674,2.68826 0.222118,3.14902 -0.632518,3.14902 -0.550631,0 -1.12155,-0.33739 -1.268733,-0.74976 z"
style="fill:#000000;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path109"
d="M 58.560547 208.99023 C 58.327897 209.00327 57.783752 209.31811 56.720703 209.94531 C 53.37419 211.91979 48.282565 216.81465 47.199219 219.09766 C 46.219163 221.16297 45.892297 224.92161 46.628906 225.6582 C 47.421963 226.45125 48.019807 226.00205 50.894531 222.44922 C 53.712796 218.96618 57.752266 212.29811 58.53125 209.84375 C 58.714678 209.26583 58.793197 208.9772 58.560547 208.99023 z M 60.693359 211.57422 C 60.443846 211.468 60.01081 212.04666 59.402344 213.51562 C 58.082471 216.70208 54.032189 222.63668 51.121094 225.64648 C 48.439142 228.41934 48.373712 228.56616 49.492188 229.39453 C 51.325246 230.75215 53.628785 230.44249 55.345703 228.60742 C 57.320319 226.4969 58.482602 224.1691 59.615234 220.05273 C 60.90642 215.36011 61.242289 211.80791 60.693359 211.57422 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path105"
d="M 15.941406 190.66797 C 15.741652 190.66797 16.678021 192.78503 18.023438 195.37109 C 20.432734 200.00207 26.528953 208.06445 27.621094 208.06445 C 27.928784 208.06445 28.350039 207.16187 28.556641 206.06055 C 29.291627 202.14275 25.991054 197.24713 19.765625 193.01953 C 17.862257 191.72697 16.14115 190.66797 15.941406 190.66797 z M 14.154297 194.3418 C 13.690947 194.35586 13.787572 196.00517 14.427734 199.30469 C 15.364951 204.13526 17.070485 207.91891 19.386719 210.3125 C 21.417867 212.4115 23.962878 212.89434 25.191406 211.41406 C 25.756374 210.73332 25.153152 209.64402 22.117188 205.86719 C 20.03885 203.28166 17.401388 199.41191 16.257812 197.26758 C 15.213455 195.30929 14.51468 194.33086 14.154297 194.3418 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path101"
d="M 41.142578 149.95898 C 39.994613 149.92597 39.584287 151.61267 39.875 155.12695 C 40.297104 160.22953 42.003392 163.14984 42.855469 160.22852 C 44.226807 155.52689 43.685272 150.84774 41.679688 150.07812 C 41.485417 150.00358 41.306573 149.9637 41.142578 149.95898 z M 30.435547 152.28125 C 27.281679 152.28125 28.032169 157.35266 31.765625 161.27734 C 34.234045 163.87218 34.913862 164.12618 35.976562 162.8457 C 37.439489 161.08299 32.822766 152.28125 30.435547 152.28125 z M 52.699219 154.25977 C 51.043366 154.24336 49.227245 155.92209 47.699219 158.9375 C 46.493591 161.31671 46.313018 162.15532 46.863281 162.81836 C 47.463367 163.54142 47.826895 163.51282 49.363281 162.62109 C 50.351943 162.04727 51.939351 160.63951 52.892578 159.49219 C 54.943551 157.02356 55.15162 154.92753 53.398438 154.37109 C 53.169727 154.2985 52.935769 154.26211 52.699219 154.25977 z M 25.28125 164.42383 C 24.007354 164.43398 23.095478 164.83506 22.599609 165.62695 C 21.788845 166.92183 22.610047 168.443 24.695312 169.51562 C 26.302903 170.34241 28.050235 170.44147 31.382812 169.89062 C 33.164119 169.5962 33.632813 169.25118 33.632812 168.23633 C 33.632812 167.23293 32.874624 166.65391 30.136719 165.56641 C 28.191896 164.79392 26.555146 164.41368 25.28125 164.42383 z M 57.132812 165.89648 C 53.963481 165.90349 48.956047 167.35691 49.384766 168.65039 C 49.696553 169.5911 54.852461 170.81764 57.925781 170.68164 C 60.182869 170.58174 60.317835 170.47222 60.199219 168.83008 C 60.129909 167.87002 59.779005 166.79072 59.419922 166.43164 C 59.040979 166.0527 58.189256 165.89415 57.132812 165.89648 z M 35.580078 173.27148 C 34.857863 173.24157 33.544364 173.868 31.623047 175.14062 C 27.990332 177.54684 27.181311 178.97585 28.580078 180.52148 C 29.916509 181.99822 30.693355 181.97 32.728516 180.36914 C 33.639199 179.6528 34.870914 177.9774 35.466797 176.64648 C 36.458834 174.4307 36.508641 173.30995 35.580078 173.27148 z M 46.384766 174.14844 C 45.389876 174.20696 45.433244 176.07112 46.611328 179.61523 C 48.216064 184.44288 50.279331 185.99194 51.662109 183.4082 C 52.750838 181.3739 51.825913 178.51009 49.277344 176.02148 C 47.952783 174.72808 46.9817 174.11333 46.384766 174.14844 z M 41.232422 175.62305 C 40.748204 175.5544 40.093419 176.72699 39.410156 179.16211 C 38.243976 183.31834 38.185514 184.78511 39.150391 185.75 C 40.232747 186.83236 40.799259 186.63089 41.445312 184.93164 C 41.767043 184.08542 42.03125 181.65607 42.03125 179.5332 C 42.03125 177.00121 41.716639 175.6917 41.232422 175.62305 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path95"
d="m 45.075672,171.52102 c 3.226148,-3.22614 1.736562,-7.09339 -3.145263,-8.16561 -4.932953,-1.08346 -8.044635,6.59072 -3.641162,8.98001 2.614359,1.41854 4.817919,1.15411 6.786425,-0.8144 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path
id="path83"
d="m 364.38497,293.03435 c -0.21437,-0.55864 0.0553,-5.26261 0.59925,-10.4533 1.82981,-17.4611 2.75911,-31.53695 3.14759,-47.67578 l 0.38621,-16.04505 h -1.49212 c -0.82067,0 -2.69701,-0.60998 -4.16963,-1.35552 l -2.67752,-1.35552 -2.01144,1.35552 c -5.20495,3.50761 -10.35374,-0.47739 -13.36085,-10.34086 -1.4434,-4.73443 -1.86164,-14.74288 -0.66604,-15.93848 1.14701,-1.147 8.92595,3.38404 13.48236,7.85315 5.07356,4.97637 6.35046,8.99535 4.41269,13.88888 -0.48169,1.21641 1.52786,2.69029 4.47043,3.2788 l 2.01245,0.4025 -0.37822,-14.93927 c -0.40903,-16.15718 -1.26238,-26.21154 -2.25316,-26.54689 -1.30638,-0.44219 -2.95556,-2.77668 -3.31497,-4.69245 -0.36306,-1.9353 -1.44024,-2.81944 -1.44024,-1.18213 0,1.26873 -2.81149,3.98637 -4.12404,3.98637 -0.65023,0 -2.01272,-0.69878 -3.02772,-1.55285 -1.53036,-1.28771 -1.84546,-1.99033 -1.84546,-4.115 0,-2.75939 1.8157,-6.07992 4.71218,-8.61757 l 1.58587,-1.38942 -1.78464,0.38509 c -8.61702,1.85936 -11.35905,1.72352 -12.42479,-0.61553 -0.85678,-1.88045 -0.14931,-5.26468 1.39133,-6.65536 0.97022,-0.87579 2.11918,-1.11949 5.07589,-1.07669 l 3.82178,0.0554 -2.38843,-2.59114 c -1.94759,-2.11291 -2.38845,-3.03022 -2.38845,-4.96982 0,-4.95041 5.65905,-5.81868 9.36265,-1.43653 l 1.26515,1.49696 0.40437,-3.0483 c 0.46098,-3.47508 2.11765,-5.45695 4.56147,-5.45695 2.72926,0 3.76275,1.26624 3.83515,4.69879 0.0359,1.70028 0.26761,3.09307 0.51505,3.09511 0.24741,0.002 0.44985,-0.24701 0.44985,-0.55342 0,-0.3064 0.90911,-1.52103 2.02023,-2.69917 2.24938,-2.38502 4.57683,-2.79597 6.84352,-1.20832 1.86483,1.30618 1.82737,5.67446 -0.0772,9.00456 l -1.39585,2.4406 3.22144,-0.26715 c 4.05532,-0.33629 5.58286,0.79295 5.58286,4.12715 0,1.24149 -0.16767,2.69418 -0.3726,3.22821 -0.60278,1.57082 -3.5354,2.72603 -6.92029,2.72603 h -3.15373 l 2.4391,2.54922 c 2.91431,3.04588 3.4358,4.30154 2.50905,6.04159 -1.71069,3.212 -5.80464,3.81621 -8.79698,1.29831 l -1.79139,-1.50734 0.0406,2.68147 c 0.0223,1.4748 -0.28963,3.07928 -0.69314,3.5655 -0.57371,0.69128 -0.58591,3.01819 -0.056,10.67222 1.06048,15.31607 1.01203,15.06389 2.80706,14.61336 2.53808,-0.63701 4.49155,-2.20017 4.07953,-3.26441 -1.84001,-4.7526 -0.58756,-8.83567 4.17161,-13.5998 3.92313,-3.9272 11.79877,-8.98875 13.16844,-8.46316 0.47688,0.183 1.01917,1.6123 1.25087,3.29686 1.05978,7.7056 -2.6382,19.88123 -6.97657,22.97042 -2.74676,1.95589 -5.26389,2.06517 -7.79896,0.33859 -1.87686,-1.27829 -2.35525,-1.3822 -3.30401,-0.71766 -0.61015,0.42736 -2.21773,1.10911 -3.57237,1.51498 l -2.463,0.73792 -0.34346,24.37182 c -0.18891,13.40449 -0.75471,29.50024 -1.25734,35.7683 -1.65109,20.59055 -2.87503,31.14761 -3.71531,32.0466 -0.69044,0.7387 -0.85385,0.71683 -1.19008,-0.1594 z"
style="fill:#000000;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path81"
d="M 347.81055 194.72461 L 348.24219 196.14648 C 349.03757 198.75527 353.97716 206.5712 356.71289 209.55078 C 359.60833 212.70431 360.50417 212.59752 360.52344 209.09375 C 360.52844 208.17593 360.16838 206.55571 359.72461 205.49414 C 358.84858 203.39847 352.91488 197.64831 349.76758 195.8457 L 347.81055 194.72461 z M 346.04102 197.93945 C 345.69928 197.94748 345.60574 198.89915 345.85547 200.7168 C 347.40402 211.98735 353.28245 219.62572 357.13281 215.37109 C 358.05808 214.3487 357.98543 214.15686 355.94727 212.22266 C 353.67798 210.06913 348.60959 202.7596 347.24023 199.66602 C 346.72282 198.4971 346.30681 197.93321 346.04102 197.93945 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path77"
d="M 390.64844 176.73047 L 388.2793 178.15039 C 383.70931 180.89062 379.17792 185.68327 378.23828 188.77148 C 378.00371 189.54244 377.98515 191.09084 378.19531 192.21094 C 378.52263 193.95577 378.72382 194.15288 379.60156 193.58984 C 380.16503 193.22838 381.74382 191.54612 383.11133 189.85156 C 385.82341 186.49086 389.51591 180.40518 390.21094 178.15039 L 390.64844 176.73047 z M 392.32227 179.87305 C 391.99237 179.87305 391.72271 180.20871 391.72266 180.62109 C 391.72251 181.86249 385.94238 190.4877 383.00781 193.625 L 380.26562 196.55664 L 381.62891 197.51172 C 383.45207 198.7887 384.64639 198.71422 386.5625 197.20703 C 388.72513 195.50589 391.03583 190.77441 392.05859 185.94922 C 393.06579 181.19739 393.12297 179.87305 392.32227 179.87305 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path73"
d="M 365.25195 136.08594 C 363.60443 136.08594 362.75349 138.78101 363.19141 142.61523 C 363.61009 146.28082 363.86703 146.88281 365.01562 146.88281 C 365.50858 146.88281 366.08741 145.68629 366.48047 143.85352 C 367.6103 138.58535 367.21523 136.08594 365.25195 136.08594 z M 376.08398 138.48438 C 373.67929 138.48438 369.23442 147.18137 370.72266 148.97461 C 371.8115 150.28657 372.12019 150.15755 374.77148 147.28125 C 378.7763 142.93653 379.44059 138.48438 376.08398 138.48438 z M 354.12109 140.29883 C 353.3778 140.23325 352.6911 140.51365 352.13672 141.18164 C 351.53636 141.90504 351.59122 142.39737 352.41797 143.73047 C 354.66653 147.35623 359.21438 150.32764 360.16406 148.79102 C 360.33091 148.52106 359.83631 146.93748 359.06445 145.27148 C 357.66805 142.25751 355.75633 140.4431 354.12109 140.29883 z M 381.47266 150.33594 C 380.01324 150.37541 378.02461 150.93446 375.64648 152.00781 C 372.8131 153.28663 372.53388 153.57154 373.09766 154.625 C 373.50788 155.39152 374.52154 155.8905 375.97852 156.04297 C 377.21466 156.17232 378.36238 156.32139 378.52734 156.375 C 378.69228 156.4286 379.83513 156.1921 381.06836 155.84961 C 383.56476 155.15631 384.63381 153.73048 384.12305 151.77734 C 383.86104 150.7754 382.93207 150.29646 381.47266 150.33594 z M 349.49414 151.80078 C 347.41668 152.00584 345.67727 154.41899 346.34766 156.16602 C 346.6991 157.08187 347.22591 157.18536 349.89844 156.86328 C 351.62364 156.65536 354.06276 156.19645 355.32031 155.84375 C 356.61946 155.47938 357.50576 154.89621 357.37109 154.49219 C 357.02186 153.4445 351.60215 151.59269 349.49414 151.80078 z M 371.48438 159.45898 C 371.23931 159.43204 371.05018 159.46184 370.93359 159.55859 C 369.85513 160.45363 371.37337 164.05296 373.74609 166.22656 C 375.87287 168.17487 376.17463 168.21424 377.93945 166.78516 C 379.08431 165.85812 379.1808 165.50015 378.58594 164.38867 C 377.62212 162.58775 373.19982 159.64758 371.48438 159.45898 z M 360.55469 160.11133 C 359.51194 160.01846 357.19599 161.70253 355.89648 163.63086 C 354.2987 166.00179 354.13862 168.5937 355.50391 169.95898 C 356.81538 171.27046 357.64201 170.89622 358.85156 168.44336 C 360.25848 165.59026 361.46613 160.81183 360.91797 160.26367 C 360.82763 160.17334 360.70365 160.1246 360.55469 160.11133 z M 365.58398 161.87695 C 364.42991 161.87695 364.03516 164.81491 364.71094 168.37305 C 365.5929 173.01673 366.44394 173.87619 367.74805 171.43945 C 368.71667 169.62955 366.96251 161.87695 365.58398 161.87695 z "
style="fill:#ffffff;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path67"
d="m 369.43461,157.28202 c 2.80933,-3.19533 -0.31015,-8.4809 -4.59497,-7.78558 -4.17169,0.67697 -6.122,4.38241 -3.94362,7.4925 2.03151,2.90037 6.12281,3.0408 8.53859,0.29308 z"
style="fill:#ffffff;stroke-width:0.59981447" />
<path
id="path55"
d="m 7.7140505,268.85916 c -3.9289448,-1.6303 -3.8565172,-5.448 0.133658,-7.04457 4.7883725,-1.91592 12.5201145,-0.42133 13.4809255,2.60595 1.334273,4.2039 -7.353962,7.03642 -13.6145835,4.43862 z"
style="fill:#000000;stroke-width:0.59981447" />
<path class="color" onclick="playSound();"
id="path257"
d="M 12.580078 263.33984 C 11.17865 263.3476 9.8596379 263.50743 9.0429688 263.8457 C 5.1435501 265.4609 7.9526001 267.5213 13.697266 267.25977 C 16.083926 267.15111 17.788977 266.75205 18.375 266.16602 C 19.204912 265.3361 19.201371 265.1629 18.332031 264.44141 C 17.481759 263.73574 14.915791 263.32692 12.580078 263.33984 z M 343.00781 319.23242 C 338.07488 319.28635 333.19004 321.45793 334.48438 323.64062 C 336.20666 326.54503 344.23578 327.88772 348.70508 326.01953 C 349.76664 325.57577 351.01187 324.75873 351.47266 324.20312 C 352.76593 322.64371 350.3527 320.45312 346.35547 319.55859 C 345.28721 319.31953 344.14618 319.21998 343.00781 319.23242 z M 63.923828 326.22656 C 61.651002 326.22656 58.416509 327.74794 57.652344 329.17578 C 55.668501 332.88265 62.259427 335.9626 67.494141 333.77539 C 70.066631 332.70054 71.121058 330.90556 70.195312 329.17578 C 69.431147 327.74794 66.196643 326.22656 63.923828 326.22656 z M 283.16797 357.55469 C 280.02313 357.48845 276.55859 358.2432 276.55859 359.51367 C 276.55859 361.56648 285.78975 362.23956 287.70312 360.32617 C 288.5188 359.5105 288.51382 359.33021 287.66406 358.625 C 286.82626 357.92968 285.05487 357.59443 283.16797 357.55469 z M 163.98828 362.39258 C 156.83089 362.46645 149.89437 363.51155 151.375 364.99219 C 153.26976 366.88695 171.02562 367.48333 175.63867 365.80664 C 178.18461 364.88128 178.10235 364.21972 175.33984 363.42578 C 172.65721 362.65479 168.28272 362.34825 163.98828 362.39258 z "
style="fill:#ffffff;stroke-width:0.59981447" />
</svg>
</div>
<div id="content2" style="display: none;" class="container">
<svg id="printable" class="color" viewBox="0 0 400 400" width="400" height="400">
<path
id="path394"
d="M 85.705078 2.1464844 C 83.363728 2.2462508 81.511884 3.6073726 80.238281 6.2382812 C 79.142116 8.5026564 78.955132 9.8719293 79.007812 15.207031 C 79.135352 28.124605 85.479645 52.200543 94.3125 73.283203 C 95.773949 76.77148 96.88397 79.711712 96.779297 79.816406 C 96.674603 79.921083 95.079849 78.194004 93.234375 75.978516 C 88.770916 70.620154 76.576723 58.75933 73.070312 56.365234 C 63.642497 49.928178 57.08753 49.483258 54.042969 55.074219 C 52.255056 58.357493 52.865463 67.251404 55.40625 74.933594 C 59.453411 87.170447 69.873933 105.64001 79.322266 117.32617 C 81.50872 120.03048 83.296875 122.35829 83.296875 122.49805 C 83.296875 122.63782 80.455137 121.29521 76.980469 119.51367 C 58.412933 109.99367 47.790117 110.98894 47.150391 122.31055 C 46.866956 127.32662 48.410693 132.20863 52.357422 138.77539 C 57.135201 146.72487 67.934253 159.72884 75.982422 167.22266 C 77.825752 168.93902 79.211935 170.4658 79.0625 170.61523 C 78.913065 170.76467 76.662755 170.1977 74.0625 169.35742 C 67.789209 167.33014 59.410876 166.786 56.628906 168.22461 C 51.33707 170.96112 52.281508 178.31401 59.009766 186.76953 C 64.154301 193.23476 75.878304 202.35154 85.347656 207.24805 C 87.484976 208.35325 89.235445 209.41335 89.236328 209.60547 C 89.237546 209.79756 87.968235 210.00219 86.416016 210.05859 C 82.98036 210.18305 78.305723 211.50254 75.783203 213.06055 C 71.608501 215.63903 71.838177 221.45413 76.263672 225.24219 C 80.789043 229.11574 94.054162 233.50193 106.26562 235.16211 C 109.15574 235.55504 111.6282 235.96691 111.75977 236.07617 C 111.89136 236.18542 111.31292 236.81325 110.47461 237.47266 C 108.38232 239.11846 106.4108 243.34293 106.86719 245.20508 C 107.86393 249.27205 111.92183 251.24861 120.03906 251.61914 C 125.85154 251.88445 136.77311 250.97922 140.43945 249.92773 C 141.99317 249.48213 142.11914 249.56782 142.11914 251.08203 C 142.11914 255.8197 138.13291 273.45498 136.21094 277.2207 C 134.21158 281.13805 134.14432 281.15721 119.24414 282.28125 C 76.415079 285.51218 51.286845 290.95771 46.609375 298.02148 C 44.584258 301.07975 44.752153 305.5038 47.011719 308.62305 C 48.875425 311.19582 53.411874 313.76831 57.302734 314.45703 C 59.86312 314.91025 60.017437 315.28406 58.283203 316.85352 C 55.041238 319.78744 54.494925 323.76085 57.005859 326.15625 C 59.18611 328.23619 61.3373 328.97852 65.179688 328.97852 C 68.208974 328.97852 69.743156 329.66057 68.476562 330.44336 C 68.157635 330.64046 67.430925 332.28094 66.861328 334.08789 C 66.090187 336.53425 65.590805 337.29644 64.90625 337.07617 C 64.400604 336.91345 62.918462 336.37427 61.611328 335.87695 C 52.530785 332.42218 39.381479 338.62843 36.923828 347.5293 L 36.351562 349.60156 L 33.458984 349.0293 C 29.057323 348.15899 24.811149 349.60739 20.673828 353.38867 C 16.802814 356.92655 15.755695 359.54157 17.009766 362.54297 C 18.280456 365.58416 22.015076 367.04494 30.005859 367.625 C 37.291845 368.15388 60.902701 369.22524 80.919922 369.93359 C 99.937537 370.60657 129.36844 370.62856 139.14844 369.97852 C 149.99591 369.25756 155.08682 368.4246 157.45508 366.98438 C 160.60839 365.06674 160.71574 361.11166 157.69141 358.25195 C 155.70138 356.37023 148.89568 353.14725 144.08789 351.81055 L 140.48633 350.80859 L 140.0918 346.44727 C 139.59536 340.96896 138.49274 337.26886 136.42773 334.14844 C 135.49889 332.74498 135.08449 331.62028 135.45117 331.49805 C 136.60619 331.11303 146.49445 324.10684 150.87695 320.56836 C 153.24291 318.65805 155.28483 317.0957 155.41602 317.0957 C 155.54722 317.0957 155.82411 317.77044 156.03125 318.5957 C 157.18467 323.19133 161.13362 323.51889 174.36133 320.11328 C 179.339 318.83173 183.86089 317.60589 184.41016 317.39062 C 185.18801 317.08578 185.5449 317.49149 186.02344 319.22461 C 186.36134 320.44838 187.46197 322.47574 188.46875 323.72852 C 189.99476 325.62745 190.23554 326.34105 189.91992 328.02344 C 189.33515 331.14054 190.39603 332.54297 193.33789 332.54297 C 194.74278 332.54297 196.23957 332.14163 196.83203 331.60547 C 197.77734 330.74996 198.003 330.75572 199.41016 331.67773 C 200.25859 332.23364 201.11536 333.33171 201.3125 334.11719 C 201.73393 335.79631 203.17929 336.69426 205.50586 336.72266 C 206.6704 336.73688 208.84597 338.06547 212.66406 341.09375 L 218.14844 345.44531 L 213.94141 346.13867 C 211.62726 346.52083 208.94611 347.24094 207.98438 347.73828 C 205.09162 349.23419 204.21481 353.04877 206.28711 355.12109 C 207.39569 356.22979 208.26706 356.31055 219.2832 356.31055 C 232.90059 356.31055 232.23247 356.15294 244.45898 362.24219 C 252.98793 366.48992 255.96197 367.23571 258.0293 365.64844 C 259.31214 364.66352 260.35547 362.59937 260.35547 361.04297 C 260.35547 359.80941 257.76182 356.84643 255.29102 355.25781 C 254.31832 354.63242 255.20017 354.56564 260.43359 354.86523 C 266.55643 355.21573 266.77885 355.18426 267.71094 353.85352 C 269.91616 350.70512 267.70187 346.26136 263.26367 344.93164 C 260.34086 344.05595 260.92581 343.36603 264.79883 343.125 C 267.4165 342.96208 267.8243 342.75274 268.32812 341.3125 C 269.10809 339.08288 267.52726 335.88085 264.98242 334.53711 C 260.91488 332.38935 250.87129 333.92379 235.69727 339.01172 L 230.34961 340.80469 L 225.8125 336.09375 L 221.27539 331.38281 L 222.45508 329.00195 C 223.5775 326.73332 223.59063 326.40939 222.73047 322.19141 C 221.71338 317.20392 217.82251 308.40897 215.16797 305.09375 L 213.4082 302.89453 L 218.61133 300.04297 C 224.65313 296.73239 233.01667 288.84804 236.89453 282.80859 C 238.87206 279.72877 239.54144 279.1173 240.95508 279.0957 C 245.20223 279.03112 249.15725 275.47476 252.90039 268.35156 C 255.13315 264.10259 257.38477 256.4928 257.38477 253.19727 C 257.38477 251.79057 257.79453 251.01271 258.92578 250.27148 C 261.19737 248.78308 262.80609 244.57839 263.17773 239.15625 C 263.43623 235.38489 263.66952 234.51413 264.35547 234.77734 C 264.82638 234.95804 266.23877 235.26995 267.49414 235.4707 C 269.44458 235.78259 270.00982 235.60344 271.375 234.23828 C 272.81639 232.79689 272.93872 232.34001 272.63477 229.56445 C 272.44948 227.87248 272.11774 225.73946 271.89648 224.82422 C 271.51055 223.22789 271.56374 223.17775 273.20312 223.61914 C 274.14304 223.87222 276.64935 224.07055 278.77344 224.06055 C 288.50167 224.01421 288.72767 218.10695 279.24414 211.76758 C 278.03272 210.95778 277.20826 210.12767 277.41211 209.92383 C 277.61595 209.71998 279.277 209.55083 281.10156 209.54883 C 294.43967 209.52923 305.5611 206.09025 307.33008 201.4375 C 308.46656 198.44836 305.31332 195.12224 299.7168 193.4043 C 298.32797 192.97798 297.19141 192.46056 297.19141 192.25586 C 297.19141 192.05115 298.86385 191.56621 300.90625 191.17773 C 310.91179 189.2746 321.04034 185.21532 325.64062 181.26367 C 333.59604 174.43001 329.2121 169.16844 313.54883 166.75391 C 308.94958 166.04493 308.37915 165.7975 310.0293 165.22266 C 319.01 162.09414 327.29333 157.95865 335.30469 152.60156 C 345.59139 145.72299 352.72872 137.06793 351.65234 132.7793 C 350.81731 129.45218 344.71011 128.3533 333.43555 129.5 L 328.98047 129.95312 L 340.28711 124.15234 C 361.2883 113.37905 369.08398 106.79776 369.08398 99.845703 C 369.08398 93.91694 361.67023 92.303477 347.70117 95.189453 C 345.58075 95.627521 343.78609 95.924813 343.71289 95.851562 C 343.63965 95.778319 347.24737 93.288069 351.72852 90.316406 C 370.8314 77.648369 382.2368 65.18307 380.60547 58.757812 C 379.74425 55.365793 377.64962 54.261021 372.2207 54.337891 C 361.70663 54.48677 339.84776 62.326676 310.56055 76.453125 C 291.1151 85.832496 277.45435 98.151448 270.02734 113.00391 C 267.49129 118.07546 266.32625 121.96486 265.4375 128.32812 C 264.69517 133.64301 261.03185 147.44789 260.50391 146.91992 C 260.36495 146.78098 259.52096 144.56055 258.62891 141.98438 C 256.58039 136.06841 254.57757 133.16894 248.58008 127.43945 L 243.78906 122.86133 L 245.83984 121.59375 C 249.67412 119.22403 250.27149 115.7602 247.13477 114.08203 C 245.05657 112.97018 236.03616 112.57691 232.875 113.46094 C 231.48117 113.85074 231.24219 113.74211 231.24219 112.71875 C 231.24219 110.55771 229.15493 109.14258 225.96875 109.14258 C 222.4581 109.14258 219.00616 110.29742 215.63867 112.59766 C 213.39645 114.12926 212.4672 114.35413 207.17773 114.64648 C 194.52015 115.34606 184.36466 121.64448 176.24805 133.83008 C 169.71984 143.63099 167.33317 152.01394 167.81836 163.4375 C 168.17041 171.72638 169.83539 177.9235 173.60742 184.99023 L 175.87695 189.24414 L 172.24609 191.17969 C 170.24837 192.24446 167.47462 194.16754 166.08203 195.45117 L 163.54883 197.78516 L 160.89844 195.61133 C 153.62916 189.65471 151.072 182.36125 152.25 170.93359 C 152.57001 167.82914 153.67487 160.20888 154.70508 154 C 158.04142 133.89232 157.3329 121.39133 151.83594 103.41992 C 142.85685 74.064242 113.42554 22.865436 96.982422 7.9960938 C 92.535398 3.9747007 88.715386 2.0182133 85.705078 2.1464844 z M 45.677734 5.2207031 C 45.237259 5.2335766 44.788128 5.2667304 44.330078 5.3183594 C 41.201216 5.6710234 37.994469 8.3013079 36.855469 11.451172 L 36.173828 13.335938 L 33.648438 12.216797 C 29.877344 10.548651 24.542359 10.142008 22.048828 11.332031 C 18.683768 12.937982 17.048828 15.974794 17.048828 20.617188 C 17.048828 24.05969 17.270972 24.858159 18.767578 26.820312 C 20.826845 29.520144 24.072165 31.062779 29.253906 31.802734 C 35.262654 32.660779 53.260396 32.56789 58.392578 31.652344 C 65.715988 30.34589 67.997489 28.584765 66.720703 25.226562 C 66.014907 23.370181 63.840837 21.633195 60.482422 20.244141 C 57.975531 19.207277 57.879077 19.070386 57.572266 16.097656 C 56.854831 9.1463669 52.284871 5.0276004 45.677734 5.2207031 z M 367.57812 10.03125 C 366.14687 10.058376 364.64486 10.445731 363.14844 11.216797 C 359.72687 12.979842 357.79687 15.840602 357.79688 19.146484 C 357.79688 21.60845 357.7249 21.696551 354.50586 23.271484 C 346.84654 27.01884 348.0941 31.495678 357.21875 33.007812 C 365.49232 34.378899 383.80174 33.505714 387.58203 31.560547 C 393.38739 28.573373 394.3659 20.73359 389.4707 16.435547 C 387.41508 14.630682 387.09692 14.542495 383.66016 14.818359 C 381.66009 14.978914 379.19047 15.541632 378.17188 16.068359 L 376.31836 17.025391 L 375.18555 14.841797 C 373.53236 11.656194 370.72689 9.9715735 367.57812 10.03125 z M 233.61719 12.59375 C 226.85587 12.595188 224.55235 13.577053 220.36328 18.236328 C 217.87693 21.001726 215.19922 26.431139 215.19922 28.707031 C 215.19922 29.212182 214.99899 29.522101 214.75391 29.396484 C 208.13044 26.001939 203.56634 25.083768 197.56055 25.935547 C 185.42326 27.656922 177.53104 34.29778 176.21484 43.900391 C 175.93028 45.976627 175.47241 46.753609 173.9375 47.759766 C 171.52646 49.340239 170.01651 52.457467 169.94531 56.003906 C 169.83029 61.734277 175.77612 66.474966 185.49219 68.400391 C 191.00709 69.493275 204.98667 70.973539 216.39844 71.673828 C 227.44188 72.351517 262.18265 71.993876 268.37695 71.138672 C 282.32641 69.212761 286.79492 66.56682 286.79492 60.230469 C 286.79492 55.163324 283.254 51.734395 276.00781 49.783203 C 273.66943 49.153537 273.54083 48.99725 273.15234 46.306641 C 271.92244 37.788988 266.30541 32.056788 258.12695 30.974609 C 256.41135 30.747606 255.00781 30.281457 255.00781 29.939453 C 255.00781 28.02302 250.41994 20.375719 247.80078 17.925781 C 243.27372 13.691249 240.35175 12.592867 233.61719 12.59375 z M 20.283203 253.15234 C 15.784503 253.37396 11.78933 256.88804 11.152344 261.98633 C 10.782287 264.94816 10.602738 265.24183 8.7382812 265.91602 C 5.9249227 266.93334 3.0878906 269.73293 3.0878906 271.49219 C 3.0878906 273.60475 4.8089791 274.83988 9.0996094 275.80859 C 13.656476 276.83741 35.321787 276.65008 38.865234 275.55078 C 41.601643 274.70186 44.588135 272.25074 45.369141 270.21094 C 46.25831 267.88869 46.083639 263.982 44.996094 261.87891 C 43.39716 258.78691 40.821216 257.54749 36.791016 257.93164 C 34.903818 258.11153 32.537684 258.68275 31.535156 259.20117 C 30.532635 259.7196 29.670501 260.0589 29.619141 259.95312 C 27.608286 255.80854 26.937506 255.01174 24.566406 253.96289 C 23.450402 253.46923 22.310206 253.20772 21.189453 253.15234 C 20.885916 253.13735 20.583116 253.13757 20.283203 253.15234 z M 335.35156 261.98242 C 327.01348 261.74151 319.25907 266.67867 315.0625 275.20312 C 313.1642 279.05884 313.15271 279.07031 310.62891 279.07031 C 303.00105 279.07031 296.76332 284.37963 294.63867 292.68164 L 293.82422 295.86719 L 289.23242 297.19141 C 283.97814 298.70689 280.88235 301.18282 279.97266 304.59766 C 279.13065 307.75848 280.11593 311.1407 282.45117 313.10547 C 287.1976 317.09892 303.88294 320.23394 328.98047 321.84766 C 333.22865 322.12045 345.92713 322.24652 357.20117 322.12891 C 379.82922 321.89287 384.77538 321.34497 390.44141 318.44727 C 397.49544 314.8397 399.04027 307.28247 393.79688 302.03906 C 392.25811 300.5003 391.685 299.27416 391.18945 296.46094 C 390.33773 291.62565 388.19104 287.57912 384.83789 284.48828 C 381.35025 281.27348 377.28559 279.41874 370.94727 278.14844 C 365.38286 277.03325 361.77995 277.27565 357.01562 279.08594 C 355.35962 279.71519 353.95378 280.1697 353.89258 280.0957 C 353.83141 280.02175 353.35807 278.49066 352.83984 276.69336 C 350.58613 268.87698 345.64925 263.79638 338.95312 262.40625 C 337.74678 262.15581 336.54272 262.01684 335.35156 261.98242 z M 312.71094 374.1543 C 311.08359 374.08443 309.3045 374.46036 307.45312 375.30078 C 304.44937 376.66432 302.6885 379.29717 302.16797 383.20117 C 301.82015 385.8099 301.60119 386.11531 299.34375 387.13086 C 293.82918 389.61169 292.57791 393.68482 296.71094 395.70508 C 297.91708 396.29463 300.59064 396.99601 302.65234 397.26367 C 312.61339 398.55684 328.09642 397.64163 332.26758 395.51367 C 335.26593 393.98402 337 391.06454 337 387.55078 C 337 380.28707 331.52363 377.13067 323.5957 379.82227 C 322.08277 380.33592 320.78468 380.6696 320.70898 380.56445 C 320.63332 380.45928 319.96452 379.36422 319.22266 378.13086 C 317.71603 375.62607 315.42318 374.27075 312.71094 374.1543 z "
style="fill:#000000;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path392"
d="M 45.855469 7.4707031 C 44.682854 7.5176451 43.489186 7.8195809 42.332031 8.4179688 C 40.655316 9.2850408 38.142578 13.504633 38.142578 15.453125 C 38.142578 16.850287 36.9561 16.70513 33.748047 14.912109 C 30.098281 12.872211 24.566439 12.305092 22.367188 13.746094 C 18.732954 16.127333 18.142236 22.75908 21.273438 26.027344 C 23.92866 28.798812 26.920598 29.450893 42.300781 30.611328 C 42.790958 30.648308 46.56551 30.432694 50.689453 30.130859 C 58.984877 29.523723 63.287011 28.647252 64.367188 27.345703 C 65.40648 26.09344 62.981003 23.888878 58.607422 22.109375 L 55.076172 20.671875 L 55.251953 17.820312 C 55.624038 11.848869 50.9368 7.2672877 45.855469 7.4707031 z M 367.82812 12.294922 C 365.6241 12.294922 361.66211 14.271459 361.0332 15.685547 C 360.77266 16.271346 360.40505 18.319189 360.2168 20.236328 L 359.875 23.722656 L 356.83789 24.853516 C 353.25022 26.188174 351.29157 28.012267 352.33008 29.050781 C 353.91241 30.633117 359.88482 31.275958 371.46094 31.111328 C 381.83728 30.963755 383.34509 30.812508 385.89062 29.666016 C 389.25158 28.152273 390.82144 25.325033 390.18555 21.935547 C 389.27039 17.057282 384.73888 15.71927 378.68164 18.539062 C 376.93358 19.352835 375.27197 20.019531 374.99023 20.019531 C 374.70848 20.019531 374.19516 18.968828 373.84961 17.685547 C 373.07923 14.824588 370.25398 12.294922 367.82812 12.294922 z M 233.66992 14.693359 C 231.13323 14.690764 228.65171 15.191346 226.55078 16.238281 C 222.07094 18.470677 218.30189 24.014584 217.23242 29.947266 C 216.57664 33.58511 215.9876 33.895084 213.50781 31.910156 C 209.0926 28.376018 204.07833 27.261113 197.29688 28.302734 C 186.46546 29.966423 180.14442 35.558368 178.34375 45.072266 C 178.01393 46.814917 177.47311 48.334312 177.14062 48.447266 C 175.56571 48.982298 173.02552 51.756646 172.41406 53.609375 C 171.09776 57.597827 173.6301 61.560864 179.01367 63.941406 C 182.97235 65.691876 188.17335 66.744655 198.26562 67.837891 C 213.6773 69.507343 222.00752 69.833126 244.01562 69.625 C 262.09048 69.454069 266.38982 69.243473 271.75977 68.259766 C 279.22574 66.892105 283.35318 65.105592 284.21094 62.873047 C 285.1418 60.450253 284.38366 57.353592 282.42578 55.587891 C 280.62651 53.965244 274.8426 51.509766 272.82031 51.509766 C 272.09526 51.509766 271.56994 51.011283 271.4082 50.171875 C 270.10658 43.416791 269.54501 41.667467 267.88867 39.210938 C 265.55131 35.744334 261.7911 33.702363 256.93164 33.261719 L 253.39453 32.941406 L 252.39648 29.775391 C 251.23594 26.093734 247.97829 21.014109 245.29492 18.701172 C 242.27656 16.09949 237.89774 14.697684 233.66992 14.693359 z M 21.349609 255.60156 C 16.25479 255.60156 13.592384 258.29605 13.505859 263.53906 L 13.453125 266.72461 L 10.580078 267.81445 C 7.4300989 269.01016 5.4628906 270.50902 5.4628906 271.71289 C 5.4628906 274.50605 32.684092 275.52286 38.820312 272.95898 C 43.060352 271.18738 44.789293 267.64918 43.234375 263.92773 C 41.502958 259.78387 37.140669 259.01541 31.546875 261.86914 C 28.637602 263.35334 27.732437 263.12113 27.261719 260.76758 C 27.067253 259.79525 26.251331 258.23555 25.447266 257.30078 C 24.247508 255.90598 23.512228 255.60156 21.349609 255.60156 z M 335.62305 264.26172 C 330.35677 264.16564 324.48992 266.58418 320.98633 270.56445 C 318.88188 272.95524 316.42767 277.27537 315.39648 280.40625 C 315.12039 281.24454 314.35569 281.44727 311.45117 281.44727 C 307.19615 281.44727 304.17168 282.57799 301.44922 285.18945 C 298.87705 287.65675 297.76749 289.78464 296.58789 294.51562 L 295.62695 298.375 L 292.40625 298.83789 C 288.35074 299.42153 284.35637 301.33103 283.06445 303.30273 C 281.73802 305.32712 281.7825 308.96094 283.15234 310.47461 C 286.783 314.48643 303.37771 317.90114 326.60352 319.41797 C 337.69322 320.14223 376.61288 319.79267 381.5625 318.92383 C 389.27998 317.56914 394.63619 313.55604 394.63086 309.13477 C 394.62886 306.94074 392.87259 303.86166 390.88086 302.55664 C 389.75748 301.82055 389.37791 300.9336 389.12109 298.44531 C 388.12355 288.78002 381.24495 282.35933 369.62305 280.24609 C 367.52985 279.86549 364.51634 279.72559 362.92578 279.93555 C 359.80691 280.34728 355.31645 282.22018 354.18945 283.57812 C 352.93932 285.08443 352.01652 284.47959 351.61719 281.89258 C 350.20243 272.7271 345.67972 266.51257 339.13672 264.74219 C 338.02198 264.44057 336.83834 264.28389 335.62305 264.26172 z M 78.363281 328.3457 C 77.631291 328.3754 76.647385 328.47852 75.589844 328.65039 L 71.744141 329.27539 L 70.134766 332.50781 C 69.249224 334.28547 68.347041 337.0258 68.130859 338.59766 C 67.750759 341.36128 66.684457 342.34119 65.732422 340.80078 C 65.509709 340.4404 63.956825 339.50674 62.28125 338.72656 C 56.52039 336.04418 48.835381 337.31305 43.574219 341.81641 C 40.706537 344.27104 39.432458 346.45633 38.818359 349.96875 C 38.33826 352.7147 38.003162 352.81357 33.662109 351.50586 C 32.325351 351.10317 30.331051 350.95844 29.162109 351.17773 C 26.086035 351.75481 21.800333 354.70161 19.931641 357.52539 C 18.410987 359.82325 18.359582 360.10054 19.175781 361.55469 C 20.65269 364.18599 24.148143 365.00945 36.953125 365.73633 C 46.745437 366.29221 67.159232 367.13789 86.564453 367.79297 C 99.749072 368.23804 132.75187 368.11008 140.33594 367.58398 C 145.07431 367.25527 150.34732 366.70595 152.05273 366.36328 C 161.79892 364.4049 158.04461 358.72793 144.125 354.375 L 138.10938 352.49414 L 137.80469 347.41992 C 137.48946 342.19435 135.88933 336.91579 133.90625 334.55664 L 132.84961 333.30078 L 126.37891 336.44336 C 120.08235 339.50109 114.05374 341.45508 110.92188 341.45508 C 108.35219 341.45508 105.95746 339.84601 105.38281 337.73438 C 105.0575 336.53888 104.54419 335.8916 104.0293 336.02344 C 90.376249 339.51943 79.713518 339.42089 78.318359 335.78516 C 77.669994 334.09555 77.922559 331.65973 78.886719 330.2832 C 79.401322 329.54851 79.735029 328.73996 79.628906 328.48633 C 79.575849 328.35952 79.095271 328.31601 78.363281 328.3457 z M 311.84375 376.54492 C 307.98171 376.65228 303.97155 380.03659 304.43164 385.34766 C 304.58863 387.15979 304.39011 387.59822 303.17773 388.09766 C 294.86821 391.52093 294.52988 393.55992 302.05273 394.89453 C 306.28803 395.6459 325.99132 395.24081 328.93359 394.3418 C 332.48334 393.25715 334.62305 390.79783 334.62305 387.80664 C 334.62305 385.17962 333.82756 383.19912 332.29883 382.02539 C 330.67652 380.77982 326.17606 381.13019 322.99023 382.75 C 321.38262 383.56739 319.78407 384.12979 319.4375 384 C 319.09095 383.87022 318.48252 382.68104 318.08594 381.35742 C 317.05949 377.93146 314.4862 376.47147 311.84375 376.54492 z "
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path386"
d="M 201.92578 304.46484 C 201.43485 304.44929 200.75862 304.46804 200.01367 304.52734 C 197.36006 304.73839 197.27413 304.81119 195.85352 308.02344 C 195.05592 309.82697 194.4043 311.41732 194.4043 311.55859 C 194.4043 311.93883 196.1761 310.59637 199.64062 307.58984 C 201.33515 306.1193 202.72249 304.77904 202.72266 304.61328 C 202.72274 304.53041 202.41671 304.4804 201.92578 304.46484 z M 207.9043 304.6875 C 206.69356 304.74033 205.86184 305.34394 203.55078 307.31836 C 192.95165 316.37348 193.44615 316.90163 206.88086 310.87695 C 210.3121 309.33825 213.32726 307.88324 213.58008 307.64258 C 214.3988 306.86323 211.79297 305.12008 209.31055 304.78711 C 208.75351 304.7124 208.30788 304.66989 207.9043 304.6875 z M 194.0332 304.96094 C 193.52552 305.00957 192.47818 305.24698 191.33398 305.58594 C 188.65684 306.37904 188.53618 306.51258 187.91602 309.4043 C 186.93216 313.99186 186.97008 314.10804 189.20508 313.41211 C 190.80381 312.91432 191.43311 312.15595 192.85938 309.00195 C 193.80686 306.90672 194.47426 305.09593 194.34375 304.97852 C 194.31112 304.94916 194.20243 304.94473 194.0332 304.96094 z M 185.93359 307.49805 L 184.375 307.88281 C 182.23782 308.4102 182.11688 308.61424 181.66016 312.44531 C 181.28042 315.63076 181.32516 315.79804 182.46484 315.5 C 183.12805 315.32656 183.90718 314.87903 184.19727 314.50586 C 184.48736 314.13269 184.99605 312.40453 185.32812 310.66406 L 185.93359 307.49805 z M 179.125 309.43555 C 178.82336 309.43115 178.36092 310.03939 177.76758 311.31641 C 177.23557 312.46144 175.85894 313.79064 174.35156 314.61523 C 172.73365 315.5003 171.82617 316.40778 171.82617 317.14062 C 171.82617 318.5165 171.98274 318.52584 175.79883 317.39258 C 178.58696 316.56459 178.82579 316.34363 179.16797 314.27344 C 179.68457 311.14797 179.62773 309.44288 179.125 309.43555 z M 214.99414 309.96484 C 214.68477 309.96484 212.20402 310.96792 209.48242 312.19336 C 204.56442 314.40777 204.53468 314.43598 204.51953 316.65039 C 204.50643 318.57175 204.68899 318.87613 205.8418 318.86914 C 206.57707 318.86514 207.78037 318.70096 208.51562 318.50391 C 209.64841 318.20033 209.85156 317.74182 209.85156 315.49805 C 209.85156 313.30806 210.02912 312.88322 210.87891 313.04688 C 211.44403 313.15571 212.1698 314.0443 212.49023 315.02148 C 212.81065 315.99865 213.1468 316.90623 213.23828 317.03906 C 213.32978 317.17188 214.45888 316.807 215.74609 316.22656 L 218.08594 315.16992 L 216.82031 312.56836 C 216.12489 311.13696 215.3035 309.96484 214.99414 309.96484 z M 174.86328 310.56055 C 174.49297 310.56055 171.58692 310.98255 168.4043 311.49805 C 165.22167 312.01356 161.64451 312.28252 160.45508 312.0957 C 158.39174 311.7716 158.27554 311.84452 157.93555 313.68359 C 157.43041 316.41601 158.29777 319.05095 159.98438 319.9082 C 161.75421 320.80777 161.80073 320.8099 164.87891 320.02734 C 168.39082 319.13451 169.84004 317.98537 168.89258 316.84375 C 167.89798 315.64531 168.48043 314.90143 171.54492 313.46094 C 174.25239 312.18829 176.1151 310.56055 174.86328 310.56055 z M 193.2793 314.88281 C 191.92679 314.86794 187.86941 316.19759 187.87695 316.77344 C 187.88095 317.11415 188.04386 317.98566 188.23828 318.71094 C 188.57354 319.96151 188.68086 319.98425 190.30469 319.14453 C 191.24646 318.65753 192.45662 317.58793 192.99414 316.76758 C 193.53166 315.94722 193.83752 315.14223 193.67383 314.97852 C 193.61076 314.91545 193.47251 314.88494 193.2793 314.88281 z M 201.54297 315.99414 C 201.22033 315.95257 200.69073 316.09931 199.91992 316.40625 C 199.01079 316.76828 197.51402 317.33696 196.5957 317.67188 C 194.25591 318.52522 195.16122 319.47266 198.31641 319.47266 C 200.63711 319.47266 201.0431 319.27555 201.56445 317.9043 C 202.03929 316.65537 202.0807 316.06342 201.54297 315.99414 z M 218.92578 317.73047 C 218.03393 317.59528 214.01135 319.64557 214.01953 320.30469 C 214.03563 321.60045 214.75293 323.63086 215.19531 323.63086 C 215.44406 323.63086 216.64665 323.2131 217.86719 322.70312 C 219.91248 321.84855 220.05812 321.63238 219.7168 319.92578 C 219.51312 318.90736 219.21721 317.94572 219.06055 317.78906 C 219.03105 317.75957 218.98524 317.73948 218.92578 317.73047 z M 208.71875 320.72656 C 208.5325 320.72597 208.28452 320.78391 207.95898 320.87109 C 207.2028 321.0736 206.1168 321.24163 205.54492 321.24609 C 204.72672 321.25209 204.50391 321.76955 204.50391 323.66797 L 204.50391 326.08008 L 206.73242 325.89453 C 208.90708 325.71452 208.96438 325.64742 209.14648 323.10547 C 209.27901 321.2555 209.27749 320.72833 208.71875 320.72656 z M 191.53906 321.25195 C 191.03221 321.14884 190.29004 322.03335 190.60742 322.54688 C 190.85414 322.94608 191.1589 322.88581 191.47461 322.375 C 191.74277 321.94109 191.86217 321.48521 191.73828 321.36133 C 191.67927 321.30231 191.61147 321.26668 191.53906 321.25195 z M 195.34766 321.6875 C 194.24558 321.70045 194.04542 321.99122 193.91797 322.88867 C 193.74859 324.08129 193.98005 324.22461 196.07227 324.22461 C 197.44857 324.22461 198.72885 323.85177 199.16992 323.32031 C 200.15613 322.132 199.94728 321.99409 196.78125 321.75391 C 196.18298 321.70852 195.71501 321.68318 195.34766 321.6875 z M 212.01758 322.66992 C 211.90735 322.5921 211.78381 322.83524 211.58203 323.35156 C 210.94236 324.98836 210.93531 327.19531 211.57031 327.19531 C 211.86214 327.19531 212.2357 326.8452 212.40039 326.41602 C 212.56508 325.98682 212.55082 324.85871 212.36914 323.9082 C 212.22356 323.14665 212.12781 322.74774 212.01758 322.66992 z M 201.81836 324.26953 C 201.48379 324.31631 200.84613 325.09451 200.21094 326.44727 C 199.42343 328.12442 199.35481 328.73649 199.91406 329.0918 C 201.11998 329.85792 201.5325 329.64149 201.54102 328.23633 C 201.54502 327.50106 201.71116 326.29776 201.9082 325.5625 C 202.15571 324.63891 202.07858 324.23315 201.81836 324.26953 z M 220.66211 324.32617 C 220.58446 324.32306 220.4968 324.33836 220.39844 324.375 C 219.98996 324.52717 218.65318 325.01061 217.42773 325.44922 C 215.0111 326.3142 214.6459 327.38096 216.18359 329.08008 C 217.23139 330.23789 218.06475 330.41823 219.12109 329.71289 C 220.72057 328.64489 221.82685 324.37288 220.66211 324.32617 z M 195.03125 326.60156 C 192.9963 326.60156 192.59001 326.8148 192.2793 328.05273 C 191.91626 329.4992 192.30793 330.76172 193.11914 330.76172 C 193.35392 330.76172 194.13758 330.34676 194.86133 329.83984 C 195.58508 329.3329 196.45605 328.39658 196.79688 327.75977 C 197.36327 326.70142 197.2124 326.60156 195.03125 326.60156 z M 206.28516 328.38477 C 204.10364 328.38477 203.94006 328.50886 203.57422 330.45898 C 203.05411 333.23137 203.56408 334.32617 205.37695 334.32617 C 206.20416 334.32617 206.8832 334.25947 206.88672 334.17773 C 206.88972 334.09603 207.27899 332.75926 207.75 331.20703 L 208.60742 328.38477 L 206.28516 328.38477 z M 212.82227 329.36523 L 211.38672 330.71484 C 209.64511 332.35099 208.95693 334.7347 209.89844 335.86914 C 210.88391 337.05656 211.46833 336.93262 214.69922 334.85938 C 217.31189 333.18282 217.96602 331.94922 216.24219 331.94922 C 215.87406 331.94922 214.95361 331.36873 214.19727 330.6582 L 212.82227 329.36523 z M 220.38672 333.79688 L 216.88086 336.17773 L 213.375 338.55859 L 214.73242 339.68945 C 216.47447 341.14207 216.46018 341.14351 220.12109 339.30469 C 221.82584 338.44841 223.33505 337.64309 223.47461 337.51562 C 223.61418 337.38813 222.97558 336.50018 222.05664 335.54102 L 220.38672 333.79688 z M 258.47656 335.56641 C 258.09009 335.597 257.58955 335.71445 256.93945 335.88867 C 255.77911 336.19963 255.60156 336.64021 255.60156 339.21875 C 255.60156 342.00958 255.68352 342.16664 256.93945 341.83008 C 257.67471 341.63304 258.60909 341.4693 259.01758 341.46484 C 259.51162 341.45984 259.76172 340.46056 259.76172 338.48438 C 259.76172 336.16758 259.63599 335.47461 258.47656 335.56641 z M 262.75781 336.10938 C 262.41616 336.10938 262.13672 337.15989 262.13672 338.44531 C 262.13672 340.54811 262.3014 340.80395 263.77148 340.99219 C 265.79515 341.25133 266.29688 341.03578 266.29688 339.9082 C 266.29688 338.90137 263.69521 336.10937 262.75781 336.10938 z M 251.94141 336.75391 C 251.55493 336.7845 251.05244 336.90195 250.40234 337.07617 C 249.24244 337.38702 249.06641 337.82779 249.06641 340.40039 C 249.06641 342.86001 249.22624 343.30307 250.00586 343.00391 C 250.52276 342.80555 251.4591 342.64453 252.08594 342.64453 C 253.0575 342.64453 253.22461 342.20627 253.22461 339.67383 C 253.22461 337.35704 253.10084 336.66211 251.94141 336.75391 z M 245.74023 338.49609 C 245.27578 338.44163 244.59579 338.63492 243.60938 339.01367 C 242.66235 339.3773 241.89144 340.53356 241.13477 342.72656 C 240.53029 344.47848 238.70925 347.8796 237.08984 350.28516 C 235.47046 352.69072 234.22835 354.72066 234.32812 354.79492 C 234.77417 355.12689 239.31977 356.84555 239.82422 356.87305 C 240.13313 356.88985 241.11593 356.20408 242.00781 355.34961 C 242.89969 354.49511 243.49696 353.45279 243.33594 353.0332 C 243.17493 352.6136 243.32882 352.09464 243.67773 351.87891 C 244.02679 351.66317 244.3125 350.43238 244.3125 349.14453 C 244.3125 347.04298 244.16127 346.80273 242.82812 346.80273 C 241.76865 346.80273 241.3418 346.4811 241.3418 345.68164 C 241.3418 344.80874 241.93339 344.47242 244.01562 344.16016 L 246.68945 343.75977 L 246.68945 341.12305 C 246.68945 339.36622 246.51432 338.58686 245.74023 338.49609 z M 225.54883 339.05859 L 222.07812 340.9375 L 218.60742 342.81836 L 220.02344 343.90625 C 220.80173 344.5047 221.49793 345.00054 221.57031 345.00781 C 221.64271 345.01481 223.23097 344.34485 225.10156 343.51758 L 228.50391 342.01172 L 227.02539 340.53516 L 225.54883 339.05859 z M 239.18555 340.50586 C 238.78043 340.51646 237.9746 340.68292 237.11328 340.94727 C 235.63532 341.40088 234.53266 342.3665 233.33984 344.25195 C 232.41299 345.717 230.4933 348.34342 229.07227 350.08789 C 227.65124 351.83236 226.48828 353.41029 226.48828 353.5957 C 226.48828 353.78115 227.62484 353.92213 229.01367 353.9082 C 231.32943 353.885 231.72714 353.63777 233.82031 350.92383 C 236.13222 347.92626 239.89078 340.9943 239.44531 340.54883 C 239.41195 340.51546 239.32059 340.50232 239.18555 340.50586 z M 230.49414 343.83203 C 229.70914 343.83203 223.57826 346.81829 223.24023 347.36523 C 223.02752 347.70943 221.9782 347.99219 220.9082 347.99219 C 219.83822 347.99219 218.82316 348.13192 218.65234 348.30273 C 218.48152 348.47355 218.61447 349.81034 218.94922 351.27344 C 219.76803 354.85162 221.23294 354.81087 224.78711 351.11133 C 227.59159 348.19214 231.00982 343.83203 230.49414 343.83203 z M 254.91406 345.83789 C 253.99909 345.80804 253.85459 346.18212 253.59375 347.48633 C 252.80171 351.44656 253.04728 352.15039 255.22656 352.15039 C 257.09455 352.15039 257.27961 351.96919 257.98242 349.45898 C 258.39677 347.97908 258.63265 346.66781 258.50586 346.54492 C 258.37907 346.42204 257.30534 346.16893 256.11914 345.98242 C 255.61017 345.9024 255.21905 345.84784 254.91406 345.83789 z M 250.3125 346.00977 C 249.94024 345.97824 249.44626 346.0169 248.80469 346.0918 C 246.73873 346.333 246.68945 346.39978 246.68945 348.94727 C 246.68945 351.51367 246.72216 351.55664 248.69336 351.55664 C 250.57644 351.55664 250.71942 351.41207 251.08203 349.14453 C 251.45126 346.83548 251.42929 346.10434 250.3125 346.00977 z M 261.66992 346.80273 C 261.20459 346.80273 259.76172 351.04708 259.76172 352.41406 C 259.76172 353.02893 265.62804 352.75063 266.01953 352.11719 C 267.03692 350.47101 264.03484 346.80273 261.66992 346.80273 z M 214.50781 348.33398 C 214.34624 348.34195 214.17271 348.37169 213.98828 348.41992 C 212.72803 348.74949 212.62385 349.22862 213.19336 352.07617 C 213.50979 353.65831 213.82794 353.93359 215.33984 353.93359 C 217.06808 353.93359 217.10283 353.87525 216.69727 351.70508 C 216.23721 349.24321 215.63881 348.2782 214.50781 348.33398 z M 209.83789 349.51953 C 209.61196 349.53754 209.29973 349.74743 208.8125 350.08984 C 208.07724 350.60657 207.47461 351.55756 207.47461 352.20312 C 207.47461 353.4708 209.80672 354.72533 210.66602 353.91992 C 210.95801 353.64623 210.95801 352.50521 210.66602 351.29297 C 210.35253 349.99155 210.21444 349.48952 209.83789 349.51953 z M 246.6543 354.79492 C 245.96694 354.8202 245.45623 355.25667 244.38086 356.33203 C 243.36257 357.35035 242.53125 358.28821 242.53125 358.41602 C 242.53125 358.78218 245.72257 360.4189 246.48828 360.44531 C 246.8677 360.45831 247.87078 359.64605 248.7168 358.64062 C 250.70503 356.27774 250.65924 355.94157 248.24414 355.14453 C 247.54349 354.91329 247.06671 354.77976 246.6543 354.79492 z M 253.29297 356.84766 L 251.19531 359.10352 C 250.04201 360.34425 249.09086 361.53205 249.08203 361.74219 C 249.05663 362.34716 253.36323 363.97017 255.08398 364.00391 C 255.94262 364.02071 256.97367 363.63632 257.37695 363.15039 C 258.51525 361.77882 257.59825 359.50906 255.33984 358.11328 L 253.29297 356.84766 z "
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path356"
d="M 129.45898 283.82227 C 124.19111 283.82227 97.226212 286.4358 85.970703 288.03711 C 66.385425 290.82348 54.596911 294.03018 50.136719 297.7832 C 47.430234 300.06055 46.682937 302.87302 48.046875 305.65039 C 51.070689 311.80767 61.16899 314.28183 74.085938 312.0293 C 76.948069 311.5302 82.1303 310.43864 85.601562 309.60352 C 99.726021 306.20551 132.61133 296.11227 132.61133 295.17578 C 132.61133 294.91693 131.54789 294.38612 130.24609 293.99609 C 126.16464 292.77327 125.81448 290.27759 129.13477 286.05078 L 130.88477 283.82227 L 129.45898 283.82227 z M 153.88086 307.59375 C 153.65123 307.59175 150.84417 309.48736 147.64258 311.80664 C 136.72744 319.71377 119.95978 329.56205 111.22266 333.19922 C 106.74927 335.06145 106.23519 335.87388 108.25195 337.89062 C 109.83037 339.46904 112.15494 339.39461 117.52539 337.5918 C 125.49911 334.91511 133.59988 330.37958 143.90039 322.82617 C 152.55901 316.47677 155.7832 313.56384 155.7832 312.0918 C 155.7832 310.61615 154.50812 307.60071 153.88086 307.59375 z "
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path354"
d="M 135.44141 297.36914 C 134.50526 297.49109 130.57419 298.66901 125.92773 300.23633 C 103.40911 307.83221 78.175734 314.33019 68.216797 315.0957 C 63.261018 315.47662 62.962816 315.58206 60.714844 317.76367 C 58.328567 320.07946 57.341331 322.30597 57.972656 323.95117 C 59.053044 326.76662 69.388198 327.4386 81.009766 325.44727 C 97.22821 322.6683 110.43034 318.37312 129.5332 309.66406 L 141.01172 304.43164 L 138.92188 303.23828 C 137.01991 302.15131 135.36403 299.68749 135.62109 298.32812 C 135.67749 298.03001 135.69114 297.60428 135.65234 297.38281 C 135.64752 297.35513 135.57514 297.35172 135.44141 297.36914 z M 145.25586 305.39648 C 144.25512 305.43278 143.40371 305.74547 142.04492 306.43945 C 125.87979 314.69555 105.09469 322.60454 91.318359 325.74219 C 84.481038 327.29945 84.108857 327.46439 82.228516 329.75781 C 79.643907 332.91023 79.799209 334.93549 82.703125 335.92578 C 85.51351 336.88417 87.554706 336.86202 93.765625 335.80273 C 104.46502 333.97796 114.04747 330.06467 127.7168 321.9375 C 136.63834 316.63316 150.08422 307.46974 150.08008 306.69727 C 150.07808 306.3705 148.8549 305.88029 147.36133 305.60742 C 146.50997 305.45188 145.8563 305.3747 145.25586 305.39648 z "
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path554"
d="m 199.11809,192.88408 c 0.17757,0.25518 4.6432,11.59983 -15.85448,26.93702 -11.05615,6.67391 -23.18154,8.26922 -26.902,3.53943 -1.19257,-1.51612 -1.33751,-3.18853 -0.52409,-6.0476 0.17965,-0.63147 -0.59544,-0.98407 -2.95207,-1.34296 -5.8247,-0.88702 -13.61661,-5.47597 -13.80607,-8.13091 -0.15236,-2.13494 0.23706,-3.40428 1.4584,-4.7537 0.85593,-0.94571 1.04689,-1.50313 0.57303,-1.67276 -2.28455,-0.81785 -8.70771,-5.61255 -11.79759,-8.80655 -6.52015,-6.7399 -9.33238,-14.38824 -6.4582,-17.56416 0.9013,-0.99594 1.56529,-1.17369 3.33006,-0.8915 l 2.20429,0.35249 -1.37316,-3.12123 c -2.25916,-5.13512 -4.41136,-11.84053 -4.99501,-15.5625 -0.94343,-6.01622 0.83037,-9.2453 5.07866,-9.2453 1.07104,0 1.94734,-0.24626 1.94734,-0.54724 0,-0.30099 -0.51588,-2.77415 -1.1464,-5.49591 -1.65867,-7.15997 -2.59797,-15.60012 -2.14213,-19.24845 0.81474,-6.52105 4.93662,-8.25511 9.2854,-3.90634 1.26066,1.26069 2.38323,2.20106 2.49457,2.08972 0.11134,-0.11133 -0.14673,-2.68017 -0.57345,-5.70852 -1.14243,-8.10728 -1.28545,-20.063531 -0.26312,-21.995646 0.9711,-1.835291 3.61743,-3.075676 5.7089,-2.675872 0.81952,0.156662 1.49004,0.06062 1.49004,-0.213466 0,-1.02692 -7.47717,-16.6317 -12.63583,-26.370845 C 116.12123,33.910636 100.17879,11.862466 90.297362,5.8433485 86.992583,3.8302871 84.015573,4.2485877 82.43531,6.9480302 78.548218,13.588095 83.969156,40.643448 94.578126,67.551571 c 2.725184,6.912047 7.678264,17.778926 9.749254,21.389493 1.80453,3.146053 1.93085,4.171542 0.50814,4.125196 -0.58727,-0.01915 -2.84973,-2.38911 -5.198847,-5.445876 C 89.372075,74.263486 77.631799,62.243111 69.95013,57.225543 56.393854,48.37074 51.547119,55.67936 58.062767,75.151093 c 5.134723,15.344925 16.304298,33.502947 29.983739,48.743647 2.94337,3.27929 5.351586,6.24783 5.351586,6.59676 0,1.27966 -1.854468,0.56079 -6.698211,-2.59652 -9.92355,-6.4685 -19.411099,-10.85519 -26.489584,-12.24779 -4.849011,-0.95398 -7.946837,-0.12371 -9.656953,2.58823 -1.804379,2.86143 -1.31257,9.07742 1.131411,14.3001 4.275991,9.13758 16.006197,23.644 29.051621,35.92733 8.491973,7.99588 8.545397,9.0772 0.287168,5.81156 -10.948714,-4.32954 -20.337913,-5.81087 -23.538643,-3.71366 -8.285752,5.42901 10.688797,26.22304 33.684881,36.91493 3.512783,1.63325 6.386995,3.26442 6.387136,3.62482 1.51e-4,0.42079 -2.497793,0.77906 -6.981053,1.00124 -8.163666,0.40459 -12.64502,1.58429 -14.375556,3.78431 -1.717925,2.18399 -1.522885,3.97661 0.710049,6.526 3.785072,4.3215 16.412963,8.61612 31.489182,10.70917 4.00361,0.55581 7.62477,1.31668 8.04706,1.69082 0.6068,0.53759 0.11455,1.16888 -2.34748,3.01052 -1.71339,1.28166 -3.633,3.21997 -4.26576,4.30736 -1.13982,1.95873 -1.1396,1.99183 0.0242,3.56492 0.64614,0.87331 1.95287,1.97994 2.90383,2.45917 2.36378,1.19122 13.91876,1.53584 20.71364,0.61779 6.11168,-0.82574 15.65472,-3.16958 18.14193,-4.45577 2.0215,-1.04536 2.62658,-0.50272 3.24203,2.9075 0.53124,2.94362 3.19374,5.70751 5.48399,5.69283 0.92378,-0.006 3.12602,-0.80803 4.89385,-1.78246 1.76782,-0.97443 3.29976,-1.77169 3.4043,-1.77169 0.1045,0 0.73567,1.06948 1.40252,2.37661 1.38369,2.71224 2.62059,2.99336 4.98551,1.13311 3.40422,-2.67775 9.21928,-12.86615 11.90598,-20.86012 0.8752,-2.60405 1.82731,-4.41289 2.38352,-4.52826 2.91779,-0.6052 -2.362,12.95713 -8.70384,22.35776 -4.55721,6.75521 -8.41807,8.37787 -11.42661,4.80243 l -1.55524,-1.84829 -2.80519,1.19354 c -1.54286,0.65645 -3.30223,1.28764 -3.90974,1.40267 -0.79489,0.15052 -1.6544,1.75048 -3.06591,5.70714 -4.83123,13.54262 -12.87132,23.63503 -22.69765,28.49145 l -4.53351,2.2406 2.33239,0.70365 c 1.28281,0.38702 3.33501,0.72421 4.56046,0.74933 2.52903,0.0518 2.78322,0.76451 1.23486,3.46236 -1.84339,3.21194 0.0383,4.68613 8.16283,6.39518 5.80934,1.22204 6.9292,1.15342 7.40894,-0.45399 0.21943,-0.73526 0.79008,-1.95631 1.26808,-2.71344 0.67393,-1.06744 1.05023,-1.2263 1.67553,-0.70735 0.67811,0.56278 0.67178,0.99141 -0.0397,2.69436 -1.58501,3.79348 -0.85862,6.39888 2.12462,7.62057 1.41758,0.58052 8.52564,-0.12166 14.63876,-1.44611 h 3e-5 c 7.54827,-1.6354 19.23638,-5.54794 23.98115,-8.02757 4.54428,-2.37487 10.23104,-6.89777 12.99118,-10.33241 1.60634,-1.99885 1.83034,-2.6017 1.23383,-3.32045 -0.92129,-1.11008 -0.56766,-1.45237 1.90275,-1.8417 3.20924,-0.50579 5.11565,-1.81475 6.78045,-4.65553 1.62084,-2.76576 2.44724,-3.27078 2.99905,-1.83278 0.76697,1.99867 -4.05144,7.63676 -7.20237,8.42759 -0.81095,0.20354 -1.47448,0.74134 -1.47448,1.19509 0,1.28614 -8.05402,9.44803 -11.7904,11.9483 l -3.36049,2.24874 4.6701,0.17472 c 4.26399,0.15952 4.98732,0.0107 8.31814,-1.71318 9.54283,-4.93849 16.20807,-10.68155 21.83179,-18.81126 l 2.97978,-4.3076 h -3.04988 c -2.5837,0 -3.01975,-0.15894 -2.85267,-1.03977 0.14462,-0.76242 0.88236,-1.08912 2.76585,-1.22483 2.12399,-0.15305 2.74022,-0.48666 3.5598,-1.92724 0.54514,-0.95819 1.32537,-1.74385 1.73385,-1.74593 0.92066,-0.004 0.98064,2.4914 0.0814,3.39056 -0.94288,0.94288 -0.1149,1.95306 1.60079,1.95306 3.78409,0 10.37532,-9.65414 12.37231,-18.12165 1.55183,-6.5799 1.59933,-8.74788 0.22782,-10.39766 -0.75159,-0.90411 -1.3317,-1.20982 -1.48241,-0.78121 -1.19175,3.38944 -6.30522,7.90447 -8.95708,7.90882 -3.72689,0.006 -7.46511,-3.59175 -6.45821,-6.2157 0.47158,-1.2289 2.05942,-0.49914 2.28349,1.04946 0.24212,1.67348 2.81699,3.07982 4.75037,2.59457 2.09367,-0.52548 4.78634,-3.43452 6.43275,-6.94966 0.76087,-1.62452 1.68729,-2.95366 2.0587,-2.95366 0.37141,0 1.52336,1.20316 2.55987,2.67369 1.03653,1.47053 2.11687,2.67369 2.40075,2.67369 0.28389,0 1.02466,-1.1332 1.64617,-2.51822 0.95022,-2.11759 1.11928,-3.84269 1.06265,-10.84328 -0.0583,-7.20778 -0.28253,-9.04096 -1.6706,-13.6594 -2.61314,-8.69462 -6.59733,-14.69368 -12.05893,-18.15732 -2.30213,-1.45997 -2.78882,-1.5528 -5.52943,-1.05468 -4.27096,0.77628 -8.59885,0.42137 -8.59885,-0.70514 0,-0.68525 1.09856,-0.98188 4.75321,-1.28346 6.13384,-0.50614 9.93929,-1.71742 14.30368,-4.55288 6.7837,-4.40724 11.01636,-10.54264 11.8887,-17.23307 l 0.4127,-3.16531 -4.08362,2.73876 c -4.05292,2.71814 -10.21028,5.08028 -13.22614,5.07392 -5.13857,-0.0109 -11.17956,-4.46251 -12.49275,-9.20604 -1.52475,-5.50778 0.0952,-11.19685 3.90952,-13.72942 1.05624,-0.70131 6.13507,-2.28694 11.43389,-3.5697 7.07001,-1.71154 9.53444,-2.53929 9.53706,-3.20332 0.007,-1.87311 -2.98217,-11.63869 -4.39896,-14.36948 -1.53393,-2.95659 -5.0127,-7.60998 -5.68903,-7.60998 -0.21242,0 -0.83543,1.40368 -1.38448,3.11929 -1.69895,5.3088 -4.68349,10.03937 -7.13723,11.31276 -2.90004,1.50498 -4.22867,1.09901 -9.04614,-2.76411 -18.75959,-15.0433 -37.91915,-15.48663 -47.12177,-1.09038 -4.28471,6.70286 -6.5197,19.08026 -4.87256,26.98445 1.5935,7.64688 8.00306,16.27259 15.87432,21.36306 2.0735,1.34094 3.67624,2.48734 3.73093,2.83312"
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path310"
d="m 196.57901,196.60283 c -0.78125,0.49647 -3.91909,2.38927 -7.80291,4.30644 -8.17897,4.03739 -15.72252,4.3481 -22.65897,0.9333 -5.49611,-2.70572 -11.58972,-8.60163 -14.0432,-13.58757 -1.92585,-3.91372 -1.93429,-3.97017 -1.91784,-12.85402 0.0137,-7.39711 0.36931,-11.00594 2.07953,-21.10314 3.82082,-22.55826 2.68276,-35.9593 -4.81312,-56.675129 -1.49548,-4.132944 -2.1036,-5.123568 -3.50053,-5.702184 -2.38401,-0.987492 -4.31518,-0.552928 -5.242,1.179602 -1.03139,1.928029 -0.55698,12.569691 1.07199,24.046051 0.64804,4.56556 1.17825,8.7766 1.17825,9.3579 0,1.994 -1.50624,1.05453 -3.4086,-2.12599 -2.29714,-3.8406 -6.30148,-7.62443 -7.55833,-7.14212 -1.08443,0.41613 -2.09786,3.82572 -2.09761,7.05716 2.8e-4,3.57099 1.57264,13.29425 3.24657,20.07639 1.65121,6.69012 1.3898,7.80626 -1.36834,5.8423 -2.35365,-1.67595 -4.0179,-1.59155 -5.23468,0.26548 -0.93458,1.42633 -0.93585,1.82442 -0.0194,6.04735 0.53955,2.48629 2.47433,8.14921 4.29952,12.58429 1.82519,4.43506 3.46317,8.53164 3.63996,9.10352 0.46681,1.51011 -1.13542,1.31899 -3.7357,-0.44561 -2.64799,-1.79697 -4.19066,-1.89143 -4.69966,-0.28775 -1.73945,5.48054 11.45898,20.14969 20.05561,22.2904 2.16598,0.53937 2.09972,2.1233 -0.14426,3.44886 -2.57813,1.52294 -3.2793,3.10908 -2.14183,4.84509 1.49038,2.27462 8.0676,5.14488 13.43675,5.86374 2.6086,0.34925 4.74292,0.82974 4.74292,1.06771 0,0.23799 -0.56295,1.38684 -1.25101,2.55299 -4.93993,8.37258 11.00629,8.1899 24.31454,-0.27855 14.6156,-12.71577 13.92388,-20.02281 13.57235,-20.66651"
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path278"
d="M 226.32617 111.53516 C 224.43933 111.5093 221.81788 111.91418 220.25 112.62891 C 218.94287 113.22477 216.98589 114.46037 215.90234 115.375 C 214.09882 116.89737 213.56499 117.02719 209.58594 116.92188 C 198.12622 116.61854 188.04196 121.92828 180.12891 132.42969 C 175.78391 138.19594 172.77825 144.33801 171.15039 150.77539 C 170.10875 154.89448 169.95559 156.88505 170.19727 163.16016 C 170.53515 171.93332 172.12463 177.56803 176.35547 184.99219 C 177.78579 187.50208 178.95508 189.79044 178.95508 190.07812 C 178.95508 190.36579 177.95396 191.01947 176.72852 191.5293 C 173.61581 192.82428 167.18277 197.12318 166.77734 198.17969 C 166.33557 199.33094 167.02416 199.96034 169.82031 200.95703 C 173.53289 202.28037 179.50547 202.04331 184.05859 200.39062 C 187.66133 199.08291 195.5918 194.32146 195.5918 193.4668 C 195.5918 193.27343 194.10479 192.09173 192.28711 190.83984 C 182.51508 184.10959 176.58008 173.27548 176.58008 162.16992 C 176.58008 148.23701 182.76732 136.0933 192.32422 131.27344 C 201.88962 126.44929 217.89829 129.3815 229.20508 138.02734 C 230.81506 139.25841 233.28927 141.14909 234.70312 142.23047 C 236.11698 143.31186 237.68902 144.19727 238.19727 144.19727 C 239.90894 144.19727 242.87977 140.23111 244.79102 135.39453 C 245.83502 132.75256 246.68945 130.03596 246.68945 129.35547 C 246.68945 128.48775 245.63368 127.45757 243.15234 125.9082 C 241.2064 124.69316 239.60071 123.28553 239.58594 122.7793 C 239.57074 122.25902 240.43922 121.54019 241.58203 121.12695 C 244.14482 120.20023 246.68945 118.2147 246.68945 117.14258 C 246.68945 114.87129 236.0988 114.54648 230.51953 116.64648 C 228.97899 117.22634 227.52857 117.50904 227.29492 117.27539 C 227.06127 117.04174 227.3228 115.90036 227.87695 114.73828 C 228.43111 113.5762 228.73106 112.37662 228.54297 112.07227 C 228.32592 111.72108 227.45828 111.55067 226.32617 111.53516 z M 151.2207 247.25391 C 150.51458 247.28813 149.51989 247.57111 148.07422 248.0625 L 144.84375 249.16211 L 144.11328 254.16406 C 143.02437 261.63099 140.61856 272.39211 139.19727 276.15625 C 138.40296 278.25992 136.53024 281.09871 134.10156 283.88086 C 128.78451 289.97179 128.8646 290.26695 134.95898 287.06445 C 139.43194 284.71398 143.98383 280.55371 147.93164 275.20703 C 151.25127 270.71111 153.10111 267.09539 155.50391 260.40234 L 157.40625 255.10352 L 155.46094 253.1582 C 154.39161 252.08886 153.33378 250.37918 153.10938 249.35742 C 152.77453 247.83288 152.39757 247.19686 151.2207 247.25391 z "
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path276"
d="m 270.09487,232.38027 c 0.61648,-1.60653 0.40403,-3.56811 -0.80836,-7.46351 -0.64294,-2.0658 -0.95684,-3.96814 -0.69755,-4.22743 0.2593,-0.2593 2.32271,-0.0391 4.58538,0.48932 4.64393,1.08455 8.82323,0.85402 10.24218,-0.56493 0.87788,-0.87788 0.75384,-1.16072 -1.52734,-3.48246 -1.36556,-1.38982 -4.21989,-3.59644 -6.34297,-4.90357 -4.20018,-2.58596 -5.1487,-4.45167 -2.26848,-4.46202 5.05113,-0.0182 19.41211,-1.35982 22.71308,-2.12195 4.24636,-0.98039 8.57673,-3.23601 9.16733,-4.7751 0.90003,-2.34542 -3.50981,-4.85414 -12.3383,-7.01918 -7.11693,-1.74531 -7.61933,-2.96592 -1.4468,-3.51508 9.2214,-0.8204 21.38855,-4.14839 27.95275,-7.6457 3.20906,-1.70974 8.16836,-6.2874 8.16836,-7.53978 0,-2.96351 -9.17682,-5.90022 -21.98364,-7.03509 -7.20433,-0.63842 -6.779,-1.55322 2.13639,-4.59496 7.93517,-2.7073 18.64418,-7.76399 24.60047,-11.61608 9.51495,-6.15359 16.66709,-13.51065 16.84387,-17.32646 0.081,-1.74895 -0.13475,-2.00813 -2.28714,-2.74713 -3.13331,-1.0758 -11.1488,-0.54521 -21.04473,1.39304 -8.73882,1.71162 -8.95997,1.72732 -8.95997,0.63635 0,-0.49566 5.69732,-3.63025 14.08628,-7.75012 7.74746,-3.80482 16.4647,-8.27892 19.37164,-9.94244 6.5549,-3.75108 13.48844,-9.20342 15.17604,-11.93401 1.69896,-2.74898 1.70223,-6.108098 0.007,-7.015445 -3.88084,-2.076968 -14.327,-0.954416 -28.56574,3.069665 -9.26561,2.61861 -9.38029,2.63665 -9.38029,1.47497 0,-0.48682 2.58308,-2.079778 6.09005,-3.755658 13.17792,-6.297347 26.96832,-15.875104 36.26909,-25.189718 6.21132,-6.220564 9.19475,-11.087304 8.49818,-13.86269 -1.40257,-5.588278 -18.71875,-1.677968 -47.29242,10.679504 -22.1397,9.574921 -34.57743,16.506905 -42.58148,23.732187 l -3.6645,3.307955 0.65214,2.224212 c 0.92578,3.157528 0.86487,13.507768 -0.10226,17.375118 -0.44945,1.7973 -1.44749,4.70479 -2.21786,6.46106 -0.77037,1.75628 -1.40068,3.29364 -1.40068,3.41638 0,0.12273 0.66155,0.22315 1.47011,0.22315 1.70104,0 3.28736,2.50307 3.27605,5.16931 -0.0108,2.54852 -1.41766,7.25285 -3.24431,10.84848 -1.06976,2.10574 -1.41003,3.32276 -0.97005,3.46943 2.59933,0.86644 3.21502,5.18681 1.33037,9.33539 -0.59537,1.31056 -2.46108,4.03938 -4.14602,6.06404 -1.68494,2.02465 -3.06352,3.79318 -3.06352,3.93003 0,0.13687 0.78059,0.40495 1.73466,0.59577 4.4599,0.89198 1.76327,8.35173 -4.33129,11.98173 -0.84995,0.50625 -0.89405,0.86433 -0.29805,2.42037 0.38471,1.00442 0.52112,2.53688 0.30311,3.40548 -0.53326,2.12464 -3.54385,5.459 -7.07772,7.83886 -1.65945,1.11752 -2.62631,2.12245 -2.25994,2.34887 1.09431,0.67633 0.70743,2.79916 -0.8924,4.89664 -1.75445,2.3002 -4.89855,4.42615 -8.10032,5.47718 l -2.20615,0.72421 2.38077,3.48782 c 3.82126,5.59816 4.97704,8.98987 7.45323,21.87191 0.4538,2.36086 6.22901,4.1302 6.99192,2.14208 z"
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path264"
d="M 282.625 99.369141 C 281.4061 99.430341 275.03255 108.49219 272.22852 114.15039 C 269.28732 120.08543 268.91095 121.39313 267.17188 131.71289 C 266.64956 134.81223 265.16955 140.58393 263.88281 144.53906 C 261.23347 152.68253 261.03579 154.02766 262.58203 153.43164 C 263.15391 153.21121 266.35044 152.87518 269.68359 152.68555 C 276.83104 152.27894 278.77344 153.01596 278.77344 156.13086 C 278.77344 158.37556 279.59343 157.94413 281.1582 154.87695 L 281.1582 154.875 C 282.34813 152.54254 282.77593 148.35547 281.82422 148.35547 C 281.5415 148.35547 280.63167 148.89135 279.80078 149.54492 C 276.75246 151.94273 275.72314 150.58752 277.93359 147.08594 C 282.26157 140.22996 284.77876 132.94824 283.8418 129.99609 C 283.33994 128.41491 282.10226 128.41395 279.88477 129.99414 C 278.92407 130.67822 277.77132 131.09734 277.32422 130.92578 C 276.71088 130.69042 277.23234 129.18266 279.44727 124.78125 C 282.58074 118.55477 284.11581 112.77675 284.07617 107.36133 C 284.04487 103.10012 283.36072 99.332201 282.625 99.369141 z M 275.99219 167.62109 C 275.19688 167.62058 274.23437 167.74714 273.19141 168.00977 C 269.58256 168.91847 266.29688 172.42343 266.29688 175.36328 C 266.29688 180.31323 264.27036 186.22859 261.14844 190.39258 C 259.50196 192.58863 259.65013 192.71196 262.31445 191.35547 C 269.90962 187.48853 273.49023 182.2956 270.45508 179.54883 C 268.71309 177.97234 268.99066 177.0076 271.48633 175.96484 C 274.82321 174.5706 278.17969 170.89103 278.17969 168.62695 C 278.17969 167.97408 277.3177 167.62195 275.99219 167.62109 z M 258.92188 193.92773 C 258.49721 193.84218 257.03699 194.64465 255.20117 195.99609 C 253.21563 197.45777 250.75566 198.99885 249.73438 199.42188 C 247.47337 200.35843 247.43514 200.69086 249.44141 201.9082 C 251.26861 203.01687 254.68515 202.49431 257.66406 200.65039 C 260.25682 199.04548 262.92816 196.09148 262.46484 195.3418 C 262.24646 194.98847 261.43646 194.70117 260.66602 194.70117 C 259.89557 194.70117 259.16391 194.39406 259.03906 194.01953 C 259.02257 193.97006 258.98254 193.93996 258.92188 193.92773 z "
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path558"
d="m 272.00977,155.01172 c -6.27044,-0.27214 -28.70069,4.43537 -32.33008,6.78516 -2.13289,1.38088 -3.68115,4.40959 -3.6836,7.20703 -0.002,3.0063 -0.26493,2.96336 7.92579,1.29882 11.31031,-2.2985 21.60791,-6.71987 28.61328,-12.2832 l 3.56445,-2.83008 z"
style="fill:#ffffff;stroke-width:0.59415245" />
<path class="color" onclick="playSound()"
id="path258"
d="m 274.54492,160.08789 c -0.31995,-0.0137 -1.70353,0.74795 -3.34765,1.86133 -7.41008,5.01796 -16.96137,8.75781 -27.68165,10.83594 -3.28565,0.63692 -6.10329,1.28687 -6.26171,1.44531 -0.63233,0.63232 2.23066,3.61662 4.71679,4.91601 3.45132,1.80385 7.66694,1.46413 12.69141,-1.02343 1.98778,-0.98412 5.484,-3.27275 7.77148,-5.08399 3.97771,-3.14955 12.18164,-11.8342 12.18164,-12.89648 0,-0.0349 -0.0246,-0.0527 -0.0703,-0.0547 z"
style="fill:#ffffff;stroke-width:0.59415245" />
<path
id="path308"
d="M 113.61133 92.560547 C 112.70205 92.502376 112.05741 92.746651 110.94141 93.347656 C 107.16432 95.381756 106.1159 100.43569 107.96875 107.67969 C 108.98521 111.65372 113.5601 121.19861 117.14258 126.81836 C 118.44457 128.86076 119.79331 130.53125 120.13867 130.53125 C 121.68807 130.53125 121.18678 128.57552 118.62109 124.60938 C 110.50859 112.06875 107.17929 99.226217 111.19727 95.972656 C 112.92933 94.570109 114.56695 94.594876 117.46094 96.070312 C 120.19852 97.466018 121.32422 97.572228 121.32422 96.435547 C 121.32422 95.30651 118.94955 93.849419 115.69336 92.978516 C 114.7984 92.739152 114.1569 92.595449 113.61133 92.560547 z M 315.9043 99.105469 C 315.34261 99.115097 314.66812 99.160824 313.82812 99.230469 C 309.07257 99.624749 307.77057 100.09821 308.0293 101.34375 C 308.23325 102.32547 308.46155 102.33953 313.04297 101.64453 C 321.50675 100.36059 320.11789 105.51058 310.25 111.99609 C 308.13377 113.38693 303.66249 115.92123 300.31445 117.62695 C 296.10067 119.77373 294.22661 121.04783 294.22461 121.76758 C 294.22314 122.33944 294.53455 122.80859 294.91602 122.80859 C 295.92889 122.80859 308.82383 115.88942 312.64062 113.29883 C 320.38652 108.04137 322.9262 103.06741 319.32422 100.20703 C 318.25806 99.360388 317.58935 99.076585 315.9043 99.105469 z M 100.87109 126.74023 C 96.374868 126.88565 92.795194 132.77797 93.720703 138.50781 C 94.513923 143.41861 99.780491 151.86996 106.89258 159.64453 C 108.53674 161.44184 110.64439 163.78169 111.57617 164.84375 C 113.29663 166.80475 114.42917 167.24216 115.07617 166.19531 C 115.27317 165.87655 112.90125 162.78175 109.80664 159.31836 C 99.375374 147.64406 95.250267 140.2634 96.076172 134.75586 C 96.540529 131.65933 98.861865 129.11201 101.74609 128.53516 C 104.33732 128.01692 103.67087 126.64973 100.87109 126.74023 z M 305.67773 129.94727 C 302.53509 129.95734 301.07177 130.5864 301.46289 131.75977 C 301.64303 132.30019 302.78593 132.48682 305.28516 132.38477 C 308.02861 132.27281 309.16525 132.49384 310.21484 133.34375 L 311.58008 134.44922 L 309.95117 136.38477 C 306.94915 139.95248 297.9357 145.33594 291.36719 147.48438 C 289.09642 148.2271 288.2793 148.78944 288.2793 149.61328 C 288.2793 151.09361 288.69617 151.04481 294.17578 148.93164 C 299.58441 146.84586 307.92707 141.98986 310.68359 139.32227 C 315.75044 134.4189 313.34878 129.92267 305.67773 129.94727 z M 251.48633 144.17578 C 250.41894 144.20477 249.3541 144.69772 248.51562 145.76367 C 246.69496 148.07826 246.89546 151.03024 249.01953 153.1543 C 251.13912 155.27391 252.81551 155.35637 254.73828 153.43359 C 255.81136 152.36052 256.19531 151.33338 256.19531 149.54492 C 256.19531 146.2916 253.83459 144.11201 251.48633 144.17578 z M 218.54492 148.30859 C 216.74834 148.30454 215.01469 149.55455 214.33594 151.78125 C 213.78359 153.59325 214.99356 157.0579 216.56445 158.1582 C 218.29036 159.36708 219.49887 159.28225 221.35742 157.82031 C 223.44785 156.17598 223.59493 151.82307 221.63086 149.73242 C 220.72297 148.76602 219.62287 148.31102 218.54492 148.30859 z M 293.14648 161.54102 C 291.17162 161.76908 290.99905 163.42866 292.92188 163.70117 C 296.17576 164.16235 294.57446 167.94282 290.33008 169.82031 C 288.89827 170.45367 286.18271 171.16483 284.29688 171.40039 C 281.59468 171.73794 280.82186 172.06855 280.65039 172.95898 C 280.44848 174.00737 280.72179 174.06176 284.41602 173.7168 C 291.66147 173.0402 297.18245 169.33219 297.18945 165.14062 C 297.19266 163.2061 295.0726 161.3186 293.14648 161.54102 z M 99.185547 173.37305 C 97.41747 173.36662 95.602018 173.61594 94.271484 174.17188 C 89.8194 176.03207 90.159657 180.90811 95.042969 185.21484 C 99.189764 188.87204 105.01631 191.52226 111.86133 192.86523 C 116.36236 193.74831 121.32422 193.63868 121.32422 192.65625 C 121.32422 192.08237 120.39665 191.6855 118.50195 191.44727 C 107.61752 190.07871 101.22195 187.65498 96.542969 183.12305 C 93.016526 179.70743 92.598919 178.02098 94.902344 176.51172 C 96.129669 175.70754 97.230062 175.60169 100.89258 175.93359 C 105.00442 176.30619 105.36168 176.2508 105.17383 175.27539 C 104.94772 174.1013 102.13234 173.38376 99.185547 173.37305 z M 282.97266 185.78711 C 281.40041 185.78711 281.37059 187.37112 282.93359 187.86719 C 284.80541 188.46128 284.32595 189.73652 281.86133 190.72266 C 279.19498 191.78952 273.42667 192.91797 270.64258 192.91797 C 268.7528 192.91797 268.042 193.86793 269.11914 194.95117 C 270.38144 196.22061 283.10377 193.428 285.35938 191.38672 C 287.77058 189.20461 286.31443 185.78711 282.97266 185.78711 z M 211.01367 200.04688 C 209.82965 200.04687 209.6819 202.01444 210.7207 203.94336 C 212.07553 206.45912 214.51808 207.53059 216.95898 206.67969 C 218.33587 206.19971 219.13596 206.25465 220.39258 206.91016 C 222.34377 207.92799 223.2111 207.97748 224.73828 207.16016 C 226.16789 206.39506 227.87046 203.19231 227.44141 202.07422 C 226.99164 200.90213 225.30078 201.02378 225.30078 202.22852 C 225.30078 203.34794 223.64381 205.39453 222.73828 205.39453 C 222.41129 205.39453 221.26834 204.72712 220.19727 203.91016 C 217.99255 202.22854 216.98242 202.03112 216.98242 203.28125 C 216.98242 205.76156 213.62985 204.86326 212.46289 202.07031 C 211.99816 200.95807 211.34631 200.04688 211.01367 200.04688 z M 267.72461 203.03516 C 267.27332 203.10598 266.89062 203.62558 266.89062 204.54297 C 266.89062 208.59283 264.35252 209.38726 259.41602 206.88281 C 255.90025 205.09914 255.60156 205.07061 255.60156 206.5293 C 255.60156 207.54937 258.04382 209.11591 261.54297 210.33789 C 263.05286 210.86518 265.72528 210.77184 266.88281 210.15234 C 268.23102 209.4308 269.49125 205.85072 268.97266 204.2168 C 268.69531 203.34294 268.1759 202.96434 267.72461 203.03516 z M 107.38086 203.08789 C 106.00036 203.14403 104.35384 203.89225 103.15039 205.0957 C 101.30741 206.93874 101.26909 209.90308 103.05469 212.55273 C 104.89459 215.28296 107.50138 216.66012 112.56445 217.57812 C 117.08322 218.39742 129.82213 218.60521 135.875 217.95703 C 138.40145 217.68647 139.48371 217.30898 139.60742 216.6582 C 139.7603 215.85407 138.19277 215.74518 126.83984 215.76758 C 116.13014 215.78872 113.31563 215.61369 110.53125 214.75195 C 104.37318 212.8461 102.12628 208.00971 106.40625 205.87305 C 109.23432 204.46121 109.85889 203.73672 108.64648 203.27148 C 108.27196 203.12776 107.84103 203.06918 107.38086 203.08789 z M 255.48828 220.27148 C 254.96544 220.24136 254.26819 220.96887 253.8125 222.34961 C 253.43121 223.50492 252.49711 224.85699 251.73633 225.35547 C 249.92395 226.54299 246.64158 225.94306 244.59766 224.04883 C 243.75324 223.26625 242.67647 222.625 242.20312 222.625 C 239.59911 222.625 243.52278 227.20396 246.78906 227.97656 C 249.70144 228.66547 250.09988 228.64796 252.31445 227.72266 C 254.49744 226.81054 256.19531 224.2021 256.19531 221.76367 C 256.19531 220.77686 255.89493 220.29491 255.48828 220.27148 z M 138.70312 222.62695 C 137.21865 222.62913 130.93148 226.50482 128.30469 229.03711 C 125.68191 231.56552 125.34256 233.9266 127.39648 235.36523 C 129.35418 236.73645 135.98315 236.52698 143.33398 234.85938 C 150.77546 233.17119 154.20918 231.8448 153.8418 230.80273 C 153.50741 229.85427 153.1334 229.89923 146.24414 231.72266 C 136.04691 234.42164 129.26001 234.84831 128.58789 232.83203 C 128.24617 231.80678 131.19419 229.23748 135.78906 226.55664 C 139.59978 224.33331 140.86835 222.62495 138.70312 222.62695 z M 235.60938 224.06836 C 234.94521 224.02335 234.00767 224.30143 233.13086 224.92578 C 228.993 227.87219 222.81004 228.00731 220.21484 225.20703 C 218.74555 223.62165 217.57617 223.76834 217.57617 225.53906 C 217.57617 227.04358 219.33012 228.44021 222.0625 229.11328 C 223.35326 229.4313 225.74326 229.55462 227.375 229.38672 C 230.43793 229.07155 236.03365 226.45981 236.45117 225.15039 C 236.66458 224.48109 236.27354 224.11337 235.60938 224.06836 z M 231.27148 229.85352 C 230.61961 229.8223 230.06629 230.85837 229.50391 233.0918 C 228.53691 236.93212 226.81829 240.10408 224.87109 241.64062 C 223.56798 242.66894 222.68227 242.88212 220.66016 242.65625 C 218.21896 242.38355 218.03047 242.47691 216.66211 244.64453 C 214.59509 247.9189 211.41823 250.92043 209.51367 251.39844 C 208.3007 251.70288 207.41312 251.47696 206.14453 250.53906 C 204.09844 249.02632 202.34897 249.33606 203.26562 251.04883 C 203.59255 251.65966 204.7404 252.59639 205.81641 253.13086 C 209.34225 254.88216 213.4529 252.93897 217.2793 247.71094 C 218.72083 245.74137 219.43463 245.26963 221.01172 245.24023 C 224.08713 245.18299 226.83149 243.7247 228.52734 241.24805 C 230.55699 238.28391 232.80227 231.07961 231.95898 230.23633 C 231.71567 229.99301 231.48878 229.86392 231.27148 229.85352 z M 178.93555 229.90234 C 178.57873 229.9733 178.16422 230.39448 177.55859 231.24023 C 176.85658 232.22059 175.02909 234.31486 173.49805 235.89258 C 169.78448 239.7194 168.44346 239.56439 166.67188 235.10352 C 165.30411 231.65948 163.49808 230.35512 163.52148 232.83008 C 163.53891 234.67282 165.65343 239.2514 166.9375 240.22656 C 170.03196 242.57662 176.20789 238.6483 179.53125 232.2168 C 180.09217 231.13129 180.09493 230.66287 179.54492 230.13672 C 179.34289 229.94343 179.14964 229.85977 178.93555 229.90234 z M 232.5918 249.02344 C 232.01126 248.9872 231.21746 249.16184 230.31055 249.63477 C 229.35168 250.1348 227.96573 250.54487 227.23047 250.54688 C 225.93777 250.55042 225.43654 251.67678 226.33008 252.57031 C 226.93177 253.172 230.65792 252.43027 232.28125 251.38477 C 234.11686 250.20252 233.86898 249.10317 232.5918 249.02344 z "
style="fill:#000000;stroke-width:0.59415245" />
<path
id="path286"
d="M 253.69531 145.9668 C 253.15934 145.95949 252.57647 146.2198 252.06836 146.83203 C 251.54273 147.46538 251.52853 148.00187 252.01562 148.91211 C 252.83266 150.43873 254.80804 150.51184 255.27734 149.0332 C 255.82824 147.29748 254.87445 145.98287 253.69531 145.9668 z M 220.19531 150.21094 C 220.0118 150.18729 219.81933 150.19267 219.62305 150.23047 C 218.42423 150.46135 217.8413 151.98954 218.39844 153.44141 C 218.86694 154.66229 220.99056 154.50096 221.69141 153.19141 C 222.36776 151.92763 221.47991 150.37649 220.19531 150.21094 z "
style="fill:#ffffff;stroke-width:0.59415245" />
</svg>
</div>
<div id="content3" style="display: none;" class="container">
<svg id="printable" class="color" viewBox="0 0 400 400" width="400" height="400">
<path
id="path666"
d="M 204.63477 25.005859 C 203.8562 25.005859 202.53418 25.690446 201.69727 26.527344 C 200.25055 27.974085 200.19319 28.270723 200.51953 32.546875 C 200.70829 35.020494 201.1528 38.034932 201.50781 39.246094 C 202.27285 41.856162 203.21088 42.011798 208.07617 40.337891 C 216.85273 37.318315 219.81679 33.695863 216.58398 29.9375 C 215.20024 28.328808 213.06906 27.949237 210.31836 28.822266 C 209.50251 29.081212 209.14453 28.926707 209.14453 28.316406 C 209.14453 27.077619 206.32169 25.005859 204.63477 25.005859 z M 304.69336 31.144531 C 303.34772 31.017579 301.92773 32.028858 301.92773 33.277344 C 301.92773 34.728084 303.28956 37.449939 304.53125 38.480469 C 305.91816 39.631493 305.64284 40.273438 303.76172 40.273438 C 302.83234 40.273438 301.75248 40.657989 301.36328 41.126953 C 299.58445 43.270306 303.2588 46.743268 310.04883 49.337891 L 313.98633 50.841797 L 313.98633 54.222656 C 313.98633 58.215973 315.66067 61.850982 319.59766 66.396484 C 330.0982 78.52 355.06852 94.695988 367.69727 97.556641 C 372.39774 98.621376 373.44541 98.564199 374.17383 97.203125 C 374.73625 96.15222 374.29629 95.382124 370.75 91.185547 C 365.28047 84.713013 361.42161 79.488334 350.05469 63.175781 C 339.17303 47.559566 336.53433 44.467064 332.28906 42.351562 C 328.79891 40.612338 324.31119 40.373466 321.61133 41.78125 C 320.21029 42.511798 319.81058 42.539733 319.60742 41.923828 C 319.46786 41.500724 318.27341 39.040844 316.95312 36.457031 C 314.7585 32.162146 314.4016 31.757812 312.79102 31.757812 C 311.30116 31.757812 311.00034 32.010411 310.8418 33.390625 L 310.6543 35.023438 L 308.49414 33.341797 C 307.30533 32.417102 305.85032 31.485475 305.26172 31.271484 C 305.07691 31.204295 304.88559 31.162667 304.69336 31.144531 z M 63.976562 39.763672 C 62.95794 39.781665 62.130056 40.351828 60.644531 41.960938 L 58.462891 44.324219 L 57.808594 42.591797 C 56.860187 40.079185 55.014155 40.28734 53.626953 43.0625 C 53.021535 44.273664 52.048309 47.061128 51.464844 49.255859 C 50.613084 52.459813 50.22005 53.170532 49.470703 52.861328 C 46.642689 51.694395 43.518876 51.892778 40.349609 53.443359 C 35.116812 56.003525 33.084475 58.935145 24.048828 76.962891 C 14.773587 95.468669 9.7735037 104.77094 6.4589844 109.68164 C 4.3178997 112.85381 3.7205059 114.76153 4.59375 115.63477 C 5.3006904 116.34171 7.0529898 116.04841 11.005859 114.56055 C 18.427312 111.76713 30.731289 102.47195 42.078125 91.085938 C 54.876633 78.243245 60.116875 68.104817 57.414062 61.414062 C 57.159083 60.782859 58.073655 59.974918 60.640625 58.566406 C 65.754578 55.760349 68.796875 52.865442 68.796875 50.804688 C 68.796875 48.795043 67.351714 47.816477 65.451172 48.539062 C 63.792464 49.169702 63.790705 49.278676 65.521484 45.542969 C 67.208748 41.901185 66.860908 40.078938 64.425781 39.789062 C 64.270013 39.77052 64.12208 39.761101 63.976562 39.763672 z M 139.30859 64.939453 C 131.0957 64.942958 127.38488 65.352197 120.02148 67.0625 C 114.91509 68.248571 114.73214 68.611743 115.74219 75.519531 C 119.2284 99.361882 141.76169 123.16803 177.8418 141.12695 L 184.41602 144.39844 L 183.6543 145.91992 C 183.23542 146.75707 182.52825 148.71364 182.08203 150.26562 C 181.39062 152.67034 181.09452 153.03444 180.08594 152.73047 C 179.43503 152.53432 177.93846 152.22385 176.75977 152.04102 C 174.90654 151.75358 174.47988 151.91837 173.60352 153.25586 C 172.61455 154.7653 172.63564 156.68017 173.68555 160.50781 C 173.98045 161.58294 173.81052 161.83008 172.77539 161.83008 C 170.59364 161.83008 168.19743 163.46795 167.51562 165.42383 C 165.8053 170.32998 167.61735 174.18421 173.45703 178.06641 C 177.2797 180.60775 177.43555 180.80499 177.43555 183.08984 C 177.43555 184.39771 177.9843 187.80984 178.65625 190.67188 L 179.87891 195.875 L 177.9668 199.25781 C 173.4627 207.23056 169.76271 210.62531 165.23242 210.9375 C 133.20809 213.14437 121.41193 216.09474 108.88281 225.03516 C 98.476278 232.46099 87.923028 245.47853 81.511719 258.79883 C 79.14259 263.72083 79.017412 263.86416 77.078125 263.81836 C 75.498529 263.78104 74.719048 264.19261 73.341797 265.79688 C 72.177456 267.15316 71.504216 267.56876 71.310547 267.05078 C 70.329949 264.42804 65.861418 258.86688 63.806641 257.71289 C 58.608414 254.79352 52.93783 256.51907 49.658203 262.01953 C 49.056256 263.02907 48.895373 262.99273 47.015625 261.40625 C 43.791777 258.68537 38.350136 256.37553 35.160156 256.375 C 27.603826 256.37376 21.407006 262.98473 20.777344 271.7207 C 20.34555 277.71149 23.417141 289.15333 26.873047 294.42773 C 27.538594 295.44349 27.666759 296.58666 27.376953 298.90625 C 26.496965 305.94941 29.873978 313.10221 36.712891 318.67773 C 40.174928 321.50021 52.147862 328.01562 53.871094 328.01562 C 54.908425 328.01562 54.908222 328.01223 53.742188 330.34961 C 52.016032 333.80973 52.02174 337.01389 53.761719 340.57031 C 55.950866 345.04474 59.568727 347.59054 67.626953 350.33008 C 70.470926 351.29695 73.380342 351.70764 79.074219 351.94141 L 86.707031 352.25391 L 90.087891 355.9375 C 96.359685 362.77192 104.06743 367.60663 113.92383 370.88867 L 119.00586 372.58008 L 80.982422 372.61328 C 43.361548 372.64535 42.958984 372.65829 42.958984 373.82031 C 42.958984 374.99178 43.349728 374.99414 200.33594 374.99414 C 357.32218 374.99414 357.71484 374.99186 357.71484 373.82031 C 357.71484 372.66856 357.32201 372.64648 337.41406 372.64648 L 317.11523 372.64648 L 318.25977 371.03125 C 319.56561 369.18948 321.30664 364.37752 321.30664 362.60742 C 321.30664 361.46186 321.51669 361.43428 327.03125 361.89258 C 330.18027 362.15431 335.67684 362.3572 339.24609 362.3418 C 344.91888 362.31715 346.10215 362.1317 348.64258 360.87305 C 351.1026 359.6542 351.57615 359.14809 351.72852 357.57812 C 351.96824 355.10807 350.23189 353.54031 345.69141 352.12695 C 343.74487 351.52101 342.54875 350.89702 343.0332 350.74023 C 343.51768 350.58344 345.71938 349.99541 347.92578 349.43359 C 352.05148 348.38314 355.00651 346.48078 355.51172 344.54883 C 355.66968 343.94487 355.46272 342.64959 355.05078 341.66992 C 354.02834 339.23824 351.12634 338.33738 345.64453 338.75195 L 341.40039 339.07422 L 344.56641 336.00781 C 347.89577 332.78306 348.60328 330.64544 346.83008 329.17383 C 343.92994 326.76692 334.60673 331.51618 323.57617 341.01953 C 321.75595 342.58775 320.09462 343.87109 319.88477 343.87109 C 319.6749 343.87109 318.99574 342.68969 318.37695 341.24609 C 316.80564 337.58038 312.91925 333.55916 309.79297 332.36523 C 302.89448 329.73066 290.35449 333.12532 270.34375 343.04492 L 257.84375 349.24023 L 255.95703 348.12695 L 254.06836 347.01367 L 254.13672 341.43555 C 254.25672 331.63692 258.77093 316.1875 270.46875 285.54883 C 273.83677 276.72736 275.46598 273.24584 277.19727 271.16211 C 281.54795 265.92572 283.17883 260.9262 283.17383 252.85156 C 283.17005 247.86105 282.4485 243.83165 280.43945 237.58203 C 280.25554 237.01002 281.09796 236.11111 282.84375 235.01758 C 284.32232 234.09146 286.35005 232.51715 287.34961 231.51758 C 288.34919 230.51801 290.452 229.24804 292.02148 228.69531 C 299.57647 226.03472 308.171 218.77593 311.64844 212.12109 C 312.59978 210.30049 313.57251 208.81114 313.80859 208.81055 C 314.04467 208.80978 314.40281 209.46989 314.60547 210.27734 C 314.97987 211.76901 316.23408 212.23773 316.91211 211.14062 C 317.11718 210.80881 316.73294 209.39888 316.05859 208.00586 C 314.89017 205.59228 314.87674 205.35046 315.77539 202.88281 C 316.31049 201.41338 316.75845 198.19952 316.81055 195.45312 C 316.86097 192.79128 317.06027 190.61138 317.25391 190.60938 C 317.44755 190.60667 318.76821 191.39242 320.18945 192.35547 C 323.04689 194.29169 324.24219 194.5638 324.24219 193.27734 C 324.24219 192.25804 321.13968 189.79662 318.4043 188.64648 C 316.87723 188.00441 316.19175 187.17769 315.34766 184.95508 C 314.08957 181.64246 314.03574 181.20898 314.875 181.20898 C 315.82818 181.20898 321.95992 177.14086 323.14453 175.72266 C 325.84322 172.49179 323.11423 168.47643 318.63281 169.08594 L 316.25195 169.41016 L 316.19336 167.36523 C 316.11127 164.4691 315.20085 163.67645 311.7168 163.47461 L 308.68164 163.29883 L 308.25391 159.77539 C 307.06921 150.01615 301.96711 139.24475 295.02734 131.84961 C 290.81224 127.35788 290.76953 127.28142 290.76953 124.0957 C 290.76953 116.00377 286.88476 101.86164 282.46094 93.847656 C 276.64913 83.319262 268.79775 75.828623 257.74609 70.269531 C 251.02221 66.887348 243.10292 64.399358 241.2832 65.097656 C 240.0009 65.58972 237.56313 71.08413 236.72266 75.373047 C 235.536 81.428483 236.2776 92.113791 238.46094 100.41992 C 239.74 105.28631 240.10243 107.54412 239.65234 107.82227 C 239.29614 108.04242 236.58036 108.39446 233.61719 108.60352 C 230.654 108.81259 226.68329 109.28567 224.79297 109.65625 L 221.35547 110.33008 L 218.94336 107.45312 C 203.74641 89.323125 184.14041 75.320469 165.16211 69.044922 C 156.13784 66.060864 149.05499 64.935253 139.30859 64.939453 z M 109.49219 118.14062 C 107.84292 118.14062 107.03923 118.54339 105.84766 119.9707 C 104.46381 121.62833 104.21408 121.72227 103.18359 120.96875 C 100.5714 119.0587 96.396484 121.11858 96.396484 124.31836 C 96.396484 126.92462 97.696042 128.978 101.68164 132.66797 C 103.6565 134.49637 105.52289 135.99219 105.82812 135.99219 C 106.5985 135.99219 111.59171 129.15651 112.90625 126.30273 C 115.12493 121.48605 113.72577 118.14062 109.49219 118.14062 z M 361.73633 150.05664 C 359.39751 150.10522 357.12695 152.24739 357.12695 155.34375 C 357.12695 157.47154 356.97846 157.71875 355.69336 157.71875 C 353.81387 157.71875 352.42969 159.76178 352.42969 162.53516 C 352.42969 165.13235 353.79019 166.28353 357.78516 167.06836 C 361.0755 167.71477 364.1122 167.80334 366.51758 167.32227 L 368.41992 166.94141 L 368.03125 162.77148 C 367.52786 157.35124 366.28766 153.03241 364.76172 151.39453 C 363.87688 150.44476 362.79943 150.03456 361.73633 150.05664 z M 64.988281 157.15625 C 63.574329 157.16957 62.274312 157.39742 60.869141 157.78125 C 58.054603 158.55005 54.857536 160.84952 54.005859 162.71875 L 53.388672 164.07422 L 49.789062 161.61328 C 45.529635 158.70119 42.730172 157.45641 41.501953 157.92773 C 40.424479 158.3412 40.326178 160.71544 41.34375 161.76172 C 41.940465 162.37528 41.460437 162.4424 38.773438 162.11523 C 34.812849 161.633 32.976562 162.38885 32.976562 164.50195 C 32.976562 166.08898 35.445896 167.9639 38.384766 168.60938 C 40.394004 169.05069 40.499402 169.80348 38.619141 170.27539 C 35.856762 170.9687 36.281978 174.37717 39.222656 175.11523 C 40.721587 175.49145 47.935736 175.06558 51.621094 174.38281 C 53.265326 174.07818 53.529297 174.19417 53.529297 175.22461 C 53.529297 176.86327 56.083055 179.76109 59.070312 181.51172 C 64.033554 184.42039 72.678322 186.6232 83.068359 187.62891 C 90.365261 188.33531 104.81201 188.33291 112.00391 187.62305 C 116.00827 187.22782 120.18263 186.38222 123.11523 185.375 C 127.51071 183.86536 127.81445 183.65522 127.81445 182.08984 C 127.81445 180.46821 127.57065 180.3314 119.88672 177.68164 C 111.208 174.68883 105.31656 172.30801 86.707031 164.26758 C 74.497358 158.99227 69.230139 157.1163 64.988281 157.15625 z M 24.892578 213.57031 C 23.837802 213.48544 22.712491 213.85033 21.603516 214.72266 C 20.348228 215.71007 20.056641 216.43171 20.056641 218.54102 C 20.056641 220.87696 19.91693 221.14062 18.679688 221.14062 C 16.16004 221.14062 14.292888 224.50132 15.316406 227.19336 C 16.03418 229.08126 17.676478 229.97641 21.484375 230.55664 C 24.26237 230.97995 29.775993 230.73323 30.775391 230.14062 C 31.264702 229.85049 30.856517 224.87057 29.953125 220.10742 C 29.198473 216.12847 27.213086 213.75702 24.892578 213.57031 z M 385.27344 230.0332 C 384.84034 230.09368 384.33289 230.27621 383.75781 230.58398 C 382.64609 231.17896 378.19675 236.24089 376.13672 239.25586 C 376.05937 239.36908 375.38479 238.88133 374.63672 238.17188 C 372.74654 236.37924 371.04815 235.82122 367.51172 235.82422 C 360.77366 235.83145 357.9507 237.55912 341.56641 251.69727 C 327.92575 263.4679 317.02211 272.28325 312.64453 275.08008 C 309.57888 277.03874 308.89627 278.37674 310.26562 279.74609 C 311.5283 281.0088 321.48344 280.59948 328.56055 278.99414 C 351.2457 273.84833 371.99428 264.02414 377.06445 256.0293 C 377.96534 254.60877 378.86736 252.41904 379.06836 251.16211 L 379.43359 248.87695 L 384.2832 248.16797 C 390.01993 247.32921 392.4594 246.40788 393.72461 244.60156 C 394.92337 242.89007 394.06727 241.10547 392.04688 241.10547 C 391.25079 241.10547 390.59961 240.96963 390.59961 240.80273 C 390.59961 240.63579 391.78881 239.3594 393.24219 237.9668 C 396.16712 235.16424 396.48845 233.96168 394.6582 232.67969 C 393.32719 231.74741 391.6206 232.02228 388.40039 233.6875 L 386.56445 234.63867 L 386.89453 232.59766 C 387.19294 230.75875 386.57274 229.85176 385.27344 230.0332 z M 309.28711 299.13867 C 309.06738 299.13796 308.86334 299.15086 308.68164 299.17773 C 304.51725 299.79373 304.30801 305.56994 308.1582 313.68359 C 309.01612 315.49149 309.35066 315.71848 310.67578 315.39648 C 313.12576 314.80115 319.87463 310.5796 321.53906 308.60156 C 323.47856 306.29649 323.50594 303.96947 321.61328 302.19141 C 320.02933 300.70337 317.52951 300.46976 315.39648 301.61133 C 314.37945 302.15561 314.0057 302.1324 313.60742 301.50391 C 313.33046 301.06683 313.09775 300.51731 313.09375 300.28125 C 313.08309 299.77243 310.82523 299.14363 309.28711 299.13867 z M 204.08398 359.79102 L 205.38867 360.78711 C 206.10699 361.33451 208.42508 363.10385 210.53906 364.71875 C 212.65305 366.33362 214.55591 368.18218 214.76758 368.82812 C 214.97922 369.47406 215.6962 370.59752 216.36133 371.32422 L 217.57031 372.64648 L 208.80664 372.63281 C 200.40803 372.62028 200.09535 372.57774 201.30078 371.60547 C 203.56379 369.7801 204.59897 366.90481 204.33008 363.1875 L 204.08398 359.79102 z "
style="fill:#000000;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path662"
d="m 235.50974,370.56998 c 2.16491,-2.46567 2.37089,-4.94529 0.64587,-7.77457 -1.44136,-2.36407 -1.47503,-3.0742 -0.14461,-3.0503 3.00486,0.054 4.61358,6.62032 2.57847,10.52474 -1.41468,2.71418 -1.21272,2.82516 3.14444,1.72803 3.29691,-0.83017 4.01426,-1.71505 5.2867,-6.52143 1.16603,-4.40436 0.96749,-7.70029 -0.60882,-10.10602 -1.51195,-2.30755 -5.77073,-5.03452 -10.18367,-6.52078 l -3.85771,-1.29925 -1.65157,-5.50967 c -7.08733,-23.64348 -11.82512,-44.10043 -12.83216,-55.40707 -0.69069,-7.75492 -0.10878,-20.44348 1.30021,-28.35104 0.54594,-3.0639 0.84841,-3.67018 1.83103,-3.67018 1.0069,0 1.12746,0.27591 0.83385,1.90849 -1.45056,8.06575 -0.78081,8.59888 1.29098,1.02766 1.7708,-6.47129 2.53623,-13.0103 2.33211,-19.92297 l -0.18082,-6.12305 -7.9276,-2.717 c -4.36018,-1.49435 -9.11676,-3.33213 -10.57014,-4.08395 -9.88358,-5.11263 -18.49,-13.01871 -22.90197,-21.03832 -1.45339,-2.64183 -2.77468,-4.81043 -2.93616,-4.81914 -0.16149,-0.008 -1.06206,1.4548 -2.00125,3.2522 -2.03522,3.89495 -6.26519,8.75058 -8.73622,10.0284 -1.17767,0.609 -4.56562,1.08918 -10.05335,1.42488 -31.15061,1.90553 -45.32234,7.15033 -59.72067,22.10191 -5.350452,5.55603 -11.25455,13.65965 -15.097987,20.72257 -8.124084,14.92928 -12.562199,34.5508 -11.618803,51.36828 1.691078,30.14594 16.56228,52.64504 40.12443,60.70552 8.06408,2.75867 12.19171,3.07897 42.90233,3.32918 17.19064,0.14006 29.5301,0.0125 30.38917,-0.3141 0.7955,-0.30243 1.44635,-0.92544 1.44635,-1.38445 0,-1.45169 -3.88389,-4.33806 -6.41204,-4.7652 -1.82706,-0.30866 -2.39642,-0.67164 -2.39642,-1.52771 0,-1.29811 0.97846,-1.40465 4.15624,-0.45256 3.58485,1.07405 6.34996,3.71456 6.79333,6.48718 l 0.37966,2.3743 2.67794,-0.36704 c 3.44359,-0.47199 6.64373,-2.13559 7.56488,-3.93261 1.17065,-2.28374 0.88561,-6.1636 -0.67976,-9.2527 -3.34798,-6.60694 -11.72418,-11.0617 -22.90066,-12.17942 l -3.57032,-0.35708 -2.93614,2.73447 c -5.37257,5.00353 -16.42519,11.51085 -17.9502,10.56834 -1.23871,-0.76557 -0.39201,-1.93065 2.09268,-2.87954 7.48353,-2.85799 17.27194,-11.27589 21.12652,-18.16853 l 2.16002,-3.86248 -2.32655,-2.80045 c -11.09847,-13.35919 -17.28901,-29.31383 -18.13162,-46.72973 l -0.36389,-7.52104 -2.40554,-1.61896 c -6.5603,-4.41511 -14.70868,-8.03418 -23.21374,-10.31029 -6.30654,-1.68772 -6.78266,-1.92695 -5.91528,-2.97204 1.50595,-1.81458 16.79801,3.34589 26.93205,9.08849 2.28778,1.2964 4.27388,2.35708 4.41358,2.35708 0.13968,0 0.44361,-1.65157 0.67538,-3.67018 0.23179,-2.01861 1.0827,-4.99148 1.89092,-6.60635 1.965,-3.92613 6.41829,-9.10206 7.8313,-9.10206 1.75284,0 1.36487,1.01528 -1.70351,4.45791 -5.12214,5.74691 -5.63251,7.33686 -5.88108,18.32102 -0.49661,21.94411 5.34518,38.19878 19.98803,55.61631 6.07588,7.22716 19.1384,19.85761 28.46015,27.51873 4.9115,4.03655 7.86353,6.88338 8.0953,7.80695 0.45855,1.82688 3.08173,2.96991 8.38048,3.65164 7.48537,0.96303 8.06989,0.88104 10.08586,-1.41502 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path656"
d="m 254.92073,371.5244 c 1.20138,-2.24481 1.37693,-6.13394 0.38411,-8.51007 -1.16462,-2.78733 -1.17612,-3.2877 -0.0756,-3.2877 2.21081,0 3.70385,6.40531 2.4981,10.71696 -0.42192,1.50863 -0.33323,1.61489 1.34794,1.61489 2.28874,0 4.47796,-2.13042 4.98911,-4.8551 0.49357,-2.63095 -1.07356,-8.84548 -2.94589,-11.68202 -0.78054,-1.18249 -2.99429,-3.12221 -4.91944,-4.31049 -4.49288,-2.77315 -5.05576,-4.09511 -4.57748,-10.75043 0.779,-10.83979 6.32228,-29.18607 17.66148,-58.45301 2.8143,-7.26389 3.02018,-8.01641 2.19309,-8.01641 -1.08492,0 -5.36961,6.53823 -5.36961,8.19376 0,3.00756 -1.65549,10.43655 -2.84089,12.74841 -1.43668,2.80198 -3.31179,4.58232 -6.01637,5.71237 -1.6673,0.69664 -2.24726,1.38275 -2.87782,3.40461 -1.3318,4.27024 -5.69779,12.94245 -8.06756,16.02459 -1.23577,1.60729 -3.16538,3.51696 -4.28799,4.24374 -1.1226,0.72678 -2.22356,1.52578 -2.44654,1.77553 -2.37097,2.65565 -6.85992,7.03652 -7.68596,7.50088 -0.98728,0.55498 -0.95943,0.87753 0.5067,5.87229 0.85324,2.90678 1.85186,5.57309 2.21909,5.92511 0.36727,0.35204 1.98901,1.10589 3.60389,1.6753 4.96498,1.75058 8.86308,4.75621 10.54444,8.13028 0.82157,1.64871 1.49379,3.94244 1.49379,5.0972 0,1.73228 -1.17288,6.58461 -2.71329,11.22504 -0.25587,0.77078 0.29491,0.95154 3.2212,1.05711 3.00964,0.10868 3.62293,-0.0465 4.16149,-1.05285 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path654"
d="m 286.0632,369.85638 c -0.005,-1.53415 -0.39201,-4.37488 -0.85992,-6.31275 -1.1376,-4.71132 -1.11996,-5.70857 0.0968,-5.47424 1.21259,0.23354 2.38037,4.37083 2.91255,10.31892 l 0.38093,4.2574 h 7.50619 7.50619 l 0.70282,-3.37657 c 0.89726,-4.31084 0.39296,-10.99149 -1.22448,-16.22053 -0.8923,-2.88478 -1.06775,-4.21601 -0.61527,-4.66849 0.86961,-0.86962 1.5066,-0.0739 2.62686,3.28102 2.03263,6.08732 2.58854,16.36701 1.0955,20.25778 -0.30437,0.79321 0.14988,0.86303 3.41805,0.52532 2.17143,-0.22438 4.3743,-0.8384 5.19687,-1.44856 8.03597,-5.96086 4.76959,-31.12333 -4.66496,-35.93648 -4.16976,-2.12726 -13.21703,-1.0454 -22.57,2.69884 l -3.92672,1.57197 1.7316,1.83028 c 2.37342,2.50868 4.80671,6.55069 4.80671,7.98456 0,1.8667 -1.66164,1.38786 -2.54837,-0.7344 -0.44133,-1.05626 -2.10967,-3.34217 -3.70739,-5.07977 l -2.90498,-3.15927 -10.10038,5.14238 c -5.55523,2.82829 -10.1004,5.3428 -10.1004,5.58781 0,0.24498 0.4922,1.07565 1.09375,1.84588 3.17236,4.062 5.19703,11.30459 4.24928,15.20039 -0.27501,1.13041 -0.59874,2.45169 -0.7194,2.93616 -0.22312,0.89578 3.89335,1.30988 16.36986,1.64672 l 4.25741,0.11501 -0.009,-2.78934 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path650"
d="m 84.642624,349.89054 c -0.0054,-0.24221 -1.187383,-2.39834 -2.626655,-4.79132 -11.74349,-19.52519 -13.932685,-47.71129 -5.694209,-73.3134 1.046768,-3.25297 1.520239,-5.57632 1.179318,-5.78703 -0.843017,-0.521 -3.121512,1.85619 -4.314195,4.5011 -0.574575,1.27415 -1.365521,2.31668 -1.757656,2.31668 -0.392139,0 -1.276367,-1.54514 -1.964954,-3.43367 -1.525337,-4.18337 -4.169864,-7.94564 -6.703949,-9.53752 -1.421245,-0.89279 -2.590186,-1.12743 -4.707539,-0.94498 -3.408285,0.29371 -5.782663,2.28896 -6.81187,5.72413 -0.382252,1.27586 -0.840445,2.31972 -1.0182,2.31972 -0.177753,0 -1.686607,-1.16141 -3.353002,-2.58094 -7.497624,-6.38686 -13.72021,-7.32356 -18.718597,-2.81775 -3.318229,2.99124 -5.144915,7.11019 -5.152151,11.6175 -0.008,4.80365 1.844673,11.75047 4.713949,17.67841 2.231468,4.61019 2.339079,5.07919 1.976787,8.61533 -0.670492,6.54442 2.309185,12.4008 9.01072,17.71006 3.556178,2.81737 13.238582,7.97684 17.192831,9.16157 2.428174,0.72751 3.202972,2.40306 1.426435,3.08477 -0.499052,0.19153 -1.291812,1.26831 -1.761691,2.39287 -2.887581,6.91098 2.198102,13.19975 13.27972,16.42127 5.598982,1.62766 15.82804,2.7041 15.804908,1.6632 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path642"
d="M 228.82617 231.80859 C 227.94873 231.69749 227.93508 232.40993 227.92578 237.66602 C 227.90548 249.1555 225.81808 259.2589 221.63281 268.11914 L 219.55273 272.52344 L 219.9082 281.625 C 220.18491 288.69949 220.71663 292.92127 222.29883 300.57422 C 224.13821 309.47106 229.34511 329.90746 230.07227 331.08398 C 230.58835 331.91903 233.90777 329.55902 235.43945 327.26758 C 236.70706 325.37126 236.82344 324.83748 236.24609 323.57031 C 235.25802 321.40172 235.41619 320.38281 236.74414 320.38281 C 237.3901 320.38281 237.91992 320.74649 237.91992 321.19141 C 237.91992 321.63631 238.32731 322.33792 238.82617 322.75195 C 239.59283 323.38821 240.09959 323.14951 242.10352 321.20898 C 245.96207 317.4725 249.03017 311.8306 252.84766 301.44336 C 253.61456 299.35664 254.17591 298.6543 255.07617 298.6543 C 256.99892 298.6543 260.02935 296.4559 261.03906 294.32812 C 262.24855 291.77929 263.73699 285.42452 263.74805 282.76562 C 263.75505 281.01761 263.49618 280.58577 262.1582 280.11523 C 260.68768 279.59809 260.37062 279.78509 258.19531 282.45117 C 255.21935 286.09857 251.56825 288.09515 247.95703 288.05078 C 244.32266 288.00608 241.21382 286.87927 240.95117 285.50977 C 240.76988 284.56452 240.98378 284.46061 242.41211 284.80469 C 243.3324 285.02638 245.47621 285.35955 247.17578 285.54492 C 249.85111 285.83676 250.57718 285.67503 252.5918 284.3418 C 254.84733 282.84915 259.64648 277.36996 259.64648 276.28711 C 259.64648 275.2822 261.36646 275.75128 261.99609 276.92773 C 263.42975 279.60657 266.43514 277.38096 269.44531 271.41211 C 270.27722 269.76254 271.24195 268.2307 271.58789 268.00977 C 272.68832 267.30704 273.23443 268.17397 272.83594 269.98828 C 272.47337 271.63899 272.52629 271.70496 273.70117 271.07617 C 276.74738 269.44589 280.17343 262.3118 281.05078 255.77148 C 281.64161 251.36711 279.19626 238.16992 277.78906 238.16992 C 277.54948 238.16992 275.34765 238.9736 272.89648 239.95508 C 263.20689 243.83498 252.98131 242.49553 243.4375 236.0957 C 240.27764 233.97679 238.87101 233.43244 235.10742 232.87695 C 232.61704 232.50937 229.98449 232.06855 229.25781 231.89648 C 229.09471 231.85786 228.95152 231.82447 228.82617 231.80859 z M 180.40234 336.99609 C 180.0232 336.8526 176.15585 343.37461 176.44727 343.66602 C 176.55524 343.774 178.9906 344.27121 181.85938 344.77148 C 184.72815 345.27174 187.19563 345.80305 187.34375 345.95117 C 187.49185 346.09928 187.99902 346.2207 188.4707 346.2207 C 188.94242 346.2207 187.39289 344.173 185.02734 341.66992 C 182.66178 339.16685 180.58089 337.06369 180.40234 336.99609 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path638"
d="m 268.4957,238.99427 c 5.50476,-1.61783 13.83617,-5.94498 16.52032,-8.58027 1.51778,-1.49015 3.86722,-2.98294 5.8918,-3.74353 8.03625,-3.01903 15.44177,-9.48149 19.22353,-16.77548 l 2.00344,-3.86409 -1.90808,-2.40916 c -1.04945,-1.32502 -4.0067,-4.3588 -6.57167,-6.74171 -2.56497,-2.38292 -4.6636,-4.63765 -4.6636,-5.01052 0,-1.9399 2.83234,-0.16167 8.28873,5.20392 3.28977,3.23502 6.07193,5.79134 6.18258,5.68071 1.00697,-1.00698 1.75886,-11.23824 0.92255,-12.55349 -0.6414,-1.00874 -3.16553,-1.87877 -9.81517,-3.38315 -4.28444,-0.96929 -5.92364,-1.58964 -6.06216,-2.29423 -0.26299,-1.33756 1.35609,-1.24959 8.4088,0.45686 3.22849,0.78117 5.99884,1.29146 6.15632,1.13397 0.15749,-0.15747 -0.30393,-1.3119 -1.02535,-2.56542 -0.72143,-1.25351 -1.31169,-2.40556 -1.31169,-2.56013 0,-0.15457 1.38734,-0.92757 3.08296,-1.71775 4.4631,-2.07989 8.07442,-4.90005 8.07442,-6.30549 0,-1.76635 -1.61219,-2.06834 -4.86821,-0.91191 -3.42128,1.21514 -4.15017,0.77732 -3.35009,-2.01234 1.08404,-3.77981 -0.77111,-5.53523 -4.05503,-3.83704 -0.96903,0.5011 -2.00131,0.9111 -2.29393,0.9111 -0.29265,0 -0.69787,-1.78371 -0.9005,-3.9638 -0.53647,-5.77168 -2.50059,-12.69128 -5.13265,-18.08229 -2.35027,-4.81385 -9.32989,-14.17557 -11.04416,-14.81342 -0.52069,-0.19375 -1.28829,-0.8268 -1.70578,-1.40678 -0.95622,-1.32842 -7.29168,-5.83853 -10.40228,-7.40521 -1.29408,-0.65177 -4.06728,-1.74786 -6.16262,-2.43573 -3.5087,-1.15184 -3.86548,-1.17443 -4.51527,-0.28581 -1.48827,2.03533 -4.34469,4.93799 -4.85932,4.93799 -1.48997,0 -0.99743,-1.49498 1.4989,-4.54936 2.75241,-3.36769 4.71406,-7.0299 4.0964,-7.64755 -0.61844,-0.61845 -4.60692,-0.16071 -8.92695,1.02446 -2.38472,0.65426 -4.59717,1.18954 -4.91654,1.18954 -0.96932,0 -0.65671,-1.15316 0.8471,-3.12475 2.2433,-2.94112 2.81039,-4.88501 1.73796,-5.95746 -0.49539,-0.49538 -0.966,-0.9007 -1.0458,-0.9007 -1.22872,0 -7.66276,2.46921 -11.64343,4.46841 -4.3272,2.17327 -5.67713,2.57836 -8.592,2.57836 -8.59006,0 -19.52591,3.17485 -26.59883,7.72207 -9.82527,6.31669 -22.0858,22.76767 -24.95725,33.48718 -0.54714,2.04264 -1.16892,3.91948 -1.3817,4.17077 -0.21281,0.2513 -1.55542,-0.0732 -2.98359,-0.72115 -4.94032,-2.24129 -5.76287,-1.12946 -3.46928,4.68944 0.65051,1.65032 1.04383,3.22533 0.87408,3.5 -0.16976,0.27469 -1.51803,0.45366 -2.99615,0.39772 -2.18737,-0.0828 -2.89643,0.15629 -3.81022,1.28461 -2.59738,3.2072 -0.60724,7.8853 4.71052,11.07277 1.73323,1.03888 3.38556,1.96698 3.67185,2.06241 0.28627,0.0954 0.67699,2.02005 0.86826,4.277 1.21911,14.38556 9.15086,27.47729 21.85273,36.06897 8.53934,5.77608 22.52954,10.54169 35.55792,12.11233 2.76031,0.33279 4.37436,1.00218 7.7849,3.22857 3.71158,2.42296 8.59099,4.49478 12.80924,5.43887 2.67259,0.59815 7.91831,0.33919 10.90399,-0.53831 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path616"
d="m 187.80001,138.19403 c 1.22598,-2.01861 3.90159,-5.74218 5.94581,-8.2746 l 3.71676,-4.60439 -3.35791,-4.49767 c -17.65563,-23.648458 -40.3485,-39.889475 -67.05899,-47.993325 -3.65225,-1.108079 -7.31978,-2.014686 -8.15007,-2.014686 -1.48047,0 -1.50189,0.05952 -1.10932,3.082958 0.7116,5.480239 2.12154,10.005357 4.98588,16.002019 7.68232,16.083254 23.85917,31.249524 47.32225,44.366004 7.41996,4.14796 14.27076,7.60249 15.07867,7.60341 0.21882,2.6e-4 1.40095,-1.65111 2.62692,-3.66972 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path614"
d="m 288.24041,120.87074 c -0.19522,-2.50308 -1.04207,-7.18825 -1.88188,-10.41153 -4.68562,-17.983671 -14.74746,-30.849924 -29.94129,-38.28643 -5.84066,-2.858686 -12.7812,-5.178033 -14.04439,-4.693298 -1.20506,0.46242 -3.1005,6.020061 -3.82176,11.205746 -0.44232,3.180206 -0.45114,6.168201 -0.0292,9.933986 0.61174,5.460905 3.14686,16.122926 4.04779,17.023846 0.27073,0.27073 1.84118,-0.19131 3.4899,-1.02679 3.75297,-1.90178 8.96035,-3.28605 10.75443,-2.85883 0.75076,0.17878 1.69535,0.7382 2.09906,1.24316 0.92998,1.16318 0.95522,4.93542 0.0392,5.85149 -1.11743,1.11743 -0.17519,1.43526 2.2547,0.76054 1.24145,-0.34472 3.63521,-0.62824 5.31948,-0.63003 3.75121,-0.004 4.67343,1.11374 3.73201,4.52331 -0.3281,1.18828 -0.53766,2.1955 -0.46566,2.23826 0.0722,0.0428 2.2236,0.82744 4.78137,1.74377 2.55777,0.9163 6.65371,3.04545 9.10209,4.73145 2.44836,1.68601 4.5568,3.09626 4.68542,3.13393 0.12861,0.0377 0.074,-1.97952 -0.12113,-4.48258 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path612"
d="m 207.63021,116.61105 c 1.58907,-1.07431 4.62196,-2.68431 6.73972,-3.57777 2.11779,-0.89347 3.93408,-1.87519 4.03619,-2.18157 0.28427,-0.85275 -14.7357,-16.149472 -20.08524,-20.455333 -19.1706,-15.430498 -38.64268,-23.196228 -58.46883,-23.318167 -7.32045,-0.04504 -17.5393,1.159504 -16.62876,1.960076 0.26396,0.23209 2.18121,0.885272 4.26057,1.451521 14.14566,3.852106 31.3114,12.953319 44.39663,23.538929 8.84617,7.156304 21.64881,21.002884 26.13029,28.260994 0.78048,1.26407 0.80444,1.25625 3.75786,-1.22661 1.6348,-1.37434 4.2725,-3.37777 5.86157,-4.45207 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path604"
d="M 367.06836 237.99023 C 362.95216 238.05233 354.21736 242.47651 356.54102 243.32227 C 357.96873 243.84193 361.23828 247.36918 361.23828 248.38867 C 361.23828 249.96843 359.90272 249.43116 356.95898 246.66992 L 354.14648 244.0332 L 346.09375 250.91016 C 341.66511 254.69324 337.93669 257.86434 337.80664 257.95508 C 337.67658 258.04568 338.25142 258.65609 339.08594 259.3125 C 340.82823 260.683 343.99724 266.69452 344.56055 269.69727 C 344.98196 271.9435 345.37295 271.98064 349.67383 270.18359 C 352.15804 269.14562 352.18594 269.01831 350.85156 264.78516 C 350.13136 262.50041 350.03828 261.46756 350.50781 260.99805 C 351.54859 259.95727 352.20104 260.81332 353.26562 264.60742 C 354.41147 268.69128 354.25744 268.66816 360.35742 265.61328 C 366.21441 262.68008 370.04324 259.98054 370.66406 258.34766 C 371.34832 256.54788 370.55435 251.3473 369.17188 248.57617 C 368.05034 246.32801 368.04491 245.2168 369.1543 245.2168 C 370.73194 245.2168 373.34629 251.92272 373.11914 255.38477 C 373.00046 257.19374 374.35645 256.12665 375.83984 253.24414 C 377.14631 250.7054 377.20362 250.24555 376.58789 247.17969 C 375.31599 240.8464 372.2755 237.91169 367.06836 237.99023 z M 335.82227 260.06836 C 335.57071 260.1115 335.31692 260.29581 334.96484 260.60156 C 330.55091 264.43477 319.5232 273.18623 316.63086 275.15039 C 314.68081 276.47463 313.08594 277.68062 313.08594 277.83008 C 313.08594 278.55994 322.80019 277.93959 327.43945 276.91406 C 330.32882 276.27533 334.9189 275.07566 337.63867 274.24609 L 342.58398 272.73633 L 342.20703 270.37891 C 341.72813 267.38408 339.48591 262.95724 337.51953 261.12305 C 336.65674 260.31828 336.24152 259.99646 335.82227 260.06836 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path590"
d="M 64.742188 159.60938 C 63.222155 159.61101 61.850498 159.74407 60.992188 160.02734 C 58.013179 161.0105 55.458471 164.12361 54.972656 167.36328 C 54.367527 171.39855 55.590918 175.55006 58.009766 177.67383 C 60.611784 179.95843 61.218915 179.92711 60.535156 177.54297 C 59.443878 173.73792 60.205792 167.4082 61.755859 167.4082 C 62.41298 167.4082 62.596524 168.53045 62.617188 172.69336 C 62.660938 181.50885 63.533666 182.27029 76.068359 184.42383 C 83.384607 185.68081 83.031793 185.77402 82.568359 182.68359 C 82.098688 179.55164 82.60224 177.09766 83.714844 177.09766 C 84.285439 177.09766 84.586805 178.20826 84.761719 180.95508 C 85.04565 185.41427 85.494723 185.88554 89.496094 185.89844 L 92.287109 185.90625 L 92.304688 181.94336 C 92.321268 178.50978 93.069392 175.34426 94.833984 171.22656 C 95.127713 170.5411 93.032799 169.41748 85.394531 166.16602 C 76.486805 162.37418 75.52478 162.08213 74.978516 163.00391 C 74.647447 163.56255 73.776225 165.1135 73.042969 166.44922 C 71.67367 168.9435 69.970703 169.70028 69.970703 167.81641 C 69.970703 167.2337 70.763187 165.50963 71.730469 163.98438 L 73.488281 161.21094 L 71.896484 160.60547 C 70.221884 159.96879 67.275575 159.60666 64.742188 159.60938 z M 97.242188 171.40039 L 96.162109 173.80859 C 95.53083 175.21722 94.95904 178.22947 94.785156 181.0625 L 94.488281 185.90625 L 100.75 185.90625 C 104.1945 185.90625 109.50564 185.62883 112.55273 185.28906 C 118.37412 184.63995 124.2142 183.00276 123.89258 182.10938 C 123.78831 181.81959 120.92839 180.61442 117.53711 179.43164 C 114.14586 178.24886 108.19227 175.95711 104.30664 174.33984 L 97.242188 171.40039 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path572"
d="M 45.767578 54.429688 C 44.453321 54.395496 43.060215 54.75479 41.490234 55.484375 C 39.110164 56.590412 35.756853 59.809822 33.964844 62.708984 L 32.982422 64.298828 L 34.964844 64.669922 C 36.05526 64.874484 37.796114 65.557518 38.832031 66.1875 C 40.294789 67.077054 40.570173 67.507821 40.064453 68.117188 C 39.528688 68.76273 38.780683 68.647594 35.847656 67.462891 C 33.886877 66.670901 32.205255 66.107515 32.109375 66.212891 C 32.013505 66.318268 29.816208 70.646543 27.226562 75.830078 L 22.517578 85.253906 L 25.373047 86.564453 C 27.140073 87.375087 29.412091 89.205805 31.335938 91.367188 C 33.045597 93.28792 34.565014 94.865534 34.712891 94.873047 C 34.860755 94.881047 35.984199 93.906894 37.208984 92.710938 C 38.433758 91.514961 39.435547 90.256205 39.435547 89.912109 C 39.435547 89.568013 38.380224 88.008801 37.089844 86.447266 C 35.799476 84.885722 34.889345 83.369728 35.068359 83.080078 C 35.785119 81.920335 37.172284 82.695643 39.382812 85.492188 L 41.705078 88.431641 L 45.121094 84.578125 C 49.266716 79.903032 52.947218 74.56243 52.929688 73.246094 C 52.904137 71.326678 50.646344 67.336666 48.294922 65.054688 C 45.900789 62.731265 45.179831 60.826172 46.695312 60.826172 C 47.689031 60.826172 52.703618 66.122317 53.625 68.144531 C 54.463763 69.985417 55.045886 70.038131 55.507812 68.314453 C 56.479543 64.688458 55.437623 61.488524 52.142578 57.986328 C 49.931173 55.635906 47.958007 54.486674 45.767578 54.429688 z M 21.898438 87.261719 C 21.693009 87.267119 19.93981 90.359991 18.001953 94.134766 C 16.064095 97.909538 12.854727 103.7175 10.871094 107.04297 C 8.8874752 110.36844 7.4674569 113.08984 7.7148438 113.08984 C 7.9622304 113.08984 9.2957741 112.69072 10.677734 112.20312 C 12.059685 111.71555 15.364769 109.87123 18.021484 108.10352 C 23.224701 104.64142 32.388672 97.432818 32.388672 96.802734 C 32.388672 95.535421 28.775563 91.593919 25.777344 89.591797 C 23.849962 88.304738 22.103864 87.256474 21.898438 87.261719 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path562"
d="M 325.83984 43.208984 C 323.5981 43.208984 322.72014 43.549816 320.93945 45.113281 C 318.75601 47.030359 316.03799 51.952238 316.02734 54.005859 C 316.01934 55.459435 317.2835 59.653208 317.72852 59.650391 C 317.91962 59.649191 318.54877 58.497996 319.12695 57.091797 C 320.46199 53.844831 323.51463 49.669922 324.55273 49.669922 C 326.09625 49.669922 326.06935 50.888864 324.48633 52.763672 C 322.50797 55.106743 320.14442 60.067044 320.13672 61.892578 C 320.12872 63.839193 322.62054 66.843578 328.3418 71.785156 C 333.25439 76.028293 334.22461 76.646196 334.22461 75.53125 C 334.22461 74.204767 337.52168 69.634766 338.47852 69.634766 C 339.91074 69.634766 339.77966 70.352524 337.74805 73.654297 C 336.77911 75.229007 335.98792 76.885239 335.99023 77.333984 C 335.99323 78.056665 340.37336 81.347148 341.36328 81.371094 C 341.57482 81.376494 342.41714 80.235723 343.23633 78.837891 C 344.8929 76.011174 349.22705 71.561107 350.81445 71.056641 C 351.37967 70.877018 351.8418 70.518803 351.8418 70.259766 C 351.8418 69.878606 340.6432 53.597274 339.71094 52.623047 C 339.56536 52.470914 339.26177 52.60237 339.03711 52.916016 C 338.49212 53.676753 333.54866 56.13292 332.56641 56.130859 C 330.81719 56.127159 332.36901 53.97674 335.10938 52.605469 C 336.723 51.798028 338.15747 51.066037 338.29883 50.978516 C 338.44015 50.891006 337.38965 49.629533 335.96289 48.175781 C 332.70034 44.851476 329.35355 43.208984 325.83984 43.208984 z M 353.37891 72.082031 L 350.94922 73.753906 C 348.38517 75.518016 346.19484 78.083192 344.58398 81.210938 L 343.61328 83.099609 L 346.99414 85.263672 C 352.51294 88.794842 362.65302 93.778888 366.63086 94.916016 C 370.78977 96.104881 371.2207 96.184453 371.2207 95.763672 C 371.2207 95.600779 369.50085 93.421587 367.39844 90.919922 C 365.29601 88.418262 361.28083 83.155849 358.47656 79.226562 L 353.37891 72.082031 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path652"
d="M 304.8418 33.814453 C 303.68835 33.814453 305.59697 36.417509 309.94727 40.779297 C 312.31904 43.157345 314.25977 45.316574 314.25977 45.576172 C 314.25977 46.711822 312.58355 46.384232 309.10352 44.570312 C 304.70775 42.279094 302.7478 41.943112 304.60156 43.796875 C 305.93374 45.129042 313.56518 48.550442 314.73438 48.339844 C 315.15719 48.263674 316.0552 47.231635 316.73047 46.046875 L 317.95898 43.892578 L 315.84375 39.441406 C 314.68086 36.992678 313.59129 34.988281 313.42188 34.988281 C 313.02934 34.988281 313.87833 37.224021 315.41211 40.230469 C 316.88255 43.112789 316.90973 43.796875 315.55469 43.796875 C 314.97511 43.796875 313.50539 42.491448 312.28906 40.896484 C 309.827 37.668032 305.7745 33.814453 304.8418 33.814453 z M 64.123047 42.035156 C 63.335793 42.035156 59.227243 47.293922 57.214844 50.876953 C 56.231958 52.626977 55.176491 53.778938 54.556641 53.779297 C 53.321144 53.779884 53.295649 53.423527 54.320312 50.476562 C 55.630587 46.708183 56.043868 44.594956 55.335938 45.289062 C 54.992542 45.625757 54.212786 47.870517 53.601562 50.277344 L 52.490234 54.654297 L 54.037109 56.523438 C 54.888129 57.551577 55.731618 58.412226 55.912109 58.435547 C 56.092595 58.458857 57.811607 57.538466 59.730469 56.390625 C 63.378244 54.208569 67.207429 50.84375 66.042969 50.84375 C 65.670735 50.84375 63.597218 52.028962 61.435547 53.478516 C 57.762458 55.941595 56.464844 56.306738 56.464844 54.878906 C 56.464844 54.553204 57.675598 52.80158 59.154297 50.986328 C 62.083494 47.390424 65.056295 42.035156 64.123047 42.035156 z M 44.544922 161.35352 C 44.473353 161.33938 44.425997 161.34158 44.404297 161.36328 C 44.230701 161.53689 45.485453 162.56391 47.193359 163.64453 C 48.901265 164.72516 50.48606 165.88008 50.714844 166.21094 C 51.723841 167.67021 49.789939 167.6844 45.261719 166.25391 C 40.101282 164.62371 35.324219 163.74542 35.324219 164.42578 C 35.324219 165.18869 40.30949 167.02173 44.998047 167.98242 C 50.210168 169.05038 50.278936 169.08114 49.837891 170.23047 C 49.624662 170.78613 48.070882 171.15749 44.988281 171.39062 C 39.236873 171.82561 37.654095 172.98828 42.8125 172.98828 C 44.799058 172.98828 47.759845 172.7013 49.390625 172.35156 L 52.355469 171.71484 L 52.355469 168.9707 C 52.355469 166.24873 52.321876 166.20327 48.537109 163.63672 C 46.70003 162.39093 45.045905 161.45247 44.544922 161.35352 z M 383.68945 234.05859 C 383.07039 234.05859 377.6785 240.73566 377.68359 241.49609 C 377.68559 241.76561 377.9713 243.00982 378.31836 244.25977 L 378.94922 246.5332 L 382.41211 246.14062 C 384.31663 245.92514 387.20188 245.35484 388.82422 244.87305 C 390.44656 244.39128 391.77344 243.7421 391.77344 243.43164 C 391.77344 242.71343 391.93601 242.70187 386.69141 243.78516 C 379.82602 245.20324 378.48879 244.03386 383.86328 241.3125 C 387.6381 239.40113 392.4523 235.87243 392.82031 234.74805 C 393.17013 233.67922 388.91886 235.87036 384.32812 239.12305 C 382.3324 240.53712 380.28468 241.69336 379.77734 241.69336 C 378.59699 241.69336 378.58523 240.29916 379.75781 239.32617 C 381.28776 238.05643 384.27171 234.05859 383.68945 234.05859 z M 344.55859 330.72656 C 342.1767 330.57124 334.04087 335.41465 325.27539 342.63867 L 320.25 346.78125 L 320.75195 348.99609 C 321.02792 350.21472 321.41616 352.97422 321.61523 355.12891 L 321.97656 359.04688 L 326.48633 359.42969 C 328.96643 359.64042 331.25906 359.90547 331.58203 360.01758 C 333.00732 360.51246 343.57066 360.15551 345.91406 359.5332 C 349.15372 358.67287 350.30292 357.10457 348.61328 355.84961 C 346.89938 354.57665 342.23757 353.34478 335.94531 352.50195 C 331.69004 351.93195 330.37407 351.54224 330.23242 350.80664 C 330.08017 350.01604 330.84032 349.78118 334.63281 349.44922 C 337.15392 349.22853 341.17668 348.65649 343.57227 348.17773 C 352.03793 346.48594 354.84671 344.5264 352.36523 342.04492 C 351.21564 340.89533 350.66104 340.80865 346.33203 341.09375 C 343.6722 341.26888 339.5075 342.06939 336.91016 342.9043 C 334.35006 343.72725 332.03936 344.26592 331.77344 344.10156 C 330.66153 343.41437 331.46193 342.30633 334.17383 340.7832 C 338.15997 338.54441 344.10335 334.00607 344.83203 332.64453 C 345.50603 331.38515 345.35256 330.77834 344.55859 330.72656 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path608"
d="M 205.17188 27.359375 C 204.67933 27.287209 204.09625 27.501704 203.46289 28.027344 C 202.01437 29.229522 202.95805 39.099609 204.52148 39.099609 C 204.8163 39.099609 206.63705 38.457804 208.56641 37.673828 C 212.72362 35.984601 215.60547 34.044954 215.60547 32.935547 C 215.60547 32.496147 215.1806 31.711855 214.66211 31.193359 C 213.60608 30.137326 212.08014 30.412344 209.69922 32.087891 C 207.7539 33.456873 206.92886 32.881612 206.69336 29.994141 C 206.56299 28.395668 205.99279 27.479651 205.17188 27.359375 z M 109.54492 120.24805 C 109.09388 120.27195 108.61128 120.59542 107.875 121.28711 C 107.05305 122.05932 106.38086 122.99098 106.38086 123.35742 C 106.38086 123.72386 106.02916 124.50438 105.59961 125.0918 C 104.86481 126.09671 104.71212 126.04604 103.03906 124.25586 C 101.68652 122.80864 100.9606 122.44832 100.00391 122.75195 C 97.730682 123.47345 98.431457 125.76742 102.10352 129.61719 L 105.46289 133.13867 L 107.09375 131.1875 C 107.99115 130.11527 109.4101 127.86814 110.24609 126.19336 C 111.8948 122.8904 111.92605 121.49285 110.37109 120.51367 C 110.07512 120.32729 109.81555 120.2337 109.54492 120.24805 z M 361.36328 152.49023 C 360.92096 152.54517 360.47686 152.81628 360.04883 153.33203 C 359.40535 154.1074 359.38955 154.78262 359.96289 156.92578 C 360.35107 158.37709 360.53168 159.78537 360.36523 160.05469 C 360.19879 160.324 359.03149 160.40533 357.77148 160.23633 C 355.82971 159.97589 355.37469 160.12965 354.7793 161.24219 C 354.21103 162.30403 354.24277 162.72129 354.94922 163.42773 C 356.12703 164.60556 359.15112 165.28091 362.70703 165.16016 L 365.64258 165.06055 L 365.45508 161.60156 C 365.15533 156.07052 363.27999 152.25219 361.36328 152.49023 z M 24.511719 215.90625 C 23.076128 215.97747 22.314186 217.31805 22.65625 219.3457 C 23.44613 224.02797 23.558743 223.80231 20.552734 223.58789 C 18.165761 223.41761 17.765102 223.5571 17.408203 224.68164 C 16.61603 227.17757 20.118903 228.7756 25.929688 228.57227 L 28.572266 228.48047 L 28.365234 225.25 C 28.081178 220.81728 26.494374 216.20338 25.167969 215.95508 C 24.936644 215.91177 24.716803 215.89608 24.511719 215.90625 z M 309.5332 301.33984 C 309.33352 301.34945 309.12528 301.38124 308.91016 301.4375 C 306.80071 301.98913 306.86468 304.58718 309.12109 309.95898 C 309.76547 311.49314 310.51422 312.74805 310.7832 312.74805 C 311.05219 312.74805 312.67104 311.9306 314.38086 310.93164 C 320.08689 307.59797 322.13709 304.71101 319.69141 303.45312 C 318.36666 302.77177 317.27746 303.15006 315.32227 304.9707 C 313.35707 306.80062 311.91016 306.38436 311.91016 303.98828 C 311.91016 302.31456 310.93098 301.27258 309.5332 301.33984 z "
style="fill:#ffffff;stroke-width:0.58723027" />
<path
id="path648"
d="M 326.00391 58.771484 C 325.02002 58.771484 322.81963 64.619461 323.31641 65.914062 C 323.95939 67.589682 325.24262 66.610446 325.94141 63.910156 C 326.99617 59.833545 327.00865 58.771484 326.00391 58.771484 z M 46.664062 69.791016 C 45.74909 69.739849 45.970223 72.050057 47.267578 74.695312 C 48.833885 77.888959 49.623289 78.524238 50.189453 77.048828 C 50.537093 76.142901 48.134091 70.586547 47.125 69.962891 C 46.947722 69.853327 46.794773 69.798325 46.664062 69.791016 z M 287.22461 140.34375 C 285.47692 140.38482 283.72027 141.72099 282.42188 144.65625 C 280.33078 149.38346 281.54465 156.65412 285.06836 160.50781 C 285.83197 161.34291 286.95727 161.83008 288.12695 161.83008 C 291.63735 161.83008 293.90737 158.0132 293.88867 152.14258 C 293.86549 144.9053 290.56111 140.26534 287.22461 140.34375 z M 232.82227 144.92578 C 232.22365 144.9192 231.61578 145.07196 231.00977 145.41211 C 225.92564 148.26574 225.46371 159.60464 230.22461 164.70117 C 233.62858 168.34515 237.83318 166.20005 239.12891 160.1582 C 240.68542 152.90045 237.01257 144.97182 232.82227 144.92578 z M 288.79883 170.70703 C 287.71828 170.76507 286.19515 171.51699 284.27344 172.96094 C 282.52981 174.27108 280.96635 175.26171 280.79883 175.16211 C 277.24039 173.04573 271.77554 171.06381 269.33594 171.00391 C 266.5926 170.93672 266.38769 171.03135 266.22266 172.45117 C 265.91197 175.12422 272.30248 179.85566 278.87891 181.82227 C 281.22456 182.52371 281.375 182.69861 281.375 184.71875 C 281.375 185.90091 280.94996 188.29567 280.43164 190.04102 C 278.51003 196.51179 272.44219 199.97755 264.51758 199.12891 C 261.0338 198.75583 260.73244 198.81124 260.92188 199.79492 C 261.19927 201.23538 265.91429 201.93011 270.18945 201.16016 C 273.34989 200.59097 273.41979 200.60824 275.47461 202.56836 C 276.6199 203.66085 277.95305 204.69792 278.4375 204.87305 C 280.73095 205.70209 284.21143 204.91396 286.20117 203.11328 C 286.88043 202.49855 288.52233 202.16566 291.19336 202.10156 C 295.45811 201.99902 297.81641 201.11408 297.81641 199.61719 C 297.81641 198.9019 297.44504 198.77842 296.20117 199.07617 C 289.74188 200.62239 286.50419 199.7116 283.60156 195.53516 C 282.03041 193.27454 282.02125 193.20746 282.86719 190.03516 C 283.33813 188.26915 283.72266 185.81934 283.72266 184.58984 C 283.72266 182.79416 283.99153 182.2525 285.08203 181.83789 C 286.80904 181.18128 290.05882 177.5018 290.51367 175.68945 C 290.70496 174.92696 290.77595 173.54441 290.66992 172.61719 C 290.51765 171.28467 289.87938 170.64899 288.79883 170.70703 z M 67.414062 174.26758 C 67.126383 174.32086 66.840541 174.57355 66.703125 174.93164 C 66.319475 175.93141 67.447418 180.55978 68.339844 181.64844 C 69.032933 182.49394 69.770804 182.59551 70.199219 181.90234 C 70.643487 181.18349 68.461446 174.5399 67.697266 174.28516 C 67.606417 174.25488 67.509956 174.24982 67.414062 174.26758 z M 243.55273 180.41992 C 242.72784 180.41169 241.67668 180.42524 240.33594 180.45312 C 229.32907 180.68218 218.40376 183.31828 209.02148 188.00781 C 203.79523 190.62004 202.47101 191.69447 203.27734 192.66602 C 203.72093 193.20052 205.41299 192.6011 210.17578 190.22461 C 219.86517 185.38988 232.22216 182.39472 242.51367 182.38672 C 246.29598 182.38368 246.78813 182.25928 246.60547 181.35547 C 246.46769 180.67333 246.02741 180.44462 243.55273 180.41992 z M 245.47656 188.25586 C 243.99925 188.25586 230.99537 195.49893 225.7168 199.26172 C 221.45259 202.30144 216.7793 206.80632 216.7793 207.87695 C 216.7793 208.28209 216.95461 208.78861 217.16992 209.00391 C 217.77837 209.61238 217.82163 209.5833 221.0625 206.27539 C 225.24557 202.00578 239.45307 192.81223 245.30859 190.58594 C 247.07602 189.91396 247.19515 188.25586 245.47656 188.25586 z M 269.78711 215.50977 C 269.72798 215.51734 269.67553 215.5334 269.63477 215.55859 C 268.49583 216.26251 269.05751 217.6423 270.95117 218.79688 C 272.00083 219.4369 273.72706 219.96191 274.78711 219.96289 C 278.51559 219.96714 282.94763 217.19373 281.50977 215.75586 C 281.05217 215.29827 280.30363 215.46976 278.85156 216.36719 C 276.29804 217.94535 273.74633 217.95924 271.76953 216.4043 C 271.02765 215.82072 270.20101 215.45676 269.78711 215.50977 z M 163.38086 247.56641 C 161.85548 247.56641 155.1365 259.42912 155.125 262.14258 C 155.11446 264.65055 156.8941 263.26037 158.375 259.60352 C 159.15977 257.66565 160.87674 254.52169 162.18945 252.61719 C 164.38941 249.42547 164.8271 247.56641 163.38086 247.56641 z M 365.48828 253.51953 C 364.86456 253.53889 364.76172 254.25472 364.76172 257.11328 C 364.76172 259.18248 364.94201 261.05726 365.16406 261.2793 C 366.21706 262.3323 366.81641 260.96585 366.81641 257.50781 C 366.81641 254.39371 366.64018 253.71274 365.78906 253.54883 C 365.67751 253.52735 365.57738 253.51677 365.48828 253.51953 z M 39.857422 289.96289 C 38.33899 290.15745 37.752828 295.71671 39.068359 298.86523 C 40.017905 301.13779 43.686513 304.34006 46.189453 305.08398 C 48.544886 305.78407 49.659967 305.59039 49.880859 304.44336 C 50.011894 303.76297 49.467585 303.38265 47.958984 303.09961 C 46.618966 302.84823 44.874776 301.76821 43.167969 300.13281 L 40.486328 297.5625 L 40.695312 293.9043 C 40.840965 291.35435 40.682948 290.17055 40.173828 289.99805 C 40.064593 289.96104 39.958651 289.94992 39.857422 289.96289 z M 55.384766 296.89258 C 54.557283 296.89258 54.094886 297.41305 53.822266 298.6543 C 53.229838 301.3516 54.031788 303.84396 56.300781 306.35547 C 58.568922 308.86601 59.252294 309.12156 59.808594 307.67188 C 60.053817 307.03285 59.663499 306.33085 58.654297 305.5957 C 56.797462 304.24312 55.649292 301.03163 56.171875 298.65234 C 56.500672 297.15533 56.383921 296.89258 55.384766 296.89258 z M 65.027344 316.85938 C 63.883437 316.85938 61.984574 320.09652 61.126953 323.50781 C 60.572938 325.71112 60.570895 326.8583 61.117188 328.68164 C 61.627049 330.38342 62.091198 330.96972 62.8125 330.82031 C 63.447671 330.68874 63.719875 330.19766 63.568359 329.46094 C 62.952382 326.46588 63.392092 322.76976 64.595703 320.82227 C 66.053179 318.46403 66.227718 316.85938 65.027344 316.85938 z M 117.14648 353.51367 C 116.3313 353.46859 116.23535 353.84915 116.53906 354.64062 C 117.06227 356.00408 127.82651 359.67218 133.68555 360.48242 C 134.65448 360.61645 137.36348 360.764 139.70508 360.8125 C 143.60035 360.89299 143.96289 360.80112 143.96289 359.72656 C 143.96289 358.66504 143.57136 358.55273 139.89062 358.55273 C 134.80525 358.55273 128.74478 357.3265 122.06836 354.94727 C 119.49528 354.03031 117.96166 353.55875 117.14648 353.51367 z "
style="fill:#000000;stroke-width:0.58723027" />
<path
id="path630"
d="m 284.23179,201.50504 c 0.78623,-0.78622 0.62937,-1.13812 -1.4274,-3.20229 l -2.31071,-2.31901 -2.34891,2.02497 -2.34892,2.02498 1.76169,1.48085 c 1.37781,1.15818 2.20068,1.4147 3.77633,1.17731 1.10805,-0.16693 2.41211,-0.70101 2.89792,-1.18681 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path class="color" onclick="playSound()"
id="path628"
d="m 285.62009,178.87962 c 1.56218,-1.22879 3.06794,-4.21116 2.69342,-5.33469 -0.12835,-0.38512 -1.66324,0.49451 -3.5625,2.04163 l -3.33695,2.71826 -3.10273,-1.70939 c -3.83608,-2.11347 -8.58463,-3.90053 -9.07129,-3.41386 -0.57816,0.57817 2.10864,2.56336 6.4879,4.79368 4.64998,2.36823 7.6791,2.64515 9.89215,0.90437 z"
style="fill:#ffffff;stroke-width:0.58723027" />
<path
id="path622"
d="M 289.72852 145.97461 C 287.33415 145.97461 286.44187 148.80999 288.21875 150.77344 C 289.2884 151.95537 289.58705 152.03696 290.51953 151.39844 C 292.33941 150.15232 291.73031 145.97461 289.72852 145.97461 z M 234.72266 150.4043 C 233.17562 150.41728 232.06275 152.94218 233.50195 155.13867 C 234.48228 156.63486 234.87133 156.78543 235.96484 156.08984 C 237.27066 155.25919 237.46784 152.73182 236.33594 151.33398 C 235.80201 150.67461 235.23833 150.39997 234.72266 150.4043 z "
style="fill:#ffffff;stroke-width:0.58723027" />
</svg>
</div>
<div class="container" style="display: inline-block;">
<div class="color-button" style="background-color: maroon;" onclick="playSound();"></div>
<div class="color-button" style="background-color: brown;" onclick="playSound();"></div>
<div class="color-button" style="background-color: crimson;" onclick="playSound();"></div>
<div class="color-button" style="background-color: red;" onclick="playSound();"></div>
<div class="color-button" style="background-color: tomato;" onclick="playSound();"></div>
<div class="color-button" style="background-color: coral;" onclick="playSound();"></div>
<div class="color-button" style="background-color: indianred;" onclick="playSound();"></div>
<div class="color-button" style="background-color: salmon;" onclick="playSound();"></div>
<div class="color-button" style="background-color: orangered;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkorange;" onclick="playSound();"></div>
<div class="color-button" style="background-color: orange;" onclick="playSound();"></div>
<div class="color-button" style="background-color: gold;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkgoldenrod;" onclick="playSound();"></div>
<div class="color-button" style="background-color: goldenrod;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkkhaki;" onclick="playSound();"></div>
<div class="color-button" style="background-color: khaki;" onclick="playSound();"></div>
<div class="color-button" style="background-color: olive;" onclick="playSound();"></div>
<div class="color-button" style="background-color: yellow;" onclick="playSound();"></div>
<div class="color-button" style="background-color: yellowgreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkolivegreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: olivedrab;" onclick="playSound();"></div>
<div class="color-button" style="background-color: greenyellow;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkgreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: green;" onclick="playSound();"></div>
<div class="color-button" style="background-color: forestgreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lime;" onclick="playSound();"></div>
<div class="color-button" style="background-color: limegreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: palegreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: springgreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: seagreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mediumaquamarine;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lightseagreen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkslategray;" onclick="playSound();"></div>
<div class="color-button" style="background-color: teal;" onclick="playSound();"></div>
<div class="color-button" style="background-color: cyan;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkturquoise;" onclick="playSound();"></div>
<div class="color-button" style="background-color: turquoise;" onclick="playSound();"></div>
<div class="color-button" style="background-color: paleturquoise;" onclick="playSound();"></div>
<div class="color-button" style="background-color: aquamarine;" onclick="playSound();"></div>
<div class="color-button" style="background-color: cadetblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: steelblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: cornflowerblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: deepskyblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: dodgerblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: skyblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lightskyblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: midnightblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: navy;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mediumblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: blue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: royalblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: indigo;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkslateblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mediumslateblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mediumpurple;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkmagenta;" onclick="playSound();"></div>
<div class="color-button" style="background-color: darkviolet;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mediumorchid;" onclick="playSound();"></div>
<div class="color-button" style="background-color: purple;" onclick="playSound();"></div>
<div class="color-button" style="background-color: thistle;" onclick="playSound();"></div>
<div class="color-button" style="background-color: violet;" onclick="playSound();"></div>
<div class="color-button" style="background-color: magenta;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mediumvioletred;" onclick="playSound();"></div>
<div class="color-button" style="background-color: palevioletred;" onclick="playSound();"></div>
<div class="color-button" style="background-color: deeppink;" onclick="playSound();"></div>
<div class="color-button" style="background-color: hotpink;" onclick="playSound();"></div>
<div class="color-button" style="background-color: pink;" onclick="playSound();"></div>
<div class="color-button" style="background-color: beige;" onclick="playSound();"></div>
<div class="color-button" style="background-color: bisque;" onclick="playSound();"></div>
<div class="color-button" style="background-color: blanchedalmond;" onclick="playSound();"></div>
<div class="color-button" style="background-color: wheat;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lemonchiffon;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lightyellow;" onclick="playSound();"></div>
<div class="color-button" style="background-color: saddlebrown;" onclick="playSound();"></div>
<div class="color-button" style="background-color: sienna;" onclick="playSound();"></div>
<div class="color-button" style="background-color: chocolate;" onclick="playSound();"></div>
<div class="color-button" style="background-color: peru;" onclick="playSound();"></div>
<div class="color-button" style="background-color: sandybrown;" onclick="playSound();"></div>
<div class="color-button" style="background-color: burlywood;" onclick="playSound();"></div>
<div class="color-button" style="background-color: tan;" onclick="playSound();"></div>
<div class="color-button" style="background-color: rosybrown;" onclick="playSound();"></div>
<div class="color-button" style="background-color: moccasin;" onclick="playSound();"></div>
<div class="color-button" style="background-color: peachpuff;" onclick="playSound();"></div>
<div class="color-button" style="background-color: mistyrose;" onclick="playSound();"></div>
<div class="color-button" style="background-color: linen;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lightsteelblue;" onclick="playSound();"></div>
<div class="color-button" style="background-color: lavender;" onclick="playSound();"></div>
<div class="color-button" style="background-color: honeydew;" onclick="playSound();"></div>
<div class="color-button" style="background-color: azure;" onclick="playSound();"></div>
<div class="color-button" style="background-color: snow;" onclick="playSound();"></div>
<div class="color-button" style="background-color: black;" onclick="playSound();"></div>
<div class="color-button" style="background-color: gray;" onclick="playSound();"></div>
<div class="color-button" style="background-color: silver;" onclick="playSound();"></div>
<div class="color-button" style="background-color: gainsboro;" onclick="playSound();"></div>
<div class="color-button" style="background-color: white;" onclick="playSound();"></div>
</div>
</body>
<script>
var audio = new Audio('music.mp3');
var isPlaying = false;
function playMusic() {
audio.volume = 0.3;
audio.loop = true;
if (isPlaying) {
audio.pause();
isPlaying = false;
} else {
audio.play();
isPlaying = true;
}
}
</script>
<script>
function toggleContent() {
var content1 = document.getElementById("content1");
var content2 = document.getElementById("content2");
var content3 = document.getElementById("content3");
if (content1.style.display === "block") {
content1.style.display = "none";
content2.style.display = "block";
} else if (content2.style.display === "block") {
content2.style.display = "none";
content3.style.display = "block";
} else {
content3.style.display = "none";
content1.style.display = "block";
}
}
</script>
<script>
function playSound() {
var audio = new Audio('clickbutton.mp3');
audio.play();
}
</script>
<script>
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
});
</script>
<script>
const colors = document.querySelectorAll('.color');
const colorButtons = document.querySelectorAll('.color-button');
colors.forEach(color => {
color.addEventListener('click', () => {
const selectedColor = document.querySelector('.selected-color');
if (selectedColor) {
color.style.fill = selectedColor.style.backgroundColor;
}
});
});
colorButtons.forEach(colorButton => {
colorButton.addEventListener('click', () => {
colorButtons.forEach(button => {
button.classList.remove('selected-color');
});
colorButton.classList.add('selected-color');
});
});
</script>
</html>