This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
PlutoCon-Certificates.jl
646 lines (632 loc) · 74.7 KB
/
PlutoCon-Certificates.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
### A Pluto.jl notebook ###
# v0.14.0
using Markdown
using InteractiveUtils
# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error).
macro bind(def, element)
quote
local el = $(esc(element))
global $(esc(def)) = Core.applicable(Base.get, el) ? Base.get(el) : missing
el
end
end
# ╔═╡ 16e79fac-9330-11eb-06e9-8706be2cc8d7
md"""
### PlutoCon 2021 Attendance Certificate !
---
Thanks for attending the PlutoCon 2021!
"""
# ╔═╡ cf890082-930a-11eb-1c01-61243412e7f8
@bind your_name html"<input placeholder='Enter your name...'>"
# ╔═╡ da33debe-931f-11eb-31ff-470f979d21d6
html"""
<button style="padding: 10px; border-radius: 5px;" onclick="window.download_certificate()">🎈 Download your certificate! 🎈</button>
"""
# ╔═╡ 614fa22a-930c-11eb-28e8-4f904a36d8fe
html"""
<script>
window.download_certificate = function() {
console.log("heyyyy");
const doc = jspdf.jsPDF('p', 'mm', 'a4');
doc.addFont("https://cdn.jsdelivr.net/gh/fonsp/Vollkorn-Typeface@1/fonts/ttf/Vollkorn-Medium.ttf", "Vollkorn", "normal")
doc.setFont("Vollkorn", "normal");
let certificateDiv = document.querySelector(".certificate-svg");
certificateDiv = certificateDiv.querySelector("svg");
console.log(certificateDiv)
doc.svg(certificateDiv, {
x: 0, y: 0,
width: 210, height: 297,
}).then(doc => doc.save("PlutoCon-Certificate.pdf"));
}
</script>
"""
# ╔═╡ 4ca7078c-930c-11eb-3e97-c36bb767b96b
html"""
<script src="https://unpkg.com/jspdf@2.3.1/dist/jspdf.umd.min.js"></script>
<script src="https://unpkg.com/svg2pdf.js@2.1.0/dist/svg2pdf.umd.min.js">
</script>
"""
# ╔═╡ 561e9646-fdae-4e8f-96fa-357e3dc5d63e
begin
struct SVG
template
end
function Base.show(io::IO, ::MIME"text/html", svg::SVG)
print(io, svg.template)
end
end
# ╔═╡ 2815b40e-759f-4b6a-b6a0-8cbaf9bff8a0
svg = """
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 210 297"
version="1.1"
id="svg8"
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
sodipodi:docname="certificate.svg">
<defs
id="defs2">
<rect
x="51.391381"
y="54.797181"
width="124.87813"
height="38.99725"
id="rect918" />
<rect
x="43.778827"
y="11.605018"
width="139.34882"
height="21.477578"
id="rect1008" />
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath1002">
<rect
style="fill:none;stroke:#000000;stroke-width:0.3"
id="rect1004"
width="182.12469"
height="76.639931"
x="8.3670177"
y="217.61055" />
</clipPath>
<rect
x="43.778827"
y="11.605018"
width="211.27762"
height="28.738186"
id="rect898" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.49497475"
inkscape:cx="661.45459"
inkscape:cy="531.83207"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1441"
inkscape:window-height="968"
inkscape:window-x="1744"
inkscape:window-y="286"
inkscape:window-maximized="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<path
style="fill:#000000;stroke:none;stroke-width:0.0541027"
d="m 135.58104,252.98848 c -0.015,-0.0281 0.01,-0.0628 0.0554,-0.077 0.0454,-0.0142 0.0812,-0.004 0.0795,0.0233 -0.005,0.0732 -0.1035,0.11254 -0.13489,0.0537 z"
id="path826"
inkscape:connector-curvature="0" />
<text
xml:space="preserve"
id="text1006"
style="font-style:normal;font-weight:normal;font-size:8.46667px;font-family:sans-serif;text-align:center;white-space:pre;shape-inside:url(#rect1008);fill:#000000;fill-opacity:1;stroke:none;"
transform="translate(-5.4944673,-3.4537357)"
x="57.631222"
y="0"><tspan
x="67.030488"
y="19.096487"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.46667px;font-family:Vollkorn;-inkscape-font-specification:Vollkorn;text-align:center;text-anchor:middle">Certificate of Attendance</tspan></tspan></text>
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 10.189778,107.99356 -0.8445161,-5.81837 4.1383771,1.90403 z"
id="path1012" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 41.449701,89.74895 -3.271488,4.811191 -1.081098,-7.114252 z"
id="path1016" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 62.942947,109.92982 6.141843,0.72649 -1.721283,-3.95336 z"
id="path1020" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 32.224466,117.88994 1.932421,3.77693 5.944381,-4.18392 z"
id="path1024" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 20.744411,15.644222 19.899895,9.8258534 24.038272,11.729877 Z"
id="path1026" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 45.014989,29.67901 1.669055,4.637569 1.978885,-5.142439 z"
id="path1028" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 12.943441,43.92265 9.6719529,48.733841 8.5908549,41.619589 Z"
id="path1030" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 34.436687,64.103523 6.141843,0.72649 -1.721283,-3.953368 z"
id="path1032" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.7182059,72.063643 1.932421,3.77693 5.9443811,-4.18392 z"
id="path1034" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 41.449701,89.74895 -3.271488,4.811191 -1.081098,-7.114252 z"
id="path1036" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 62.942947,109.92982 6.141843,0.72649 -1.721283,-3.95336 z"
id="path1038" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 32.224466,117.88994 1.932421,3.77693 5.944381,-4.18392 z"
id="path1040" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.442952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 60.694571,55.840178 3.725891,-5.084042 2.552554,5.613245 z"
id="path1110" />
<text
xml:space="preserve"
id="text896"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16.9333px;font-family:Vollkorn;-inkscape-font-specification:Vollkorn;text-align:center;white-space:pre;shape-inside:url(#rect898);fill:#000000;fill-opacity:1;stroke:none"
transform="translate(-84.381774,58.515473)"
x="9.7948313"
y="0"><tspan
x="131.40946"
y="25.294638"><tspan
style="font-style:normal;font-variant:normal;font-weight:600;font-stretch:normal;font-size:16.9333px;font-family:Vollkorn;-inkscape-font-specification:'Vollkorn Semi-Bold';text-align:center;text-anchor:middle">Julia</tspan></tspan></text>
<text
xml:space="preserve"
id="text916"
style="font-style:normal;font-weight:normal;font-size:9.87778px;font-family:sans-serif;text-align:start;white-space:pre;shape-inside:url(#rect918);fill:#000000;fill-opacity:1;stroke:none"
transform="translate(-4.7594589,36.893148)"
x="8.1396104e-07"
y="0"><tspan
x="51.390625"
y="63.536395"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.87778px;font-family:Vollkorn;-inkscape-font-specification:Vollkorn;text-align:start;text-anchor:start">has attended PlutoCon 2021!</tspan></tspan></text>
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 142.44761,121.03359 -0.84452,-5.81837 4.13838,1.90403 z"
id="path1675" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 205.77908,88.545335 1.66905,4.637569 1.97889,-5.142439 z"
id="path1677" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 181.07989,106.0953 -3.27149,4.81119 -1.0811,-7.11426 z"
id="path1679" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 195.20078,122.96985 6.14184,0.72649 -1.72128,-3.95336 z"
id="path1681" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 164.48229,130.92997 1.93243,3.77693 5.94438,-4.18392 z"
id="path1683" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 153.00224,28.684247 -0.84452,-5.818368 4.13838,1.904023 z"
id="path1685" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 177.27282,42.719035 1.66905,4.637569 1.97889,-5.142439 z"
id="path1687" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 154.98219,57.641811 -3.27149,4.811191 -1.0811,-7.114252 z"
id="path1689" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 177.8632,78.582079 6.14184,0.72649 -1.72128,-3.953368 z"
id="path1691" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 154.55309,81.779696 1.93243,3.77693 5.94438,-4.18392 z"
id="path1693" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 195.20078,122.96985 6.14184,0.72649 -1.72128,-3.95336 z"
id="path1697" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 164.48229,130.92997 1.93243,3.77693 5.94438,-4.18392 z"
id="path1699" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.442952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 192.9524,68.880203 3.72589,-5.084042 2.55255,5.613245 z"
id="path1701" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.18963,21.770578 1.66905,4.637569 1.97889,-5.142439 z"
id="path1705" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 90.081106,31.179648 -3.27149,4.811191 -1.0811,-7.114252 z"
id="path1707" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 111.57436,51.360521 6.14184,0.72649 -1.72128,-3.953368 z"
id="path1709" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 89.529858,54.565057 1.93243,3.77693 5.94438,-4.18392 z"
id="path1711" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.442952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 137.83224,43.097176 3.72589,-5.084042 2.55255,5.613245 z"
id="path1713" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 5.6630999,229.77297 -0.8445161,-5.81837 4.1383771,1.90403 z"
id="path1715" />
<g
id="g1000"
clip-path="url(#clipPath1002)"
transform="matrix(1.1446119,0,0,1.1446119,-11.904245,-39.58106)">
<path
style="display:inline;opacity:0.99;fill:#f5f3d4;fill-opacity:1;stroke:none;stroke-width:0.188794px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 106.63996,223.82447 c -31.881683,2.99382 -93.239279,1.84506 -92.253663,25.27736 0.985616,23.4323 24.640407,21.03372 19.318071,41.69841 -5.322318,20.66471 99.547232,56.82795 136.015022,18.26613 36.4678,-38.56181 9.70487,-76.24054 -23.65478,-82.1053 -18.67817,-3.28369 -26.30159,-4.36891 -39.42465,-3.1366 z"
id="path3500"
inkscape:connector-curvature="0"
sodipodi:nodetypes="assssa" />
<g
id="g996"
transform="matrix(0.36068655,0.01854231,-0.01854231,0.36068655,54.048368,245.07956)"
style="stroke:none">
<rect
y="19.698162"
x="95.749306"
height="61.071087"
width="48.776691"
id="rect927-2"
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="10.394345"
ry="10.394345" />
<path
id="path914"
d="m -190.43094,39.61589 c -2.55117,-0.72411 -4.29901,-2.32387 -5.31042,-4.86049 -0.58252,-1.46096 -0.62014,-1.9344 -0.70737,-8.90074 -0.0671,-5.35685 -0.17696,-7.38125 -0.40407,-7.44427 -0.17156,-0.0476 -0.81795,-0.224 -1.43642,-0.39198 l -1.12448,-0.30542 V 15.60695 13.5009 h 4.8948 4.89479 v 8.85819 c 0,9.83428 0.0891,10.44719 1.68374,11.58387 1.58553,1.13019 4.68144,0.67917 6.4522,-0.93996 0.58853,-0.53814 0.59531,-0.62373 0.59531,-7.51798 0,-5.34337 -0.0773,-6.99958 -0.33073,-7.08457 -0.1819,-0.061 -0.83675,-0.24045 -1.45521,-0.39877 l -1.12448,-0.28784 V 15.60737 13.5009 l 4.96094,-10e-5 4.96094,-9e-5 -0.0723,10.36564 c -0.0408,5.84548 0.0308,10.46876 0.1642,10.60211 0.13005,0.13006 0.81742,0.38434 1.52747,0.56508 l 1.29101,0.32862 0.0769,2.16625 0.0768,2.16624 h -4.48031 c -4.87055,0 -4.7971,0.0236 -4.80512,-1.54299 -0.002,-0.38828 -0.0761,-0.97651 -0.16469,-1.30718 -0.15444,-0.57642 -0.21464,-0.55111 -1.46027,0.61403 -0.71455,0.66838 -1.84091,1.45486 -2.50301,1.74774 -1.51192,0.6688 -4.57435,0.87113 -6.20025,0.40964 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
transform="translate(305.25358,23.674879)"
inkscape:connector-curvature="0" />
</g>
<g
id="g1001"
transform="matrix(-0.22115488,-0.18420994,0.18420994,-0.22115488,140.80799,287.36564)"
style="stroke:none">
<rect
y="18.896353"
x="122.87716"
height="61.071087"
width="48.776691"
id="rect927-6"
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="10.772322"
ry="10.772322" />
<path
id="path912"
d="m 147.62515,66.409679 c -1.15871,-0.28334 -2.82392,-1.19501 -3.4931,-1.91241 -1.4392,-1.54291 -1.52402,-2.10633 -1.66627,-11.06849 l -0.13229,-8.33438 -1.78594,-0.0782 -1.78594,-0.0782 v -2.35707 -2.35707 l 1.78594,-0.0782 1.78594,-0.0782 0.0743,-3.24899 0.0743,-3.24899 3.36523,0.074 3.36523,0.074 0.0743,3.24114 0.0743,3.24115 h 2.37311 2.3731 v 2.38125 2.38125 h -2.38125 -2.38125 v 7.29344 c 0,4.71853 0.10093,7.48202 0.28588,7.8276 0.43072,0.8048 1.87068,1.3038 3.2262,1.11801 l 1.16187,-0.15925 0.32407,2.31656 c 0.17824,1.2741 0.22793,2.40901 0.11042,2.52202 -0.62421,0.60032 -5.11429,0.9483 -6.82823,0.52919 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(-0.0660723,-0.35964355,0.35964355,-0.0660723,136.19338,319.19912)"
id="g1037"
style="stroke:none;stroke-opacity:1">
<rect
y="21.569048"
x="148.80231"
height="61.071087"
width="48.776691"
id="rect927-5"
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="12.284226"
ry="12.284226" />
<path
id="path910"
d="m 172.88195,39.40291 c -3.23182,0.04431 -5.44717,0.914537 -7.65586,2.933154 -2.79223,2.551949 -3.91604,5.49719 -3.91604,10.261389 0,6.10126 2.17595,10.151287 6.55567,12.200805 0.91502,0.428191 2.18659,0.881147 2.82567,1.006657 7.30291,1.434211 13.6027,-2.74004 14.79393,-9.802502 0.43324,-2.56848 0.20216,-6.512687 -0.50953,-8.696627 -1.091,-3.347929 -3.52491,-5.979639 -6.63991,-7.178889 -0.96318,-0.370811 -2.31708,-0.605298 -4.00389,-0.693497 -0.50612,-0.02646 -0.98835,-0.03682 -1.45004,-0.03049 z m -0.17156,5.27668 c 0.27292,-0.0043 0.59648,0.0063 0.99632,0.02585 2.32559,0.11366 3.26018,0.722 4.2664,2.778641 0.62916,1.285959 0.74401,1.892541 0.84181,4.447791 0.16029,4.18765 -0.65011,6.676808 -2.65823,8.164359 -0.47617,0.352729 -1.24612,0.568301 -2.24896,0.628901 -2.63269,0.15911 -4.30278,-1.00408 -5.23482,-3.64577 -0.4586,-1.299792 -0.54056,-6.97702 -0.12248,-8.482171 0.36553,-1.3159 1.28719,-2.61457 2.38332,-3.358452 0.59531,-0.40395 0.95786,-0.546295 1.77664,-0.559138 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
<g
id="g991"
transform="matrix(0.32775092,0.01693302,-0.01693302,0.32775092,43.414776,238.71939)"
style="stroke:none">
<rect
y="15.049464"
x="71.430122"
height="60.212238"
width="42.89209"
id="rect927-1"
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:14.5064;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
rx="11.391127"
ry="11.391127" />
<path
id="path902"
d="m -218.19911,37.63092 v -2.06373 l 1.5875,-0.32789 1.5875,-0.3279 V 21.15514 c 0,-10.77083 -0.0718,-13.77978 -0.33073,-13.86463 -0.1819,-0.0596 -1.01534,-0.2429 -1.85208,-0.40733 l -1.52136,-0.29896 v -2.2302 -2.2302 l 5.35781,-5e-5 5.35782,-4e-5 -0.0701,16.26048 c -0.0792,18.36478 -0.30183,16.58551 2.12065,16.94874 l 1.25677,0.18845 v 2.08662 2.08663 h -6.74688 -6.74687 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583;stroke-opacity:1"
transform="translate(305.25358,23.674879)"
inkscape:connector-curvature="0" />
</g>
<g
id="g986"
transform="matrix(0.3963225,-0.15136405,0.15136405,0.3963225,21.035664,258.2756)"
style="stroke:none">
<a
id="a3580"
transform="translate(79.752976,10.96131)">
<rect
ry="11.292138"
rx="11.292138"
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:5;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect927"
width="48.776688"
height="61.071087"
x="-39.261646"
y="4.2600803" />
</a>
<path
transform="scale(0.26458333)"
id="path906"
d="m 196.02539,106.50781 v 7.96094 7.96094 l 4.91992,1.46093 c 10.14743,3.01346 9.13578,-2.76501 8.83985,50.40626 l -0.25977,46.71093 -6.75,1.39844 -6.75,1.40039 v 7.84961 7.85156 h 27 27 v -7.9082 -7.91016 l -7,-1.18164 -7,-1.17969 v -15.41015 -15.41016 l 15.25,-0.0176 c 9.26574,-0.0106 17.86896,-0.57225 21.92383,-1.43164 19.00361,-4.02769 31.68608,-16.80411 33.82812,-34.07617 3.03765,-24.49394 -11.70268,-43.29943 -37.17968,-47.43359 -3.478,-0.5644 -21.50976,-1.03138 -40.07227,-1.03516 z m 40,20 h 13.46094 c 16.64069,0 22.98346,1.8703 27.50586,8.11328 8.74439,12.07129 4.71592,28.9416 -8.19922,34.33789 -2.76677,1.15601 -7.38198,1.54883 -18.23633,1.54883 h -14.53125 v -22 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1"
inkscape:connector-curvature="0" />
</g>
<g
id="g7315"
transform="matrix(0.21843696,0.01362281,-0.01362281,0.21843696,107.03736,242.51052)">
<path
sodipodi:nodetypes="ccccccscccccccsccsccccccccccccsccccccccccccccccccccccsccccccccccccccccccccccccccccscccccccccsscscssccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccsccccccccccccccc"
inkscape:connector-curvature="0"
id="path2935"
d="m -99.339844,110.72266 c -3.438576,0.46292 -6.854126,1.55204 -9.704796,3.57187 -3.99395,2.96168 -7.89479,6.1395 -11.02127,10.03482 -1.74036,2.18757 -3.15716,4.60864 -4.45031,7.08074 -0.99135,1.84044 -1.94303,3.70297 -2.9955,5.50983 -0.36221,0.42932 -1.00075,0.3676 -1.47851,0.20117 -2.43713,-0.62805 -5.00941,-0.60804 -7.46915,-0.11813 -1.86374,0.36157 -3.69244,0.89775 -5.47219,1.55561 -1.19853,0.48357 -2.41867,1.07899 -3.25788,2.09377 -1.28144,1.67247 -1.54754,3.96622 -0.99243,5.96456 0.67424,2.48434 2.41331,4.57656 4.52522,5.99741 2.16798,1.46826 4.73766,2.24239 7.32042,2.55017 0.26895,0.0632 0.57845,0.0286 0.81883,0.1713 0.33219,0.33112 0.15487,0.83153 0.065,1.22591 -1.3065,6.71147 -2.8303,13.40201 -3.45087,20.22345 -0.42297,4.71333 -0.70254,9.44384 -0.69228,14.17733 0.0784,3.74651 0.66303,7.4618 1.42824,11.12364 0.40553,2.10105 0.61009,4.26665 0.3095,6.39579 -0.0924,1.35455 0.60012,2.63965 1.53005,3.58018 0.98232,1.04583 2.26362,1.73661 3.53616,2.36291 0.7275,0.45808 0.96593,1.45222 0.67307,2.23492 -0.45151,1.7244 -1.24871,3.3723 -1.36738,5.17249 -0.10271,0.7793 -0.0574,1.60311 -0.38496,2.3339 -0.39165,0.68796 -1.24371,0.99253 -2.00367,0.89815 -2.34406,0.008 -4.69705,-0.091 -7.03052,0.1899 -2.16465,0.24019 -4.34864,0.71575 -6.27019,1.77618 -2.82835,1.64813 -4.77835,4.80868 -4.77096,8.10767 0.003,1.8297 0.69853,3.67826 2.02417,4.95976 1.31101,1.35134 3.08585,2.1165 4.85794,2.66047 3.23627,1.07386 6.71057,1.26207 10.08435,0.89781 4.64928,-0.38946 9.32135,-0.64734 13.92334,-1.45215 1.24661,-0.24046 2.55751,-0.71393 3.34043,-1.77076 0.59491,-0.8073 0.69348,-1.84882 0.66129,-2.82073 -0.006,-1.00539 -0.19266,-2.00729 -0.55768,-2.94444 -0.2321,-0.66883 -0.33974,-1.37613 -0.33299,-2.08294 -0.0417,-0.70771 -0.31013,-1.38425 -0.70238,-1.96905 -0.37224,-0.64848 -0.60698,-1.44403 -0.33993,-2.17519 0.68308,-2.95178 1.44862,-5.89425 1.81304,-8.90773 0.24423,-1.62344 0.48122,-3.24793 0.71369,-4.87309 0.37251,-0.84158 1.27273,-1.23922 2.08594,-1.53516 2.52822,-0.94084 5.06047,-1.89549 7.68555,-2.53516 0.87552,0.10765 1.55118,0.86955 1.74609,1.70118 1.55564,3.95624 3.2816,7.84926 4.62305,11.88671 0.330108,1.42235 -0.29181,3.0931 -1.62902,3.76809 -1.97918,1.02594 -4.33544,1.09534 -6.2245,2.32371 -1.26613,0.78881 -2.19941,2.15194 -2.31302,3.65754 -0.21065,1.98226 0.77932,4.05878 2.50715,5.07617 2.4264,1.73326 5.50983,2.46344 8.462934,2.13282 3.861202,-0.2737 7.726697,-0.4817 11.58885,-0.73999 2.076474,-0.15243 4.16135,-0.32429 6.1994,-0.76716 1.62208,-0.38397 3.209084,-1.10497 4.373133,-2.32626 1.105868,-1.11879 1.782875,-2.63081 1.927082,-4.19398 0.30069,-2.56478 -0.551881,-5.31077 -2.471237,-7.08209 -0.92734,-0.85288 -2.119771,-1.38328 -3.357541,-1.58645 -1.702848,-0.37151 -3.517634,-0.46567 -5.063352,-1.34643 -2.029526,-1.19087 -3.479554,-3.19875 -4.271366,-5.38862 -0.542181,-1.45726 -1.087841,-3.00822 -0.846741,-4.58587 0.174799,-1.17623 0.61102,-2.30215 1.159241,-3.35163 0.467279,-0.80563 1.190867,-1.42757 1.988202,-1.89257 2.043543,-1.3591 4.283898,-2.50386 5.955839,-4.34301 0.552259,-0.58807 0.918194,-1.44524 0.662042,-2.2491 -0.271939,-1.0377 -1.155499,-1.8461 -1.208434,-2.95328 -0.07916,-0.90622 0.126155,-1.80404 0.167242,-2.70718 0.375904,-4.18963 0.833924,-8.40364 2.008109,-12.45665 0.191276,-0.59123 0.359259,-1.21952 0.748544,-1.71494 0.714419,-0.80959 1.869385,-1.16033 2.399159,-2.14421 0.465046,-1.14143 0.367751,-2.39849 0.54845,-3.59628 0.987967,-10.21485 2.041623,-20.42707 2.6663,-30.6724 0.154716,-2.68018 0.31209,-5.36409 0.281941,-8.04957 -0.126745,-2.88476 -0.867115,-5.69888 -1.711729,-8.44592 -0.88328,-2.73725 -2.258431,-5.32852 -4.138788,-7.51283 -2.043632,-2.41628 -4.627961,-4.33691 -7.434506,-5.78026 -1.859451,-0.98243 -3.764832,-1.87543 -5.673721,-2.75668 -1.790654,-0.80008 -3.626114,-1.65412 -5.616487,-1.7574 -0.23402,-0.0138 -0.468341,-0.0164 -0.70271,-0.0126 z"
style="fill:#000000;stroke-width:0.247201" />
<path
sodipodi:nodetypes="azzccsccccccza"
inkscape:connector-curvature="0"
id="path2933"
d="m -135.88677,237.50498 c 0.26017,0.006 0.45215,-0.0287 0.77468,-0.0971 0.32252,-0.0684 0.53565,-0.2747 0.99348,-0.20444 0.45783,0.0702 1.3182,-0.13649 1.57949,-0.16318 0.2613,-0.0267 2.36522,-0.94539 2.80513,-1.11252 0.43992,-0.16715 3.58659,0.61699 3.02527,-1.43206 -0.53333,-1.94686 -7.7399,-1.7856 -8.4013,-2.25483 -0.44657,-0.31683 -3.69811,-0.59867 -4.39047,-0.38058 -0.34755,0.10947 -0.97338,0.31033 -1.39072,0.44632 -0.41735,0.13601 -0.81517,0.25701 -0.88404,0.26891 -1.07568,0.18593 -2.54101,2.23775 -2.34746,3.28695 0.12207,0.66176 0.9489,1.16453 2.09112,1.27158 0.44426,0.0417 3.99609,7.2e-4 4.98651,0.16931 0.99043,0.16859 0.76652,0.19227 1.15831,0.20161 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201" />
<path
id="path2931"
d="m -96.841173,235.82943 c 1.446221,0.0914 2.976305,-0.27816 3.40014,-0.82106 0.423812,-0.54283 1.820313,-0.84564 3.103288,-0.67279 4.873277,0.6564 10.872872,-1.89914 7.49833,-3.19392 -2.039046,-0.78242 -7.241692,-0.58091 -8.555684,0.33133 -0.704295,0.48893 -1.823085,0.38467 -2.68712,-0.25037 -0.99652,-0.73233 -1.60221,-0.70961 -1.853114,0.0701 -0.205004,0.63707 -0.986726,0.92278 -1.73715,0.63483 -1.774512,-0.68082 -3.688877,0.34863 -4.325117,2.32587 -0.37697,1.17127 -0.11986,1.55018 1.01073,1.49034 0.83389,-0.0442 2.699416,-0.005 4.145697,0.0856 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.8375"
inkscape:connector-curvature="0" />
<path
id="path2927"
d="m -123.111,206.51515 c 2.9654,0.0804 5.73621,-0.0443 8.28139,-0.37246 4.24114,-0.54693 4.58079,-0.60181 5.76303,-0.93097 0.62032,-0.17273 1.46656,-0.29414 1.88053,-0.2698 0.41397,0.0243 0.86442,-0.0479 1.001,-0.16044 0.44334,-0.36539 4.21272,-0.73438 5.27812,-0.51667 0.949742,0.19408 1.056622,0.15995 1.321102,-0.42163 0.17992,-0.39564 0.474941,-0.62086 0.787265,-0.60101 0.274731,0.0175 0.50672,-0.0816 0.515529,-0.22023 0.02496,-0.39271 1.694635,-0.89 3.082118,-0.91799 1.053756,-0.0213 1.444957,-0.17963 1.475878,-0.59742 0.01197,-0.16151 0.395915,-0.50288 0.85325,-0.75864 0.97199,-0.54359 3.395259,-0.56708 4.130795,-0.04 0.258038,0.18488 0.539525,0.27419 0.625522,0.19848 0.086,-0.0757 0.09644,-1.07403 0.0232,-2.21845 -0.166639,-2.60397 0.05374,-6.24626 0.580271,-9.59028 0.223002,-1.4163 0.414219,-2.74171 0.424926,-2.94539 0.01074,-0.20366 0.219531,-1.37676 0.464052,-2.60687 0.492435,-2.4773 0.434883,-3.03309 -0.319049,-3.08101 -0.280405,-0.0178 -0.767387,-0.22559 -1.082184,-0.4617 -0.314794,-0.2361 -0.678874,-0.37244 -0.809063,-0.30299 -0.130194,0.0695 -0.483437,-0.14946 -0.784995,-0.4865 -0.301554,-0.33703 -0.845762,-0.70561 -1.209346,-0.81907 -0.363582,-0.11349 -0.791683,-0.39287 -0.95133,-0.62093 -0.159646,-0.22807 -0.574632,-0.76328 -0.922193,-1.18937 -0.347562,-0.42609 -0.626646,-0.85783 -0.620188,-0.95943 0.0065,-0.10159 -0.24192,-0.45531 -0.551953,-0.78602 -0.565301,-0.60302 -0.627701,-1.04583 -0.459097,-3.25793 0.09428,-1.23689 0.63799,-2.01662 1.795827,-2.57532 0.417361,-0.2014 0.917737,-0.49541 1.111947,-0.65336 0.46102,-0.37493 0.689061,-0.34678 1.034456,0.12769 0.155978,0.21426 0.436398,0.39928 0.62316,0.41116 0.415983,0.0264 2.198984,1.9526 2.173827,2.34836 -0.01,0.15697 0.182313,0.74881 0.427314,1.3152 0.319007,0.73748 0.558942,0.99432 0.845254,0.90484 0.219888,-0.0687 0.590029,0.0706 0.822535,0.30948 0.60761,0.62442 2.97165,0.71083 3.198698,-0.36538 0.108463,-0.51412 0.09353,-2.63119 0.308336,-3.57118 0.373105,-1.63271 0.547471,-7.07459 0.350502,-8.75339 -0.063,-0.83939 -0.189589,-2.03624 0.179244,-2.74189 0.196176,-0.10466 0.07576,-0.94096 -0.125917,-1.64572 -0.157514,-0.55053 0.365561,-1.32365 0.382816,-1.68916 0.06018,-2.52595 -0.632434,-2.74544 0.214475,-4.58305 -0.08155,-1.49217 -0.644747,-0.28843 -0.06453,-1.5903 0.497269,-4.60017 0.86059,-0.63815 1.212016,-6.25708 0.166633,-3.20653 -0.846668,-10.21518 -1.717274,-11.87775 -0.235186,-0.44914 -0.486868,-0.98757 -0.559289,-1.19653 -0.800507,-2.30965 -2.586478,-5.37451 -3.858061,-6.6207 -0.950746,-0.93177 -3.529881,-2.26908 -4.534168,-2.35102 -1.387641,-0.11323 -3.208746,-1.39104 -3.491391,-2.44981 -0.214149,-0.80219 -0.32518,-0.88437 -1.493323,-1.10537 -0.694088,-0.13132 -1.526741,-0.32338 -1.850341,-0.42682 -0.338321,-0.10814 -0.634041,-0.0754 -0.695833,0.0769 -0.05906,0.14576 -0.46867,0.27044 -0.91015,0.27707 -0.441481,0.007 -0.878981,0.0792 -0.972221,0.16133 -0.0932,0.0821 -0.542759,0.12554 -0.998909,0.0965 -0.97974,-0.0623 -3.47945,0.95339 -4.74045,1.92612 -0.4907,0.37853 -1.07563,0.67657 -1.29984,0.66232 -0.22421,-0.0143 -1.24973,0.70082 -2.27893,1.58904 -1.0292,0.88822 -2.07393,1.60207 -2.32161,1.58632 -0.24769,-0.0157 -0.45923,0.11128 -0.4701,0.28228 -0.0109,0.17099 -0.28715,0.57193 -0.61397,0.89098 -0.8977,0.87637 -3.93263,4.38997 -3.9438,4.56582 -0.005,0.0848 -0.12767,0.28124 -0.27173,0.43663 -1.19926,1.29356 -1.60328,1.78321 -1.61429,1.95642 -0.007,0.11073 -0.41189,0.90489 -0.89966,1.7648 -0.48778,0.85991 -0.98876,1.77992 -1.11329,2.04448 -2.37856,5.05287 -2.57386,5.79626 -1.86962,7.11629 0.24757,0.46405 0.5521,0.85021 0.67672,0.85813 0.12462,0.008 0.19519,0.50826 0.15682,1.11186 -0.0529,0.83148 -0.23103,1.2507 -0.73519,1.72978 -0.36598,0.34778 -0.74701,0.8876 -0.84674,1.1996 -0.18499,0.57869 -0.94264,0.86447 -1.7669,0.66643 -0.38109,-0.0916 -0.554,0.19915 -1.06253,1.78644 -0.45562,1.42215 -0.55621,2.06555 -0.40261,2.57526 0.21344,0.70822 -0.0808,2.22294 -0.47851,2.46387 -0.30898,0.18714 -0.81439,1.6442 -1.43927,4.14931 -0.55532,2.22625 -1.64857,7.45869 -1.68548,8.06696 -0.0124,0.20356 -0.0918,0.53292 -0.17645,0.73189 -0.0847,0.19897 -0.19789,0.69337 -0.25155,1.09866 -0.23534,1.77757 -1.31094,12.65494 -1.3509,13.66147 -0.0819,2.06465 0.0815,8.0482 0.24743,9.05678 0.75438,1.17326 0.71412,5.22534 0.79972,5.47776 0.31811,1.20086 0.85253,5.46565 0.58316,6.29089 -0.12949,0.39672 -0.0453,0.91732 -0.0152,1.31466 0.17934,0.0154 0.71048,0.46792 1.18036,1.00483 0.72011,0.82286 1.10282,1.03212 2.43603,1.33207 0.95779,0.21546 1.65185,0.27039 1.75956,0.1393 0.0978,-0.11911 0.82741,-0.19897 1.62133,-0.17745 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2925"
d="m -111.76514,142.08273 c -0.15516,-0.21314 -0.46101,-0.37343 -0.67965,-0.35619 -0.72144,0.0569 -1.35428,-0.37036 -1.92308,-1.29832 -0.30859,-0.50343 -0.7961,-1.17688 -1.08336,-1.49657 -0.41483,-0.46165 -0.51131,-0.88454 -0.46896,-2.05542 0.0293,-0.81081 0.19868,-1.70842 0.37641,-1.99469 0.17769,-0.28628 0.34119,-0.80535 0.36332,-1.15349 0.0221,-0.34813 0.15872,-0.62544 0.30356,-0.61623 0.14736,0.009 0.2104,-0.19598 0.14314,-0.46633 -0.0859,-0.34546 0.026,-0.51949 0.39369,-0.61091 0.28263,-0.0703 0.52399,-0.2869 0.53634,-0.48129 0.0124,-0.19438 0.13349,-0.34637 0.26917,-0.33775 0.13569,0.009 0.26275,-0.17836 0.28236,-0.41552 0.0684,-0.82725 1.46418,-1.86211 2.26592,-1.68 0.16787,0.0381 0.31334,-0.0584 0.32327,-0.21458 0.01,-0.15616 0.18052,-0.20943 0.37908,-0.11839 0.22159,0.10159 0.37007,0.0233 0.38445,-0.20289 0.032,-0.50344 1.07248,-0.78487 2.55366,-0.69072 1.10639,0.0703 1.31817,0.17986 2.04773,1.05904 0.44754,0.53933 0.94095,0.98869 1.09647,0.99858 0.15551,0.01 0.47202,0.97745 0.70334,2.15016 0.69644,3.53059 0.69492,3.49991 0.18843,3.82305 -0.31305,0.19973 -0.43321,0.50181 -0.377,0.94775 0.0453,0.36001 0.0134,0.68193 -0.0711,0.71537 -0.0845,0.0334 -0.40389,0.49075 -0.70977,1.01625 -0.37503,0.64431 -0.74816,0.97028 -1.14583,1.00098 -0.38433,0.0297 -0.70165,0.29329 -0.91116,0.75695 -0.20108,0.44499 -0.55741,0.75191 -0.95149,0.81953 -0.34652,0.0595 -0.78109,0.21248 -0.9657,0.34003 -0.18462,0.12756 -0.71825,0.19312 -1.18584,0.14571 -0.46759,-0.0474 -0.85531,-0.005 -0.8616,0.0936 -0.006,0.0989 -0.23243,0.29909 -0.50255,0.44482 -0.39447,0.21282 -0.54664,0.1887 -0.77323,-0.12257 z"
style="fill:#000000;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2923"
d="m -131.74439,150.40585 c 0.0789,-0.11118 0.32081,-1.01539 0.53761,-2.00936 0.2168,-0.99396 0.59383,-2.17197 0.83781,-2.6178 0.39211,-0.71648 0.40655,-0.88813 0.12433,-1.4783 -0.39196,-0.81977 -1.48376,-1.08333 -2.18299,-0.52698 -0.32093,0.25534 -0.63633,0.31288 -0.91761,0.1674 -0.6488,-0.33554 -1.76164,-0.38439 -1.89965,-0.0834 -0.0672,0.14674 -0.5723,0.30971 -1.12227,0.36217 -0.79623,0.0759 -1.08912,0.24885 -1.43753,0.84868 -0.71105,1.22414 -0.62485,1.98927 0.34469,3.05986 0.47737,0.52713 1.30436,1.10712 1.83775,1.28888 0.53338,0.18176 1.40466,0.50339 1.93617,0.71473 1.16333,0.46259 1.74925,0.5453 1.94165,0.27411 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0" />
</g>
<g
id="g7331"
transform="matrix(0.21886134,0,0,0.21886134,105.49676,240.23412)">
<path
id="path2907"
d="m 179.05664,125.49805 c -1.26811,0.1956 -2.54125,0.43666 -3.83008,0.39648 -0.48803,-0.0799 -1.00016,-0.16686 -1.48084,-0.001 -1.1922,0.27037 -2.41027,0.43657 -3.5758,0.81583 -1.06327,0.60549 -2.10666,1.24925 -3.10327,1.95973 -0.7235,0.51867 -1.38975,1.12223 -1.93664,1.82683 -0.71254,0.88345 -1.34741,1.82611 -1.98546,2.76379 -1.46881,2.18005 -2.73264,4.50244 -3.70689,6.94559 -0.95106,2.35963 -1.66895,4.80618 -2.28591,7.27213 -0.92964,3.78683 -1.59302,7.63136 -2.30001,11.46403 -1.0021,5.4972 -1.99892,10.99538 -2.98189,16.49602 -0.54415,3.16715 -1.12068,6.33045 -1.53386,9.51813 -0.47943,3.85443 -0.77533,7.72844 -1.08292,11.59947 -0.14342,1.83478 -0.28417,3.67156 -0.29534,5.51291 -0.0172,0.7963 -0.004,1.59367 -0.028,2.38942 -0.099,0.59417 -0.56205,1.0335 -0.77003,1.58522 -0.14806,0.37645 -0.19254,0.78272 -0.29951,1.17144 -0.45538,1.91981 -0.95928,3.85241 -1.87768,5.61104 -0.3894,0.75982 -0.89779,1.45748 -1.49224,2.0698 -0.21884,0.26402 -0.35243,0.59258 -0.39648,0.93164 -0.18866,0.43638 -0.76054,0.5205 -0.94868,0.95947 -0.54327,0.87129 -0.90015,1.84218 -1.19976,2.81983 -0.20072,0.33851 -0.69685,0.45034 -1.02343,0.23047 -0.84337,-0.38983 -1.62913,-0.92617 -2.54102,-1.15039 -1.55114,-0.12009 -3.11922,0.14991 -4.56836,0.70507 -1.0451,0.83046 -1.59895,2.18026 -1.58594,3.5 -0.0518,2.05246 0.30073,4.11934 1.07422,6.02344 0.51009,0.87612 1.08201,1.71424 1.62951,2.56704 1.16522,1.78124 2.42716,3.52431 4.00587,4.96556 1.88686,1.76925 4.0251,3.23651 6.12503,4.73606 1.75788,1.22625 3.5246,2.44147 5.34385,3.57551 1.34682,0.864 2.59688,1.91033 4.09146,2.51879 0.43778,0.18078 0.91555,0.32528 1.39253,0.235 0.49437,-0.0557 0.96981,-0.211 1.43909,-0.36944 0.57195,-0.28141 0.87172,-0.89294 1.05665,-1.47266 0.47439,-1.43274 0.52454,-2.95437 0.65429,-4.44531 -0.006,-0.47153 -0.25558,-0.90986 -0.59765,-1.22266 -0.17348,-0.25777 0.0302,-0.65285 0.33398,-0.68164 1.61356,-0.81175 2.55557,-2.74944 2.20984,-4.52052 -0.161,-1.20603 -0.46544,-2.39016 -0.87195,-3.53612 -0.35008,-0.48944 -0.78545,-0.90875 -1.17535,-1.36539 -1.15724,-1.29464 -2.32788,-2.57735 -3.48735,-3.86986 -0.29442,-0.34215 -0.58571,-0.68697 -0.87636,-1.03233 -0.21132,-0.73124 0.0142,-1.48498 0.083,-2.21976 0.13858,-1.04273 0.36572,-2.10705 0.94049,-3.00485 0.32914,-0.86541 1.05237,-1.47961 1.65625,-2.15039 0.31192,-0.37192 0.66516,-0.71464 1.0883,-0.95795 0.53316,-0.36492 1.09929,-0.70725 1.73538,-0.85472 1.22832,-0.35733 2.45635,-0.78949 3.74422,-0.85725 0.69038,0.004 1.37212,0.13368 2.05402,0.22871 1.28345,0.21493 2.55798,0.48054 3.84307,0.68614 2.83266,0.5226 5.67001,1.02653 8.48032,1.66132 0.75259,0.24149 1.4943,0.51485 2.23828,0.78125 0.66896,0.10745 1.34993,0.19109 1.98633,0.43555 0.52258,0.40535 1.05456,0.80193 1.5332,1.25977 0.23836,0.18771 0.61443,0.16681 0.77461,0.45839 0.16205,0.23366 0.0451,0.52968 0.15313,0.77989 0.17014,0.45167 0.52476,0.79512 0.78818,1.19121 0.65359,0.89027 1.29899,1.8023 2.12978,2.53926 1.07601,0.79541 2.17197,1.56333 3.24928,2.35698 1.5841,1.14788 3.17065,2.29345 4.797,3.38099 1.25629,0.87418 2.41775,1.87647 3.55724,2.89484 0.30395,0.33744 0.30966,0.81942 0.33362,1.24756 0.0105,0.6763 0.0274,1.39678 0.38641,1.99339 0.23641,0.40894 0.70458,0.57392 1.06903,0.84108 0.20927,0.13205 0.35675,0.33242 0.53889,0.49399 0.27318,0.20561 0.60653,0.30078 0.92596,0.40835 0.47592,0.33183 0.56,0.95365 0.89122,1.39691 0.51249,0.7341 1.29398,1.20855 2.02471,1.69736 0.57776,0.36799 1.21979,0.71408 1.92492,0.69863 0.55543,0.0215 1.08318,-0.18312 1.58595,-0.39484 1.6533,-0.62292 3.30661,-1.24584 4.95992,-1.86876 0.66805,-0.68093 1.31058,-1.39453 2.07193,-1.97477 1.753,-1.4984 3.51125,-2.99154 5.31283,-4.43148 1.1306,-1.06128 2.10933,-2.27097 3.23497,-3.33738 1.95,-1.9351 3.93604,-3.83431 5.97858,-5.67171 0.54373,-0.4939 1.07707,-1.01136 1.47273,-1.63548 0.65268,-0.93923 1.19104,-1.95091 1.75143,-2.9462 0.65928,-1.23072 1.29271,-2.52539 1.42753,-3.93462 0.0847,-1.106 -0.22023,-2.18797 -0.50389,-3.24511 -0.18378,-0.6967 -0.38708,-1.38801 -0.58401,-2.08106 -0.41361,-0.98385 -1.04761,-1.89366 -1.90257,-2.54228 -0.78577,-0.54103 -1.70093,-0.84941 -2.60815,-1.11855 -0.57184,-0.15485 -1.20862,-0.26843 -1.76855,-0.008 -0.45127,0.17979 -0.77821,0.55559 -1.06563,0.93239 -0.35109,0.44756 -0.66419,0.93886 -0.84266,1.48138 -0.12506,0.53521 -0.0483,1.08991 0.0508,1.62257 0.0133,0.29418 -0.31544,0.51908 -0.58985,0.44531 -0.98188,-0.0707 -1.9562,0.13822 -2.9375,0.11719 -0.71798,0.0541 -1.30102,0.52106 -1.88526,0.89336 -0.51398,0.3405 -1.02586,0.68415 -1.53857,1.02656 -0.72558,1.02024 -1.78655,1.71783 -2.78804,2.43794 -1.17975,0.84738 -2.35728,1.69786 -3.53617,2.54643 -1.03895,0.98538 -2.09571,1.96109 -3.27735,2.77539 -0.66276,0.17828 -1.36364,-0.11789 -1.8457,-0.57226 -1.21187,-1.02355 -2.35821,-2.12093 -3.50977,-3.21094 -1.17625,-0.54004 -2.49413,-0.67755 -3.65908,-1.24742 -1.6934,-0.71604 -3.1991,-1.80695 -4.56943,-3.02016 -1.22095,-1.00698 -2.44637,-2.0502 -3.34571,-3.36719 -0.26615,-0.44412 -0.42511,-1.02374 -0.17968,-1.51171 1.85377,-3.75189 3.79664,-7.4588 5.73443,-11.16772 1.07475,-2.05795 2.15808,-4.11151 3.25035,-6.16016 1.09304,-1.97715 2.30415,-3.88808 3.61092,-5.73072 0.1399,-0.21442 0.21986,-0.53868 0.50976,-0.5918 0.32292,-0.0176 0.5391,0.35711 0.87234,0.27826 0.35342,-0.0353 0.67506,-0.22785 1.03518,-0.22633 0.26216,-0.0408 0.56187,-0.0278 0.76003,0.17248 0.20222,0.16273 0.47102,0.35259 0.74066,0.23653 0.68081,-0.13291 1.38356,-0.0329 2.04116,0.16562 2.03627,0.48167 4.0633,1.00148 6.08613,1.53628 1.31072,0.31349 2.67198,0.37191 4.01254,0.27487 0.76267,-0.0696 1.52138,-0.27125 2.18054,-0.66997 1.77562,-0.95823 3.15968,-2.62906 3.73724,-4.56579 0.3972,-1.22684 0.71048,-2.48904 0.82944,-3.77515 0.0461,-1.19466 -0.16312,-2.37875 -0.35556,-3.55284 -0.17336,-0.91681 -0.52856,-1.79275 -1.00193,-2.59478 -0.79687,-1.46721 -1.70398,-2.87641 -2.72827,-4.19524 -1.02131,-1.23036 -2.23614,-2.27718 -3.39114,-3.3769 -0.38262,-0.59125 -0.47086,-1.34286 -0.9604,-1.87044 -0.68294,-0.83371 -1.39887,-1.68056 -1.76562,-2.71006 -0.26566,-0.66724 -0.53307,-1.33714 -0.88921,-1.96247 -0.47935,-1.26966 -0.63233,-2.62747 -0.95166,-3.93985 -0.632,-2.87601 -1.2117,-5.76556 -1.98375,-8.60854 -0.52308,-1.86107 -1.23419,-3.6697 -2.1099,-5.39293 -1.01848,-1.97445 -2.50972,-3.66482 -4.14824,-5.14817 -1.64721,-1.48256 -3.44507,-2.80598 -5.39689,-3.86047 -1.45634,-0.79627 -2.99245,-1.44369 -4.57597,-1.94042 -2.21186,-0.70919 -4.49246,-1.16562 -6.75478,-1.67904 -3.01803,-0.65272 -6.04383,-1.27105 -9.08272,-1.81925 -0.8047,-0.0716 -1.6124,-0.10505 -2.41601,-0.18946 -0.0807,0.007 -0.16146,0.0143 -0.24219,0.0215 z"
style="fill:#000000;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2905"
d="m 154.89247,237.68197 c 0.009,-0.14462 -0.0942,-0.51345 -0.22987,-0.81964 -0.23973,-0.5412 -0.37886,-0.74583 -1.27794,-1.87971 -0.2362,-0.29788 -0.48336,-0.71403 -0.54922,-0.92477 -0.0659,-0.21073 -0.50648,-0.59772 -0.97914,-0.85996 -0.47266,-0.26224 -0.85266,-0.58262 -0.84444,-0.71194 0.008,-0.12932 -0.21191,-0.24955 -0.48921,-0.26718 -0.27729,-0.0176 -0.77649,-0.31876 -1.10931,-0.66918 -0.33281,-0.35043 -0.97836,-0.732 -1.43451,-0.84794 -0.45615,-0.11597 -0.88073,-0.37515 -0.94349,-0.57598 -0.0631,-0.20192 -0.43313,-0.38541 -0.82785,-0.4105 -0.39253,-0.025 -0.70665,-0.15638 -0.69803,-0.29208 0.009,-0.13568 -0.15084,-0.25729 -0.35438,-0.27022 -0.20353,-0.0129 -0.36252,-0.14202 -0.35331,-0.28686 0.01,-0.15105 -0.19787,-0.20991 -0.48662,-0.13808 -0.27685,0.0689 -0.49661,0.019 -0.48837,-0.11061 0.008,-0.12975 -0.39662,-0.33613 -0.89973,-0.45864 -0.50308,-0.12256 -1.10535,-0.2922 -1.33837,-0.37704 -0.23302,-0.0849 -0.43099,-0.039 -0.43995,0.10185 -0.0277,0.4356 3.27784,4.11412 4.21042,4.68552 0.48525,0.29729 1.12291,0.80356 1.41706,1.12502 1.06532,1.16426 5.71666,3.93884 6.34685,3.78594 0.23458,-0.0569 0.58621,0.014 0.78146,0.15735 0.47324,0.34773 0.96727,0.37004 0.98795,0.0448 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2903"
d="m 184.51202,209.93621 c 0.17745,-0.55825 0.41108,-1.09144 0.5192,-1.18486 0.10812,-0.0934 0.21163,-0.40669 0.23003,-0.69618 0.0184,-0.28945 0.13237,-0.62589 0.25336,-0.74762 0.12094,-0.12174 0.47486,-0.92966 0.78648,-1.79537 0.31163,-0.86573 0.70435,-1.69909 0.87274,-1.85194 0.16837,-0.15283 0.41398,-0.77814 0.54578,-1.38957 0.13176,-0.61144 0.33527,-1.10561 0.45211,-1.09818 0.11687,0.007 0.37197,-0.39435 0.56691,-0.89285 0.19493,-0.49849 0.45874,-1.0056 0.58624,-1.12692 0.1275,-0.12131 0.24648,-0.44815 0.26444,-0.72629 0.0177,-0.27815 0.67351,-1.63535 1.45677,-3.01603 0.78329,-1.38069 1.65981,-3.1084 1.94784,-3.83939 0.28802,-0.73098 1.09873,-2.35142 1.80157,-3.60097 0.70287,-1.24956 1.50765,-2.75891 1.78844,-3.35412 0.28079,-0.59521 1.46334,-2.7018 2.62788,-4.68131 1.16456,-1.9795 2.27802,-3.99869 2.47436,-4.48708 0.19635,-0.48839 0.4542,-0.88181 0.57304,-0.87426 0.23167,0.0147 1.25988,-1.8371 1.58536,-2.85536 0.10869,-0.33992 0.34651,-0.7492 0.52858,-0.90949 0.40787,-0.35913 0.38538,-2.53 -0.0302,-2.91444 -0.15815,-0.14629 -0.28906,-0.70489 -0.29095,-1.24135 -0.002,-0.53645 -0.15981,-1.17192 -0.35095,-1.41216 -0.3744,-0.47055 -0.19576,-2.10563 0.32114,-2.93957 0.15199,-0.2452 0.29429,-0.64707 0.31623,-0.89305 0.0216,-0.24599 0.49803,-0.75249 1.05797,-1.12561 0.55994,-0.37311 1.10601,-0.93172 1.21348,-1.24135 0.19807,-0.57066 1.2551,-1.07598 1.65591,-0.79162 0.12033,0.0854 0.29642,-0.0141 0.39132,-0.22106 0.0948,-0.20695 0.31225,-0.3674 0.48304,-0.35654 0.39243,0.0249 0.23542,-1.16238 -0.47897,-3.6221 -0.28217,-0.97158 -0.50502,-1.96718 -0.49521,-2.21244 0.01,-0.24528 -0.16625,-0.92911 -0.39122,-1.51966 -0.22497,-0.59055 -0.46469,-1.37536 -0.53268,-1.74401 -0.068,-0.36866 -0.27109,-0.80934 -0.45127,-0.9793 -0.18019,-0.16996 -0.31569,-0.49636 -0.30114,-0.72534 0.05,-0.78652 -1.49639,-4.0762 -2.19132,-4.66167 -0.38239,-0.32215 -0.68574,-0.73484 -0.67415,-0.91712 0.0116,-0.18227 -0.16872,-0.41445 -0.40068,-0.51594 -0.23196,-0.1015 -0.6892,-0.5172 -1.0161,-0.92377 -0.32691,-0.40657 -0.71771,-0.74706 -0.86847,-0.75665 -0.15076,-0.01 -0.35309,-0.17729 -0.44961,-0.37268 -0.21525,-0.4357 -2.91533,-2.14785 -3.11291,-1.97391 -0.0782,0.0689 -0.25769,0.0274 -0.39887,-0.0921 -0.42539,-0.36005 -2.07752,-0.87775 -4.21172,-1.31975 -1.10933,-0.22974 -2.01181,-0.49883 -2.00551,-0.59798 0.0139,-0.21894 -2.51075,-0.48527 -6.60942,-0.69723 -2.57871,-0.13336 -3.21125,-0.81763 -4.20697,-0.42271 -0.64819,0.25711 -1.44974,0.13898 -1.68602,0.14396 -0.68073,0.0144 -0.86769,0.20463 -1.31006,0.2467 -0.31262,0.0297 -0.63172,-0.0449 -0.94207,0.003 -0.31143,0.0481 -0.67547,0.0825 -0.90224,0.28231 -0.22679,0.19967 -0.61718,0.35001 -0.86757,0.3341 -0.25037,-0.0159 -0.50344,0.09 -0.56237,0.23531 -0.0589,0.14534 -0.64926,0.43482 -1.25409,0.50614 -1.17375,0.13842 -0.92816,0.28258 -1.55175,0.39977 -0.4224,0.15003 -0.18215,-0.3786 -1.19276,0.15463 l -0.89313,0.47125 c -0.35479,0.33715 -0.69911,0.49538 -0.7074,0.62592 -0.008,0.13054 -0.12716,0.42376 -0.26415,0.65162 -1.03996,1.72983 -1.72433,3.17828 -2.46975,5.22712 -0.29069,0.79893 -0.71388,1.87904 -0.94044,2.40024 -0.22656,0.5212 -0.41751,1.48178 -0.42433,2.13462 -0.007,0.65285 -0.0938,1.25872 -0.19346,1.34639 -0.0996,0.0877 -0.19962,0.45175 -0.22234,0.80906 -0.0227,0.35731 -0.14827,0.74874 -0.27897,0.86986 -0.13073,0.12111 -0.32607,0.71618 -0.43411,1.32237 -0.10797,0.60619 -0.45522,2.2561 -0.77153,3.66646 -0.54981,2.45142 -0.71167,3.29535 -1.6382,8.54155 -0.22372,1.26691 -0.46973,2.47739 -0.54664,2.68995 -0.0769,0.21256 -0.34148,1.65551 -0.58792,3.20654 -0.24645,1.55104 -0.51675,3.20583 -0.60067,3.67732 -0.0839,0.47149 -0.4375,2.45538 -0.78572,4.40866 -1.10269,6.18521 -1.25411,7.54324 -1.75507,15.74123 -0.43073,7.04878 -0.44565,8.13798 -0.12306,9.00155 0.20181,0.54035 0.35321,1.1984 0.33643,1.46235 -0.0234,0.36764 0.0873,0.45061 0.47285,0.35467 0.39258,-0.0976 0.49622,-0.0129 0.47094,0.38479 -0.0223,0.35044 0.12653,0.52014 0.47554,0.54232 0.2794,0.0178 0.4323,0.13896 0.33982,0.26931 -0.0984,0.13872 0.16992,0.26583 0.64708,0.30649 1.45355,0.12386 2.74581,0.42303 3.04454,0.70479 0.16056,0.15146 0.39215,0.22194 0.51458,0.15661 0.12245,-0.0654 0.8705,0.0801 1.66229,0.32321 0.79179,0.24309 1.87768,0.47382 2.41308,0.51271 1.01296,0.0734 4.18444,0.65243 6.50147,1.18664 0.73848,0.17027 1.67272,0.37811 2.0761,0.46187 0.40337,0.0838 1.55771,0.33633 2.56516,0.56133 2.99863,0.66968 4.72337,0.98197 5.49956,0.99581 0.64393,0.0115 0.77063,-0.10893 1.05448,-1.00195 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccccscccccccccccccccccsccccccccccccccccaacccccsccccscccccccccccsccccccscccccccccc" />
<path
id="path2901"
d="m 191.8846,161.21014 c -0.22755,-0.25785 -0.53268,-0.40536 -0.67805,-0.32781 -0.14535,0.0776 -0.30779,-0.0823 -0.36093,-0.35526 -0.0532,-0.27295 -0.35033,-0.63193 -0.66044,-0.79773 -0.52047,-0.27829 -1.23748,-1.35963 -0.88677,-1.33734 0.0847,0.005 -0.11173,-0.35005 -0.43647,-0.78985 -0.32475,-0.4398 -0.57342,-1.06747 -0.55261,-1.39482 0.0208,-0.32735 -0.1484,-1.19341 -0.37606,-1.92457 -0.40713,-1.30776 -0.2651,-3.42539 0.22768,-3.39406 0.10976,0.007 0.35248,-0.36772 0.53941,-0.83267 0.18692,-0.46494 0.42351,-0.84002 0.52574,-0.83353 0.10224,0.007 0.35447,-0.26021 0.56057,-0.59268 0.20609,-0.33248 0.86679,-0.78581 1.46825,-1.00739 0.61328,-0.22595 1.10427,-0.5715 1.11795,-0.78682 0.0157,-0.24632 0.24824,-0.3697 0.64891,-0.34423 0.34345,0.0218 0.70106,-0.12731 0.79465,-0.33144 0.0935,-0.20413 0.34889,-0.33001 0.56733,-0.27974 0.21845,0.0503 0.51331,0.0282 0.65522,-0.049 0.41524,-0.22596 1.51729,0.15275 2.03346,0.69879 0.26222,0.27737 0.75037,0.62874 1.08478,0.78082 0.33444,0.15209 0.59728,0.4462 0.58409,0.65357 -0.0132,0.20739 0.17174,0.80544 0.41093,1.32902 0.23919,0.52357 0.4122,1.30888 0.38447,1.74513 -0.0277,0.43625 0.0954,0.89158 0.27359,1.01186 0.19147,0.12924 0.38944,1.08394 0.48402,2.3343 0.088,1.16359 0.20367,2.30926 0.25707,2.54593 0.0556,0.24638 -0.13146,0.60213 -0.4376,0.83226 -0.29408,0.22107 -0.54619,0.58309 -0.56027,0.8045 -0.0141,0.2214 -0.32216,0.68438 -0.68465,1.02884 -0.36248,0.34446 -0.66575,0.73159 -0.67393,0.86028 -0.0139,0.21819 -0.73156,0.29935 -1.43459,0.16224 -0.16821,-0.0328 -0.31659,0.10963 -0.32974,0.31652 -0.0131,0.20689 -0.33385,0.42974 -0.71266,0.4952 -0.37881,0.0655 -0.80408,0.17989 -0.94504,0.25428 -0.57254,0.3021 -2.47933,-0.0112 -2.88831,-0.47459 z"
style="fill:#000000;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2899"
d="m 219.60024,178.71391 c 0.44716,-0.69037 0.48972,-1.90995 0.0448,-1.28278 -0.12635,0.17809 -0.30145,0.24235 -0.3891,0.1428 -0.0877,-0.0996 0.0328,-0.43697 0.26728,-0.74985 0.39532,-0.52704 0.39387,-0.60884 -0.0195,-1.11326 -0.24541,-0.29944 -0.43898,-0.68796 -0.43018,-0.86339 0.009,-0.17541 -0.24301,-0.59792 -0.55957,-0.93887 -0.31657,-0.34095 -0.56925,-0.71928 -0.56153,-0.84072 0.008,-0.12145 -0.19442,-0.23406 -0.44925,-0.25026 -0.25479,-0.0162 -0.86731,-0.22926 -1.36115,-0.47348 -0.97449,-0.48191 -1.58391,-0.43219 -1.61979,0.13216 -0.0125,0.19671 -0.49619,0.79162 -1.07484,1.32201 -0.57865,0.53038 -1.06645,1.19026 -1.08401,1.46639 -0.0242,0.38059 -0.14931,0.46324 -0.51712,0.34166 -0.39939,-0.13203 -0.49293,-0.0389 -0.52886,0.52641 -0.024,0.37774 0.0883,0.80202 0.24969,0.94284 0.5116,0.44651 3.1497,1.3496 4.4108,1.50992 0.66822,0.0849 1.29819,0.249 1.39994,0.36456 0.10174,0.11556 0.54753,0.25777 0.99059,0.31603 0.65333,0.0859 0.88621,-0.0185 1.23187,-0.55217 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2931-0"
d="m 215.56853,231.52909 c 1.2019,-0.74041 2.22944,-1.89101 2.28352,-2.55669 0.0541,-0.66561 1.00999,-1.6886 2.12423,-2.27317 4.23226,-2.22058 7.68233,-7.60361 4.31191,-6.72774 -2.03659,0.52919 -6.08268,3.61049 -6.65378,5.06711 -0.30614,0.78072 -1.25346,1.32708 -2.27529,1.3123 -1.17845,-0.017 -1.02124,0.6627 -1.44202,1.09623 -0.42078,0.43353 -0.30444,1.28109 -1.05396,1.47584 -1.7723,0.46062 -2.76116,2.34681 -2.23406,4.26152 0.31217,1.13425 0.71563,1.28827 1.58649,0.60602 0.64229,-0.50326 2.15114,-1.52081 3.35296,-2.26142 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.804384"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccczcccc" />
</g>
<g
id="g7374"
transform="matrix(0.21886134,0,0,0.21886134,105.49676,240.23412)">
<path
id="path2921"
d="m 34.082031,96.855469 c -0.767006,0.190354 -1.490469,0.520285 -2.200658,0.860831 -0.813706,0.393901 -1.603054,0.850752 -2.297593,1.433336 -0.782629,0.635868 -1.491964,1.356574 -2.175632,2.096204 -0.896619,0.9751 -1.764385,1.97854 -2.552009,3.04453 -1.088014,1.45414 -2.062437,2.9935 -2.913974,4.59752 -0.994889,1.86836 -1.833305,3.8193 -2.523333,5.82004 -0.664053,1.93833 -1.196032,3.92026 -1.623031,5.92377 -0.394058,1.8296 -0.711678,3.67545 -0.95929,5.53051 -0.263793,1.95191 -0.451023,3.91427 -0.549027,5.88162 -0.112662,2.19876 -0.103522,4.40217 -0.03368,6.60216 0.110351,3.23715 0.401011,6.46752 0.84654,9.67549 0.339826,2.41548 0.751166,4.82028 1.181789,7.22104 0.56232,3.14346 1.186906,6.27576 1.877954,9.39348 0.58299,2.64988 1.214377,5.28893 1.871167,7.92142 0.765277,3.02361 1.618558,6.02753 2.657398,8.96949 0.786851,2.26191 1.664877,4.49065 2.555109,6.71346 0.734211,1.82947 1.50567,3.64466 2.342073,5.42992 0.99752,2.13359 2.085507,4.22508 3.262486,6.26517 0.847248,1.44519 1.791552,2.83212 2.805958,4.16491 0.739591,0.98894 1.479182,1.97788 2.218773,2.96682 0.243488,0.43154 0.146042,0.96398 -0.05273,1.39258 -0.884281,1.74647 -1.852308,3.4486 -2.783228,5.17027 -1.843057,3.3778 -3.686048,6.75573 -5.519593,10.13864 -0.667611,1.31286 -1.256554,2.66983 -1.682273,4.08143 -0.116686,0.40221 -0.238147,0.80499 -0.283997,1.2229 -0.09109,0.70424 -0.03112,1.43388 0.226465,2.09903 0.357106,1.00439 0.96624,1.89205 1.589236,2.74771 1.013359,1.36678 2.174064,2.61711 3.380066,3.81461 0.996126,0.97266 2.03585,1.90279 3.139283,2.75258 1.098408,0.84766 2.271048,1.59907 3.505226,2.23335 1.156411,0.59725 2.364896,1.1012 3.619948,1.45013 1.325151,0.36387 2.700918,0.54806 4.075632,0.52213 2.057934,-0.0274 4.095648,-0.46603 6.028768,-1.1577 0.357946,-0.12785 0.712441,-0.2844 0.998487,-0.54075 0.799995,-0.67913 1.198023,-1.78513 1.038277,-2.81957 -0.122651,-0.85934 -0.49664,-1.65482 -0.865062,-2.43205 -0.82688,-1.70201 -1.674797,-3.39378 -2.515572,-5.08898 -1.380201,-2.77197 -2.767103,-5.54068 -4.13232,-8.32004 -0.229512,-0.4603 -0.415049,-0.94027 -0.574508,-1.42891 -0.08747,-0.27563 -0.19895,-0.54759 -0.25114,-0.83177 -0.08632,-0.77449 0.106395,-1.54604 0.330428,-2.2818 0.319375,-1.01264 0.748365,-1.98549 1.148219,-2.96783 0.919669,-2.21203 1.861472,-4.4152 2.738596,-6.64463 0.212466,-0.57792 0.288248,-1.19221 0.371094,-1.79883 -0.0132,-0.43056 -0.183874,-0.83363 -0.277314,-1.24966 -0.295208,-1.13653 -0.622276,-2.26438 -0.939483,-3.39487 -0.07757,-0.39165 -0.05379,-0.79321 -0.03906,-1.18946 0.245767,-0.77469 0.830868,-1.38561 1.464107,-1.86858 1.434071,-1.09435 2.949385,-2.0762 4.483494,-3.02322 2.336211,-1.44323 4.700887,-2.84698 7.156759,-4.07867 1.671929,-0.83833 3.392867,-1.57606 5.142803,-2.23536 1.480513,-0.56846 2.959869,-1.14114 4.455756,-1.66813 1.670684,-0.57582 3.34804,-1.13265 5.007829,-1.73963 3.964453,-1.42573 7.913725,-2.89318 11.875207,-4.3271 1.075896,-0.38254 2.1542,-0.76122 3.255135,-1.06637 1.932265,-0.57089 3.876131,-1.10119 5.817114,-1.64137 0.42554,-0.15566 0.835312,-0.35085 1.26477,-0.49627 0.24016,-0.0777 0.44005,-0.23642 0.66366,-0.34532 0.24667,-0.10095 0.4878,-0.2172 0.70328,-0.37547 0.21512,-0.15223 0.45628,-0.25812 0.69826,-0.35873 0.28376,-0.13281 0.57723,-0.25596 0.82237,-0.45546 0.72482,-0.38177 1.43658,-0.7871 2.15072,-1.18826 1.92898,-1.06768 3.88724,-2.08167 5.81482,-3.15181 0.29977,-0.1742 0.61286,-0.33898 0.8476,-0.60074 0.54358,-0.56096 0.85025,-1.29396 1.15807,-1.99937 0.37978,-0.91328 0.66485,-1.86519 0.87573,-2.83099 0.24047,-1.13852 0.26783,-2.3124 0.17202,-3.46927 -0.14729,-2.13885 -0.40949,-4.2674 -0.62986,-6.39942 -0.47346,-4.42232 -0.94906,-8.84445 -1.43744,-13.26514 -0.15061,-1.23932 -0.28217,-2.48953 -0.63906,-3.69059 -0.61027,-2.14966 -1.68227,-4.17316 -3.15795,-5.85444 -0.96708,-1.09224 -2.09546,-2.05503 -3.38483,-2.74652 -0.87488,-0.46769 -1.85919,-0.78834 -2.86113,-0.74134 -0.87801,0.0177 -1.74678,0.22219 -2.56103,0.54531 -1.338068,0.54406 -2.513036,1.50784 -3.253487,2.75371 -0.818636,1.35264 -1.150134,2.95236 -1.150104,4.52075 0.0033,1.26538 0.198577,2.52181 0.456645,3.75779 0.366861,1.6975 0.875483,3.35934 1.335399,5.03286 0.794058,2.82612 1.602824,5.64827 2.370459,8.48169 0.389291,1.48563 0.70105,2.99187 0.927197,4.51096 0.210031,1.44323 0.355201,2.89747 0.393201,4.3559 0.0124,0.7894 0.0523,1.5932 -0.14713,2.36501 -0.17857,0.7386 -0.607082,1.41745 -1.215502,1.87631 -0.742168,0.58719 -1.635787,0.93227 -2.510424,1.26949 -3.036535,1.13916 -6.108834,2.1794 -9.182716,3.21246 -2.592146,0.87138 -5.181487,1.75115 -7.775492,2.61697 -0.87946,0.28888 -1.76646,0.55946 -2.674118,0.74566 -0.933391,0.19389 -1.884389,0.33206 -2.839554,0.32466 -0.872586,-0.0144 -1.759986,-0.153 -2.550781,-0.53711 -0.564931,-0.27808 -1.093346,-0.70496 -1.339159,-1.29974 -0.256989,-0.5857 -0.344517,-1.22613 -0.455711,-1.85104 -0.447761,-2.69114 -0.839731,-5.39108 -1.241328,-8.08937 -0.961414,-6.50694 -1.900791,-13.01711 -2.852474,-19.52548 0.04032,-0.81476 0.24942,-1.61796 0.591797,-2.35742 0.941086,-1.49929 2.014098,-2.9089 3.045218,-4.34608 0.88099,-1.22031 1.779442,-2.43003 2.589387,-3.6994 0.60514,-0.97411 1.151756,-2.01985 1.330239,-3.16546 0.134535,-0.91754 -0.0097,-1.84745 -0.201172,-2.74609 -0.371915,-1.61905 -1.150997,-3.14843 -2.275582,-4.3744 -1.229489,-1.36822 -2.827473,-2.37677 -4.544068,-3.01895 -1.514683,-0.56717 -3.12459,-0.82754 -4.731102,-0.95728 -1.860763,-0.16556 -3.725284,-0.2846 -5.58792,-0.42672 -0.645844,-0.1391 -1.168197,-0.59957 -1.551848,-1.11796 -1.102164,-1.52314 -1.965164,-3.19865 -2.879705,-4.8365 -1.802908,-3.2726 -3.60443,-6.546 -5.432807,-9.80447 -1.119661,-1.99432 -2.406237,-3.89632 -3.855772,-5.66585 -0.903974,-1.09995 -1.888148,-2.143478 -3.016615,-3.016642 -0.950904,-0.737072 -2.013212,-1.357296 -3.181582,-1.672686 -0.553402,-0.151848 -1.125417,-0.23197 -1.698858,-0.247215 -0.03906,0.0046 -0.07813,0.0091 -0.117188,0.01367 z m 46.396485,80.931641 c 0.125859,0.0142 -0.178748,-0.0419 0,0 z m 0.753906,0.11523 c -0.06704,0.0543 0.0783,-0.0358 0,0 z m -0.65625,0.15235 c -0.05148,0.14573 0.04603,-0.0222 0,0 z"
style="fill:#000000;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2919"
d="m 47.454034,238.55548 c 0.08948,-0.12614 -0.04831,-0.72008 -0.306177,-1.31988 -0.257899,-0.59981 -0.620759,-1.46248 -0.806372,-1.91704 -0.185614,-0.45456 -0.425344,-0.83206 -0.532758,-0.83889 -0.107439,-0.007 -0.184665,-0.17995 -0.171648,-0.38472 0.01302,-0.20476 -0.287232,-0.74196 -0.667216,-1.19379 -0.379982,-0.45184 -0.685998,-0.8983 -0.680033,-0.99214 0.01895,-0.29815 -1.863598,-0.93751 -2.433651,-0.82651 -0.402489,0.0783 -0.572815,-0.0221 -0.642263,-0.37874 -0.06505,-0.3342 -0.309681,-0.49906 -0.785276,-0.52929 -0.379923,-0.0241 -0.746708,-0.1868 -0.815092,-0.36144 -0.09822,-0.25087 -0.159488,-0.25261 -0.291893,-0.008 -0.134248,0.24773 -0.237511,0.2434 -0.518707,-0.0219 -0.193099,-0.18212 -0.663917,-0.32723 -1.04625,-0.32243 -0.507172,0.006 -0.851315,-0.20271 -1.27253,-0.77316 -0.62855,-0.85125 -1.20184,-1.0342 -1.462063,-0.46662 -0.09104,0.19857 -0.30802,0.35547 -0.482143,0.34868 -0.17413,-0.007 -0.539945,0.25653 -0.812895,0.58517 -0.45199,0.54417 -0.464038,0.63666 -0.135057,1.03636 1.533206,1.86274 2.030249,2.40269 2.223097,2.41495 0.121946,0.008 0.437673,0.36222 0.701649,0.7877 0.263977,0.42548 0.638912,0.78372 0.833215,0.79607 0.194279,0.0123 0.346799,0.12402 0.338909,0.24813 -0.02106,0.33128 2.215259,2.14353 2.681676,2.17318 0.219269,0.0139 0.392747,0.11855 0.385507,0.23244 -0.02362,0.37166 1.18299,0.85806 2.305736,0.92943 0.812024,0.0516 1.092411,0.16633 1.075022,0.43988 -0.01847,0.29064 0.317495,0.39173 1.565493,0.47106 0.873945,0.0556 1.662231,-0.002 1.751717,-0.12832 z"
style="fill:#fafafa;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
id="path2917"
d="m 40.481108,196.87977 c 1.089527,0.006 1.53226,-0.10851 1.881848,-0.48821 0.283047,-0.30743 0.606097,-0.42824 0.848274,-0.31718 0.215123,0.0986 0.591818,0.0255 0.837109,-0.16261 0.245313,-0.18806 0.843031,-0.45058 1.328294,-0.58337 0.485263,-0.13278 1.228744,-0.43104 1.652181,-0.66278 0.423436,-0.23175 1.286732,-0.66135 1.918435,-0.95468 1.185459,-0.55047 1.998129,-1.05221 2.889218,-1.78385 0.283005,-0.23236 0.895652,-0.55399 1.361439,-0.71473 0.465788,-0.16074 0.915423,-0.38887 0.999198,-0.50696 0.08377,-0.1181 0.755184,-0.47768 1.492012,-0.79908 0.73683,-0.32141 1.74718,-0.85772 2.245239,-1.1918 1.343026,-0.90085 4.244172,-2.48658 4.517495,-2.46921 0.130901,0.008 0.460994,-0.31289 0.733535,-0.71381 0.422937,-0.62214 0.487443,-1.0263 0.440395,-2.75863 -0.03035,-1.11633 -0.0035,-2.58373 0.05968,-3.26089 0.105114,-1.1268 -0.156051,-3.66056 -0.603926,-5.85934 -0.09839,-0.48308 -0.226245,-1.82879 -0.284079,-2.99046 -0.05783,-1.16167 -0.179587,-2.89712 -0.270539,-3.85655 -0.09093,-0.95942 -0.18602,-1.96865 -0.211277,-2.24273 -0.02525,-0.27407 -0.161425,-1.34165 -0.30261,-2.37239 -0.141186,-1.03073 -0.301232,-2.37849 -0.355673,-2.995 -0.05442,-0.61652 -0.195759,-1.33734 -0.314092,-1.60182 -0.118308,-0.26448 -0.365444,-1.28337 -0.549136,-2.26421 -0.468517,-2.50141 -0.867526,-3.71346 -1.37975,-4.19111 -0.242679,-0.22629 -0.67055,-0.84401 -0.950853,-1.37271 -0.280303,-0.5287 -0.639318,-0.96982 -0.797852,-0.98026 -0.158515,-0.0103 -0.735135,-0.46509 -1.281382,-1.01033 -0.857756,-0.85618 -1.041976,-1.24772 -1.35123,-2.87185 -0.511074,-2.68414 -0.779846,-3.62725 -1.419841,-4.98233 -0.367556,-0.77827 -1.497752,-3.84435 -1.485884,-4.03104 0.0063,-0.0985 -0.167229,-0.64364 -0.385551,-1.21142 -0.218321,-0.56777 -0.563602,-1.48876 -0.767269,-2.04665 -0.20369,-0.55789 -0.745881,-1.90497 -1.204907,-2.99352 -0.459025,-1.08855 -0.824953,-2.13051 -0.813196,-2.31547 0.01176,-0.18497 -0.190558,-0.61292 -0.449611,-0.95101 l -0.470965,-0.6147 c -0.710053,-2.23506 -0.809606,-2.89806 -2.159681,-5.95827 0.385672,0.0245 -3.210766,-8.44253 -3.784616,-8.91007 -0.159743,-0.13015 -1.330376,-1.97988 -2.069987,-3.2708 -0.199664,-0.34848 -0.948854,-1.33283 -1.664876,-2.18744 -2.147309,-2.56292 -3.812585,-3.48309 -4.773047,-2.63743 -0.216468,0.19059 -0.577692,0.33483 -0.802686,0.32052 -0.809285,-0.0514 -4.586602,3.83733 -5.269204,5.42469 -0.185185,0.43066 -0.674303,1.24093 -1.086879,1.8006 -0.412599,0.55967 -0.890891,1.30952 -1.062886,1.66634 -0.172021,0.35681 -0.485889,0.98898 -0.697529,1.40482 -0.211638,0.41584 -0.39468,0.91137 -0.406745,1.10118 -0.01206,0.18981 -0.147673,0.45582 -0.301378,0.59114 -0.315466,0.27775 -1.498399,3.74805 -1.33925,3.92882 0.05669,0.0644 -0.0043,0.23195 -0.135433,0.37239 -0.258239,0.27647 -0.443129,0.96939 -1.013316,3.79772 -1.037735,5.14749 -1.516682,12.25576 -1.105122,16.40181 0.05444,0.5484 0.0617,1.14406 0.01618,1.32369 -0.112493,0.44367 0.555648,5.35786 1.160456,8.53525 0.09188,0.48266 0.204267,1.49299 0.249738,2.24518 0.04549,0.75218 0.18826,1.5196 0.317268,1.70537 0.129033,0.18577 0.331,1.03459 0.44884,1.88628 0.198305,1.43327 0.810458,4.67007 1.417601,7.49588 0.139517,0.64939 0.328036,1.26514 0.418896,1.36834 0.09087,0.1032 0.145456,0.4983 0.121319,0.87801 -0.02414,0.3797 0.08056,1.1759 0.23265,1.76933 0.152115,0.59343 0.464853,1.84558 0.694978,2.78256 0.230149,0.93698 0.74599,2.53726 1.146352,3.55618 0.400362,1.01892 0.786941,2.18374 0.859103,2.58851 0.191271,1.07319 1.561447,4.8425 2.80541,7.71766 0.0909,0.21013 0.493262,1.18317 0.894123,2.16229 0.40086,0.97913 1.044248,2.3576 1.429719,3.06329 0.385472,0.70567 0.762919,1.56565 0.838754,1.91106 0.257735,1.17364 2.096564,4.04235 2.718582,4.24118 0.326377,0.10432 0.584037,0.3369 0.5726,0.51682 -0.02619,0.412 0.772719,1.25328 1.00005,1.05313 0.09312,-0.0821 0.228782,0.0412 0.301466,0.2737 0.0845,0.27033 0.297454,0.38164 0.590635,0.3087 0.252184,-0.0627 1.09962,-0.11036 1.8832,-0.10577 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccsccccccccccccccccscccccccscccccccccccccccccccccccccccccsccccccsccccc" />
<path
id="path2911"
d="m 101.69531,140.00195 c -0.26295,0.12602 -0.51489,0.27361 -0.75976,0.43164 -0.19892,0.1804 -0.24503,0.48937 -0.14453,0.73243 0.25876,0.71381 0.52177,1.42605 0.78906,2.13671 0.008,0.3405 -0.0593,0.68738 -0.22656,0.98633 -0.18446,0.45128 -0.19922,0.95959 -0.0845,1.43029 0.1766,0.9054 0.3532,1.8108 0.5298,2.7162 0.76193,2.36762 1.53501,4.73177 2.26522,7.10945 0.38872,1.25311 0.75817,2.51281 1.06927,3.78768 0.25206,0.94963 0.36993,1.93045 0.39903,2.91132 0.044,0.9292 0.0605,1.86492 0.2391,2.78088 0.0597,0.29875 0.0955,0.60321 0.18558,0.89504 0.17784,0.4286 0.6807,0.69589 1.13477,0.58985 0.44007,-0.18127 0.80022,-0.54756 0.96679,-0.99415 0.49171,-1.22869 0.68268,-2.57409 0.56193,-3.89154 -0.0398,-0.49045 -0.0991,-0.97949 -0.17325,-1.46588 -0.0506,-0.32612 -0.12976,-0.64835 -0.26161,-0.95177 -0.23329,-0.58307 -0.55202,-1.14805 -0.61775,-1.78293 -0.0798,-0.692 1.4e-4,-1.38853 0.0587,-2.07898 0.0615,-0.56563 0.14806,-1.13185 0.12539,-1.7025 0.003,-0.54684 -0.0763,-1.08938 -0.15963,-1.62848 -0.17675,-1.22255 -0.29588,-2.45231 -0.43413,-3.67956 -0.20367,-0.68475 -0.43425,-1.36116 -0.63476,-2.04687 -0.0866,-0.5599 -0.17318,-1.11979 -0.25977,-1.67969 -0.30985,-0.80831 -0.64006,-1.60892 -1.0039,-2.39453 -0.33265,-0.52187 -0.72725,-1.00028 -1.07227,-1.51367 -0.1664,-0.22221 -0.47194,-0.33166 -0.74023,-0.25586 -0.36133,0.0933 -0.74618,0.20148 -1.11714,0.0951 -0.28448,-0.0704 -0.37373,-0.41143 -0.61333,-0.54039 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.25187"
inkscape:connector-curvature="0" />
<path
id="path2909"
d="m 61.334232,139.12588 c 0.03713,-0.58409 0.49377,-0.85814 1.200964,-0.72074 0.348153,0.0676 0.592167,-0.0587 0.712834,-0.36906 0.100919,-0.25955 0.40546,-0.51513 0.676779,-0.56796 0.27132,-0.0528 0.504553,-0.27296 0.518298,-0.4892 0.01375,-0.21623 0.267173,-0.60639 0.563195,-0.86701 0.366973,-0.32311 0.496455,-0.64161 0.40698,-1.00119 -0.110526,-0.44419 -0.05034,-0.50061 0.381612,-0.35781 0.414486,0.13701 0.519897,0.0585 0.549648,-0.40958 0.02025,-0.31851 0.13855,-0.63338 0.262901,-0.69972 0.275703,-0.14709 -0.01478,-2.31591 -0.377683,-2.81981 -0.71267,-0.98957 -1.448871,-1.64131 -1.748413,-1.54781 -0.183823,0.0574 -0.534418,-0.0198 -0.779115,-0.17146 -0.296696,-0.18391 -0.501034,-0.1966 -0.61349,-0.038 -0.219049,0.30874 -1.131047,0.25131 -1.110632,-0.0699 0.0238,-0.37447 -0.896795,-0.35308 -1.070083,0.0249 -0.08346,0.18202 -0.457167,0.31153 -0.830503,0.28779 -0.377826,-0.024 -0.843143,0.15231 -1.049522,0.39773 -0.203938,0.24248 -0.52905,0.39805 -0.722472,0.34573 -0.193446,-0.0523 -0.362821,0.0797 -0.376408,0.29347 -0.01359,0.21374 -0.195289,0.44193 -0.403784,0.50709 -0.485578,0.15177 -0.545402,1.05937 -0.11252,1.70706 0.184592,0.27618 0.4252,0.92082 0.534728,1.43253 0.109528,0.51172 0.348583,1.10013 0.531227,1.30759 0.182669,0.20746 0.583253,1.11962 0.890213,2.02701 0.327662,0.96864 0.76633,1.76761 1.062483,1.93513 0.735669,0.41616 0.868901,0.396 0.902756,-0.13661 z"
style="fill:#ffffff;fill-opacity:1;stroke-width:0.247201"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;stroke-width:0.223315"
d="m 38.941226,131.99597 c -0.262783,-0.1657 -0.564784,-0.21605 -0.671098,-0.11188 -0.10628,0.10422 -0.287724,0.007 -0.403165,-0.21627 -0.115474,-0.22309 -0.464273,-0.45878 -0.775239,-0.52372 -0.521912,-0.109 -1.418261,-0.86422 -1.108568,-0.93401 0.0747,-0.0172 -0.18581,-0.27506 -0.579075,-0.5738 -0.393284,-0.29875 -0.768352,-0.77969 -0.833488,-1.06875 -0.06516,-0.28907 -0.431903,-0.99687 -0.815049,-1.57285 -0.685249,-1.03024 -1.100227,-2.90211 -0.665076,-3.00016 0.09691,-0.0219 0.212127,-0.40834 0.256032,-0.8589 0.0439,-0.45056 0.153683,-0.83584 0.243958,-0.85619 0.09044,-0.0198 0.241169,-0.31564 0.335353,-0.65624 0.09417,-0.34059 0.55174,-0.90147 1.01684,-1.24639 0.474238,-0.35171 0.81207,-0.77603 0.769218,-0.96616 -0.04899,-0.21753 0.121255,-0.38358 0.475063,-0.46332 0.303303,-0.0683 0.575399,-0.2885 0.60466,-0.48925 0.02918,-0.20071 0.2186,-0.37473 0.420738,-0.38666 0.202155,-0.0119 0.452151,-0.10599 0.555755,-0.20845 0.302556,-0.30139 1.35415,-0.25313 1.940371,0.0891 0.297797,0.17382 0.810258,0.35438 1.138803,0.40124 0.328573,0.0469 0.631162,0.23504 0.672421,0.41816 0.04125,0.18314 0.353552,0.6546 0.693945,1.0477 0.340395,0.39311 0.68993,1.02993 0.776745,1.41516 0.08683,0.38523 0.309256,0.74867 0.494292,0.80766 0.198825,0.0634 0.613039,0.8407 1.012753,1.90061 0.371941,0.98636 0.763361,1.95014 0.869797,2.14174 0.110806,0.19946 0.03904,0.55539 -0.167873,0.83268 -0.198763,0.26637 -0.325322,0.64428 -0.281271,0.83978 0.04404,0.19552 -0.105374,0.67516 -0.332087,1.06588 -0.226704,0.39072 -0.391236,0.80339 -0.365627,0.91703 0.04339,0.19267 -0.558124,0.44539 -1.202432,0.50514 -0.15414,0.0144 -0.246601,0.17547 -0.205418,0.35819 0.04121,0.18268 -0.18022,0.45736 -0.491972,0.61038 -0.311762,0.15299 -0.651343,0.36027 -0.754641,0.46057 -0.41957,0.40737 -2.152174,0.62029 -2.624465,0.32251 z"
id="path2901-4"
inkscape:connector-curvature="0" />
</g>
</g>
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 68.994571,197.28472 1.669055,4.63757 1.978885,-5.14244 z"
id="path1717" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 36.923023,211.52836 -3.271488,4.81119 -1.081098,-7.11425 z"
id="path1719" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 16.217733,137.42363 -0.844516,-5.81837 4.138377,1.90403 z"
id="path1725" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 40.488311,151.45842 1.669055,4.63757 1.978885,-5.14244 z"
id="path1727" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 8.4167629,165.70206 5.1452748,170.51325 4.0641768,163.399 Z"
id="path1729" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 29.910009,185.88293 6.141843,0.72649 -1.721283,-3.95336 z"
id="path1731" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -0.8084722,193.84305 1.932421,3.77693 5.9443811,-4.18392 z"
id="path1733" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 36.923023,211.52836 -3.271488,4.81119 -1.081098,-7.11425 z"
id="path1735" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.442952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.167893,177.61959 3.725891,-5.08404 2.552554,5.61324 z"
id="path1741" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 201.2524,210.32475 1.66905,4.63756 1.97889,-5.14243 z"
id="path1745" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 148.47556,150.46366 -0.84452,-5.81837 4.13838,1.90402 z"
id="path1753" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 172.74614,164.49845 1.66905,4.63756 1.97889,-5.14243 z"
id="path1755" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 140.67459,178.74209 -3.27149,4.81119 -1.0811,-7.11426 z"
id="path1757" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 162.16784,198.92296 6.14184,0.72649 -1.72128,-3.95337 z"
id="path1759" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 131.44935,206.88308 1.93243,3.77693 5.94438,-4.18392 z"
id="path1761" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.442952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 188.42572,190.65961 3.72589,-5.08404 2.55255,5.61325 z"
id="path1769" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.360677;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 93.355398,124.68063 -0.84452,-5.81837 4.138384,1.90403 z"
id="path1771" />
<path
style="fill:#ff8080;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 117.62598,138.71542 1.66905,4.63757 1.97889,-5.14244 z"
id="path1773" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 85.554428,152.95906 -3.27149,4.81119 -1.0811,-7.11425 z"
id="path1775" />
<path
style="fill:#8aa8ae;fill-opacity:1;stroke:none;stroke-width:0.604661px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 107.04768,173.13993 6.14184,0.72649 -1.72128,-3.95337 z"
id="path1777" />
<path
style="fill:#c7b198;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 76.329188,181.10005 1.93243,3.77693 5.94438,-4.18392 z"
id="path1779" />
<path
style="fill:#89bc85;fill-opacity:1;stroke:none;stroke-width:0.442952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 133.30556,164.87659 3.72589,-5.08405 2.55255,5.61325 z"
id="path1781" />
<path
style="fill:#9e85bc;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 194.60516,17.49631 -3.27149,4.811191 -1.0811,-7.114252 z"
id="path1783" />
</g>
</svg>
""";
# ╔═╡ 4efc3036-3f09-4887-be26-e0fbba6d116e
SVG("""
<div style="display:none" class="certificate-svg">
$(svg)
</div>
""" |> template -> replace(template, "Julia" => your_name))
# ╔═╡ Cell order:
# ╟─16e79fac-9330-11eb-06e9-8706be2cc8d7
# ╟─cf890082-930a-11eb-1c01-61243412e7f8
# ╟─da33debe-931f-11eb-31ff-470f979d21d6
# ╟─614fa22a-930c-11eb-28e8-4f904a36d8fe
# ╟─4ca7078c-930c-11eb-3e97-c36bb767b96b
# ╟─561e9646-fdae-4e8f-96fa-357e3dc5d63e
# ╟─4efc3036-3f09-4887-be26-e0fbba6d116e
# ╟─2815b40e-759f-4b6a-b6a0-8cbaf9bff8a0