summaryrefslogtreecommitdiff
path: root/src/start-here.svg
blob: 17c677fc9785dc059b4bad0e8d58b6871c8f3aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<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:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   height="300"
   id="svg11300"
   inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
   inkscape:export-xdpi="90.000000"
   inkscape:export-ydpi="90.000000"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:version="0.46"
   sodipodi:docname="start-here.svg"
   sodipodi:version="0.32"
   style="display:inline;enable-background:new"
   version="1.0"
   width="400">
  <title
     id="title8836">Optical Drive</title>
  <metadata
     id="metadata154">
    <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 />
        <dc:creator>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:creator>
        <dc:contributor>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:contributor>
        <dc:source />
        <cc:license
           rdf:resource="" />
        <dc:subject>
          <rdf:Bag />
        </dc:subject>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     bordercolor="#666666"
     borderopacity="0.25490196"
     fill="#f57900"
     gridtolerance="12"
     guidetolerance="13"
     height="300px"
     id="base"
     inkscape:current-layer="layer6"
     inkscape:cx="144.68008"
     inkscape:cy="87.105301"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     inkscape:guide-bbox="true"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:showpageshadow="false"
     inkscape:snap-bbox="true"
     inkscape:snap-nodes="true"
     inkscape:window-height="876"
     inkscape:window-width="968"
     inkscape:window-x="132"
     inkscape:window-y="8"
     inkscape:zoom="1"
     objecttolerance="7"
     pagecolor="#ffffff"
     showgrid="false"
     showguides="true"
     stroke="#ef2929"
     width="400px">
    <inkscape:grid
       empspacing="2"
       enabled="true"
       id="grid5883"
       spacingx="0.5px"
       spacingy="0.5px"
       type="xygrid"
       visible="true" />
  </sodipodi:namedview>
  <defs
     id="defs3">
    <linearGradient
       id="linearGradient2796">
      <stop
         id="stop2798"
         offset="0"
         style="stop-color:#2e3436;stop-opacity:1;" />
      <stop
         id="stop2800"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3052">
      <stop
         id="stop3054"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop3056"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3013">
      <stop
         id="stop3015"
         offset="0"
         style="stop-color:#2d2d2d;stop-opacity:1;" />
      <stop
         id="stop3017"
         offset="1"
         style="stop-color:white;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2985"
       inkscape:collect="always">
      <stop
         id="stop2987"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop2989"
         offset="1"
         style="stop-color:#555753;stop-opacity:0" />
    </linearGradient>
    <radialGradient
       cx="23.801941"
       cy="33.735012"
       fx="23.801941"
       fy="33.735012"
       gradientTransform="matrix(0.551865,-7.423106e-2,5.764729e-2,0.428573,10.8571,24.32541)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2991"
       inkscape:collect="always"
       r="12.990843"
       xlink:href="#linearGradient2985" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3011"
       inkscape:collect="always"
       x1="22.625"
       x2="23.625"
       xlink:href="#linearGradient3013"
       y1="15.6875"
       y2="42.721909" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3019"
       inkscape:collect="always"
       x1="35.222755"
       x2="35.222755"
       xlink:href="#linearGradient3013"
       y1="1.5140598"
       y2="14.403073" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3027"
       inkscape:collect="always"
       x1="23.113552"
       x2="23.113552"
       xlink:href="#linearGradient3013"
       y1="3.2925007"
       y2="12.78336" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3035"
       inkscape:collect="always"
       x1="15.202796"
       x2="15.202796"
       xlink:href="#linearGradient3013"
       y1="6.2158523"
       y2="14.586771" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3043"
       inkscape:collect="always"
       x1="8.3526993"
       x2="8.3526993"
       xlink:href="#linearGradient3013"
       y1="11.509477"
       y2="19.071247" />
    <radialGradient
       cx="19.450382"
       cy="21.81378"
       fx="19.450382"
       fy="21.81378"
       gradientTransform="matrix(1.987042,-0.338101,0.124071,0.729175,-24.09973,13.29516)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient3070"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="18.107206"
       cy="8.0827875"
       fx="18.107206"
       fy="8.0827875"
       gradientTransform="matrix(2.140448,-1.450766e-6,0,0.93766,-24.37707,2.17114)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient3073"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="14.95366"
       cy="13.681828"
       fx="14.95366"
       fy="13.681828"
       gradientTransform="matrix(2.140448,-1.450766e-6,0,0.93766,-24.37707,2.17114)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient3076"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="21.494347"
       cy="4.3500967"
       fx="21.494347"
       fy="4.3500967"
       gradientTransform="matrix(2.140448,-1.450766e-6,0,0.93766,-24.37707,2.17114)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient3079"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="25.640675"
       cy="3.6835504"
       fx="25.640675"
       fy="3.6835504"
       gradientTransform="matrix(2.140448,-1.450766e-6,0,0.93766,-24.37707,2.17114)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient3082"
       inkscape:collect="always"
       r="17.994565"
       xlink:href="#linearGradient3052" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2802"
       inkscape:collect="always"
       x1="23.936737"
       x2="21.678997"
       xlink:href="#linearGradient2796"
       y1="18.389484"
       y2="41.193676" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2804"
       inkscape:collect="always"
       x1="33.305901"
       x2="33.305901"
       xlink:href="#linearGradient2796"
       y1="3.7170186"
       y2="12.644369" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2806"
       inkscape:collect="always"
       x1="33.129124"
       x2="33.129124"
       xlink:href="#linearGradient2796"
       y1="12.426562"
       y2="15.742812" />
    <radialGradient
       cx="23.801941"
       cy="33.735012"
       fx="23.801941"
       fy="33.735012"
       gradientTransform="matrix(0.551865,-7.423106e-2,5.764729e-2,0.428573,10.8571,24.32541)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2951"
       inkscape:collect="always"
       r="12.990843"
       xlink:href="#linearGradient2985" />
    <radialGradient
       cx="19.450382"
       cy="21.81378"
       fx="19.450382"
       fy="21.81378"
       gradientTransform="matrix(1.318521,-0.233206,8.232854e-2,0.502949,-15.75139,8.601354)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2971"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="14.95366"
       cy="13.681828"
       fx="14.95366"
       fy="13.681828"
       gradientTransform="matrix(1.212095,-0.157025,8.850433e-2,0.498913,-16.28552,6.214977)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2977"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="21.494347"
       cy="4.3500967"
       fx="21.494347"
       fy="4.3500967"
       gradientTransform="matrix(1.440352,-9.61553e-7,0,0.621471,-16.69871,0.991345)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2980"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="25.640675"
       cy="3.6835504"
       fx="25.640675"
       fy="3.6835504"
       gradientTransform="matrix(1.248594,-8.927783e-7,0,0.577021,-10.92829,1.297625)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2983"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <radialGradient
       cx="18.107206"
       cy="8.0827875"
       fx="18.107206"
       fy="8.0827875"
       gradientTransform="matrix(1.258218,-8.874887e-7,0,0.573602,-14.18757,2.346228)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient3036"
       inkscape:collect="always"
       r="17.994564"
       xlink:href="#linearGradient3052" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3097"
       inkscape:collect="always"
       x1="35.222755"
       x2="35.222755"
       xlink:href="#linearGradient3013"
       y1="1.5140598"
       y2="14.403073" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3099"
       inkscape:collect="always"
       x1="22.625"
       x2="23.625"
       xlink:href="#linearGradient3013"
       y1="15.6875"
       y2="42.721909" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3101"
       inkscape:collect="always"
       x1="23.113552"
       x2="23.113552"
       xlink:href="#linearGradient3013"
       y1="3.2925007"
       y2="12.78336" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3112"
       inkscape:collect="always"
       x1="8.3526993"
       x2="8.3526993"
       xlink:href="#linearGradient3013"
       y1="11.509477"
       y2="19.071247" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient3116"
       inkscape:collect="always"
       x1="15.202796"
       x2="15.202796"
       xlink:href="#linearGradient3013"
       y1="6.2158523"
       y2="14.586771" />
    <linearGradient
       id="linearGradient7320">
      <stop
         id="stop7322"
         offset="0"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         id="stop7324"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6425">
      <stop
         id="stop6427"
         offset="0"
         style="stop-color:#2e3436;stop-opacity:1" />
      <stop
         id="stop6429"
         offset="1"
         style="stop-color:white;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6415"
       inkscape:collect="always"
       x1="9.5459414"
       x2="11.357903"
       xlink:href="#linearGradient6425"
       y1="2.2893984"
       y2="7.9904466" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6423"
       inkscape:collect="always"
       x1="7.0268736"
       x2="8.3526993"
       xlink:href="#linearGradient6425"
       y1="9.0069132"
       y2="21.690641" />
    <radialGradient
       cx="8.1685505"
       cy="11.753805"
       fx="8.1685505"
       fy="11.753805"
       gradientTransform="matrix(2.51794,-0.532,0.266807,1.269268,-15.61017,0.966538)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient7326"
       inkscape:collect="always"
       r="6.0068935"
       xlink:href="#linearGradient7320" />
    <radialGradient
       cx="16.192034"
       cy="2.8881135"
       fx="16.192034"
       fy="2.8881135"
       gradientTransform="matrix(1.596751,0,-2.402591e-8,1.530066,-9.546988,-1.510888)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2797"
       inkscape:collect="always"
       r="2.9893066"
       xlink:href="#linearGradient7320" />
    <linearGradient
       id="linearGradient2890">
      <stop
         id="stop2892"
         offset="0"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         id="stop2894"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2876">
      <stop
         id="stop2878"
         offset="0"
         style="stop-color:#555753;stop-opacity:1;" />
      <stop
         id="stop2880"
         offset="1"
         style="stop-color:white;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2882"
       inkscape:collect="always"
       x1="6.375"
       x2="6.9375"
       xlink:href="#linearGradient2876"
       y1="2.65625"
       y2="5.375" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2884"
       inkscape:collect="always"
       x1="6.9311519"
       x2="9.1195116"
       xlink:href="#linearGradient2876"
       y1="6.1781015"
       y2="15.158121" />
    <radialGradient
       cx="5.8949537"
       cy="8.5116825"
       fx="5.8949537"
       fy="8.5116825"
       gradientTransform="matrix(2.63495,-0.40007,0.14964,0.985565,-10.9316,2.500836)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2896"
       inkscape:collect="always"
       r="4.5304474"
       xlink:href="#linearGradient2890" />
  </defs>
  <g
     id="layer6"
     inkscape:groupmode="layer"
     inkscape:label="baseplate"
     style="display:none">
    <rect
       height="48"
       id="rect6284"
       inkscape:label="48x48"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="48"
       x="296"
       y="50" />
    <rect
       height="32"
       id="rect6592"
       inkscape:label="32x32"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="32"
       x="303"
       y="126" />
    <rect
       height="22"
       id="rect6749"
       inkscape:label="22x22"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="22"
       x="303"
       y="177" />
    <rect
       height="16"
       id="rect6833"
       inkscape:label="16x16"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="16"
       x="303"
       y="219" />
    <text
       id="context"
       inkscape:label="context"
       style="font-size:18.30070686px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
       x="20.970737"
       xml:space="preserve"
       y="21.513618"><tspan
         id="tspan2716"
         sodipodi:role="line"
         x="20.970737"
         y="21.513618">places</tspan></text>
    <text
       id="icon-name"
       inkscape:label="icon-name"
       sodipodi:linespacing="125%"
       style="font-size:18.30070686px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
       x="191.97073"
       xml:space="preserve"
       y="21.513618"><tspan
         id="tspan3023"
         sodipodi:role="line"
         x="191.97073"
         y="21.513618">start-here</tspan></text>
  </g>
  <g
     id="layer2"
     inkscape:groupmode="layer"
     inkscape:label="small sizes"
     style="display:inline">
    <g
       id="g48"
       style="display:inline;enable-background:new"
       transform="translate(296,50) scale(1.000000,1.000000)">
      <g
         id="g3045"
         style="opacity:0.5"
         transform="translate(0,1)">
        <path
           d="M 37.84375,0.5625 C 32.937667,0.5625 29.926498,4.1974996 28.9375,7.75 C 28.443001,9.5262502 28.416155,11.31354 28.90625,12.78125 C 29.396345,14.24896 30.61967,15.4375 32.28125,15.4375 C 33.942709,15.4375 35.582624,14.48396 37.125,13.1875 C 38.667376,11.89104 40.09201,10.203617 41.09375,8.46875 C 42.09549,6.7338829 42.728692,4.9559671 42.34375,3.3125 C 42.151279,2.4907665 41.629001,1.7294453 40.84375,1.25 C 40.058499,0.77055466 39.070311,0.5625 37.84375,0.5625 z "
           id="path2997"
           inkscape:original="M 37.84375 1.5 C 28.95865 1.5 27.282885 14.5 32.28125 14.5 C 37.278893 14.5 46.729211 1.5 37.84375 1.5 z "
           inkscape:radius="0.95043164"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3019);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 27.5,15.53125 C 23.819995,15.47058 19.677609,16.333022 16.125,18.125 C 12.575638,19.91534 9.6229376,22.691517 8.75,26.5 C 7.7853218,30.705708 9.7015374,35.342237 12.96875,39.03125 C 16.227435,42.710634 20.862972,45.46875 25.8125,45.46875 C 28.382906,45.46875 30.92027,44.338258 33.03125,42.625 C 35.14223,40.911742 36.863141,38.554721 37.40625,35.75 C 37.506953,35.230764 37.385929,34.320108 37.125,33.875 C 36.710187,33.167389 36.230739,32.972714 35.8125,32.78125 C 34.667559,32.257114 33.611559,32.220831 32.34375,32.34375 C 31.123915,32.462018 29.972434,32.734345 28.9375,33.28125 C 28.377274,33.577298 27.999772,33.859812 27.65625,34.28125 C 27.591088,34.361192 27.542063,34.425289 27.46875,34.53125 C 27.432093,34.58423 27.416414,34.613815 27.3125,34.84375 C 27.208586,35.073685 27.156227,35.90608 27.15625,35.90625 C 27.312258,37.066982 26.855887,37.77254 26.3125,38.0625 C 25.738196,38.368957 24.856757,38.360283 23.78125,37.5625 C 22.826143,36.854054 22.433064,36.302635 22.3125,35.875 C 22.217663,35.53862 22.292508,35.128317 22.59375,34.6875 C 23.323696,33.619346 25.124686,32.442183 27.3125,31.125 C 29.481924,29.818889 31.855077,28.433407 33.71875,26.75 C 34.631518,25.925521 35.425376,25.05557 35.96875,24 C 36.512124,22.94443 36.747141,21.656052 36.53125,20.40625 C 36.248228,18.767843 34.958131,17.46276 33.375,16.71875 C 31.757017,15.958361 29.730697,15.568026 27.5,15.53125 z "
           id="path2995"
           inkscape:original="M 27.46875 17.5 C 24.13271 17.445001 20.212818 18.254417 17 19.875 C 13.787182 21.495583 11.357566 23.877774 10.65625 26.9375 C 9.9082662 30.198485 11.481937 34.381621 14.4375 37.71875 C 17.393063 41.055879 21.630577 43.5 25.8125 43.5 C 29.711024 43.5 34.609468 39.812504 35.46875 35.375 C 35.524005 35.090099 35.493476 34.970487 35.4375 34.875 C 35.381524 34.779513 35.252848 34.67825 35 34.5625 C 34.494303 34.331 33.527631 34.215897 32.53125 34.3125 C 31.534869 34.409103 30.507193 34.680657 29.84375 35.03125 C 29.512029 35.206546 29.287309 35.408803 29.1875 35.53125 C 29.087691 35.653697 29.093659 35.65557 29.09375 35.65625 C 29.339341 37.483495 28.602819 39.090615 27.25 39.8125 C 25.897181 40.534385 24.140861 40.303857 22.59375 39.15625 C 21.444374 38.303706 20.691185 37.416899 20.40625 36.40625 C 20.121315 35.395601 20.414919 34.372938 20.96875 33.5625 C 22.076412 31.941623 24.103835 30.748422 26.28125 29.4375 C 28.458665 28.126578 30.780403 26.749835 32.40625 25.28125 C 34.032097 23.812665 34.885195 22.437189 34.59375 20.75 C 34.433192 19.820534 33.782311 19.08795 32.53125 18.5 C 31.280189 17.91205 29.470405 17.533 27.46875 17.5 z "
           inkscape:radius="1.9700731"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3011);stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 23.5625,2.59375 C 22.04759,2.7779966 20.907689,3.6091831 20.28125,4.6875 C 19.654811,5.7658169 19.475654,7.0365166 19.5625,8.25 C 19.649346,9.4634834 20.008218,10.642553 20.5625,11.59375 C 21.116782,12.544947 21.921418,13.372232 23.0625,13.4375 C 24.308222,13.508783 25.18784,12.604822 25.84375,11.59375 C 26.49966,10.582678 26.978531,9.2903666 27.21875,8 C 27.458969,6.7096334 27.470563,5.3998619 26.9375,4.28125 C 26.404437,3.1626381 25.106931,2.4059809 23.5625,2.59375 z "
           id="path2999"
           inkscape:original="M 23.6875 3.53125 C 18.652699 4.1435932 20.444137 12.346659 23.125 12.5 C 25.804774 12.653342 28.724119 2.9189068 23.6875 3.53125 z "
           inkscape:radius="0.93958104"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3027);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 8.84375,10.96875 C 8.2326827,10.94736 7.647776,11.187005 7.125,11.5625 C 6.0807177,12.313036 5.5564729,13.445414 5.53125,14.53125 C 5.5060271,15.617086 5.8804909,16.654222 6.40625,17.5625 C 6.9320091,18.470778 7.6368772,19.239284 8.40625,19.78125 C 9.1756228,20.323216 10.130388,20.72215 11.09375,20.28125 C 12.032054,19.851632 12.291902,18.942072 12.40625,18.0625 C 12.520598,17.182928 12.454069,16.191707 12.25,15.21875 C 12.045931,14.245793 11.705034,13.291412 11.1875,12.5 C 10.669966,11.708588 9.8932255,11.005487 8.84375,10.96875 z "
           id="path3001"
           inkscape:original="M 8.8125 11.9375 C 8.4606561 11.925184 8.0926115 12.05277 7.6875 12.34375 C 4.4480637 14.671966 8.7815845 20.278527 10.6875 19.40625 C 12.355175 18.642678 11.275407 12.023715 8.8125 11.9375 z "
           inkscape:radius="0.97573626"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3043);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 15.9375,5.625 C 15.319047,5.4756575 14.662873,5.5627442 14.03125,5.8125 C 12.761729,6.3145115 11.968151,7.3431338 11.6875,8.4375 C 11.406849,9.5318662 11.57594,10.656406 11.9375,11.6875 C 12.29906,12.718594 12.8628,13.66803 13.5625,14.375 C 14.2622,15.08197 15.157389,15.645352 16.21875,15.4375 C 17.244742,15.23705 17.764385,14.361298 18.09375,13.5 C 18.423115,12.638702 18.590593,11.65157 18.59375,10.625 C 18.596907,9.5984297 18.442591,8.5368008 18.0625,7.625 C 17.682409,6.7131992 16.99497,5.8803552 15.9375,5.625 z "
           id="path3003"
           inkscape:original="M 15.71875 6.5625 C 15.339365 6.4708871 14.912003 6.5187657 14.40625 6.71875 C 10.3595 8.3189717 13.764225 14.912713 16.03125 14.46875 C 18.016485 14.080891 18.374445 7.2037903 15.71875 6.5625 z "
           inkscape:radius="0.98042816"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3035);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      </g>
      <path
         d="M 37.836287,2.5000004 C 28.951188,2.5000004 27.284464,15.500003 32.282829,15.500003 C 37.280472,15.500003 46.721748,2.5000004 37.836287,2.5000004 z "
         id="path4490"
         style="fill:url(#radialGradient3082);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 23.118531,13.498207 C 25.798304,13.651549 28.738452,3.9153808 23.701833,4.527724 C 18.667033,5.1400672 20.437668,13.344866 23.118531,13.498207 z "
         id="path4492"
         style="fill:url(#radialGradient3079);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000036;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 10.673889,20.408945 C 12.579804,19.536291 10.919357,11.000759 7.6784646,13.328597 C 4.4390281,15.656813 8.7679735,21.281222 10.673889,20.408945 z "
         id="path4494"
         style="fill:url(#radialGradient3076);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 16.043979,15.478633 C 18.31282,15.035365 18.437191,6.1170517 14.391167,7.7169262 C 10.344417,9.3171478 13.776954,15.922596 16.043979,15.478633 L 16.043979,15.478633 z "
         id="path4496"
         style="fill:url(#radialGradient3073);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 28.088174,36.787402 C 28.495029,39.81447 25.808755,41.309385 23.177976,39.357941 C 14.803072,33.145898 37.044509,30.047217 35.578432,21.560039 C 34.361541,14.515499 12.175601,16.68429 9.6492019,27.706556 C 7.9390853,35.162153 16.688501,45.505173 25.817942,45.505173 C 30.309158,45.505173 35.489491,41.554302 36.458666,36.549289 C 37.198873,32.732694 27.748577,34.261981 28.088174,36.787402 L 28.088174,36.787402 z "
         id="path4498"
         style="fill:url(#radialGradient3070);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 27.5,17.03125 C 24.083784,16.974929 20.074223,17.807736 16.78125,19.46875 C 13.488277,21.129764 10.929584,23.606158 10.1875,26.84375 C 9.3900145,30.320547 11.066028,34.612646 14.09375,38.03125 C 17.121472,41.449854 21.453606,43.96875 25.8125,43.96875 C 29.985031,43.96875 35.027413,40.168619 35.9375,35.46875 C 36.009985,35.095006 35.960312,34.855088 35.84375,34.65625 C 35.727188,34.457412 35.503059,34.269458 35.1875,34.125 C 34.556382,33.836084 33.519675,33.741858 32.46875,33.84375 C 31.417825,33.945642 30.364087,34.234433 29.625,34.625 C 29.255456,34.820283 28.969993,35.056784 28.8125,35.25 C 28.655007,35.443216 28.605326,35.572444 28.625,35.71875 C 28.851098,37.400963 28.197182,38.784091 27.03125,39.40625 C 25.865318,40.028409 24.314984,39.849393 22.875,38.78125 C 21.773017,37.96386 21.08759,37.146139 20.84375,36.28125 C 20.59991,35.416361 20.841377,34.578888 21.34375,33.84375 C 22.348496,32.373473 24.359185,31.151451 26.53125,29.84375 C 28.703315,28.536049 31.036129,27.176118 32.71875,25.65625 C 34.401371,24.136382 35.388653,22.544361 35.0625,20.65625 C 34.870686,19.545843 34.057148,18.691496 32.71875,18.0625 C 31.380352,17.433504 29.549746,17.065043 27.5,17.03125 z "
         id="path2981"
         inkscape:original="M 27.5 16.5 C 20.481073 16.384283 11.235249 19.829834 9.65625 26.71875 C 7.946133 34.174347 16.683059 44.5 25.8125 44.5 C 30.303716 44.5 35.499575 40.567513 36.46875 35.5625 C 37.208955 31.745904 27.754153 33.255829 28.09375 35.78125 C 28.500604 38.808317 25.818279 40.295194 23.1875 38.34375 C 14.812595 32.131707 37.059827 29.049678 35.59375 20.5625 C 35.137417 17.920797 31.711356 16.56943 27.5 16.5 z "
         inkscape:radius="-0.54594553"
         sodipodi:type="inkscape:offset"
         style="opacity:0.7;fill:url(#radialGradient2991);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none"
         transform="translate(0,1)" />
      <g
         id="g2836"
         style="opacity:0.3;stroke:#2e3436">
        <path
           d="M 27.46875,17.5 C 24.13271,17.445001 20.212818,18.254417 17,19.875 C 13.787182,21.495583 11.357566,23.877774 10.65625,26.9375 C 9.9082662,30.198485 11.481937,34.381621 14.4375,37.71875 C 17.393063,41.055879 21.630577,43.5 25.8125,43.5 C 29.711024,43.5 34.609468,39.812504 35.46875,35.375 C 35.524005,35.090099 35.493476,34.970487 35.4375,34.875 C 35.381524,34.779513 35.252848,34.67825 35,34.5625 C 34.494303,34.331 33.527631,34.215897 32.53125,34.3125 C 31.534869,34.409103 30.507193,34.680657 29.84375,35.03125 C 29.512029,35.206546 29.287309,35.408803 29.1875,35.53125 C 29.087691,35.653697 29.093659,35.65557 29.09375,35.65625 C 29.339341,37.483495 28.602819,39.090615 27.25,39.8125 C 25.897181,40.534385 24.140861,40.303857 22.59375,39.15625 C 21.444374,38.303706 20.691185,37.416899 20.40625,36.40625 C 20.121315,35.395601 20.414919,34.372938 20.96875,33.5625 C 22.076412,31.941623 24.103835,30.748422 26.28125,29.4375 C 28.458665,28.126578 30.780403,26.749835 32.40625,25.28125 C 34.032097,23.812665 34.885195,22.437189 34.59375,20.75 C 34.433192,19.820534 33.782311,19.08795 32.53125,18.5 C 31.280189,17.91205 29.470405,17.533 27.46875,17.5 z "
           id="path2853"
           inkscape:original="M 27.5 16.5 C 20.481073 16.384283 11.235249 19.829834 9.65625 26.71875 C 7.946133 34.174347 16.683059 44.5 25.8125 44.5 C 30.303716 44.5 35.499575 40.567513 36.46875 35.5625 C 37.208955 31.745904 27.754153 33.255829 28.09375 35.78125 C 28.500604 38.808317 25.818279 40.295194 23.1875 38.34375 C 14.812595 32.131707 37.059827 29.049678 35.59375 20.5625 C 35.137417 17.920797 31.711356 16.56943 27.5 16.5 z "
           inkscape:radius="-1.0153533"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2802);stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="translate(0,1)" />
        <path
           d="M 37.84375,2.5 C 33.896305,2.5 31.658583,5.3543541 30.84375,8.28125 C 30.436334,9.7446979 30.431832,11.203417 30.75,12.15625 C 31.068168,13.109083 31.471708,13.5 32.28125,13.5 C 33.090548,13.5 34.492571,12.823247 35.84375,11.6875 C 37.194929,10.551753 38.504459,9.0076497 39.375,7.5 C 40.245541,5.9923503 40.616707,4.5151049 40.4375,3.75 C 40.347896,3.3674476 40.209065,3.160548 39.84375,2.9375 C 39.478435,2.714452 38.830661,2.5 37.84375,2.5 z "
           id="path2920"
           inkscape:original="M 37.84375 1.5 C 28.95865 1.5 27.282885 14.5 32.28125 14.5 C 37.278893 14.5 46.729211 1.5 37.84375 1.5 z "
           inkscape:radius="-1.0151668"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2804);stroke-width:0.99999994;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;color:black;stroke-linecap:butt;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
           transform="translate(0,1)" />
        <path
           d="M 23.8125,4.53125 C 22.831737,4.6505324 22.3278,5.0694512 21.96875,5.6875 C 21.6097,6.3055488 21.465329,7.2038998 21.53125,8.125 C 21.597171,9.0461002 21.879196,9.9574168 22.25,10.59375 C 22.620804,11.230083 23.028082,11.459632 23.1875,11.46875 C 23.232836,11.471344 23.70687,11.272131 24.1875,10.53125 C 24.66813,9.7903692 25.119405,8.6934849 25.3125,7.65625 C 25.505595,6.6190151 25.427964,5.6296051 25.1875,5.125 C 24.947036,4.6203949 24.762186,4.4157888 23.8125,4.53125 z "
           id="path2922"
           inkscape:original="M 23.6875 3.53125 C 18.652699 4.1435932 20.444137 12.346659 23.125 12.5 C 25.804774 12.653342 28.724119 2.9189068 23.6875 3.53125 z "
           inkscape:radius="-1.0192616"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2804);stroke-width:0.99999994;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;color:black;stroke-linecap:butt;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
           transform="translate(0,1)" />
        <path
           d="M 8.78125,12.9375 C 8.6914294,12.934356 8.5361761,12.950698 8.25,13.15625 C 7.6770962,13.568002 7.5137117,13.972216 7.5,14.5625 C 7.4862883,15.152784 7.7347971,15.919653 8.125,16.59375 C 8.5152029,17.267847 9.0548551,17.851915 9.53125,18.1875 C 10.007645,18.523085 10.296913,18.492831 10.28125,18.5 C 10.171152,18.55041 10.393698,18.389809 10.46875,17.8125 C 10.543802,17.235191 10.508818,16.412009 10.34375,15.625 C 10.178682,14.837991 9.8869629,14.058668 9.5625,13.5625 C 9.2380371,13.066332 8.9585431,12.943706 8.78125,12.9375 z "
           id="path2926"
           inkscape:original="M 8.8125 11.9375 C 8.4606561 11.925184 8.0926115 12.05277 7.6875 12.34375 C 4.4480637 14.671966 8.7815845 20.278527 10.6875 19.40625 C 12.355175 18.642678 11.275407 12.023715 8.8125 11.9375 z "
           inkscape:radius="-0.98627526"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2806);stroke-width:0.99999994;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;color:black;stroke-linecap:butt;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
           transform="translate(0,1)" />
        <path
           d="M 15.5,7.5 C 15.359503,7.4660732 15.161228,7.4747497 14.78125,7.625 C 14.027202,7.9231762 13.742067,8.3279067 13.59375,8.90625 C 13.445433,9.4845933 13.514058,10.269275 13.78125,11.03125 C 14.048442,11.793225 14.48758,12.514156 14.9375,12.96875 C 15.38742,13.423344 15.771226,13.514203 15.84375,13.5 C 15.810775,13.506442 16.068097,13.369899 16.28125,12.8125 C 16.494403,12.255101 16.622474,11.415176 16.625,10.59375 C 16.627526,9.7723241 16.487721,8.9765178 16.25,8.40625 C 16.012279,7.8359822 15.770674,7.5653616 15.5,7.5 z "
           id="path2924"
           inkscape:original="M 15.71875 6.5625 C 15.339365 6.4708871 14.912003 6.5187657 14.40625 6.71875 C 10.3595 8.3189717 13.764225 14.912713 16.03125 14.46875 C 18.016485 14.080891 18.374445 7.2037903 15.71875 6.5625 z "
           inkscape:radius="-0.9796893"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2804);stroke-width:0.99999994;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;color:black;stroke-linecap:butt;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
           transform="translate(0,1)" />
      </g>
    </g>
    <g
       id="g32"
       style="display:inline;enable-background:new"
       transform="translate(303,126) scale(1.000000,1.000000)">
      <g
         id="g2826"
         style="opacity:0.5">
        <path
           d="M 37.84375,0.5625 C 32.937667,0.5625 29.926498,4.1974996 28.9375,7.75 C 28.443001,9.5262502 28.416155,11.31354 28.90625,12.78125 C 29.396345,14.24896 30.61967,15.4375 32.28125,15.4375 C 33.942709,15.4375 35.582624,14.48396 37.125,13.1875 C 38.667376,11.89104 40.09201,10.203617 41.09375,8.46875 C 42.09549,6.7338829 42.728692,4.9559671 42.34375,3.3125 C 42.151279,2.4907665 41.629001,1.7294453 40.84375,1.25 C 40.058499,0.77055466 39.070311,0.5625 37.84375,0.5625 z "
           id="path95"
           inkscape:original="M 37.84375 1.5 C 28.95865 1.5 27.282885 14.5 32.28125 14.5 C 37.278893 14.5 46.729211 1.5 37.84375 1.5 z "
           inkscape:radius="0.95043164"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3097);stroke-width:1.51730716;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0.646681,0,0,0.671681,1.035749,0.130928)" />
        <path
           d="M 27.5,15.53125 C 23.819995,15.47058 19.677609,16.333022 16.125,18.125 C 12.575638,19.91534 9.6229376,22.691517 8.75,26.5 C 7.7853218,30.705708 9.7015374,35.342237 12.96875,39.03125 C 16.227435,42.710634 20.862972,45.46875 25.8125,45.46875 C 28.382906,45.46875 30.92027,44.338258 33.03125,42.625 C 35.14223,40.911742 36.863141,38.554721 37.40625,35.75 C 37.506953,35.230764 37.385929,34.320108 37.125,33.875 C 36.710187,33.167389 36.230739,32.972714 35.8125,32.78125 C 34.667559,32.257114 33.611559,32.220831 32.34375,32.34375 C 31.123915,32.462018 29.972434,32.734345 28.9375,33.28125 C 28.377274,33.577298 27.999772,33.859812 27.65625,34.28125 C 27.591088,34.361192 27.542063,34.425289 27.46875,34.53125 C 27.432093,34.58423 27.416414,34.613815 27.3125,34.84375 C 27.208586,35.073685 27.156227,35.90608 27.15625,35.90625 C 27.312258,37.066982 26.855887,37.77254 26.3125,38.0625 C 25.738196,38.368957 24.856757,38.360283 23.78125,37.5625 C 22.826143,36.854054 22.433064,36.302635 22.3125,35.875 C 22.217663,35.53862 22.292508,35.128317 22.59375,34.6875 C 23.323696,33.619346 25.124686,32.442183 27.3125,31.125 C 29.481924,29.818889 31.855077,28.433407 33.71875,26.75 C 34.631518,25.925521 35.425376,25.05557 35.96875,24 C 36.512124,22.94443 36.747141,21.656052 36.53125,20.40625 C 36.248228,18.767843 34.958131,17.46276 33.375,16.71875 C 31.757017,15.958361 29.730697,15.568026 27.5,15.53125 z "
           id="path97"
           inkscape:original="M 27.46875 17.5 C 24.13271 17.445001 20.212818 18.254417 17 19.875 C 13.787182 21.495583 11.357566 23.877774 10.65625 26.9375 C 9.9082662 30.198485 11.481937 34.381621 14.4375 37.71875 C 17.393063 41.055879 21.630577 43.5 25.8125 43.5 C 29.711024 43.5 34.609468 39.812504 35.46875 35.375 C 35.524005 35.090099 35.493476 34.970487 35.4375 34.875 C 35.381524 34.779513 35.252848 34.67825 35 34.5625 C 34.494303 34.331 33.527631 34.215897 32.53125 34.3125 C 31.534869 34.409103 30.507193 34.680657 29.84375 35.03125 C 29.512029 35.206546 29.287309 35.408803 29.1875 35.53125 C 29.087691 35.653697 29.093659 35.65557 29.09375 35.65625 C 29.339341 37.483495 28.602819 39.090615 27.25 39.8125 C 25.897181 40.534385 24.140861 40.303857 22.59375 39.15625 C 21.444374 38.303706 20.691185 37.416899 20.40625 36.40625 C 20.121315 35.395601 20.414919 34.372938 20.96875 33.5625 C 22.076412 31.941623 24.103835 30.748422 26.28125 29.4375 C 28.458665 28.126578 30.780403 26.749835 32.40625 25.28125 C 34.032097 23.812665 34.885195 22.437189 34.59375 20.75 C 34.433192 19.820534 33.782311 19.08795 32.53125 18.5 C 31.280189 17.91205 29.470405 17.533 27.46875 17.5 z "
           inkscape:radius="1.9700731"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3099);stroke-width:1.43729961;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0.690717,0,0,0.700818,-0.361533,-0.382484)" />
        <path
           d="M 23.5625,2.59375 C 22.04759,2.7779966 20.907689,3.6091831 20.28125,4.6875 C 19.654811,5.7658169 19.475654,7.0365166 19.5625,8.25 C 19.649346,9.4634834 20.008218,10.642553 20.5625,11.59375 C 21.116782,12.544947 21.921418,13.372232 23.0625,13.4375 C 24.308222,13.508783 25.18784,12.604822 25.84375,11.59375 C 26.49966,10.582678 26.978531,9.2903666 27.21875,8 C 27.458969,6.7096334 27.470563,5.3998619 26.9375,4.28125 C 26.404437,3.1626381 25.106931,2.4059809 23.5625,2.59375 z "
           id="path99"
           inkscape:original="M 23.6875 3.53125 C 18.652699 4.1435932 20.444137 12.346659 23.125 12.5 C 25.804774 12.653342 28.724119 2.9189068 23.6875 3.53125 z "
           inkscape:radius="0.93958104"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3101);stroke-width:1.36613142;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0.738429,0,0,0.725615,-1.930358,-0.361311)" />
        <path
           d="M 8.84375,10.96875 C 8.2326827,10.94736 7.647776,11.187005 7.125,11.5625 C 6.0807177,12.313036 5.5564729,13.445414 5.53125,14.53125 C 5.5060271,15.617086 5.8804909,16.654222 6.40625,17.5625 C 6.9320091,18.470778 7.6368772,19.239284 8.40625,19.78125 C 9.1756228,20.323216 10.130388,20.72215 11.09375,20.28125 C 12.032054,19.851632 12.291902,18.942072 12.40625,18.0625 C 12.520598,17.182928 12.454069,16.191707 12.25,15.21875 C 12.045931,14.245793 11.705034,13.291412 11.1875,12.5 C 10.669966,11.708588 9.8932255,11.005487 8.84375,10.96875 z "
           id="path101"
           inkscape:original="M 8.8125 11.9375 C 8.4606561 11.925184 8.0926115 12.05277 7.6875 12.34375 C 4.4480637 14.671966 8.7815845 20.278527 10.6875 19.40625 C 12.355175 18.642678 11.275407 12.023715 8.8125 11.9375 z "
           inkscape:radius="0.97573626"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3112);stroke-width:1.52575243;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0.670709,-9.294505e-2,0.103826,0.626081,-3.69788,2.464307)" />
        <path
           d="M 15.9375,5.625 C 15.319047,5.4756575 14.662873,5.5627442 14.03125,5.8125 C 12.761729,6.3145115 11.968151,7.3431338 11.6875,8.4375 C 11.406849,9.5318662 11.57594,10.656406 11.9375,11.6875 C 12.29906,12.718594 12.8628,13.66803 13.5625,14.375 C 14.2622,15.08197 15.157389,15.645352 16.21875,15.4375 C 17.244742,15.23705 17.764385,14.361298 18.09375,13.5 C 18.423115,12.638702 18.590593,11.65157 18.59375,10.625 C 18.596907,9.5984297 18.442591,8.5368008 18.0625,7.625 C 17.682409,6.7131992 16.99497,5.8803552 15.9375,5.625 z "
           id="path103"
           inkscape:original="M 15.71875 6.5625 C 15.339365 6.4708871 14.912003 6.5187657 14.40625 6.71875 C 10.3595 8.3189717 13.764225 14.912713 16.03125 14.46875 C 18.016485 14.080891 18.374445 7.2037903 15.71875 6.5625 z "
           inkscape:radius="0.98042816"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient3116);stroke-width:1.43693066;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0.686999,0,0,0.704973,-1.432808,0.586176)" />
      </g>
      <path
         d="M 25.362812,1.5000001 C 20.179842,1.5000001 19.207586,9.4999982 22.123298,9.4999982 C 25.038586,9.4999982 30.545995,1.5000001 25.362812,1.5000001 z "
         id="path105"
         style="fill:url(#radialGradient2983);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 15.262059,8.4988127 C 17.065333,8.6004463 19.04382,2.1474106 15.654575,2.5532657 C 12.266553,2.9591206 13.45805,8.3971798 15.262059,8.4988127 z "
         id="path107"
         style="fill:url(#radialGradient2980);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 5.284619,13.347655 C 6.281533,12.743514 4.535598,8.3237128 2.920063,9.8000681 C 1.305389,11.276518 4.287668,13.951597 5.284619,13.347655 z "
         id="path109"
         style="fill:url(#radialGradient2977);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000095;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 18.878404,24.805137 C 19.148376,26.893058 17.365872,27.924176 15.620193,26.578166 C 10.062942,22.293408 24.821468,20.156092 23.848639,14.302058 C 23.041157,9.4430839 8.319458,10.939009 6.6430409,18.54162 C 5.5082762,23.684121 11.314037,30.818222 17.371968,30.818222 C 20.352159,30.818222 23.78962,28.093108 24.432726,24.640898 C 24.923898,22.008401 18.65306,23.063227 18.878404,24.805137 L 18.878404,24.805137 z "
         id="path111"
         style="fill:url(#radialGradient2971);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000072;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 27.5,17.03125 C 24.083784,16.974929 20.074223,17.807736 16.78125,19.46875 C 13.488277,21.129764 10.929584,23.606158 10.1875,26.84375 C 9.3900145,30.320547 11.066028,34.612646 14.09375,38.03125 C 17.121472,41.449854 21.453606,43.96875 25.8125,43.96875 C 29.985031,43.96875 35.027413,40.168619 35.9375,35.46875 C 36.009985,35.095006 35.960312,34.855088 35.84375,34.65625 C 35.727188,34.457412 35.503059,34.269458 35.1875,34.125 C 34.556382,33.836084 33.519675,33.741858 32.46875,33.84375 C 31.417825,33.945642 30.364087,34.234433 29.625,34.625 C 29.255456,34.820283 28.969993,35.056784 28.8125,35.25 C 28.655007,35.443216 28.605326,35.572444 28.625,35.71875 C 28.851098,37.400963 28.197182,38.784091 27.03125,39.40625 C 25.865318,40.028409 24.314984,39.849393 22.875,38.78125 C 21.773017,37.96386 21.08759,37.146139 20.84375,36.28125 C 20.59991,35.416361 20.841377,34.578888 21.34375,33.84375 C 22.348496,32.373473 24.359185,31.151451 26.53125,29.84375 C 28.703315,28.536049 31.036129,27.176118 32.71875,25.65625 C 34.401371,24.136382 35.388653,22.544361 35.0625,20.65625 C 34.870686,19.545843 34.057148,18.691496 32.71875,18.0625 C 31.380352,17.433504 29.549746,17.065043 27.5,17.03125 z "
         id="path113"
         inkscape:original="M 27.5 16.5 C 20.481073 16.384283 11.235249 19.829834 9.65625 26.71875 C 7.946133 34.174347 16.683059 44.5 25.8125 44.5 C 30.303716 44.5 35.499575 40.567513 36.46875 35.5625 C 37.208955 31.745904 27.754153 33.255829 28.09375 35.78125 C 28.500604 38.808317 25.818279 40.295194 23.1875 38.34375 C 14.812595 32.131707 37.059827 29.049678 35.59375 20.5625 C 35.137417 17.920797 31.711356 16.56943 27.5 16.5 z "
         inkscape:radius="-0.54594553"
         sodipodi:type="inkscape:offset"
         style="fill:url(#radialGradient2951);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(0.676806,0,0,0.68975,-0.243289,0.120764)" />
      <path
         d="M 27.46875,17.90625 C 24.197789,17.852324 20.304005,18.630985 17.15625,20.21875 C 14.008495,21.806515 11.699473,24.1159 11.03125,27.03125 C 10.323448,30.117056 11.821759,34.197756 14.71875,37.46875 C 17.615741,40.739744 21.774228,43.09375 25.8125,43.09375 C 29.488607,43.09375 34.275707,39.537038 35.09375,35.3125 C 35.135018,35.099716 35.100547,35.105345 35.09375,35.09375 C 35.086953,35.082155 35.045695,34.998697 34.84375,34.90625 C 34.43986,34.721356 33.514607,34.595189 32.5625,34.6875 C 31.610393,34.779811 30.602041,35.056855 30,35.375 C 29.69898,35.534073 29.521735,35.716247 29.46875,35.78125 C 29.415765,35.846253 29.484554,35.711278 29.46875,35.59375 C 29.730164,37.53872 28.942019,39.353416 27.4375,40.15625 C 25.932981,40.959084 23.977819,40.68086 22.34375,39.46875 C 21.155905,38.587672 20.349542,37.660215 20.03125,36.53125 C 19.712958,35.402285 20.06065,34.215311 20.65625,33.34375 C 21.847451,31.600628 23.911992,30.438537 26.09375,29.125 C 28.275508,27.811463 30.576488,26.426958 32.15625,25 C 33.736012,23.573042 34.482023,22.336597 34.21875,20.8125 C 34.083563,20.029908 33.555167,19.398383 32.375,18.84375 C 31.194833,18.289117 29.431369,17.938606 27.46875,17.90625 z "
         id="path115"
         inkscape:original="M 27.5 16.5 C 20.481073 16.384283 11.235249 19.829834 9.65625 26.71875 C 7.946133 34.174347 16.683059 44.5 25.8125 44.5 C 30.303716 44.5 35.499575 40.567513 36.46875 35.5625 C 37.208955 31.745904 27.754153 33.255829 28.09375 35.78125 C 28.500604 38.808317 25.818279 40.295194 23.1875 38.34375 C 14.812595 32.131707 37.059827 29.049678 35.59375 20.5625 C 35.137417 17.920797 31.711356 16.56943 27.5 16.5 z "
         inkscape:radius="-1.3963798"
         sodipodi:type="inkscape:offset"
         style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.49644375;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.660525,0,0,0.676067,0.328382,0.36574)" />
      <path
         d="M 37.84375,2.84375 C 34.049855,2.84375 31.911936,5.5170603 31.125,8.34375 C 30.731532,9.7570949 30.77187,11.192137 31.0625,12.0625 C 31.35313,12.932863 31.608183,13.15625 32.28125,13.15625 C 32.954053,13.15625 34.335696,12.547505 35.65625,11.4375 C 36.976804,10.327495 38.275474,8.8150052 39.125,7.34375 C 39.974526,5.8724948 40.271254,4.4681633 40.125,3.84375 C 40.051873,3.5315433 39.954302,3.3694795 39.65625,3.1875 C 39.358198,3.0055205 38.792276,2.84375 37.84375,2.84375 z "
         id="path117"
         inkscape:original="M 37.84375 1.5 C 28.95865 1.5 27.282885 14.5 32.28125 14.5 C 37.278893 14.5 46.729211 1.5 37.84375 1.5 z "
         inkscape:radius="-1.3300062"
         sodipodi:type="inkscape:offset"
         style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.79024982;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.536273,0,0,0.581818,4.962887,0.845455)" />
      <path
         d="M 23.8125,4.53125 C 22.831737,4.6505324 22.3278,5.0694512 21.96875,5.6875 C 21.6097,6.3055488 21.465329,7.2038998 21.53125,8.125 C 21.597171,9.0461002 21.879196,9.9574168 22.25,10.59375 C 22.620804,11.230083 23.028082,11.459632 23.1875,11.46875 C 23.232836,11.471344 23.70687,11.272131 24.1875,10.53125 C 24.66813,9.7903692 25.119405,8.6934849 25.3125,7.65625 C 25.505595,6.6190151 25.427964,5.6296051 25.1875,5.125 C 24.947036,4.6203949 24.762186,4.4157888 23.8125,4.53125 z "
         id="path119"
         inkscape:original="M 23.6875 3.53125 C 18.652699 4.1435932 20.444137 12.346659 23.125 12.5 C 25.804774 12.653342 28.724119 2.9189068 23.6875 3.53125 z "
         inkscape:radius="-1.0192616"
         sodipodi:type="inkscape:offset"
         style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.84449363;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.512093,0,0,0.573981,3.481929,0.917149)" />
      <path
         d="M 8.78125,12.9375 C 8.6914294,12.934356 8.5361761,12.950698 8.25,13.15625 C 7.6770962,13.568002 7.5137117,13.972216 7.5,14.5625 C 7.4862883,15.152784 7.7347971,15.919653 8.125,16.59375 C 8.5152029,17.267847 9.0548551,17.851915 9.53125,18.1875 C 10.007645,18.523085 10.296913,18.492831 10.28125,18.5 C 10.171152,18.55041 10.393698,18.389809 10.46875,17.8125 C 10.543802,17.235191 10.508818,16.412009 10.34375,15.625 C 10.178682,14.837991 9.8869629,14.058668 9.5625,13.5625 C 9.2380371,13.066332 8.9585431,12.943706 8.78125,12.9375 z "
         id="path121"
         inkscape:original="M 8.8125 11.9375 C 8.4606561 11.925184 8.0926115 12.05277 7.6875 12.34375 C 4.4480637 14.671966 8.7815845 20.278527 10.6875 19.40625 C 12.355175 18.642678 11.275407 12.023715 8.8125 11.9375 z "
         inkscape:radius="-0.98627526"
         sodipodi:type="inkscape:offset"
         style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2.99075699;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.309204,-3.309301e-2,7.589298e-2,0.353447,-8.95e-3,6.218141)" />
      <path
         d="M 9.573106,10.48693 C 10.906798,10.215766 10.979907,4.7600932 8.6015353,5.7387975 C 6.2227372,6.7177142 8.240483,10.758519 9.573106,10.48693 L 9.573106,10.48693 z "
         id="path123"
         style="opacity:1;fill:url(#radialGradient3036);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00000048;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 15.5,7.5 C 15.359503,7.4660732 15.161228,7.4747497 14.78125,7.625 C 14.027202,7.9231762 13.742067,8.3279067 13.59375,8.90625 C 13.445433,9.4845933 13.514058,10.269275 13.78125,11.03125 C 14.048442,11.793225 14.48758,12.514156 14.9375,12.96875 C 15.38742,13.423344 15.771226,13.514203 15.84375,13.5 C 15.810775,13.506442 16.068097,13.369899 16.28125,12.8125 C 16.494403,12.255101 16.622474,11.415176 16.625,10.59375 C 16.627526,9.7723241 16.487721,8.9765178 16.25,8.40625 C 16.012279,7.8359822 15.770674,7.5653616 15.5,7.5 z "
         id="path125"
         inkscape:original="M 15.71875 6.5625 C 15.339365 6.4708871 14.912003 6.5187657 14.40625 6.71875 C 10.3595 8.3189717 13.764225 14.912713 16.03125 14.46875 C 18.016485 14.080891 18.374445 7.2037903 15.71875 6.5625 z "
         inkscape:radius="-0.9796893"
         sodipodi:type="inkscape:offset"
         style="opacity:0.2;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:2.49691343;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.321739,0,0,0.498527,4.151064,2.769207)" />
    </g>
    <g
       id="g22"
       style="display:inline;enable-background:new"
       transform="translate(303,177) scale(1.000000,1.000000)">
      <g
         id="g6431"
         style="opacity:0.5">
        <path
           d="M 17.15625,0 C 15.253983,-8.5638732e-09 13.857109,0.97414707 13,2.1875 C 12.958886,2.0606843 12.907259,1.9393435 12.84375,1.8125 C 12.466236,1.0585137 11.455642,0.51567482 10.5,0.625 C 9.5772991,0.73059491 8.7943467,1.266873 8.375,1.9375 C 8.2517766,2.1345612 8.1696205,2.3257636 8.09375,2.53125 C 7.8772314,2.3282452 7.6305755,2.1426989 7.3125,2.0625 C 6.8933752,1.9568228 6.4571639,2.0263388 6.0625,2.1875 C 5.3035644,2.4974233 4.793101,3.1687933 4.625,3.84375 C 4.5044297,4.327862 4.5340397,4.8074 4.625,5.25 C 4.3657691,5.0831338 4.0318048,5.0097943 3.6875,5 C 3.3277786,4.9897672 2.9462731,5.0591422 2.625,5.25 C 2.0066895,5.6175427 1.6440084,6.3151112 1.625,6.9375 C 1.6059916,7.5598888 1.8188477,8.0605355 2.125,8.5 C 2.4311523,8.9394645 2.8373698,9.3032991 3.28125,9.5625 C 3.7251302,9.8217009 4.2645991,10.055383 4.90625,9.8125 C 5.2718528,9.6740491 5.518003,9.3658312 5.65625,9.09375 C 5.794497,8.8216688 5.8520356,8.5792817 5.875,8.3125 C 5.8979644,8.0457183 5.8806931,7.774191 5.84375,7.5 C 6.230465,7.8399203 6.7442807,8.1026262 7.40625,7.96875 C 7.8606634,7.8770669 8.17632,7.5848724 8.375,7.3125 C 8.57368,7.0401276 8.6923845,6.7646582 8.78125,6.46875 C 8.7906736,6.4373709 8.8037178,6.4066195 8.8125,6.375 C 9.1568489,6.7622294 9.6184744,7.0910106 10.25,7.125 C 11.175606,7.1748382 11.853369,6.4177155 12.25,5.875 C 12.466538,6.7430438 13.34046,7.0341891 14.375,7.03125 C 16.902035,7.023982 18.706744,5.8484495 19.375,4.75 C 19.905958,3.8772345 20.174916,2.725017 19.90625,1.6875 C 19.771917,1.1687415 19.406779,0.65627169 18.90625,0.375 C 18.405721,0.093728306 17.823941,0 17.15625,0 z "
           id="path5503"
           sodipodi:nodetypes="ccssscssscsssssssscssscscssssc"
           style="fill:url(#linearGradient6415);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 10.09375,7.1875 C 8.6020652,7.4499535 7.0732859,8.0064675 5.8125,8.875 C 4.5517141,9.7435325 3.5146703,10.96359 3.15625,12.53125 C 2.6684877,14.663094 3.4841161,16.965964 4.9375,18.78125 C 6.3908839,20.596536 8.5793414,21.96875 11.0625,21.96875 C 13.648449,21.968751 16.382674,20.122441 16.9375,17.25 C 17.016819,16.839993 16.938376,16.36354 16.71875,16 C 16.499124,15.63646 16.189065,15.420178 15.875,15.28125 C 15.246869,15.003394 14.607481,14.998202 13.96875,15.0625 C 13.330019,15.126798 12.703174,15.275984 12.15625,15.5625 C 11.882788,15.705758 11.602359,15.881773 11.375,16.15625 C 11.147641,16.430727 10.970118,16.856745 11.03125,17.3125 C 11.088457,17.739201 11.03978,17.634768 11.0625,17.625 C 11.08522,17.615232 10.831255,17.69105 10.40625,17.375 C 10.023663,17.090505 9.9385546,16.910495 9.9375,16.90625 C 9.9364454,16.902005 9.9176883,16.935157 10.03125,16.78125 C 10.258373,16.473436 11.115857,15.852885 12.15625,15.25 C 13.196643,14.647115 14.41056,13.995653 15.375,13.15625 C 16.33944,12.316847 17.150595,11.136829 16.90625,9.71875 C 16.68097,8.4113372 15.520752,7.6203983 14.28125,7.28125 C 13.041748,6.9421017 11.582491,6.9255644 10.09375,7.1875 z "
           id="path5495"
           inkscape:original="M 10.25 8.15625 C 7.5076831 8.6387452 4.7099065 10.191734 4.125 12.75 C 3.3331552 16.210886 6.835242 21 11.0625 21 C 13.142093 21.000001 15.519988 19.385825 15.96875 17.0625 C 16.311492 15.290837 11.842755 16.0152 12 17.1875 C 12.188389 18.592665 11.030644 19.06211 9.8125 18.15625 C 5.9346211 15.272622 16.616346 13.814744 15.9375 9.875 C 15.655767 8.2399636 12.992317 7.6737548 10.25 8.15625 z "
           inkscape:radius="0.97852987"
           sodipodi:type="inkscape:offset"
           style="fill:url(#linearGradient6423);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      </g>
      <path
         d="M 12.25,8.46875 C 11.643827,8.4584008 11.000224,8.5094972 10.34375,8.625 C 9.0322602,8.8557492 7.6995951,9.3437585 6.65625,10.0625 C 5.6129049,10.781241 4.8535451,11.707457 4.59375,12.84375 C 4.2432945,14.375472 4.8622872,16.336895 6.09375,17.875 C 7.3252128,19.413105 9.131813,20.5 11.0625,20.5 C 12.891413,20.500001 15.103747,19.020226 15.5,16.96875 C 15.524785,16.840636 15.493206,16.790482 15.46875,16.75 C 15.444294,16.709518 15.401075,16.678005 15.28125,16.625 C 15.0416,16.51899 14.565948,16.452466 14.09375,16.5 C 13.621552,16.547534 13.127019,16.678984 12.8125,16.84375 C 12.655241,16.926133 12.546627,17.03746 12.5,17.09375 C 12.453373,17.15004 12.469628,17.131546 12.46875,17.125 C 12.581256,17.964163 12.261418,18.69514 11.625,18.96875 C 10.988582,19.24236 10.231448,19.051945 9.53125,18.53125 C 8.995945,18.133192 8.6508903,17.731599 8.53125,17.25 C 8.4116097,16.768401 8.5669609,16.281375 8.84375,15.90625 C 9.3973282,15.156 10.382116,14.611572 11.4375,14 C 12.492884,13.388428 13.619847,12.746948 14.40625,12.0625 C 15.192653,11.378052 15.601513,10.739251 15.46875,9.96875 C 15.369674,9.3937625 14.822017,8.9466197 13.875,8.6875 C 13.401491,8.5579402 12.856173,8.4790992 12.25,8.46875 z "
         id="path1911"
         inkscape:original="M 10.25 8.15625 C 7.5076831 8.6387452 4.7099065 10.191734 4.125 12.75 C 3.3331552 16.210886 6.835242 21 11.0625 21 C 13.142093 21.000001 15.519988 19.385825 15.96875 17.0625 C 16.311492 15.290837 11.842755 16.0152 12 17.1875 C 12.188389 18.592665 11.030644 19.06211 9.8125 18.15625 C 5.9346211 15.272622 16.616346 13.814744 15.9375 9.875 C 15.655767 8.2399636 12.992317 7.6737548 10.25 8.15625 z "
         inkscape:radius="-0.48443797"
         sodipodi:type="inkscape:offset"
         style="fill:url(#radialGradient7326);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.00128043;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(1,0,0,0.997444,0,5.239347e-2)" />
      <path
         d="M 10.6875,2.25 C 10.177853,2.3083246 9.9006562,2.4903422 9.71875,2.78125 C 9.5368438,3.0721578 9.4702013,3.5068641 9.5,3.9375 C 9.5297987,4.3681359 9.6605181,4.7951415 9.84375,5.09375 C 10.026982,5.3923585 10.236154,5.4942091 10.34375,5.5 C 10.399713,5.5030132 10.630626,5.3817192 10.875,5.03125 C 11.119374,4.6807808 11.337746,4.1747931 11.4375,3.6875 C 11.537254,3.2002069 11.522238,2.7629062 11.40625,2.53125 C 11.290262,2.2995938 11.183082,2.1933055 10.6875,2.25 z "
         id="path2806"
         inkscape:original="M 10.625 1.75 C 8.0839768 2.0407975 8.959489 5.9271795 10.3125 6 C 11.664959 6.0728216 13.166941 1.4592026 10.625 1.75 z "
         inkscape:radius="-0.48984182"
         sodipodi:type="inkscape:offset"
         style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1.04500914;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
         transform="matrix(0.996599,0,0,0.918839,3.912288e-2,0.446391)" />
      <path
         d="M 6.96875,3.5 C 6.9012828,3.482989 6.7970856,3.4922288 6.625,3.5625 C 6.265697,3.709227 6.1362209,3.8914969 6.0625,4.1875 C 5.9887791,4.4835031 6.0266317,4.894965 6.15625,5.28125 C 6.2858683,5.667535 6.5015794,6.0213925 6.71875,6.25 C 6.9359206,6.4786075 7.1057587,6.5351413 7.125,6.53125 C 7.1064496,6.5349928 7.1304368,6.5157286 7.1875,6.4375 C 7.2445632,6.3592714 7.3203336,6.2132805 7.375,6.03125 C 7.4843327,5.6671891 7.5386403,5.1824604 7.5,4.71875 C 7.4613597,4.2550396 7.3043955,3.8396166 7.15625,3.65625 C 7.0821772,3.5645667 7.0362172,3.517011 6.96875,3.5 z "
         id="path2810"
         inkscape:original="M 6.4375 3.09375 C 4.4720435 3.8963752 6.1176837 7.2226789 7.21875 7 C 8.3206982 6.7776693 8.4026039 2.291299 6.4375 3.09375 z "
         inkscape:radius="-0.49089125"
         sodipodi:type="inkscape:offset"
         style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 3.34375,6.4375 C 3.0511994,6.6114011 3.0061197,6.7683738 3,6.96875 C 2.9938803,7.1691262 3.0936,7.4493889 3.28125,7.71875 C 3.4689,7.9881111 3.7272026,8.23395 3.96875,8.375 C 4.2102974,8.51605 4.3854228,8.5078837 4.40625,8.5 C 4.3922832,8.5052891 4.4109631,8.5209767 4.4375,8.46875 C 4.4640369,8.4165233 4.4880363,8.3264843 4.5,8.1875 C 4.5239273,7.9095313 4.4662166,7.4970931 4.34375,7.15625 C 4.2212834,6.8154069 4.0384028,6.5503503 3.875,6.4375 C 3.7115972,6.3246497 3.6233874,6.2713766 3.34375,6.4375 z "
         id="path5469"
         inkscape:original="M 3.09375 6.03125 C 1.4641834 6.9999144 3.6349983 9.3316648 4.59375 8.96875 C 5.5525017 8.6056783 4.7240487 5.0627431 3.09375 6.03125 z "
         inkscape:radius="-0.48805442"
         sodipodi:type="inkscape:offset"
         style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <g
         id="g5488"
         transform="translate(0,-31)">
        <path
           d="M 17.168128,0.99999772 C 12.725589,0.99999772 11.892228,7 14.391406,7 C 16.890222,7 21.610849,0.99999772 17.168128,0.99999772 z "
           id="path5478"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 10.321552,5.9991486 C 11.674011,6.07197 13.15788,1.4483327 10.615939,1.7391301 C 8.0749159,2.0299276 8.968541,5.9263281 10.321552,5.9991486 z "
           id="path5480"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 4.594151,8.9621179 C 5.5529027,8.5990464 4.7176314,5.0478013 3.0873327,6.0163082 C 1.4577661,6.9849727 3.6353993,9.3250327 4.594151,8.9621179 z "
           id="path5482"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 7.2341615,6.9892851 C 8.3361096,6.7669543 8.3965149,2.293785 6.431411,3.096236 C 4.4659543,3.8988612 6.1330952,7.211964 7.2341615,6.9892851 L 7.2341615,6.9892851 z "
           id="path5484"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 11.999926,17.174178 C 12.188315,18.579342 11.044671,19.05231 9.8265269,18.14645 C 5.9486477,15.262822 16.627271,13.824415 15.948425,9.8846706 C 15.38496,6.6145974 5.2823314,7.6213492 4.1125185,12.737881 C 3.3206735,16.198767 6.821668,20.999993 11.048926,20.999993 C 13.128519,20.999993 15.527198,19.386971 15.97596,17.063646 C 16.318702,15.291983 11.842681,16.001878 11.999926,17.174178 L 11.999926,17.174178 z "
           id="path5486"
           sodipodi:nodetypes="cssssscc"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      </g>
      <path
         d="M 17.15625,1.5 C 15.550535,1.5 14.208002,2.6557328 13.71875,3.71875 C 13.474124,4.2502586 13.452328,4.7254798 13.59375,5 C 13.735172,5.2745202 14.047235,5.5 14.84375,5.5 C 16.608514,5.5 17.879478,4.3629807 18.3125,3.3125 C 18.529011,2.7872597 18.531783,2.3199513 18.375,2.03125 C 18.218217,1.7425487 17.897278,1.5 17.15625,1.5 z "
         id="path1902"
         inkscape:original="M 17.15625 1 C 13.481585 1 11.191599 6 14.84375 6 C 18.803194 6 20.612822 1 17.15625 1 z "
         inkscape:radius="-0.51066899"
         sodipodi:type="inkscape:offset"
         style="fill:url(#radialGradient2797);fill-opacity:1.0;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" />
      <path
         d="M 17.168128,-36.000002 C 13.493462,-36.000002 11.203294,-31 14.855445,-31 C 18.814889,-31 20.6247,-36.000002 17.168128,-36.000002 z "
         id="path1900"
         sodipodi:nodetypes="csc"
         style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none;display:inline" />
    </g>
    <g
       id="g16"
       style="display:inline;enable-background:new"
       transform="translate(303,219) scale(1.000000,1.000000)">
      <g
         id="g2886"
         style="opacity:0.5">
        <path
           d="M 7.40625,5.15625 C 6.2956804,5.3417946 5.156171,5.7244341 4.1875,6.34375 C 3.218829,6.9630659 2.3779008,7.8640387 2.09375,9.0625 C 1.69874,10.727334 2.4973238,12.419681 3.6875,13.71875 C 4.8776762,15.017819 6.5604458,16 8.4375,16 C 9.4626404,16 10.433326,15.574489 11.25,14.9375 C 12.066674,14.300511 12.750066,13.404259 12.96875,12.3125 C 13.038048,11.967077 12.975164,11.539599 12.78125,11.21875 C 12.587336,10.897901 12.320701,10.708867 12.0625,10.59375 C 11.556691,10.368238 11.065224,10.365366 10.59375,10.40625 C 10.900985,10.204241 11.218851,10.058174 11.5,9.8125 C 12.201749,9.199297 12.855829,8.2419346 12.65625,7.125 C 12.463426,6.0458859 11.508921,5.4655249 10.5625,5.21875 C 9.6160791,4.9719751 8.5179941,4.9705092 7.40625,5.15625 z M 8.375,11.9375 C 8.3432244,12.079352 8.2287459,12.159701 8.25,12.3125 C 8.246777,12.314009 8.2664657,12.320195 8.125,12.21875 C 8.0209824,12.144162 8.0661352,12.194021 8.03125,12.15625 C 8.0718697,12.116195 8.2822399,12.009315 8.375,11.9375 z "
           id="path2848"
           inkscape:original="M 7.5625 6.125 C 5.5631498 6.4590346 3.4824223 7.5101462 3.0625 9.28125 C 2.4940104 11.677242 5.4026231 15 8.4375 15 C 9.9305033 15 11.67782 13.733453 12 12.125 C 12.246065 10.898467 9.1058589 11.375909 9.21875 12.1875 C 9.3539997 13.160304 8.4370432 13.658382 7.5625 13.03125 C 4.7784526 11.034896 12.174864 10.04001 11.6875 7.3125 C 11.485236 6.180554 9.5618502 5.7909654 7.5625 6.125 z "
           inkscape:radius="0.98537672"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:url(#linearGradient2884);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none"
           transform="matrix(0.999611,0,0,1.002225,9.045039e-3,-3.559431e-2)" />
        <path
           d="M 12.625 0 C 11.259051 0 10.231031 0.7230467 9.625 1.625 C 9.2639281 1.1508561 8.6037776 0.7966229 7.96875 0.875 C 7.2614789 0.96232512 6.6472899 1.4039588 6.34375 1.9375 C 6.3200591 1.9791422 6.3022344 2.0204487 6.28125 2.0625 C 6.0891212 1.9089876 5.855387 1.7830023 5.59375 1.71875 C 5.2449007 1.6330803 4.851866 1.6244243 4.53125 1.75 C 3.9199076 1.9894534 3.4843955 2.5426691 3.34375 3.09375 C 3.3027284 3.2544819 3.288595 3.4100517 3.28125 3.5625 C 3.1339069 3.5206518 2.9730261 3.4740274 2.8125 3.46875 C 2.470818 3.4575169 2.146683 3.5094275 1.875 3.6875 C 1.3588213 4.0260323 1.0131891 4.6500491 1 5.1875 C 0.98681092 5.7249509 1.1726828 6.1621692 1.40625 6.53125 C 1.6398172 6.9003308 1.9514395 7.2355628 2.3125 7.46875 C 2.6735605 7.7019372 3.1750117 7.9224876 3.8125 7.65625 C 4.1837647 7.5011298 4.4172849 7.2181476 4.53125 6.96875 C 4.6452151 6.7193524 4.6708777 6.4719745 4.6875 6.25 C 4.6890831 6.2288596 4.6862925 6.2084923 4.6875 6.1875 C 4.9482176 6.3182442 5.272605 6.3869188 5.65625 6.3125 C 6.0620994 6.2339602 6.3590559 6.0092684 6.53125 5.78125 C 6.6173471 5.6672408 6.6944063 5.5522996 6.75 5.4375 C 7.0032696 5.7247077 7.3394025 5.9707144 7.84375 6 C 8.6942298 6.0494048 9.1233301 5.4763785 9.40625 5.03125 C 9.7635756 5.5701954 10.403805 6 11.125 6 C 12.866671 6 14.156169 4.7048719 14.71875 3.375 C 15.00004 2.7100641 15.128137 1.9643965 14.78125 1.21875 C 14.434364 0.47310345 13.553387 0 12.625 0 z "
           id="path2840"
           style="opacity:1;fill:url(#linearGradient2882);fill-opacity:1.0;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      </g>
      <path
         d="M 12.584774,1.4981912 C 10.360828,1.4981912 9.943646,4.501804 11.19474,4.501804 C 12.445654,4.501804 14.808811,1.4981912 12.584774,1.4981912 z "
         id="path147"
         style="fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:0.99639422;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 7.8980615,4.9993772 C 8.8171266,5.05265 9.8254911,1.6702087 8.0981127,1.8829428 C 6.3713584,2.0956769 6.9786221,4.946105 7.8980615,4.9993772 z "
         id="path149"
         style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 3.4277592,6.736009 C 4.0814192,6.4628997 3.5119459,3.791585 2.4004371,4.5201145 C 1.2894274,5.2487625 2.7740992,7.0090005 3.4277592,6.736009 z "
         id="path151"
         style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 5.4592103,5.3377869 C 6.2373407,5.1872032 6.2799953,2.1575436 4.8923554,2.7010405 C 3.5044662,3.2446552 4.6817024,5.4886065 5.4592103,5.3377869 L 5.4592103,5.3377869 z "
         id="path153"
         style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      <path
         d="M 9,6.5 C 8.5672528,6.4931254 8.1285732,6.5148382 7.65625,6.59375 C 6.7110269,6.7516699 5.7196119,7.0824394 4.96875,7.5625 C 4.2178881,8.0425606 3.7047821,8.6743445 3.53125,9.40625 C 3.3013937,10.375017 3.7905221,11.671486 4.75,12.71875 C 5.7094779,13.766014 7.0966419,14.53125 8.4375,14.53125 C 9.047183,14.53125 9.7863739,14.240366 10.375,13.78125 C 10.963626,13.322134 11.39844,12.694291 11.53125,12.03125 C 11.543084,11.972262 11.528619,11.995647 11.53125,12 C 11.533881,12.004353 11.53433,11.966738 11.46875,11.9375 C 11.337591,11.879023 11.034341,11.846223 10.71875,11.875 C 10.403159,11.903777 10.07239,11.993339 9.875,12.09375 C 9.7763052,12.143956 9.7008363,12.202955 9.6875,12.21875 C 9.7367218,12.826898 9.4817218,13.373801 9,13.625 C 8.4925193,13.889632 7.8328972,13.833084 7.28125,13.4375 C 6.884286,13.152849 6.6100793,12.846541 6.5,12.46875 C 6.3899207,12.090959 6.5167628,11.692201 6.71875,11.40625 C 7.1227244,10.834349 7.8056799,10.454047 8.53125,10.03125 C 9.2568201,9.6084534 10.008978,9.175122 10.53125,8.71875 C 11.053522,8.262378 11.30242,7.8745035 11.21875,7.40625 C 11.162641,7.0922422 10.85007,6.7977622 10.1875,6.625 C 9.8562148,6.5386189 9.4327472,6.5068746 9,6.5 z "
         id="path1934"
         inkscape:original="M 7.5625 6.125 C 5.5631498 6.4590346 3.4824223 7.5101462 3.0625 9.28125 C 2.4940104 11.677242 5.4026231 15 8.4375 15 C 9.9305033 15 11.67782 13.733453 12 12.125 C 12.246065 10.898467 9.1058589 11.375909 9.21875 12.1875 C 9.3539997 13.160304 8.4370432 13.658382 7.5625 13.03125 C 4.7784526 11.034896 12.174864 10.04001 11.6875 7.3125 C 11.485236 6.180554 9.5618502 5.7909654 7.5625 6.125 z "
         inkscape:radius="-0.48384476"
         sodipodi:type="inkscape:offset"
         style="fill:url(#radialGradient2896);fill-opacity:1.0;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-linejoin:round" />
      <g
         id="g2860"
         style="opacity:0.97000002"
         transform="translate(0,-7)">
        <path
           d="M 12.625,0 C 10.7001,0 9.4185182,1.4159743 9.09375,2.78125 C 8.9313659,3.4638878 8.945569,4.1717416 9.25,4.8125 C 9.554431,5.4532584 10.306182,6 11.125,6 C 12.866657,6 14.156174,4.7048719 14.71875,3.375 C 15.000038,2.7100641 15.128134,1.9643965 14.78125,1.21875 C 14.434366,0.47310345 13.55338,0 12.625,0 z "
           id="path2850"
           inkscape:original="M 12.625 1 C 9.6633009 1 9.2602819 5 11.125 5 C 13.501547 5 15.385789 1 12.625 1 z "
           inkscape:radius="0.98635715"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none"
           transform="matrix(1.000008,0,0,1,9.031704e-3,-17)" />
        <path
           d="M 7.96875,0.875 C 7.2599353,0.96232512 6.6479525,1.4039588 6.34375,1.9375 C 6.0395475,2.4710412 5.9623627,3.0415345 6,3.5625 C 6.0376373,4.0834655 6.18514,4.5926006 6.4375,5.03125 C 6.68986,5.4698994 7.104468,5.9571661 7.84375,6 C 8.6960864,6.0494048 9.1227126,5.4763785 9.40625,5.03125 C 9.6897874,4.5861215 9.8716204,4.0973521 9.96875,3.5625 C 10.06588,3.0276479 10.093992,2.4416501 9.8125,1.84375 C 9.5310079,1.2458499 8.709054,0.78382837 7.96875,0.875 z "
           id="path2852"
           inkscape:original="M 8.09375 1.875 C 6.3669953 2.0877341 6.9868106 4.9467278 7.90625 5 C 8.8253153 5.0532727 9.8211284 1.6622659 8.09375 1.875 z "
           inkscape:radius="1.0004882"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none"
           transform="matrix(0.997822,0,0,1,2.185712e-2,-17)" />
        <path
           d="M 2.8125,3.46875 C 2.470818,3.4575169 2.146683,3.5094275 1.875,3.6875 C 1.3588213,4.0260323 1.0131891,4.6500491 1,5.1875 C 0.98681092,5.7249509 1.1726828,6.1621692 1.40625,6.53125 C 1.6398172,6.9003308 1.9514395,7.2355628 2.3125,7.46875 C 2.6735605,7.7019372 3.1750117,7.9224876 3.8125,7.65625 C 4.1837647,7.5011298 4.4172849,7.2181476 4.53125,6.96875 C 4.6452151,6.7193524 4.6708777,6.4719745 4.6875,6.25 C 4.7207447,5.806051 4.6713621,5.3959813 4.53125,4.96875 C 4.3911379,4.5415187 4.1777797,4.1003238 3.71875,3.75 C 3.4892351,3.5748381 3.154182,3.4799831 2.8125,3.46875 z "
           id="path2854"
           inkscape:original="M 2.40625 4.53125 C 1.2952403 5.2598981 2.78384 7.0229915 3.4375 6.75 C 4.09116 6.4768906 3.5177588 3.8027205 2.40625 4.53125 z "
           inkscape:radius="0.99227977"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none"
           transform="translate(0,-17)" />
        <path
           d="M 5.59375,1.71875 C 5.2449007,1.6330803 4.851866,1.6244243 4.53125,1.75 C 3.9199076,1.9894534 3.4843955,2.5426691 3.34375,3.09375 C 3.2031045,3.6448309 3.280649,4.1490864 3.4375,4.59375 C 3.594351,5.0384136 3.8314695,5.4533879 4.15625,5.78125 C 4.4810305,6.1091121 4.9559047,6.4483517 5.65625,6.3125 C 6.0620994,6.2339602 6.3590559,6.0092684 6.53125,5.78125 C 6.7034441,5.5532316 6.8044437,5.3223351 6.875,5.09375 C 7.0161126,4.6365799 7.043857,4.1416567 7,3.65625 C 6.956143,3.1708433 6.8640791,2.6876036 6.46875,2.21875 C 6.2710854,1.9843232 5.9425993,1.8044197 5.59375,1.71875 z "
           id="path2856"
           inkscape:original="M 4.90625 2.6875 C 3.5183608 3.2311147 4.6912421 5.4945696 5.46875 5.34375 C 6.2468803 5.1931665 6.2938899 2.1440031 4.90625 2.6875 z "
           inkscape:radius="1.0015517"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none"
           transform="translate(0,-17)" />
        <path
           d="M 7.40625,5.15625 C 6.2956804,5.3417946 5.156171,5.7244341 4.1875,6.34375 C 3.218829,6.9630659 2.3779008,7.8640387 2.09375,9.0625 C 1.69874,10.727334 2.4973238,12.419681 3.6875,13.71875 C 4.8776762,15.017819 6.5604458,16 8.4375,16 C 9.4626404,16 10.433326,15.574489 11.25,14.9375 C 12.066674,14.300511 12.750066,13.404259 12.96875,12.3125 C 13.038048,11.967077 12.975164,11.539599 12.78125,11.21875 C 12.587336,10.897901 12.320701,10.708867 12.0625,10.59375 C 11.556691,10.368238 11.065224,10.365366 10.59375,10.40625 C 10.900985,10.204241 11.218851,10.058174 11.5,9.8125 C 12.201749,9.199297 12.855829,8.2419346 12.65625,7.125 C 12.463426,6.0458859 11.508921,5.4655249 10.5625,5.21875 C 9.6160791,4.9719751 8.5179941,4.9705092 7.40625,5.15625 z M 8.375,11.9375 C 8.3432244,12.079352 8.2287459,12.159701 8.25,12.3125 C 8.246777,12.314009 8.2664657,12.320195 8.125,12.21875 C 8.0209824,12.144162 8.0661352,12.194021 8.03125,12.15625 C 8.0718697,12.116195 8.2822399,12.009315 8.375,11.9375 z "
           id="path2858"
           inkscape:original="M 7.5625 6.125 C 5.5631498 6.4590346 3.4824223 7.5101462 3.0625 9.28125 C 2.4940104 11.677242 5.4026231 15 8.4375 15 C 9.9305033 15 11.67782 13.733453 12 12.125 C 12.246065 10.898467 9.1058589 11.375909 9.21875 12.1875 C 9.3539997 13.160304 8.4370432 13.658382 7.5625 13.03125 C 4.7784526 11.034896 12.174864 10.04001 11.6875 7.3125 C 11.485236 6.180554 9.5618502 5.7909654 7.5625 6.125 z "
           inkscape:radius="0.98537672"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:#fce94f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none"
           transform="matrix(0.999611,0,0,1.002225,9.045039e-3,-17.03559)" />
      </g>
      <g
         id="g1927"
         transform="translate(0,-24)">
        <path
           d="M 12.778758,0.99999365 C 9.8170589,0.99999365 9.2614842,5 10.927606,5 C 12.593487,5 15.740578,0.99999365 12.778758,0.99999365 z "
           id="path1917"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 7.8980615,4.9993772 C 8.8171266,5.05265 9.8254911,1.6702087 8.0981127,1.8829428 C 6.3713584,2.0956769 6.9786221,4.946105 7.8980615,4.9993772 z "
           id="path1919"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 3.4277592,6.736009 C 4.0814192,6.4628997 3.5119459,3.791585 2.4004371,4.5201145 C 1.2894274,5.2487625 2.7740992,7.0090005 3.4277592,6.736009 z "
           id="path1921"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 5.4592103,5.3377869 C 6.2373407,5.1872032 6.2799953,2.1575436 4.8923554,2.7010405 C 3.5044662,3.2446552 4.6817024,5.4886065 5.4592103,5.3377869 L 5.4592103,5.3377869 z "
           id="path1923"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
        <path
           d="M 9.2036769,12.198362 C 9.3389269,13.171166 8.4459359,13.651584 7.5713927,13.024452 C 4.7873451,11.028098 12.181008,10.032279 11.693644,7.3047692 C 11.289116,5.040877 3.9139016,5.7378577 3.0740571,9.2800653 C 2.5055675,11.676058 5.414113,14.999977 8.4489899,14.999977 C 9.9419932,14.999977 11.664078,13.730293 11.986258,12.12184 C 12.232323,10.895307 9.0907858,11.386771 9.2036769,12.198362 L 9.2036769,12.198362 z "
           id="path1925"
           style="fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99639398;stroke-miterlimit:4;stroke-dasharray:none" />
      </g>
    </g>
  </g>
  <g
     id="layer4"
     inkscape:groupmode="layer"
     inkscape:label="hires"
     style="display:inline" />
</svg>