summaryrefslogtreecommitdiff
path: root/test/gummiboot.svg
blob: aec76951da86e4df9ab896b1530f0d3cbcdeb55e (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
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
<?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"
   width="295.12869"
   height="245.34628"
   id="svg2"
   version="1.1"
   inkscape:version="0.48.2 r9819"
   sodipodi:docname="gummiboot.svg"
   inkscape:export-filename="/home/gnokii/Downloads/gummiboot/gummiboot.png"
   inkscape:export-xdpi="90"
   inkscape:export-ydpi="90">
  <defs
     id="defs4">
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4535">
      <stop
         style="stop-color:white;stop-opacity:1;"
         offset="0"
         id="stop4537" />
      <stop
         style="stop-color:white;stop-opacity:0;"
         offset="1"
         id="stop4539" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4476">
      <stop
         style="stop-color:white;stop-opacity:1;"
         offset="0"
         id="stop4478" />
      <stop
         style="stop-color:white;stop-opacity:0;"
         offset="1"
         id="stop4480" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4298">
      <stop
         style="stop-color:black;stop-opacity:1;"
         offset="0"
         id="stop4300" />
      <stop
         style="stop-color:black;stop-opacity:0;"
         offset="1"
         id="stop4302" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4288">
      <stop
         style="stop-color:black;stop-opacity:1;"
         offset="0"
         id="stop4290" />
      <stop
         style="stop-color:black;stop-opacity:0;"
         offset="1"
         id="stop4292" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4247">
      <stop
         style="stop-color:maroon;stop-opacity:1;"
         offset="0"
         id="stop4249" />
      <stop
         style="stop-color:maroon;stop-opacity:0;"
         offset="1"
         id="stop4251" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4234">
      <stop
         style="stop-color:white;stop-opacity:1;"
         offset="0"
         id="stop4236" />
      <stop
         style="stop-color:white;stop-opacity:0;"
         offset="1"
         id="stop4238" />
    </linearGradient>
    <linearGradient
       id="linearGradient4226">
      <stop
         style="stop-color:#999;stop-opacity:1"
         offset="0"
         id="stop4228" />
      <stop
         id="stop4508"
         offset="0.09241502"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         style="stop-color:#999;stop-opacity:1"
         offset="1"
         id="stop4230" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3997">
      <stop
         id="stop4001"
         offset="0"
         style="stop-color:#4d4d4d;stop-opacity:1" />
      <stop
         id="stop3999"
         offset="1"
         style="stop-color:black;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3899">
      <stop
         id="stop3903"
         offset="0"
         style="stop-color:#3e3e3e;stop-opacity:0;" />
      <stop
         id="stop3901"
         offset="1"
         style="stop-color:#3e3e3e;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3889">
      <stop
         id="stop3893"
         offset="0"
         style="stop-color:#3e3e3e;stop-opacity:0;" />
      <stop
         id="stop3891"
         offset="1"
         style="stop-color:#3e3e3e;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3879">
      <stop
         id="stop3883"
         offset="0"
         style="stop-color:#3e3e3e;stop-opacity:0;" />
      <stop
         id="stop3881"
         offset="1"
         style="stop-color:#3e3e3e;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4140">
      <stop
         style="stop-color:#333;stop-opacity:1;"
         offset="0"
         id="stop4142" />
      <stop
         id="stop4148"
         offset="0.4896037"
         style="stop-color:#4d4d4d;stop-opacity:1" />
      <stop
         style="stop-color:#333;stop-opacity:1;"
         offset="1"
         id="stop4144" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4127">
      <stop
         style="stop-color:black;stop-opacity:1;"
         offset="0"
         id="stop4129" />
      <stop
         style="stop-color:#333;stop-opacity:1"
         offset="1"
         id="stop4131" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient4061">
      <stop
         style="stop-color:#f60;stop-opacity:1;"
         offset="0"
         id="stop4063" />
      <stop
         style="stop-color:#f60;stop-opacity:0;"
         offset="1"
         id="stop4065" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3213">
      <stop
         style="stop-color:#500;stop-opacity:1;"
         offset="0"
         id="stop3215" />
      <stop
         style="stop-color:#2b0000;stop-opacity:1"
         offset="1"
         id="stop3217" />
    </linearGradient>
    <linearGradient
       id="linearGradient3190">
      <stop
         style="stop-color:#f60;stop-opacity:0;"
         offset="0"
         id="stop3192" />
      <stop
         id="stop3198"
         offset="0.5"
         style="stop-color:#f60;stop-opacity:1;" />
      <stop
         style="stop-color:#f60;stop-opacity:0;"
         offset="1"
         id="stop3194" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       id="linearGradient3083">
      <stop
         style="stop-color:#a00;stop-opacity:1;"
         offset="0"
         id="stop3085" />
      <stop
         style="stop-color:red;stop-opacity:1"
         offset="1"
         id="stop3087" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3083"
       id="linearGradient3135"
       x1="-155.19038"
       y1="430.61288"
       x2="-25.082302"
       y2="464.95807"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(443.72882,-203.52067)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient3205"
       gradientUnits="userSpaceOnUse"
       x1="-398.54465"
       y1="581.10352"
       x2="-359.37869"
       y2="555.38928" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient3207"
       gradientUnits="userSpaceOnUse"
       x1="-433.73215"
       y1="585.09375"
       x2="-401.41965"
       y2="560.80798" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient3209"
       gradientUnits="userSpaceOnUse"
       x1="-453.45709"
       y1="607.90222"
       x2="-423.75446"
       y2="587.90222" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3213"
       id="linearGradient3219"
       x1="216.15257"
       y1="284.21103"
       x2="149.5762"
       y2="-0.074683182"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(115.15739,5.0507627)" />
    <filter
       inkscape:collect="always"
       id="filter4057"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="5.086231"
         id="feGaussianBlur4059" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4061"
       id="linearGradient4067"
       x1="261.48038"
       y1="262.50522"
       x2="-65.937302"
       y2="-63.209064"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(115.15739,5.0507627)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4127"
       id="linearGradient4133"
       x1="108.05394"
       y1="137.08904"
       x2="501.89236"
       y2="515.66046"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(115.15739,5.0507627)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4140"
       id="linearGradient4146"
       x1="298.94162"
       y1="195.93752"
       x2="314.65753"
       y2="215.13042"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(115.15739,5.0507627)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4140"
       id="linearGradient4152"
       gradientUnits="userSpaceOnUse"
       x1="298.94162"
       y1="195.93752"
       x2="314.65753"
       y2="215.13042"
       gradientTransform="translate(-53.53809,100.0051)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3083"
       id="linearGradient4154"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(443.72882,-203.52067)"
       x1="-129.6945"
       y1="326.69928"
       x2="-139.07919"
       y2="663.8421" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4317"
       gradientUnits="userSpaceOnUse"
       x1="-398.54465"
       y1="581.10352"
       x2="-359.37869"
       y2="555.38928" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4319"
       gradientUnits="userSpaceOnUse"
       x1="-433.73215"
       y1="585.09375"
       x2="-401.41965"
       y2="560.80798" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4321"
       gradientUnits="userSpaceOnUse"
       x1="-453.45709"
       y1="607.90222"
       x2="-423.75446"
       y2="587.90222" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4324"
       gradientUnits="userSpaceOnUse"
       x1="-453.45709"
       y1="607.90222"
       x2="-423.75446"
       y2="587.90222"
       gradientTransform="translate(745.15739,-317.80638)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4327"
       gradientUnits="userSpaceOnUse"
       x1="-433.73215"
       y1="585.09375"
       x2="-401.41965"
       y2="560.80798"
       gradientTransform="translate(745.15739,-317.80638)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4330"
       gradientUnits="userSpaceOnUse"
       x1="-398.54465"
       y1="581.10352"
       x2="-359.37869"
       y2="555.38928"
       gradientTransform="translate(745.15739,-317.80638)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3083"
       id="linearGradient4332"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(443.72882,-203.52067)"
       x1="-129.6945"
       y1="326.69928"
       x2="-139.07919"
       y2="663.8421" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4061"
       id="linearGradient4403"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(115.15739,5.0507627)"
       x1="261.48038"
       y1="262.50522"
       x2="-65.937302"
       y2="-63.209064" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4411"
       gradientUnits="userSpaceOnUse"
       x1="-398.54465"
       y1="581.10352"
       x2="-359.37869"
       y2="555.38928" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4413"
       gradientUnits="userSpaceOnUse"
       x1="-433.73215"
       y1="585.09375"
       x2="-401.41965"
       y2="560.80798" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4415"
       gradientUnits="userSpaceOnUse"
       x1="-453.45709"
       y1="607.90222"
       x2="-423.75446"
       y2="587.90222" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4140"
       id="linearGradient3059"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,-40.747352,45.32306)"
       x1="298.94162"
       y1="195.93752"
       x2="314.65753"
       y2="215.13042" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4140"
       id="linearGradient3063"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,41.904236,-1.199388)"
       x1="298.94162"
       y1="195.93752"
       x2="314.65753"
       y2="215.13042" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3213"
       id="linearGradient3073"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,41.904236,-1.199388)"
       x1="216.15257"
       y1="284.21103"
       x2="149.5762"
       y2="-0.074683182" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3083"
       id="linearGradient3076"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,202.88632,-103.38802)"
       x1="-155.19038"
       y1="430.61288"
       x2="-25.082302"
       y2="464.95807" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4127"
       id="linearGradient3079"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,41.904236,-1.199388)"
       x1="108.05394"
       y1="137.08904"
       x2="501.89236"
       y2="515.66046" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3083"
       id="linearGradient3084"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,202.88632,-103.38802)"
       x1="-129.6945"
       y1="326.69928"
       x2="-139.07919"
       y2="663.8421" />
    <filter
       inkscape:collect="always"
       id="filter3861"
       x="-0.0061426144"
       width="1.0122852"
       y="-0.25842857"
       height="1.5168571"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.26919643"
         id="feGaussianBlur3863" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter3951"
       x="-0.088288896"
       width="1.1765778"
       y="-0.18725839"
       height="1.3745168"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.2523265"
         id="feGaussianBlur3953" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter3957"
       x="-0.10244129"
       width="1.2048826"
       y="-0.14482306"
       height="1.2896461"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.7508259"
         id="feGaussianBlur3959" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter3991"
       x="-0.12006523"
       width="1.2401305"
       y="-0.064596489"
       height="1.1291929"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="2.3246134"
         id="feGaussianBlur3993" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3997"
       id="radialGradient4003"
       cx="110.74842"
       cy="145.46278"
       fx="110.74842"
       fy="145.46278"
       r="8.5547333"
       gradientTransform="matrix(0.66713883,-0.31394736,0.35781001,0.76034708,-15.184192,69.62976)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3997"
       id="linearGradient4007"
       x1="-71.785713"
       y1="89.147903"
       x2="-70"
       y2="89.147903"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter4020"
       color-interpolation-filters="sRGB">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.38324131"
         id="feGaussianBlur4022" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3889"
       id="linearGradient4032"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-0.35714286,0.35714286)"
       x1="297.38904"
       y1="287.81311"
       x2="327.66589"
       y2="287.81311" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3879"
       id="linearGradient4034"
       gradientUnits="userSpaceOnUse"
       x1="297.01022"
       y1="296.93698"
       x2="328.17096"
       y2="296.93698" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3899"
       id="linearGradient4036"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-2.1428571,-1.4285714)"
       x1="297.26276"
       y1="305.87143"
       x2="328.04468"
       y2="305.87143" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3889"
       id="linearGradient4052"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-0.35714286,0.35714286)"
       x1="297.38904"
       y1="287.81311"
       x2="327.66589"
       y2="287.81311" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3879"
       id="linearGradient4054"
       gradientUnits="userSpaceOnUse"
       x1="297.01022"
       y1="296.93698"
       x2="328.17096"
       y2="296.93698" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3899"
       id="linearGradient4056"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-2.1428571,-1.4285714)"
       x1="297.26276"
       y1="305.87143"
       x2="328.04468"
       y2="305.87143" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4120"
       gradientUnits="userSpaceOnUse"
       x1="-398.54465"
       y1="581.10352"
       x2="-359.37869"
       y2="555.38928" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4122"
       gradientUnits="userSpaceOnUse"
       x1="-433.73215"
       y1="585.09375"
       x2="-401.41965"
       y2="560.80798" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4124"
       gradientUnits="userSpaceOnUse"
       x1="-453.45709"
       y1="607.90222"
       x2="-423.75446"
       y2="587.90222" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4128"
       gradientUnits="userSpaceOnUse"
       x1="-453.45709"
       y1="607.90222"
       x2="-423.75446"
       y2="587.90222"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,350.56989,-159.38179)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4131"
       gradientUnits="userSpaceOnUse"
       x1="-433.73215"
       y1="585.09375"
       x2="-401.41965"
       y2="560.80798"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,350.56989,-159.38179)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3190"
       id="linearGradient4134"
       gradientUnits="userSpaceOnUse"
       x1="-398.54465"
       y1="581.10352"
       x2="-359.37869"
       y2="555.38928"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,350.56989,-159.38179)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3889"
       id="linearGradient4136"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-0.35714286,0.35714286)"
       x1="297.38904"
       y1="287.81311"
       x2="327.66589"
       y2="287.81311" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3879"
       id="linearGradient4138"
       gradientUnits="userSpaceOnUse"
       x1="297.01022"
       y1="296.93698"
       x2="328.17096"
       y2="296.93698" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3899"
       id="linearGradient4141"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-2.1428571,-1.4285714)"
       x1="297.26276"
       y1="305.87143"
       x2="328.04468"
       y2="305.87143" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3899"
       id="linearGradient4144"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-30.427128,-201.43877)"
       x1="297.26276"
       y1="305.87143"
       x2="328.04468"
       y2="305.87143" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3879"
       id="linearGradient4147"
       gradientUnits="userSpaceOnUse"
       x1="297.01022"
       y1="296.93698"
       x2="328.17096"
       y2="296.93698"
       gradientTransform="translate(-28.284271,-200.0102)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3889"
       id="linearGradient4150"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-28.641414,-199.65306)"
       x1="297.38904"
       y1="287.81311"
       x2="327.66589"
       y2="287.81311" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3889"
       id="linearGradient4155"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-0.35714286,0.35714286)"
       x1="297.38904"
       y1="287.81311"
       x2="327.66589"
       y2="287.81311" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3879"
       id="linearGradient4157"
       gradientUnits="userSpaceOnUse"
       x1="297.01022"
       y1="296.93698"
       x2="328.17096"
       y2="296.93698" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3899"
       id="linearGradient4159"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-2.1428571,-1.4285714)"
       x1="297.26276"
       y1="305.87143"
       x2="328.04468"
       y2="305.87143" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3899"
       id="linearGradient4162"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.52943173,0.84835255,0.84835255,0.52943173,-17.10484,-212.31631)"
       x1="297.26276"
       y1="305.87143"
       x2="328.04468"
       y2="305.87143" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3879"
       id="linearGradient4165"
       gradientUnits="userSpaceOnUse"
       x1="297.01022"
       y1="296.93698"
       x2="328.17096"
       y2="296.93698"
       gradientTransform="matrix(-0.52943173,0.84835255,0.84835255,0.52943173,-17.027404,-209.74208)" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3889"
       id="linearGradient4168"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-0.52943173,0.84835255,0.84835255,0.52943173,-16.535338,-209.85598)"
       x1="297.38904"
       y1="287.81311"
       x2="327.66589"
       y2="287.81311" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3083"
       id="linearGradient4173"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,174.76488,-111.73254)"
       x1="-129.6945"
       y1="326.69928"
       x2="-139.07919"
       y2="663.8421" />
    <filter
       inkscape:collect="always"
       id="filter4184">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="3.4423031"
         id="feGaussianBlur4186" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter4216">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.9124443"
         id="feGaussianBlur4218" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4226"
       id="linearGradient4232"
       x1="201.85893"
       y1="201.62338"
       x2="88.238426"
       y2="29.098005"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4234"
       id="radialGradient4240"
       cx="135.30005"
       cy="59.140411"
       fx="135.30005"
       fy="59.140411"
       r="40.136741"
       gradientTransform="matrix(1,0,0,0.81698548,0,17.046426)"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4247"
       id="linearGradient4253"
       x1="35.157597"
       y1="70.196426"
       x2="56.52232"
       y2="71.26786"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4247"
       id="linearGradient4260"
       x1="150.62947"
       y1="234.53995"
       x2="138.9509"
       y2="183.46852"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4247"
       id="linearGradient4264"
       gradientUnits="userSpaceOnUse"
       x1="95.629471"
       y1="249.89709"
       x2="231.09375"
       y2="177.03995" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4247"
       id="linearGradient4271"
       x1="128.5759"
       y1="222.77562"
       x2="129.52232"
       y2="201.34705"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4247"
       id="linearGradient4278"
       x1="213.71428"
       y1="172.97545"
       x2="201.10735"
       y2="166.54688"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4288"
       id="radialGradient4294"
       cx="132.05447"
       cy="100.1967"
       fx="132.05447"
       fy="100.1967"
       r="25.40625"
       gradientTransform="matrix(0.83734013,-0.54668227,1.2370409,1.8947461,-102.46746,-27.168077)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4298"
       id="radialGradient4304"
       cx="123.48306"
       cy="113.45441"
       fx="123.48306"
       fy="113.45441"
       r="25.40625"
       gradientTransform="matrix(0.82472039,-0.5655407,1.2510982,1.8244597,-120.29854,-30.956633)"
       gradientUnits="userSpaceOnUse" />
    <filter
       inkscape:collect="always"
       id="filter4310">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.31593749"
         id="feGaussianBlur4312" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter4330">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.3159375"
         id="feGaussianBlur4332" />
    </filter>
    <filter
       inkscape:collect="always"
       id="filter4400"
       x="-0.34000003"
       width="1.6800001"
       y="-0.1115625"
       height="1.223125">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="1.5026018"
         id="feGaussianBlur4402" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4140"
       id="linearGradient4406"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,-40.747352,45.32306)"
       x1="298.94162"
       y1="195.93752"
       x2="314.65753"
       y2="215.13042" />
    <filter
       inkscape:collect="always"
       id="filter4472"
       x="-0.15124256"
       width="1.3024851"
       y="-0.11710123"
       height="1.2342025">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.72078202"
         id="feGaussianBlur4474" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4476"
       id="radialGradient4482"
       cx="110.59362"
       cy="145.605"
       fx="110.59362"
       fy="145.605"
       r="7.4487594"
       gradientTransform="matrix(1,0,0,1.2238444,0,-32.592856)"
       gradientUnits="userSpaceOnUse" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4476"
       id="radialGradient4486"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1,0,0,1.2238444,82.57997,-79.312411)"
       cx="110.59362"
       cy="145.605"
       fx="110.59362"
       fy="145.605"
       r="7.4487594" />
    <filter
       inkscape:collect="always"
       id="filter4502"
       x="-0.25105351"
       width="1.502107"
       y="-0.026536847"
       height="1.0530737">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.79301865"
         id="feGaussianBlur4504" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3213"
       id="linearGradient4519"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.48994548,0,0,0.48994548,41.904236,-1.199388)"
       x1="216.15257"
       y1="284.21103"
       x2="149.5762"
       y2="-0.074683182" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4535"
       id="linearGradient4541"
       x1="171.71072"
       y1="169.34375"
       x2="200.78407"
       y2="142.91518"
       gradientUnits="userSpaceOnUse" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.9899495"
     inkscape:cx="151.67058"
     inkscape:cy="130.22692"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     inkscape:window-width="1280"
     inkscape:window-height="965"
     inkscape:window-x="0"
     inkscape:window-y="27"
     inkscape:window-maximized="1"
     fit-margin-top="20"
     fit-margin-right="20"
     fit-margin-bottom="20"
     fit-margin-left="20"
     inkscape:showpageshadow="false"
     borderlayer="true"
     showguides="true"
     inkscape:guide-bbox="true" />
  <metadata
     id="metadata7">
    <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:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Ebene 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-28.121442,-8.3445206)">
    <path
       style="opacity:0.5;fill:black;stroke:none;filter:url(#filter4184)"
       d="m 119.13037,34.558806 c -6.46995,0.102869 -12.93557,1.164239 -19.125,3.25 -7.073636,2.257821 -13.06569,7.125218 -17.749999,12.78125 -13.954711,17.440697 -17.137321,41.958601 -12.0625,63.281254 6.826837,18.85682 15.530888,37.16266 26.21875,54.21875 -0.992147,1.64344 -1.626584,2.68403 -2,3.15625 l -1.5625,-0.15625 -0.65625,1.28125 c -0.0097,0.01 -0.02246,-0.0103 -0.03125,0 -0.48075,0.50119 -0.495877,0.70011 -0.15625,1.5 l 0.375,0.90625 -2.90625,4.625 c -2.464107,3.90972 -3.013095,4.6489 -3.40625,4.65625 -0.256449,0.005 -0.604724,0.21991 -0.78125,0.5 -0.176987,0.27982 -0.628647,0.67362 -1,0.84375 -0.451297,0.20673 -0.976977,0.77897 -1.59375,1.75 -0.838625,1.32056 -0.986193,1.45743 -1.59375,1.40625 -0.404286,-0.0341 -0.875575,0.13221 -1.21875,0.46875 -0.705691,0.69205 -1.678336,1.1556 -4.375,2.0625 -2.40709,0.80951 -5.417848,2.20923 -8,3.6875 -4.890367,2.25417 -13.565719,12.51622 -17.28125,18.53125 -0.530479,0.85948 -0.946652,1.63187 -1.25,2.28125 -0.896073,1.90319 -2.299489,6.22356 -2.28125,7.03125 1.412554,5.50433 16.597841,15.78411 25.03125,15.78125 0.736522,-0.332 4.044644,-3.46426 5.375,-5.09375 0.454909,-0.55384 0.953779,-1.27543 1.5,-2.125 3.823544,-5.94696 9.357354,-18.17817 9.28125,-23.5625 0.219652,-2.96725 0.151892,-6.2917 -0.15625,-8.8125 -0.345215,-2.82406 -0.351119,-3.90855 -0.03125,-4.84375 0.155594,-0.45476 0.14264,-0.96247 -0.0625,-1.3125 -0.308338,-0.52604 -0.266924,-0.7049 0.5625,-2.03125 0.609885,-0.97538 0.914412,-1.72243 0.90625,-2.21875 -0.0067,-0.40841 0.135983,-0.96991 0.3125,-1.25 0.176976,-0.27981 0.231314,-0.70407 0.125,-0.9375 -0.162999,-0.35786 0.254635,-1.15279 2.71875,-5.0625 l 2.9375,-4.625 0.96875,-0.0312 c 0.868137,-0.0387 1.036509,-0.13131 1.28125,-0.78125 0.0046,-0.013 -0.0054,-0.0187 0,-0.0312 l 0.875,-1.15625 -0.84375,-1.34375 c 0.178207,-0.36368 0.557982,-0.96013 1.0625,-1.75 4.099979,6.32493 8.499389,12.45778 13.156249,18.375 0.48509,0.61645 0.97761,1.2322 1.46875,1.84375 1.8736,2.33253 3.78752,4.64786 5.75,6.90625 0.74439,0.85673 1.52399,1.71693 2.28125,2.5625 1.75433,1.95812 3.55158,3.88531 5.375,5.78125 0.0817,0.0849 0.16818,0.1652 0.25,0.25 2.54216,2.63479 5.13572,5.21231 7.8125,7.71875 8.50027,9.95425 22.88939,10.296 34.75,7.875 10.57416,-3.28393 20.74676,-8.10548 30.71875,-12.96875 9.02977,-5.71216 19.12361,-10.46239 26.09375,-18.78125 7.1065,-6.63597 9.36094,-16.9079 7.03125,-26.15625 -0.87215,-3.12221 -1.80086,-6.24194 -2.78125,-9.34375 -0.28444,-0.89998 -0.58127,-1.78975 -0.875,-2.6875 -2.35945,-7.21433 -5.0026,-14.36085 -7.96875,-21.375 -0.31468,-0.74302 -0.64712,-1.47864 -0.96875,-2.21875 -3.80762,-8.77496 -8.09911,-17.34196 -12.90625,-25.59375 8.25065,-0.11748 15.08852,-0.25018 17.40625,-0.3125 2.61172,-0.0703 3.92372,-0.072 4.625,0 l 0.71875,1.40625 1.40625,-0.125 c 0.0134,0.002 0.0178,-0.003 0.0312,0 0.68095,0.13647 0.85132,0.0598 1.34375,-0.65625 l 0.5625,-0.8125 5.46875,-0.0312 c 4.6214,-0.0205 5.53271,0.0473 5.75,0.375 0.14175,0.21378 0.51268,0.377 0.84375,0.375 0.33107,-0.001 0.90709,0.18431 1.25,0.40625 0.41673,0.26969 1.19339,0.40725 2.34375,0.40625 1.56434,-0.001 1.74823,0.0537 2.03125,0.59375 0.18834,0.35935 0.59432,0.67248 1.0625,0.78125 0.96273,0.22376 1.88072,0.77449 4.09375,2.5625 1.97538,1.596 4.74144,3.39664 7.375,4.78125 4.52752,2.9152 17.86807,4.7202 24.9375,4.625 1.00992,-0.0136 1.88305,-0.0635 2.59375,-0.15625 2.08671,-0.26591 6.48466,-1.42594 7.15625,-1.875 4.46734,-7.15299 3.79676,-25.449994 -0.125,-29.562504 -0.67555,-0.44309 -5.06727,-1.56508 -7.15625,-1.8125 -0.71151,-0.08646 -1.61501,-0.12 -2.625,-0.125 -7.06999,-0.03247 -20.37356,1.85717 -24.875,4.8125 -2.62117,1.40793 -5.38261,3.26152 -7.34375,4.875 -2.19707,1.80758 -3.10178,2.36147 -4.0625,2.59375 -0.46719,0.11296 -0.87737,0.42023 -1.0625,0.78125 -0.27824,0.54252 -0.46695,0.6127 -2.03125,0.625 -1.15031,0.0091 -1.92944,0.16409 -2.34375,0.4375 -0.34093,0.22497 -0.88766,0.40425 -1.21875,0.40625 -0.33107,0.0015 -0.73516,0.15998 -0.875,0.375 -0.21439,0.32964 -1.09735,0.417 -5.71875,0.4375 l -5.5,0 -0.5625,-0.8125 c -0.49878,-0.71161 -0.63279,-0.7675 -1.3125,-0.625 -0.0134,0.002 -0.0177,-0.003 -0.0312,0 l -1.4375,-0.125 -0.6875,1.40625 c -0.70061,0.0782 -2.01276,0.07825 -4.625,0.03125 -2.52621,-0.04549 -10.51861,-0.07748 -19.84375,-0.125 -10.99838,-18.001163 -24.49526,-34.379543 -40.75,-48 -12.29389,-11.240981 -28.87193,-17.262888 -45.40625,-17 z"
       id="path4058"
       inkscape:connector-curvature="0" />
    <path
       style="fill:url(#linearGradient3084);stroke:none"
       d="m 101.4278,33.103606 c 22.00686,-7.41604 47.43988,-1.904589 64.54442,13.735037 34.53894,28.941476 56.68428,70.344647 68.6772,113.278217 2.32969,9.24835 0.0805,19.51595 -7.026,26.15192 -6.97014,8.31886 -17.07619,13.08807 -26.10596,18.80023 -9.97199,4.86327 -20.14535,9.69152 -30.71951,12.97545 -11.86061,2.421 -26.24237,2.07569 -34.74264,-7.87856 C 106.58411,182.57008 85.298526,146.92722 71.619341,109.14311 66.54452,87.820461 69.73869,63.30161 83.693401,45.860913 88.37771,40.204881 94.354163,35.361427 101.4278,33.103606 z"
       id="path3060"
       inkscape:connector-curvature="0" />
    <path
       style="opacity:0.50914636;fill:url(#linearGradient4403);stroke:none;filter:url(#filter4057)"
       d="m 275.09489,77.582013 c -25.48954,-0.0341 -53.23884,9.303263 -67.65625,31.593747 -29.34598,40.0012 -31.35591,96.06645 -10.15625,140.1875 28.40061,68.57333 69.87976,132.82934 125.71875,181.875 18.83018,13.75543 44.70925,9.94441 65.2843,2.19161 31.84184,-12.08972 63.14991,-27.48346 89.54425,-49.21364 12.02569,-9.65157 21.4953,-23.66814 20.54645,-39.57172 C 497.25128,329.51069 490.84796,315.277 486.42547,300.85528 459.98101,225.34605 416.99674,153.47738 353.15739,103.55076 331.45029,85.766501 303.01267,77.038582 275.09489,77.582013 z m 18.5,35.281247 c 33.49963,-0.16647 62.76474,21.30865 82.35166,46.955 33.60869,44.23485 60.18853,94.91388 70.61709,149.82625 1.85099,21.10638 -10.76826,41.10271 -28.34873,51.8572 -14.67831,10.02452 -31.37172,18.53922 -49.05752,21.11155 -20.86965,1.52845 -39.4515,-10.98641 -52.66421,-26.00796 -21.68266,-22.65013 -40.72161,-47.99611 -57.53199,-74.53539 -19.73396,-32.86952 -33.92671,-71.75049 -28.21005,-110.6754 5.66976,-29.99665 30.88766,-57.96287 62.84375,-58.53125 z"
       id="path3225"
       inkscape:connector-curvature="0"
       transform="matrix(0.48994548,0,0,0.48994548,-14.516607,-3.6739864)" />
    <path
       style="fill:url(#linearGradient3079);stroke:none;stroke-width:0.48994546999999999"
       d="m 122.62713,32.816827 c -0.45601,-0.0029 -0.92372,0.0078 -1.37797,0.01529 -7.61411,0.125372 -14.95375,1.734064 -21.312631,5.220981 -14.297942,7.840331 -19.751829,27.814615 -21.282007,44.049159 -2.628651,27.888823 9.472253,55.994813 21.771948,81.162523 3.11536,6.37465 6.12356,12.07802 9.09462,17.13279 0.004,0.006 0.011,0.01 0.0153,0.0153 6.60116,8.82634 13.79399,17.19442 21.60354,24.98722 3.86943,2.36591 7.93954,3.84064 12.35581,4.3942 21.58464,2.70555 39.79412,1.82298 55.42508,-8.42094 16.71358,-10.95342 36.39004,-31.21492 32.94884,-50.58687 -5.13967,-16.26239 -11.79429,-32.17661 -20.05715,-47.15725 -0.0645,-0.11087 -0.11898,-0.226 -0.18373,-0.33684 C 197.79062,79.603321 179.38585,56.647788 162.78732,45.478804 151.65959,37.991067 136.76345,32.908961 122.6271,32.816778 z m -5.68031,1.454525 c 14.68779,0.138366 30.82466,9.423631 44.01854,17.086847 32.65271,18.965206 59.81676,65.422781 67.22971,96.840791 4.4609,18.90644 -13.38155,41.90571 -29.73395,52.62243 -14.93666,9.7889 -33.81894,7.65402 -54.44481,5.06865 -16.13613,-2.0226 -27.54641,-16.60043 -41.15542,-44.44725 C 91.10753,137.39303 82.58703,110.70225 84.533868,84.368276 85.779304,67.521824 88.362194,45.064993 103.38146,37.333512 c 3.8426,-1.978062 7.92469,-2.913035 12.14146,-3.046849 0.47062,-0.01494 0.9501,-0.01979 1.4239,-0.01529 z"
       id="path3067"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ssssscccssccsssssssssssss" />
    <path
       style="fill:url(#linearGradient3076);fill-opacity:1"
       d="m 170.48143,170.96997 c 7.9039,-2.80386 9.4391,-3.71745 14.76747,-8.78809 5.28084,-5.0254 5.88037,-6.37731 5.03237,-11.34777 -0.54581,-3.19924 -2.12664,-8.17139 -2.93655,-9.23632 -0.20744,-0.27274 -2.09771,-3.80302 -4.20062,-7.84507 -10.31205,-19.82106 -24.17432,-40.715325 -32.77801,-49.405517 -4.77866,-4.826708 -10.87279,-7.384017 -20.27372,-8.507565 -4.91187,-0.587038 -7.50695,0.407973 -11.5781,4.439293 -5.19358,5.142772 -6.33742,9.372628 -5.017,18.552643 1.9554,13.594616 10.06269,31.133146 21.57803,46.679836 5.80487,7.83707 8.51242,11.05372 16.21908,19.26876 3.91594,4.17426 9.72372,8.27527 11.84917,8.36698 0.5887,0.0254 3.89075,-0.95433 7.33788,-2.17718 z"
       id="path3115"
       inkscape:connector-curvature="0" />
    <path
       style="fill:url(#linearGradient4519)"
       d="m 130.84074,58.923726 c -7.60891,-0.350673 -14.85403,3.428624 -19.50456,9.363275 -7.15812,7.872993 -8.76006,19.344218 -6.92564,29.513125 1.31869,14.540904 8.47163,27.606394 15.84606,39.895614 6.45437,9.19151 13.24056,18.21299 20.7056,26.61653 6.38854,6.86584 13.60394,15.25582 23.86911,15.08518 8.33851,-0.68382 15.73802,-5.30641 22.649,-9.67979 6.8134,-4.37968 12.0669,-12.08126 10.81292,-20.48258 -1.3419,-9.21799 -4.87937,-17.96964 -8.13844,-26.64906 -5.23797,-11.46211 -10.79354,-22.815147 -18.03913,-33.159679 -8.50676,-12.978882 -19.6145,-26.077692 -35.39552,-29.783007 -1.92747,-0.443852 -3.90128,-0.691455 -5.8794,-0.719608 z m -3.41428,17.117471 c 9.47621,0.329223 19.44533,3.578248 25.36433,11.405622 14.22558,16.928041 24.97515,36.420361 35.14857,55.949291 1.35182,4.42143 3.75936,9.50153 1.69397,14.03969 -4.51526,5.99515 -10.52686,11.23752 -17.86566,13.37943 -4.9001,2.08509 -10.68904,4.17452 -14.83439,-0.57642 -9.1776,-7.5501 -16.59474,-17.02466 -23.58578,-26.57917 -9.84934,-14.24824 -18.48273,-30.22495 -20.35268,-47.705266 -0.90187,-5.951667 1.33796,-12.074001 6.00755,-15.910788 2.25429,-2.228885 5.12844,-4.095401 8.42409,-4.002389 z"
       id="path3129"
       inkscape:connector-curvature="0" />
    <path
       style="fill:url(#radialGradient4240);filter:url(#filter4216);opacity:0.20000000000000001;fill-opacity:1"
       d="m 128.4375,65 c -7.55257,0.752539 -13.75463,6.817427 -16.5625,13.71875 5.8224,-8.006494 16.76877,-10.73731 25.9375,-7.40625 14.07275,3.2128 23.28411,15.378897 30.59375,26.90625 5.17978,7.51743 10.0853,15.15976 14.5625,23.125 C 173.38287,101.9067 163.01642,80.924945 144.28125,69 139.39108,66.242245 134.02863,64.603592 128.4375,65 z"
       id="path4188"
       inkscape:connector-curvature="0" />
    <path
       sodipodi:nodetypes="cacac"
       inkscape:connector-curvature="0"
       id="path3995"
       d="m 168.1904,63.422847 c 0,0 19.65859,24.838941 27.77919,38.385793 10.385,17.32433 26.55208,54.46844 26.55208,54.46844 0,0 -11.10228,-38.91122 -21.50132,-55.98367 C 192.45975,86.239191 168.1904,63.422847 168.1904,63.422847 z"
       style="opacity:0.45;fill:white;stroke:none;filter:url(#filter3991)"
       transform="matrix(-0.53741363,0.8433188,0.8433188,0.53741363,127.92952,-82.227985)" />
    <path
       style="fill:url(#radialGradient4003);fill-opacity:1"
       d="m 107.75379,134.95077 c -1.30345,0.0904 -2.48714,0.63971 -3.65929,1.65357 -1.83229,1.58486 -1.9196,1.78945 -1.89853,4.53199 0.0379,4.93646 3.957,11.76337 7.97692,13.8869 0.98849,0.52216 2.12208,0.9586 2.52628,0.96458 1.41684,0.021 4.83158,-1.8527 5.43534,-2.98561 1.19295,-2.06862 1.40968,-5.12061 0.93395,-7.54822 -0.74195,-3.57395 -3.96059,-7.91748 -6.9511,-9.40083 -1.64938,-0.81813 -3.06013,-1.1928 -4.36357,-1.10238 z"
       id="path3139"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="sssscccss" />
    <path
       style="opacity:0.45;fill:white;stroke:none;filter:url(#filter3991)"
       d="m 162.83326,57.708561 c 0,0 24.19388,28.033804 33.13633,44.100079 8.34768,14.99769 18.68782,47.98225 18.68782,47.98225 0,0 -5.43338,-34.47799 -13.63706,-49.49748 -9.13959,-16.732981 -38.18709,-42.584849 -38.18709,-42.584849 z"
       id="path3961"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cacac" />
    <path
       sodipodi:nodetypes="sssscccss"
       inkscape:connector-curvature="0"
       id="path3148"
       d="m 185.20338,91.946502 c 0.70476,-1.100206 1.75466,-1.875158 3.20661,-2.417072 2.26969,-0.847116 2.49109,-0.825543 4.88717,0.508897 4.31286,2.401947 8.42201,9.116165 8.35622,13.662023 -0.0162,1.11781 -0.1772,2.32179 -0.36591,2.67929 -0.6614,1.25316 -3.94383,3.35005 -5.2275,3.33616 -2.38735,0.0541 -5.16903,-1.22024 -7.07065,-2.80247 -2.77963,-2.36585 -5.04606,-7.273929 -4.91255,-10.609444 0.0736,-1.839671 0.42184,-3.257182 1.12661,-4.357384 z"
       style="fill:url(#linearGradient4007);fill-opacity:1" />
    <g
       id="g3200"
       transform="matrix(0.48994548,0,0,0.48994548,350.56989,-159.38179)"
       style="opacity:0.5">
      <path
         inkscape:connector-curvature="0"
         id="path3166"
         d="m -455.20089,479.79464 c -1.17062,0.0161 -2.27669,0.1147 -3.34375,0.28125 l 120.71875,176.625 c 0.14376,-0.13638 0.25973,-0.23557 0.40625,-0.375 10.77843,-10.25706 11.9808,-13.01132 10.25,-23.15625 -1.11402,-6.52979 -4.31568,-16.67019 -5.96875,-18.84375 -0.42338,-0.55668 -4.30163,-7.78125 -8.59375,-16.03125 -0.36367,-0.69901 -0.7571,-1.39357 -1.125,-2.09375 l -70.1875,-102.71875 c -9.0802,-7.31226 -20.55483,-11.4133 -36.96875,-13.375 -1.87975,-0.22466 -3.5892,-0.33445 -5.1875,-0.3125 z"
         style="fill:url(#linearGradient4411);fill-opacity:1" />
      <path
         inkscape:connector-curvature="0"
         id="path3164"
         d="m -463.45089,481.51339 c -3.25944,1.45791 -6.41012,3.91583 -10.1875,7.65625 -5.30016,5.24831 -8.52193,10.03124 -10.09375,15.84375 l 115.78125,169.375 c 0.12815,-0.0452 0.24662,-0.0795 0.375,-0.125 13.96734,-4.95482 18.21591,-7.03738 26.15625,-14.21875 L -463.45089,481.51339 z"
         style="fill:url(#linearGradient4413);fill-opacity:1" />
      <path
         inkscape:connector-curvature="0"
         id="path3150"
         d="m -484.76339,511.38839 c -0.31802,4.40449 -0.012,9.45827 0.875,15.625 3.99106,27.7472 20.55919,63.54978 44.0625,95.28125 11.84799,15.9958 17.36412,22.5765 33.09375,39.34375 7.9926,8.51985 19.84936,16.87532 24.1875,17.0625 0.9231,0.0398 5.13529,-1.13592 10.21875,-2.8125 l -112.4375,-164.5 z"
         style="fill:url(#linearGradient4415);fill-opacity:1" />
    </g>
    <path
       style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:black;fill:url(#linearGradient4232);fill-opacity:1;stroke:none;stroke-width:0.48994546999999999;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
       d="m 122.1875,32.5625 c -0.31633,0.0028 -0.62844,0.02615 -0.9375,0.03125 -7.64601,0.125897 -15.03679,1.740145 -21.4375,5.25 -14.428716,7.912041 -19.87273,27.980004 -21.40625,44.25 -2.636685,27.97406 9.509045,56.10585 21.8125,81.28125 3.11737,6.37875 6.1185,12.09436 9.09375,17.15625 0.0493,0.0739 0.0709,0.0801 0.0312,0.0312 6.6078,8.83522 13.80662,17.19839 21.625,25 l 0.0312,0.0312 c 3.896,2.38216 8.01763,3.87957 12.46875,4.4375 21.60803,2.70848 39.89523,1.85069 55.59375,-8.4375 8.37785,-5.49051 17.4922,-13.33121 24.09375,-22.21875 6.60155,-8.88754 10.70599,-18.84538 8.96875,-28.625 l -0.0312,-0.0312 c -5.14414,-16.27654 -11.79107,-32.22257 -20.0625,-47.21875 -0.0576,-0.099 -0.11567,-0.22079 -0.1875,-0.34375 C 197.99264,79.445011 179.59543,56.490203 162.9375,45.28125 151.76835,37.765645 136.81894,32.655059 122.625,32.5625 l -0.4375,0 z m -0.9375,0.5 c 0.45532,-0.0075 0.92389,-0.0029 1.375,0 14.07876,0.09181 28.94494,5.165131 40.03125,12.625 16.53913,11.129015 34.92479,34.051851 48.75,57.71875 0.0577,0.0987 0.11608,0.22099 0.1875,0.34375 8.24952,14.95646 14.89727,30.85529 20.03125,47.09375 0.002,0.0103 -0.002,0.0209 0,0.0312 1.68984,9.58256 -2.32728,19.40368 -8.875,28.21875 -6.55477,8.82455 -15.63302,16.59959 -23.96875,22.0625 -15.5634,10.19965 -33.68875,11.10887 -55.25,8.40625 -4.36748,-0.54744 -8.38691,-2.0072 -12.21875,-4.34375 -0.0104,-0.0104 -0.0208,-0.0208 -0.0312,-0.0312 -7.78865,-7.77512 -14.9768,-16.10058 -21.5625,-24.90625 -0.004,-0.007 0.004,-0.024 0,-0.0312 -2.96275,-5.0423 -5.95358,-10.73229 -9.0625,-17.09375 C 88.360315,137.99623 76.285633,109.92859 78.90625,82.125 80.433086,65.925908 85.895332,46.049871 100.0625,38.28125 106.37955,34.817271 113.66779,33.187347 121.25,33.0625 z m -5.75,0.96875 c -4.24792,0.134802 -8.34131,1.097752 -12.21875,3.09375 -7.590368,3.9073 -12.029451,11.529539 -14.71875,20.25 -2.689299,8.720461 -3.658204,18.541088 -4.28125,26.96875 -1.95161,26.39852 6.610753,53.14668 18.375,77.21875 6.80896,13.93252 13.05934,24.52995 19.65625,31.9375 6.59691,7.40755 13.55444,11.60555 21.6875,12.625 20.62766,2.58559 39.56427,4.75598 54.59375,-5.09375 8.20923,-5.38001 16.78156,-13.82578 22.75,-23.3125 5.96844,-9.48672 9.34606,-20.01662 7.09375,-29.5625 -7.43127,-31.49566 -34.59182,-77.977165 -67.34375,-97 -13.19458,-7.663622 -29.36692,-16.985677 -44.15625,-17.125 -0.083,-7.88e-4 -0.16677,2.15e-4 -0.25,0 -0.39536,-0.001 -0.79576,-0.01244 -1.1875,0 z m 0.0312,0.5 c 0.46703,-0.01483 0.93569,-0.0045 1.40625,0 14.58625,0.137409 30.71307,9.36844 43.90625,17.03125 32.55349,18.907577 59.73037,65.34714 67.125,96.6875 2.20859,9.36056 -1.10559,19.76879 -7.03125,29.1875 -5.92566,9.41871 -14.48183,17.85079 -22.625,23.1875 -14.84384,9.72807 -33.65717,7.6164 -54.28125,5.03125 -8.00307,-1.00315 -14.79923,-5.12003 -21.34375,-12.46875 -6.54452,-7.34872 -12.7937,-17.92945 -19.59375,-31.84375 C 91.351277,137.31624 82.839184,110.64443 84.78125,84.375 85.40364,75.95621 86.362928,66.152438 89.03125,57.5 91.699572,48.847562 96.071102,41.386681 103.5,37.5625 c 3.80776,-1.960126 7.84563,-2.898424 12.03125,-3.03125 z"
       id="path4220"
       inkscape:connector-curvature="0" />
    <g
       id="g4024"
       transform="translate(-28.284271,-200.0102)">
      <path
         style="fill:#1a1a1a"
         d="m 318.53887,279.75654 c 1.00999,0.005 1.89177,0.0482 2.60328,0.13466 2.08898,0.24742 6.49786,1.35249 7.17341,1.79558 3.92176,4.11251 4.59865,22.42631 0.13131,29.5793 -0.67159,0.44906 -5.07047,1.5933 -7.15718,1.85921 -0.7107,0.0927 -1.59206,0.14415 -2.60198,0.15775 -7.06943,0.0952 -20.39523,-1.69296 -24.92275,-4.60816 -2.63356,-1.38461 -5.42336,-3.18744 -7.39874,-4.78344 -2.21303,-1.78801 -3.11021,-2.35716 -4.07294,-2.58092 -0.46818,-0.10877 -0.89474,-0.41554 -1.08308,-0.77489 -0.28302,-0.54008 -0.46902,-0.59343 -2.03336,-0.592 -1.15036,0.001 -1.92427,-0.13413 -2.341,-0.40382 -0.34291,-0.22194 -0.89816,-0.4021 -1.22923,-0.40064 -0.33107,0.002 -0.71467,-0.17225 -0.85642,-0.38603 -0.21729,-0.32774 -1.11898,-0.38489 -5.74038,-0.36438 l -5.48162,0.0243 -0.55547,0.81465 c -0.49243,0.71601 -0.65283,0.79214 -1.33378,0.65567 -0.0135,-0.003 -0.0187,-0.006 -0.0321,-0.008 l -1.42609,0.12817 -0.70028,-1.40198 c -0.70128,-0.072 -2.01523,-0.0578 -4.62695,0.0125 -7.97877,0.21454 -64.83584,0.92806 -76.08428,0.95504 -8.76866,0.0211 -10.16589,-0.0269 -10.43811,-0.36787 -0.27961,-0.35014 -0.36962,-1.21907 -0.28528,-2.01296 -0.0917,-0.79356 -0.009,-1.66255 0.2674,-2.01541 0.26919,-0.34333 1.66593,-0.40374 10.43442,-0.46054 11.24824,-0.0729 68.10941,0.13575 76.08977,0.27946 2.61224,0.047 3.92627,0.0496 4.62688,-0.0286 l 0.68781,-1.40814 1.42719,0.11514 c 0.0136,-0.003 0.0187,-0.006 0.0321,-0.008 0.67971,-0.1425 0.84077,-0.0678 1.33955,0.64381 l 0.56269,0.80969 5.48161,-0.0243 c 4.6214,-0.0205 5.52254,-0.0857 5.73693,-0.41534 0.13984,-0.21502 0.52188,-0.39216 0.85295,-0.39363 0.33109,-0.002 0.88469,-0.18656 1.22562,-0.41153 0.41431,-0.27341 1.18701,-0.41544 2.33732,-0.42459 1.5643,-0.0123 1.7498,-0.0675 2.02804,-0.61002 0.18513,-0.36102 0.60895,-0.67153 1.07614,-0.78449 0.96072,-0.23228 1.8528,-0.8094 4.04987,-2.61698 1.96114,-1.61348 4.73481,-3.44101 7.35598,-4.84894 4.50144,-2.95533 17.81085,-4.86179 24.88084,-4.82932 z"
         id="path4285"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="sccccscssssssssccccccssscsssccccccsssssssscs" />
      <path
         inkscape:connector-curvature="0"
         id="path3087"
         d="m 169.10714,296.11219 105,-0.17858 -0.35714,1.42858 -104.82143,1.07142 z"
         style="opacity:0.5;fill:#666;stroke:none;filter:url(#filter3861)" />
      <path
         inkscape:connector-curvature="0"
         id="path4009"
         d="m 317.53125,282.15178 c -11.36706,0.26523 -23.23057,2.55643 -31.6875,10.8125 -1.86956,1.14115 -4.05821,1.47538 -2.78125,4.53125 -0.84939,3.46529 4.1566,3.28051 5.65625,5.75 9.51653,7.68063 22.72213,8.97735 34.38448,7.94875 4.21291,0.28872 5.90132,-3.25103 6.14677,-6.98 0.9191,-6.73052 1.37996,-14.32892 -1.84375,-20.53125 -3.23537,-1.02214 -6.47262,-1.79974 -9.875,-1.53125 z"
         style="opacity:0.5;fill:#333;filter:url(#filter4020)" />
      <path
         sodipodi:nodetypes="cccc"
         inkscape:connector-curvature="0"
         id="path3865"
         d="m 297.0319,288.01519 30.27684,-1.83276 -30.27684,3.97562 z"
         style="fill:url(#linearGradient4032);fill-opacity:1;stroke:none" />
      <path
         style="fill:url(#linearGradient4034);fill-opacity:1;stroke:none"
         d="m 297.01023,295.86554 31.16072,1.07143 -31.16072,1.07143 z"
         id="path3867"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccc" />
      <path
         sodipodi:nodetypes="cccc"
         inkscape:connector-curvature="0"
         id="path3869"
         d="m 295.11991,302.01312 30.78191,4.8595 -30.78191,-2.71664 z"
         style="fill:url(#linearGradient4036);fill-opacity:1;stroke:none" />
    </g>
    <path
       style="fill:url(#linearGradient3063)"
       d="m 190.26363,89.34866 c -0.43987,0.06867 -0.94061,0.240548 -1.66911,0.512448 -1.38847,0.518221 -2.40074,1.261233 -3.07469,2.313337 -0.25496,0.398012 -0.45333,0.827434 -0.61494,1.317728 l 10.96639,15.666277 c 0.01,-1.8e-4 0.0194,2.2e-4 0.0293,0 1.22755,0.0133 4.37487,-1.99345 5.00735,-3.19182 0.0946,-0.17924 0.17036,-0.58776 0.23427,-1.08346 L 190.26365,89.34866 z"
       id="path4135"
       inkscape:connector-curvature="0" />
    <path
       style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.3;color:black;fill:url(#radialGradient4304);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4330);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
       d="m 113.35358,88.956128 -0.8125,0.5625 50.89286,76.607142 0.8125,-0.5625 z"
       id="path4280"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="ccccc" />
    <path
       inkscape:connector-curvature="0"
       id="path4286"
       d="m 125.85359,76.456128 -0.8125,0.5625 53.03571,80.892852 0.8125,-0.5625 z"
       style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;opacity:0.3;color:black;fill:url(#radialGradient4294);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4310);enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans"
       sodipodi:nodetypes="ccccc" />
    <g
       transform="matrix(-0.52943173,0.84835255,0.84835255,0.52943173,-17.027404,-209.74208)"
       id="g4038">
      <path
         sodipodi:nodetypes="sccccscssssssssccccccssscsssccccccsssssssscs"
         inkscape:connector-curvature="0"
         id="path4040"
         d="m 318.53887,279.75654 c 1.00999,0.005 1.89177,0.0482 2.60328,0.13466 2.08898,0.24742 6.49786,1.35249 7.17341,1.79558 3.92176,4.11251 4.59865,22.42631 0.13131,29.5793 -0.67159,0.44906 -5.07047,1.5933 -7.15718,1.85921 -0.7107,0.0927 -1.59206,0.14415 -2.60198,0.15775 -7.06943,0.0952 -20.39523,-1.69296 -24.92275,-4.60816 -2.63356,-1.38461 -5.42336,-3.18744 -7.39874,-4.78344 -2.21303,-1.78801 -3.11021,-2.35716 -4.07294,-2.58092 -0.46818,-0.10877 -0.89474,-0.41554 -1.08308,-0.77489 -0.28302,-0.54008 -0.46902,-0.59343 -2.03336,-0.592 -1.15036,0.001 -1.92427,-0.13413 -2.341,-0.40382 -0.34291,-0.22194 -0.89816,-0.4021 -1.22923,-0.40064 -0.33107,0.002 -0.71467,-0.17225 -0.85642,-0.38603 -0.21729,-0.32774 -1.11898,-0.38489 -5.74038,-0.36438 l -5.48162,0.0243 -0.55547,0.81465 c -0.49243,0.71601 -0.65283,0.79214 -1.33378,0.65567 -0.0135,-0.003 -0.0187,-0.006 -0.0321,-0.008 l -1.42609,0.12817 -0.70028,-1.40198 c -0.70128,-0.072 -2.01523,-0.0578 -4.62695,0.0125 -7.97877,0.21454 -64.83584,0.92806 -76.08428,0.95504 -8.76866,0.0211 -10.16589,-0.0269 -10.43811,-0.36787 -0.27961,-0.35014 -0.36962,-1.21907 -0.28528,-2.01296 -0.0917,-0.79356 -0.009,-1.66255 0.2674,-2.01541 0.26919,-0.34333 1.66593,-0.40374 10.43442,-0.46054 11.24824,-0.0729 68.10941,0.13575 76.08977,0.27946 2.61224,0.047 3.92627,0.0496 4.62688,-0.0286 l 0.68781,-1.40814 1.42719,0.11514 c 0.0136,-0.003 0.0187,-0.006 0.0321,-0.008 0.67971,-0.1425 0.84077,-0.0678 1.33955,0.64381 l 0.56269,0.80969 5.48161,-0.0243 c 4.6214,-0.0205 5.52254,-0.0857 5.73693,-0.41534 0.13984,-0.21502 0.52188,-0.39216 0.85295,-0.39363 0.33109,-0.002 0.88469,-0.18656 1.22562,-0.41153 0.41431,-0.27341 1.18701,-0.41544 2.33732,-0.42459 1.5643,-0.0123 1.7498,-0.0675 2.02804,-0.61002 0.18513,-0.36102 0.60895,-0.67153 1.07614,-0.78449 0.96072,-0.23228 1.8528,-0.8094 4.04987,-2.61698 1.96114,-1.61348 4.73481,-3.44101 7.35598,-4.84894 4.50144,-2.95533 17.81085,-4.86179 24.88084,-4.82932 z"
         style="fill:#1a1a1a" />
      <path
         style="opacity:0.5;fill:#666;stroke:none;filter:url(#filter3861)"
         d="m 169.10714,296.11219 105,-0.17858 -0.35714,1.42858 -104.82143,1.07142 z"
         id="path4042"
         inkscape:connector-curvature="0" />
      <path
         style="opacity:0.5;fill:#333;filter:url(#filter4020)"
         d="m 317.53125,282.15178 c -11.36706,0.26523 -23.23057,2.55643 -31.6875,10.8125 -1.86956,1.14115 -4.05821,1.47538 -2.78125,4.53125 -0.84939,3.46529 4.1566,3.28051 5.65625,5.75 9.51653,7.68063 22.72213,8.97735 34.38448,7.94875 4.21291,0.28872 5.90132,-3.25103 6.14677,-6.98 0.9191,-6.73052 1.37996,-14.32892 -1.84375,-20.53125 -3.23537,-1.02214 -6.47262,-1.79974 -9.875,-1.53125 z"
         id="path4044"
         inkscape:connector-curvature="0" />
      <path
         style="fill:url(#linearGradient4052);fill-opacity:1;stroke:none"
         d="m 297.0319,288.01519 30.27684,-1.83276 -30.27684,3.97562 z"
         id="path4046"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccc" />
      <path
         sodipodi:nodetypes="cccc"
         inkscape:connector-curvature="0"
         id="path4048"
         d="m 297.01023,295.86554 31.16072,1.07143 -31.16072,1.07143 z"
         style="fill:url(#linearGradient4054);fill-opacity:1;stroke:none" />
      <path
         style="fill:url(#linearGradient4056);fill-opacity:1;stroke:none"
         d="m 295.11991,302.01312 30.78191,4.8595 -30.78191,-2.71664 z"
         id="path4050"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccc" />
    </g>
    <path
       inkscape:connector-curvature="0"
       id="path4150"
       d="m 107.61204,135.87111 c -0.43987,0.0687 -0.94061,0.24055 -1.66911,0.51245 -1.38847,0.51822 -2.40074,1.26123 -3.07469,2.31333 -0.25496,0.39802 -0.45333,0.82744 -0.61494,1.31773 l 10.9664,15.66628 c 0.01,-1.8e-4 0.0194,2.2e-4 0.0293,0 1.22755,0.0133 4.37487,-1.99345 5.00735,-3.19182 0.0946,-0.17924 0.17036,-0.58776 0.23427,-1.08347 l -10.87855,-15.5345 z"
       style="fill:url(#linearGradient3059)" />
    <path
       style="opacity:0.45;fill:white;stroke:none;filter:url(#filter3951)"
       d="m 140.06407,195.32811 c 0,0 29.07782,-4.37183 42.39494,-10.1947 14.78259,-6.46364 40.26186,-26.86477 40.26186,-26.86477 0,0 -19.03151,32.17765 -35.15464,38.96292 -14.60604,6.14682 -47.50216,-1.90345 -47.50216,-1.90345 z"
       id="path3909"
       inkscape:connector-curvature="0"
       sodipodi:nodetypes="cacac"
       transform="matrix(0.99690053,-0.07867232,0.07867232,0.99690053,-13.51203,13.166988)" />
    <path
       sodipodi:nodetypes="cacac"
       inkscape:connector-curvature="0"
       id="path3955"
       d="m 91.374375,85.871906 c 0,0 9.256535,-26.696739 20.754205,-32.346171 13.12094,-6.447035 43.69229,3.807076 43.69229,3.807076 0,0 -34.41022,-23.358229 -49.87846,-15.390694 -13.71495,7.06443 -14.568035,43.929789 -14.568035,43.929789 z"
       style="opacity:0.4;fill:#faa;stroke:none;filter:url(#filter3957)" />
    <path
       style="fill:url(#linearGradient4253);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 55.09375 38.125 C 41.536468 55.525521 38.482469 79.730562 43.5 100.8125 C 44.024201 102.26043 44.578426 103.68369 45.125 105.125 C 44.024016 92.475252 43.404295 78.251935 44.9375 68.5625 C 46.28173 60.067328 50.756241 48.257598 55.09375 38.125 z "
       transform="translate(28.121442,8.3445206)"
       id="path4242" />
    <path
       style="fill:url(#linearGradient4271);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 114.28125 204.625 C 113.32558 204.67041 112.29016 204.8007 111.21875 204.96875 C 119.83569 211.80541 132.24015 211.82002 142.6875 209.6875 C 146.03427 208.64812 149.32096 207.45718 152.59375 206.15625 C 151.9534 205.85401 151.33022 205.57328 150.71875 205.34375 C 143.65393 202.69182 135.75218 208.28171 128.21875 207.84375 C 123.4619 207.56721 119.04076 204.39887 114.28125 204.625 z "
       transform="translate(28.121442,8.3445206)"
       id="path4266" />
    <path
       style="fill:url(#linearGradient4278);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
       d="M 207.03125 154.34375 L 193.5 183.75 C 195.65989 181.9894 197.68946 180.09837 199.5 177.9375 C 205.95635 171.90863 208.38452 162.88007 207.03125 154.34375 z "
       transform="translate(28.121442,8.3445206)"
       id="path4273" />
    <path
       style="fill:url(#radialGradient4482);opacity:0.4;filter:url(#filter4472);fill-opacity:1"
       d="m 106.75,138.21875 c -5.01915,1.36431 1.53172,5.62694 2.37808,8.14121 2.30839,1.7736 3.89374,9.63491 7.18442,5.39004 -3.19444,-4.47938 -6.33093,-9.19988 -9.5625,-13.53125 z"
       id="path4404"
       inkscape:connector-curvature="0" />
    <path
       inkscape:connector-curvature="0"
       id="path4484"
       d="m 189.32997,91.499195 c -5.01915,1.36431 1.53172,5.62694 2.37808,8.14121 2.30839,1.773605 3.89374,9.634915 7.18442,5.390045 -3.19444,-4.47938 -6.33093,-9.199885 -9.5625,-13.531255 z"
       style="opacity:0.4;fill:url(#radialGradient4486);fill-opacity:1;filter:url(#filter4472)" />
    <path
       style="fill:white;stroke:none;filter:url(#filter4502);opacity:0.2"
       d="m 57.578695,49.881767 c 0,0 -5.45362,18.676558 -5.555839,28.284271 -0.156361,14.696609 3.461299,29.155632 7.576144,43.436562 0,0 -4.701076,-23.455716 -5.050762,-35.355342 -0.357297,-12.158599 3.030457,-36.365491 3.030457,-36.365491 z"
       id="path4488"
       inkscape:connector-curvature="0"
       transform="translate(28.121442,8.3445206)"
       sodipodi:nodetypes="cacac" />
    <path
       sodipodi:nodetypes="cacac"
       transform="matrix(-0.47323097,0.88093839,0.88093839,0.47323097,107.53763,-41.655538)"
       inkscape:connector-curvature="0"
       id="path4506"
       d="m 57.578695,49.881767 c 0,0 -5.45362,18.676558 -5.555839,28.284271 -0.156361,14.696609 3.461299,29.155632 7.576144,43.436562 0,0 -4.701076,-23.455716 -5.050762,-35.355342 -0.357297,-12.158599 3.030457,-36.365491 3.030457,-36.365491 z"
       style="opacity:0.2;fill:white;stroke:none;filter:url(#filter4502)" />
    <path
       style="opacity:0.2;color:black;fill:black;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 127.43394,76.032021 c -3.29565,-0.09301 -6.18321,1.771115 -8.4375,4 -4.60463,3.783417 -6.83452,9.814408 -6.03125,15.6875 2.14745,-4.274005 5.28349,-8.111538 9.34375,-11.125 5.34892,-3.969885 11.5628,-5.967746 17.84375,-6.15625 -4.06323,-1.493367 -8.43787,-2.257524 -12.71875,-2.40625 z"
       id="path4526" />
    <path
       style="opacity:0.20000000000000001;color:black;fill:url(#linearGradient4541);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       d="m 187.18394,142.00077 c -0.63298,9.16177 -4.9691,17.87333 -12.71875,23.625 -4.81784,3.57573 -10.32971,5.53466 -15.96875,6.03125 3.96322,2.82465 8.96853,0.9914 13.28125,-0.84375 7.3388,-2.14191 13.32849,-7.37985 17.84375,-13.375 2.06539,-4.53816 -0.33568,-9.60982 -1.6875,-14.03125 -0.24533,-0.47093 -0.50396,-0.9354 -0.75,-1.40625 z"
       id="path4533" />
  </g>
</svg>