summaryrefslogtreecommitdiffstats
path: root/src/pics/kio_sword_everything.svg
blob: 5218535683a6a2a57384f50cecf3e7937154dd3e (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
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
<svg
   width="144pt"
   height="144pt"
   viewBox="0 0 144 144"
   xml:space="preserve"
   id="svg574"
   sodipodi:version="0.32"
   inkscape:version="0.39cvs"
   sodipodi:docname="kio_sword_everything.svg"
   sodipodi:docbase="/home/luke/my_devel/kio_sword/src/pics"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:xml="http://www.w3.org/XML/1998/namespace"
   xmlns:xlink="http://www.w3.org/1999/xlink"><defs
   id="defs1077"><linearGradient
   id="linearGradient1097">
      <text
   id="text563" />

      <stop
   style="stop-color:#7347ba;stop-opacity:1.0000;"
   offset="0"
   id="stop1099" />

      <text
   id="text565" />

      <stop
   style="stop-color:#000c46;stop-opacity:1.0000;"
   offset="1"
   id="stop1101" />

      <text
   id="text567" />

    </linearGradient>
<linearGradient
   id="linearGradient2334">
      <stop
   offset="0.0000000"
   style="stop-color:#868686;stop-opacity:1.0000000;"
   id="stop2336" />




      <stop
   offset="1.0000000"
   style="stop-color:#6b6b6b;stop-opacity:1.0000000;"
   id="stop2338" />




    </linearGradient>


    <linearGradient
   id="linearGradient2925">
      <stop
   offset="0.00000000"
   style="stop-color:#7247ba;stop-opacity:1;"
   id="stop2926" />




      <stop
   offset="1.00000000"
   style="stop-color:#000c46;stop-opacity:1;"
   id="stop2927" />




    </linearGradient>




    <linearGradient
   id="linearGradient2922">
      <stop
   offset="0.00000000"
   style="stop-color:#85682b;stop-opacity:1;"
   id="stop2923" />




      <stop
   offset="1.00000000"
   style="stop-color:#c59e47;stop-opacity:1;"
   id="stop2924" />




    </linearGradient>




    <linearGradient
   id="linearGradient2903">
      <stop
   offset="0.00000000"
   style="stop-color:#572e00;stop-opacity:1;"
   id="stop2904" />




      <stop
   offset="1.00000000"
   style="stop-color:#b5a278;stop-opacity:1;"
   id="stop2905" />




    </linearGradient>




    <linearGradient
   id="linearGradient2862">
      <stop
   offset="0.0000000"
   style="stop-color:#bababa;stop-opacity:1.0000000;"
   id="stop2863" />




      <stop
   offset="1.00000000"
   style="stop-color:#272727;stop-opacity:1;"
   id="stop2864" />




    </linearGradient>




    <linearGradient
   id="linearGradient2859">
      <stop
   offset="0.00000000"
   style="stop-color:#ffffff;stop-opacity:1;"
   id="stop2861" />




      <stop
   offset="1.00000000"
   style="stop-color:#545477;stop-opacity:1;"
   id="stop2860" />




    </linearGradient>




    <linearGradient
   id="linearGradient2852"
   gradientUnits="userSpaceOnUse"
   x1="-9.1904"
   y1="-14.3975"
   x2="141.2382"
   y2="162.8934"><stop
   offset="0.00000000"
   style="stop-color:#dddddd;stop-opacity:1;"
   id="stop2854" />




<stop
   offset="1.00000000"
   style="stop-color:#000000;stop-opacity:1;"
   id="stop2856" />




</linearGradient>




    <linearGradient
   id="aigrd21"
   gradientUnits="userSpaceOnUse"
   x1="-28.083"
   y1="1.5566"
   x2="122.4775"
   y2="179.003"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop841" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop843" />




</linearGradient>




    <linearGradient
   id="aigrd22"
   gradientUnits="userSpaceOnUse"
   x1="40.3945"
   y1="96.7637"
   x2="89.7144"
   y2="134.9468"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop850" />




<stop
   offset="1"
   style="stop-color:#545477"
   id="stop852" />




</linearGradient>




    <linearGradient
   id="aigrd23"
   gradientUnits="userSpaceOnUse"
   x1="16.2939"
   y1="53.1104"
   x2="151.1777"
   y2="213.9856"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop859" />




<stop
   offset="0.178"
   style="stop-color:#FBFBFC"
   id="stop861" />




<stop
   offset="0.367"
   style="stop-color:#EEEEF2"
   id="stop863" />




<stop
   offset="0.5612"
   style="stop-color:#D9D9E1"
   id="stop865" />




<stop
   offset="0.7589"
   style="stop-color:#BBBBC9"
   id="stop867" />




<stop
   offset="0.9575"
   style="stop-color:#9595AB"
   id="stop869" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop871" />




</linearGradient>




    <linearGradient
   id="aigrd24"
   gradientUnits="userSpaceOnUse"
   x1="-32.7295"
   y1="5.502"
   x2="117.8273"
   y2="182.9439"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop878" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop880" />




</linearGradient>




    <linearGradient
   id="aigrd25"
   gradientUnits="userSpaceOnUse"
   x1="-17.4727"
   y1="36.0361"
   x2="33.1882"
   y2="75.2575"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop887" />




<stop
   offset="1"
   style="stop-color:#545477"
   id="stop889" />




</linearGradient>




    <linearGradient
   id="aigrd26"
   gradientUnits="userSpaceOnUse"
   x1="11.6523"
   y1="57.0117"
   x2="146.5186"
   y2="217.8661"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop896" />




<stop
   offset="0.178"
   style="stop-color:#FBFBFC"
   id="stop898" />




<stop
   offset="0.367"
   style="stop-color:#EEEEF2"
   id="stop900" />




<stop
   offset="0.5612"
   style="stop-color:#D9D9E1"
   id="stop902" />




<stop
   offset="0.7589"
   style="stop-color:#BBBBC9"
   id="stop904" />




<stop
   offset="0.9575"
   style="stop-color:#9595AB"
   id="stop906" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop908" />




</linearGradient>




    <linearGradient
   id="aigrd27"
   gradientUnits="userSpaceOnUse"
   x1="-45.7183"
   y1="16.5156"
   x2="104.8478"
   y2="193.9686"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop915" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop917" />




</linearGradient>




    <linearGradient
   id="aigrd28"
   gradientUnits="userSpaceOnUse"
   x1="4.2324"
   y1="86.0156"
   x2="46.406"
   y2="118.6661"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop924" />




<stop
   offset="1"
   style="stop-color:#545477"
   id="stop926" />




</linearGradient>




    <linearGradient
   id="aigrd29"
   gradientUnits="userSpaceOnUse"
   x1="-0.7148"
   y1="67.3779"
   x2="134.1636"
   y2="228.2469"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop933" />




<stop
   offset="0.178"
   style="stop-color:#FBFBFC"
   id="stop935" />




<stop
   offset="0.367"
   style="stop-color:#EEEEF2"
   id="stop937" />




<stop
   offset="0.5612"
   style="stop-color:#D9D9E1"
   id="stop939" />




<stop
   offset="0.7589"
   style="stop-color:#BBBBC9"
   id="stop941" />




<stop
   offset="0.9575"
   style="stop-color:#9595AB"
   id="stop943" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop945" />




</linearGradient>




    <linearGradient
   id="aigrd30"
   gradientUnits="userSpaceOnUse"
   x1="4.0088"
   y1="-25.6621"
   x2="154.5634"
   y2="151.7773"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop952" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop954" />




</linearGradient>




    <linearGradient
   id="aigrd31"
   gradientUnits="userSpaceOnUse"
   x1="89.7988"
   y1="83.6094"
   x2="132.9068"
   y2="116.9833"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop961" />




<stop
   offset="1"
   style="stop-color:#545477"
   id="stop963" />




</linearGradient>




    <linearGradient
   id="aigrd32"
   gradientUnits="userSpaceOnUse"
   x1="48.4219"
   y1="26.1885"
   x2="183.2913"
   y2="187.0467"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop970" />




<stop
   offset="0.178"
   style="stop-color:#FBFBFC"
   id="stop972" />




<stop
   offset="0.367"
   style="stop-color:#EEEEF2"
   id="stop974" />




<stop
   offset="0.5612"
   style="stop-color:#D9D9E1"
   id="stop976" />




<stop
   offset="0.7589"
   style="stop-color:#BBBBC9"
   id="stop978" />




<stop
   offset="0.9575"
   style="stop-color:#9595AB"
   id="stop980" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop982" />




</linearGradient>




    <linearGradient
   id="aigrd33"
   gradientUnits="userSpaceOnUse"
   x1="-2.0176"
   y1="-20.5537"
   x2="148.5382"
   y2="156.8871"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop989" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop991" />




</linearGradient>




    <linearGradient
   id="aigrd34"
   gradientUnits="userSpaceOnUse"
   x1="2.0205"
   y1="-0.6567"
   x2="45.127"
   y2="32.716"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop998" />




<stop
   offset="1"
   style="stop-color:#545477"
   id="stop1000" />




</linearGradient>




    <linearGradient
   id="aigrd35"
   gradientUnits="userSpaceOnUse"
   x1="42.2881"
   y1="31.3262"
   x2="177.1685"
   y2="192.1976"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop1007" />




<stop
   offset="0.178"
   style="stop-color:#FBFBFC"
   id="stop1009" />




<stop
   offset="0.367"
   style="stop-color:#EEEEF2"
   id="stop1011" />




<stop
   offset="0.5612"
   style="stop-color:#D9D9E1"
   id="stop1013" />




<stop
   offset="0.7589"
   style="stop-color:#BBBBC9"
   id="stop1015" />




<stop
   offset="0.9575"
   style="stop-color:#9595AB"
   id="stop1017" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop1019" />




</linearGradient>




    <linearGradient
   id="aigrd36"
   gradientUnits="userSpaceOnUse"
   x1="-9.1904"
   y1="-14.3975"
   x2="141.2382"
   y2="162.8934"><stop
   offset="0.00000000"
   style="stop-color:#e5e5e5;stop-opacity:1;"
   id="stop1026" />




<stop
   offset="1.00000000"
   style="stop-color:#5d5d5d;stop-opacity:1;"
   id="stop1028" />




</linearGradient>




    <linearGradient
   id="aigrd37"
   gradientUnits="userSpaceOnUse"
   x1="35.3623"
   y1="37.1309"
   x2="170.0874"
   y2="197.817"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop1037" />




<stop
   offset="0.178"
   style="stop-color:#FBFBFC"
   id="stop1039" />




<stop
   offset="0.367"
   style="stop-color:#EEEEF2"
   id="stop1041" />




<stop
   offset="0.5612"
   style="stop-color:#D9D9E1"
   id="stop1043" />




<stop
   offset="0.7589"
   style="stop-color:#BBBBC9"
   id="stop1045" />




<stop
   offset="0.9575"
   style="stop-color:#9595AB"
   id="stop1047" />




<stop
   offset="1"
   style="stop-color:#8C8CA4"
   id="stop1049" />




</linearGradient>




    <linearGradient
   id="aigrd38"
   gradientUnits="userSpaceOnUse"
   x1="-39.4014"
   y1="-8.939"
   x2="120.3301"
   y2="114.7241"><stop
   offset="0.0000000"
   style="stop-color:#ffffff;stop-opacity:1.0000000;"
   id="stop1056" />




<stop
   offset="1.0000000"
   style="stop-color:#545477;stop-opacity:1.0000000;"
   id="stop1058" />




</linearGradient>




    <linearGradient
   id="aigrd39"
   gradientUnits="userSpaceOnUse"
   x1="-25.2842"
   y1="-0.6992"
   x2="115.9417"
   y2="108.6369"><stop
   offset="0"
   style="stop-color:#FFFFFF"
   id="stop1065" />




<stop
   offset="1"
   style="stop-color:#545477"
   id="stop1067" />




</linearGradient>




    <linearGradient
   xlink:href="#linearGradient2862"
   id="linearGradient2840"
   x1="1.12130487"
   y1="0.00000004"
   x2="1.13968694"
   y2="0.62938684"
   gradientUnits="objectBoundingBox"
   gradientTransform="scale(0.383105,2.610251)" />




    <linearGradient
   xlink:href="#linearGradient2852"
   id="linearGradient2841"
   x1="0.58999997"
   y1="1.43225801"
   x2="0.58999997"
   y2="-0.29032257" />




    <linearGradient
   xlink:href="#aigrd36"
   id="linearGradient2858"
   x1="0.52366948"
   y1="-0.42518446"
   x2="0.51448232"
   y2="1.13690627"
   gradientTransform="scale(1.183122,0.845221)" />




    <linearGradient
   xlink:href="#linearGradient2862"
   id="linearGradient2883"
   x1="0.61267602"
   y1="1.11111093"
   x2="0.51056337"
   y2="-1.94444358" />




    <linearGradient
   xlink:href="#linearGradient2862"
   id="linearGradient2884"
   x1="0.52366954"
   y1="-0.42518461"
   x2="0.51448244"
   y2="1.13690686"
   gradientUnits="objectBoundingBox"
   gradientTransform="scale(1.183122,0.845221)" />




    <linearGradient
   xlink:href="#linearGradient2862"
   id="linearGradient2885"
   x1="0.47535211"
   y1="1.05555499"
   x2="0.48239437"
   y2="-0.83333248" />




    <linearGradient
   xlink:href="#linearGradient2922"
   id="linearGradient2901"
   x1="0.45422533"
   y1="1.27272785"
   x2="0.45422533"
   y2="-0.47727346" />




    <linearGradient
   xlink:href="#linearGradient2922"
   id="linearGradient2902"
   x1="0.46478876"
   y1="0.22727279"
   x2="0.49647892"
   y2="1.22727227" />




    <linearGradient
   xlink:href="#aigrd36"
   id="linearGradient2907"
   x1="0.67000002"
   y1="2.13548398"
   x2="0.68000001"
   y2="-0.32903227" />




    <linearGradient
   xlink:href="#linearGradient2334"
   id="linearGradient2919"
   x1="0.52366930"
   y1="-0.42518443"
   x2="0.51448220"
   y2="1.1369064"
   gradientTransform="scale(1.183122,0.845221)" />




    <linearGradient
   xlink:href="#linearGradient2925"
   id="linearGradient2921"
   x1="0.55633807"
   y1="-0.40909052"
   x2="0.37676060"
   y2="1.50000036" />




    <linearGradient
   xlink:href="#linearGradient2925"
   id="linearGradient2929"
   x1="0.40492961"
   y1="1.29545498"
   x2="0.41197187"
   y2="-0.11363599" />




    <radialGradient
   xlink:href="#linearGradient2925"
   id="radialGradient2930"
   cx="1.02941215"
   cy="0.44531286"
   r="0.81727701"
   fx="1.05882394"
   fy="0.44531289" />




    <linearGradient
   xlink:href="#aigrd36"
   id="linearGradient3127"
   x1="0.52366924"
   y1="-0.42518425"
   x2="0.54469812"
   y2="0.67493552"
   gradientTransform="scale(1.183122,0.845221)" />




    <linearGradient
   xlink:href="#linearGradient2334"
   id="linearGradient3128"
   x1="0.52366912"
   y1="-0.42518413"
   x2="0.54469800"
   y2="0.67493540"
   gradientTransform="scale(1.183122,0.845221)" />




  <linearGradient
   xlink:href="#linearGradient2862"
   id="linearGradient2983"
   x1="0.50000000"
   y1="0.80952382"
   x2="0.16438356"
   y2="-0.71428573" />

<linearGradient
   xlink:href="#aigrd38"
   id="linearGradient3009"
   x1="0.32869712"
   y1="0.73845887"
   x2="0.35687116"
   y2="0.56376964"
   gradientTransform="scale(1.183122,0.845221)"
   spreadMethod="reflect" />

<radialGradient
   xlink:href="#linearGradient2334"
   id="radialGradient3010" />

<linearGradient
   xlink:href="#linearGradient2925"
   id="linearGradient3614"
   x1="0.68150687"
   y1="0.62222224"
   x2="0.65753424"
   y2="0.62222224"
   spreadMethod="reflect" />

<linearGradient
   xlink:href="#linearGradient2925"
   id="linearGradient3616"
   x1="0.65753424"
   y1="0.37777779"
   x2="0.63356167"
   y2="0.37777779"
   spreadMethod="reflect" />

<linearGradient
   xlink:href="#linearGradient2925"
   id="linearGradient2669"
   x1="0.52102673"
   y1="-7.0396977e-16"
   x2="0.51234299"
   y2="1.4352630"
   gradientTransform="scale(1.183122,0.845221)" />
</defs>

<sodipodi:namedview
   id="base"
   pagecolor="#ffffff"
   bordercolor="#666666"
   borderopacity="1.0"
   inkscape:pageopacity="0.0"
   inkscape:pageshadow="2"
   inkscape:zoom="3.5265062"
   inkscape:cx="94.402278"
   inkscape:cy="41.604425"
   inkscape:window-width="1214"
   inkscape:window-height="947"
   inkscape:window-x="0"
   inkscape:window-y="0"
   showgrid="false" />

<path
   style="font-size:12;fill:none;stroke-width:0;"
   d="M 115.9886 102.1745 L 33.68624 102.1745 L 33.68624 19.87214 L 115.9886 19.87214 L 115.9886 102.1745 z "
   id="path578" />

<g
   id="g3162"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,-49.93925,-69.61939)">
    <path
   style="fill:url(#linearGradient2840);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M 6.8318508,152.48371 L 146.93881,146.61162 L 176.27474,140.97691 L 146.93881,135.47573 L 6.8318508,129.60364 L 6.8318508,152.48371 z "
   id="path3145"
   sodipodi:nodetypes="cccccc"
   transform="matrix(0.443523,0.000000,0.000000,1.000000,20.30177,82.00000)" />




    <path
   style="fill:url(#linearGradient2883);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M 11.171849,130.82818 L 11.642853,132.00569 L 23.535706,136.24473 L 24.285706,139.54175 L 166.85481,140.06153 L 146.58552,136.36248 L 11.171849,130.82818 z "
   id="path3146"
   sodipodi:nodetypes="ccccccc"
   transform="matrix(0.443523,0.000000,0.000000,1.000000,20.30177,82.00000)" />




    <path
   style="fill:url(#linearGradient2885);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M 10.421424,151.46914 L 12.838150,148.28275 L 38.133942,143.88838 L 37.961794,141.12168 L 169.19869,141.13223 L 146.96010,145.43484 L 10.421424,151.46914 z "
   id="path3147"
   sodipodi:nodetypes="ccccccc"
   transform="matrix(0.443523,0.000000,0.000000,1.000000,20.30177,82.00000)" />




    <path
   style="fill:#676767;fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -20.006023,213.01026 C -20.700425,216.26127 -23.887613,217.12580 -24.210547,222.76330 C -23.686250,227.52198 -20.792988,229.09867 -20.144868,232.26635 C -15.504417,231.47346 -8.5143595,228.65759 0.87641127,228.78259 C 4.8387290,228.78259 16.497773,229.80036 20.000000,231.55036 L 19.686044,213.86013 C 15.261376,215.64272 6.4997101,216.71000 0.68005539,216.53323 C -11.881387,215.73145 -15.516122,214.26330 -20.006023,213.01026 z "
   id="path3148"
   sodipodi:nodetypes="cccccccc" />




    <path
   style="fill:url(#linearGradient2929);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -17.916064,222.20525 C -18.122435,216.34215 -18.947918,216.84302 -19.463845,214.16191 C -10.877000,216.36988 -5.5407115,217.53705 -0.071053296,217.60017 C 6.3950201,217.67361 14.690510,216.48947 17.311419,215.84128 L 16.506572,218.58132 L 16.568483,222.20524 C 5.0736346,222.20524 -6.4212148,222.20525 -17.916064,222.20525 z "
   id="path3149"
   sodipodi:nodetypes="ccscccc" />




    <path
   style="fill:url(#linearGradient2921);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -18.003620,223.28691 C -18.209991,229.15001 -19.035474,228.64914 -19.551401,231.33025 C -10.964556,229.12228 -5.6282671,227.95511 -0.15860898,227.89199 C 6.3074644,227.81855 14.602954,229.00269 17.223863,229.65088 L 16.419017,226.91084 L 16.480928,223.28692 C 4.9860789,223.28692 -6.5087705,223.28691 -18.003620,223.28691 z "
   id="path3150"
   sodipodi:nodetypes="ccscccc" />




    <path
   style="fill:url(#radialGradient2930);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -21.584549,222.27145 C -21.138223,218.26379 -20.444251,217.08456 -19.874103,214.49112 C -19.448413,217.24913 -18.651256,218.76971 -18.597034,222.76517 C -18.919539,226.62255 -19.489687,228.18183 -19.936014,230.89017 C -20.485526,228.01726 -21.220772,227.08890 -21.584549,222.27145 z "
   id="path3151"
   sodipodi:nodetypes="ccccc" />




    <path
   style="fill:none;stroke-width:0.0000000;"
   d="M 18.840672,207.82660 C 26.881957,215.62099 27.081497,228.45732 19.287681,236.49801 C 13.274566,242.70160 4.2611390,244.23279 -3.2369380,241.03179 C -3.4282240,241.34083 -3.6094850,241.63296 -3.7086950,241.79445 C 4.3248530,245.26436 13.758916,243.40673 19.865784,237.10642 C 27.982519,228.73258 27.773362,215.31720 19.398929,207.19988 C 13.135343,201.12861 3.6870220,199.54478 -4.2092660,203.20043 C -4.1159500,203.35862 -3.9413780,203.65579 -3.7562590,203.96955 C 3.6277490,200.57062 12.653806,201.82969 18.840374,207.82631 L 18.840672,207.82660 z "
   id="path3152" />




    <g
   id="g3153"
   transform="translate(16.50000,82.00000)">
      <path
   style="fill:url(#linearGradient2858);stroke:#0d0d0d;stroke-width:0.0000000;"
   d="M 22.749298,137.26204 L 22.781812,143.87530 L 10.412035,148.27788 C 9.7678063,150.54765 8.4248173,153.44836 6.8963864,155.44805 L 9.2975563,163.23952 L 5.4261744,167.65155 L -3.0432268,165.18901 C -4.7281759,166.49119 -9.7925774,168.56358 -12.734554,169.14901 L -15.552495,177.14585 L -23.560420,179.37460 L -23.543496,162.45960 C -21.032305,162.38889 -18.219883,162.10785 -15.413465,161.44693 C -12.607047,160.78601 -9.7881700,159.77373 -7.3194595,158.15502 C -3.7274312,155.68095 -0.94416110,152.82671 0.92804030,147.45665 L -0.69267650,144.11107 L -0.83877690,137.42871 L 1.0981625,134.06659 C -1.8928284,127.25305 -2.3718214,126.32732 -7.1270936,122.86405 C -9.4688526,121.13298 -12.367410,120.31467 -15.186823,119.71643 C -18.006237,119.11820 -20.861923,118.90820 -23.464190,118.89821 L -23.481112,101.98321 L -15.473187,104.21197 L -12.655247,112.20880 C -9.7132691,112.79424 -4.6488675,114.86663 -2.9639184,116.16880 L 5.5054806,113.70626 L 9.3768623,118.11830 L 6.9756925,125.90977 C 8.5041233,127.90946 9.8471123,130.81017 10.491341,133.07993 L 22.749298,137.26204 z "
   id="path3154"
   sodipodi:nodetypes="cccccccccccssccccsscccccccccc" />




      <path
   style="fill:url(#linearGradient2884);stroke:#0d0d0d;stroke-width:0.0000000;"
   d="M 21.691342,138.06024 L 21.780828,143.20765 L 9.3970103,147.54423 C 8.4491973,150.60331 7.6577143,152.78047 5.5313886,155.22268 L 8.2190503,163.05720 L 5.2893156,166.52482 L -3.1846853,164.16622 C -4.8696344,165.46840 -10.620898,167.72298 -13.562874,168.30842 L -16.580987,176.62743 L -22.316859,178.03044 L -22.317719,163.80210 C -17.136716,163.59156 -2.3988463,161.97586 1.9920147,147.21901 L 0.34945910,143.87907 L 0.20938380,137.67953 L 2.0696939,134.35977 C -1.9662640,119.20324 -16.735537,117.68732 -22.150304,117.75940 L -22.271162,103.53329 L -16.210992,105.33272 L -13.668722,112.98608 C -10.726744,113.57152 -4.8534026,116.04918 -3.1684535,117.35135 L 5.2331486,114.89481 L 7.9476443,118.32617 L 5.5213236,125.97048 C 7.0497566,127.97017 8.7094363,130.80147 9.7891033,134.13288 L 21.691342,138.06024 z "
   id="path3155"
   sodipodi:nodetypes="ccccccccccccccccccccccccc" />




      <path
   style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient2841);stroke-width:0.60000002;"
   d="M 3.0000000,134.75000 L 3.0000000,146.75000 L 5.7500000,147.31250 L 5.6875000,143.00000 L 8.6875003,146.43750 L 11.312500,145.62500 L 7.0625000,140.75000 L 11.375000,136.06250 L 8.8125003,135.00000 L 5.6875000,138.87500 L 5.7500000,134.12500 L 3.0000000,134.75000 z "
   id="path3156"
   sodipodi:nodetypes="cccccccccccc" />




    </g>




    <path
   style="fill:url(#radialGradient2930);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -23.352316,222.27145 C -22.905990,218.26379 -20.444251,217.08456 -19.874103,214.49112 C -19.448413,217.24913 -18.651256,218.76971 -18.597034,222.76517 C -18.919539,226.62255 -19.489687,228.18183 -19.936014,230.89017 C -20.485526,228.01726 -22.988539,227.08890 -23.352316,222.27145 z "
   id="path3157"
   sodipodi:nodetypes="ccccc" />




    <path
   style="fill:none;stroke-width:0.0000000;"
   d="M 18.840672,207.82660 C 26.881957,215.62099 27.081497,228.45732 19.287681,236.49801 C 13.274566,242.70160 4.2611390,244.23279 -3.2369380,241.03179 C -3.4282240,241.34083 -3.6094850,241.63296 -3.7086950,241.79445 C 4.3248530,245.26436 13.758916,243.40673 19.865784,237.10642 C 27.982519,228.73258 27.773362,215.31720 19.398929,207.19988 C 13.135343,201.12861 3.6870220,199.54478 -4.2092660,203.20043 C -4.1159500,203.35862 -3.9413780,203.65579 -3.7562590,203.96955 C 3.6277490,200.57062 12.653806,201.82969 18.840374,207.82631 L 18.840672,207.82660 z "
   id="path3158" />




  </g>

<g
   id="g3193"
   transform="matrix(0.571544,0,0,0.571544,26.25755,17.95904)">
    <path
   style="fill:#574005;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.25;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
   d="M -25.115115 12.260255 C -26.106486 15.511271 -27.628186 16.375802 -28.089227 22.013303 C -27.340708 26.771976 -26.238635 28.348668 -25.313339 31.516351 C -18.688339 30.723458 7.291107 28.907594 12.947962 28.907594 C 18.604816 28.907594 27 29.050361 32 30.800361 L 31.551777 13.110128 C 25.234842 14.892724 20.601137 15.085003 12.292632 14.908226 C 3.984127 14.731449 -18.955049 12.5133 -25.115115 12.260255 z "
   id="path2886"
   sodipodi:nodetypes="cccccccc" />




    <path
   style="font-size:12;fill:url(#linearGradient2840);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.198004;"
   d="M 35.331851 33.733707 L 175.43881 27.861621 L 191.22323 22.226907 L 175.43881 16.725729 L 35.331851 10.853643 L 35.331851 33.733707 z "
   id="path2880"
   sodipodi:nodetypes="cccccc" />




    <path
   style="font-size:12;fill:none;stroke-width:0;"
   d="M 30.840672 7.076597 C 38.881957 14.870992 39.081497 27.707324 31.287681 35.748012 C 25.274566 41.951597 16.261139 43.482792 8.763062 40.281785 C 8.571776 40.590831 8.390515 40.882962 8.291305 41.044453 C 16.324853 44.514362 25.758916 42.656727 31.865784 36.356421 C 39.982519 27.982584 39.773362 14.5672 31.398929 6.449884 C 25.135343 0.37860796 15.687022 -1.20522 7.790734 2.450425 C 7.88405 2.60862 8.058622 2.905787 8.243741 3.219552 C 15.627749 -0.17937604 24.653806 1.079685 30.840374 7.076309 L 30.840672 7.076597 z "
   id="path1033" />




    <path
   style="font-size:12;fill:url(#linearGradient2858);stroke:#0d0d0d;stroke-width:0.282837;"
   d="M 51.249298 18.51204 L 51.281812 25.125298 L 38.912035 29.527884 C 38.267806 31.797645 36.924817 34.698361 35.396386 36.698054 L 37.797556 44.489518 L 33.926174 48.901551 L 25.456773 46.439012 C 23.771824 47.74119 18.707423 49.813575 15.765446 50.399013 L 12.947505 58.395845 L 4.93958 60.624603 L 4.956504 43.709604 C 15.001269 43.426775 29.865729 39.778473 29.886827 21.914806 C 29.908662 3.428294 15.444876 0.18817096 5.03581 0.14821196 L 5.018888 -16.766788 L 13.026813 -14.538028 L 15.844753 -6.541198 C 18.786731 -5.95576 23.851133 -3.883374 25.536082 -2.581201 L 34.005481 -5.043738 L 37.876863 -0.63170504 L 35.475693 7.159766 C 37.004123 9.159456 38.347112 12.060173 38.991341 14.329934 L 51.249298 18.51204 z "
   id="path2846"
   sodipodi:nodetypes="cccccccccccccccccccccc" />




    <path
   style="font-size:12;fill:url(#linearGradient2884);stroke:#0d0d0d;stroke-width:0.235696;"
   d="M 50.235536 19.575406 L 50.280828 24.457649 L 37.89701 28.794226 C 36.949197 31.85331 36.157714 34.030473 34.031388 36.472684 L 36.719051 44.307202 L 33.789315 47.774821 L 25.315315 45.416217 C 23.630366 46.718395 17.879102 48.972979 14.937126 49.558417 L 11.919013 57.877429 L 6.183141 59.280443 L 6.182281 45.052097 C 11.363284 44.841563 26.101154 43.225858 30.492015 28.469007 L 28.849459 25.129073 L 28.709384 18.929533 L 30.569694 15.609773 C 26.533736 0.45324096 11.764463 -1.062681 6.349696 -0.99060404 L 6.228838 -15.216706 L 12.289008 -13.417281 L 14.831278 -5.763917 C 17.773256 -5.178481 23.646597 -2.70082 25.331547 -1.398646 L 33.733148 -3.855194 L 36.447645 -0.42383304 L 34.021323 7.220481 C 35.549756 9.220171 37.209437 12.051468 38.289103 15.382882 L 50.235536 19.575406 z "
   id="path2851"
   sodipodi:nodetypes="ccccccccccccccccccccccccc" />




    <path
   style="fill:url(#linearGradient2883);fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.2;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
   d="M 39.671849 12.078179 L 40.142853 13.255689 L 52.035706 17.494726 L 52.785706 20.791754 L 185.78904 21.311532 L 175.08552 17.612477 L 39.671849 12.078179 z "
   id="path2881"
   sodipodi:nodetypes="ccccccc" />




    <path
   style="fill:url(#linearGradient2885);fill-rule:evenodd;stroke:#000000;stroke-opacity:1;stroke-width:0.2;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
   d="M 38.921424 32.719136 L 40.142428 30.416626 L 52.285281 26.552589 L 52.910281 23.255561 L 186.53862 22.735783 L 175.4601 26.684838 L 38.921424 32.719136 z "
   id="path2882"
   sodipodi:nodetypes="ccccccc" />




    <path
   style="fill:url(#linearGradient2902);fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.25;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
   d="M -22.131358 21.455245 C -22.425986 15.592151 -23.604497 16.093018 -24.341067 13.411905 C -10.581947 14.619879 1.668407 15.535267 15.345302 15.975167 C 21.82095 16.183448 24.419838 15.739465 28.161612 15.091284 L 27.012563 17.831322 L 27.100952 21.455244 C 10.690182 21.455244 -5.720588 21.455245 -22.131358 21.455245 z "
   id="path2887"
   sodipodi:nodetypes="ccscccc" />




    <path
   style="fill:url(#linearGradient2901);fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.25;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
   d="M -22.219746 22.604292 C -22.514374 28.467386 -23.692885 27.966519 -24.429455 30.647632 C -10.670335 29.439658 1.580019 28.52427 15.256914 28.08437 C 21.732561 27.876089 24.33145 28.320072 28.073223 28.968253 L 26.924175 26.228215 L 27.012563 22.604293 C 10.601794 22.604293 -5.808976 22.604292 -22.219746 22.604292 z "
   id="path2899"
   sodipodi:nodetypes="ccscccc" />




    <path
   style="fill:none;fill-rule:evenodd;stroke:black;stroke-opacity:1;stroke-width:0.25;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:0.75;stroke-dasharray:none;"
   d="M -25.136562 12.528021 L -24.69462 15.356448 L -23.987514 18.361652 L -23.280406 21.808797 L -23.899125 25.344332 L -24.429455 27.995982 L -25.22495 31.531516 L -25.136562 31.619904 "
   id="path2900"
   sodipodi:nodetypes="cccccccc" />




    <path
   style="fill:#454545;fill-rule:evenodd;stroke:url(#linearGradient2907);stroke-opacity:1;stroke-width:0.2;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;stroke-dasharray:none;"
   d="M 31.5 16 L 31.5 28 L 34.25 28.5625 L 34.1875 24.25 L 37.1875 27.6875 L 39.8125 26.875 L 35.5625 22 L 39.875 17.3125 L 37.3125 16.25 L 34.1875 20.125 L 34.25 15.375 L 31.5 16 z "
   id="path2906"
   sodipodi:nodetypes="cccccccccccc" />




  </g>


      <path
   style="font-size:12.000000;fill:url(#linearGradient2840);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M 6.8318508 152.48371 L 146.93881 146.61162 L 162.72323 140.97691 L 146.93881 135.47573 L 6.8318508 129.60364 L 6.8318508 152.48371 z "
   id="path2909"
   sodipodi:nodetypes="cccccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,39.94149,0.822029)" />




      <path
   style="fill:url(#linearGradient2883);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M 11.171849,130.82818 L 11.642853,132.00569 L 23.535706,136.24473 L 24.285706,139.54175 L 158.86775,140.58777 L 146.58552,136.36248 L 11.171849,130.82818 z "
   id="path2913"
   sodipodi:nodetypes="ccccccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,39.94149,0.822029)" />




      <path
   style="fill:url(#linearGradient2983);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M 10.421424,151.46914 L 11.642428,149.16663 L 23.785281,145.30259 L 24.410281,142.00556 L 159.44192,140.95954 L 146.96010,145.43484 L 10.421424,151.46914 z "
   id="path2914"
   sodipodi:nodetypes="ccccccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,39.94149,0.822029)" />




    <path
   style="font-size:12.000000;fill:#676767;fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -68.365115 126.01026 C -69.356486 129.26127 -70.878186 130.1258 -71.339227 135.7633 C -70.590708 140.52198 -69.488635 142.09867 -68.563339 145.26635 C -61.938339 144.47346 -51.958893 141.65759 -38.552038 141.78259 C -32.895184 141.78259 -16.25 142.80036 -11.25 144.55036 L -11.698223 126.86013 C -18.015158 128.64272 -30.523863 129.71 -38.832368 129.53323 C -56.765873 128.73145 -61.955049 127.2633 -68.365115 126.01026 z "
   id="path2908"
   sodipodi:nodetypes="cccccccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   style="font-size:12.000000;fill:url(#linearGradient2929);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -65.381358 135.20525 C -65.675986 129.34215 -66.854497 129.84302 -67.591067 127.16191 C -55.331947 129.36988 -47.713526 130.53705 -39.904698 130.60017 C -30.673325 130.67361 -18.830162 129.48947 -15.088388 128.84128 L -16.237437 131.58132 L -16.149049 135.20524 C -32.559818 135.20524 -48.970588 135.20525 -65.381358 135.20525 z "
   id="path2915"
   sodipodi:nodetypes="ccscccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   style="font-size:12.000000;fill:url(#linearGradient2921);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -65.506358 136.28691 C -65.800986 142.15001 -66.979497 141.64914 -67.716067 144.33025 C -55.456947 142.12228 -47.838526 140.95511 -40.029698 140.89199 C -30.798325 140.81855 -18.955162 142.00269 -15.213388 142.65088 L -16.362437 139.91084 L -16.274049 136.28692 C -32.684818 136.28692 -49.095588 136.28691 -65.506358 136.28691 z "
   id="path2920"
   sodipodi:nodetypes="ccscccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   style="font-size:12.000000;fill:url(#radialGradient2930);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -70.618718 135.27145 C -69.981515 131.26379 -68.990757 130.08456 -68.176777 127.49112 C -67.569036 130.24913 -66.430964 131.76971 -66.353553 135.76517 C -66.813981 139.62255 -67.627961 141.18183 -68.265165 143.89017 C -69.049683 141.01726 -70.099366 140.0889 -70.618718 135.27145 z "
   id="path2928"
   sodipodi:nodetypes="ccccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />


  


  


  


  


  


  
    


    


    


    


    


    


    
      


      


      


    


    


    


  


<path
   style="fill:url(#linearGradient3127);stroke:#0d0d0d;stroke-width:0.0000000;"
   d="M -54.452098,42.652777 L -54.420848,52.309027 C -52.933534,52.314737 -51.313518,52.435862 -49.702098,52.777777 C -48.090680,53.119697 -46.446766,53.569645 -45.108348,54.559027 C -42.390502,56.538438 -42.099081,57.071040 -40.389598,60.965277 L -41.514598,62.902777 L -41.420848,66.715277 L -40.483348,68.621527 C -41.553394,71.690753 -43.149096,73.332485 -45.202098,74.746527 C -46.613075,75.671691 -48.223105,76.243781 -49.827098,76.621527 C -51.431090,76.999272 -53.048092,77.174866 -54.483348,77.215277 L -54.483348,86.871527 L -49.920848,85.590277 L -48.295848,81.027777 C -46.614380,80.693178 -43.727621,79.522028 -42.764598,78.777777 L -37.920848,80.184027 L -35.702098,77.652777 L -37.077098,73.184027 C -36.203534,72.041116 -35.445303,70.387553 -35.077098,69.090277 L -28.014598,66.590277 L -28.014598,62.809027 L -35.014598,60.402777 C -35.382804,59.105509 -36.172283,57.451936 -37.045848,56.309027 L -35.670848,51.871527 L -37.889598,49.340277 L -42.702098,50.746527 C -43.665122,50.002280 -46.583129,48.831131 -48.264598,48.496527 L -49.858348,43.902777 L -54.452098,42.652777 z "
   id="path2344"
   transform="translate(81.30761,16.54224)" />

<path
   sodipodi:type="inkscape:offset"
   inkscape:radius="-0.56522751"
   inkscape:original="M -54.437500 42.656250 L -54.406250 52.312500 C -52.918935 52.318208 -51.298920 52.439335 -49.687500 52.781250 C -48.076081 53.123168 -46.432168 53.573118 -45.093750 54.562500 C -42.375903 56.541909 -42.084483 57.074513 -40.375000 60.968750 L -41.500000 62.906250 L -41.406250 66.718750 L -40.468750 68.625000 C -41.538795 71.694224 -43.134498 73.335958 -45.187500 74.750000 C -46.598476 75.675162 -48.208507 76.247254 -49.812500 76.625000 C -51.416491 77.002743 -53.033494 77.178339 -54.468750 77.218750 L -54.468750 86.875000 L -49.906250 85.593750 L -48.281250 81.031250 C -46.599781 80.696649 -43.713023 79.525501 -42.750000 78.781250 L -37.906250 80.187500 L -35.687500 77.656250 L -37.062500 73.187500 C -36.188935 72.044587 -35.430705 70.391026 -35.062500 69.093750 L -28.000000 66.593750 L -28.000000 62.812500 L -35.000000 60.406250 C -35.368205 59.108980 -36.157685 57.455409 -37.031250 56.312500 L -35.656250 51.875000 L -37.875000 49.343750 L -42.687500 50.750000 C -43.650523 50.005751 -46.568531 48.834604 -48.250000 48.500000 L -49.843750 43.906250 L -54.437500 42.656250 z "
   inkscape:href="path2344"
   style="fill:url(#linearGradient3128);stroke:#0d0d0d;stroke-width:0.0000000;"
   id="path2353"
   d="M -53.875000,43.375000 L -53.843750,51.812500 C -52.476357,51.843063 -51.029592,51.907459 -49.562500,52.218750 C -47.928943,52.565365 -46.200452,53.021551 -44.750000,54.093750 C -42.008693,56.090245 -41.555112,56.851483 -39.843750,60.750000 C -39.775713,60.912435 -39.787267,61.097300 -39.875000,61.250000 L -40.937500,63.062500 L -40.843750,66.593750 L -39.968750,68.375000 C -39.899874,68.510684 -39.888609,68.668405 -39.937500,68.812500 C -41.044423,71.987502 -42.766363,73.766388 -44.875000,75.218750 C -46.361506,76.193436 -48.041709,76.799911 -49.687500,77.187500 C -51.151751,77.532334 -52.566867,77.653888 -53.906250,77.718750 L -53.906250,86.156250 L -50.343750,85.156250 L -48.812500,80.843750 C -48.751619,80.656539 -48.597726,80.514484 -48.406250,80.468750 C -47.628593,80.314001 -46.496029,79.948745 -45.468750,79.531250 C -44.441471,79.113755 -43.472547,78.636495 -43.093750,78.343750 C -42.951355,78.235035 -42.765856,78.200254 -42.593750,78.250000 L -38.125000,79.562500 L -36.312500,77.500000 L -37.593750,73.343750 C -37.643496,73.171644 -37.608715,72.986145 -37.500000,72.843750 C -36.690339,71.784444 -35.940750,70.160067 -35.593750,68.937500 C -35.545063,68.765091 -35.417533,68.625967 -35.250000,68.562500 L -28.562500,66.187500 L -28.562500,63.218750 L -35.187500,60.937500 C -35.355033,60.874033 -35.482563,60.734909 -35.531250,60.562500 C -35.875957,59.348020 -36.655141,57.720717 -37.468750,56.656250 C -37.577465,56.513855 -37.612246,56.328356 -37.562500,56.156250 L -36.281250,52.031250 L -38.093750,49.968750 L -42.531250,51.281250 C -42.703356,51.330996 -42.888855,51.296215 -43.031250,51.187500 C -43.407706,50.896565 -44.370975,50.417643 -45.406250,50.000000 C -46.441525,49.582357 -47.596685,49.217381 -48.375000,49.062500 C -48.566476,49.016766 -48.720369,48.874711 -48.781250,48.687500 L -50.281250,44.375000 L -53.875000,43.375000 z "
   transform="translate(81.30760,16.56767)" />

<path
   style="font-size:12.000000;fill:none;stroke-width:0.0000000;"
   d="M -12.409328 120.8266 C -4.368043 128.62099 -4.168503 141.45732 -11.962319 149.49801 C -17.975434 155.7016 -26.988861 157.23279 -34.486938 154.03179 C -34.678224 154.34083 -34.859485 154.63296 -34.958695 154.79445 C -26.925147 158.26436 -17.491084 156.40673 -11.384216 150.10642 C -3.267481 141.73258 -3.476638 128.3172 -11.851071 120.19988 C -18.114657 114.12861 -27.562978 112.54478 -35.459266 116.20043 C -35.36595 116.35862 -35.191378 116.65579 -35.006259 116.96955 C -27.622251 113.57062 -18.596194 114.82969 -12.409626 120.82631 L -12.409328 120.8266 z "
   id="path2910"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   style="fill:url(#linearGradient3127);stroke:#0d0d0d;stroke-width:0.0000000;"
   d="M 164.06690,27.804225 L 164.08548,31.583994 L 157.01561,34.100262 C 156.64740,35.397535 155.87983,37.055419 155.00626,38.198329 L 156.37863,42.651497 L 154.16597,45.173167 L 149.32533,43.765717 C 148.36231,44.509970 145.46778,45.694432 143.78631,46.029031 L 142.17574,50.599577 L 137.59886,51.873406 L 137.60853,42.205739 C 139.04378,42.165325 140.65121,42.004698 142.25520,41.626953 C 143.85919,41.249208 145.47030,40.670646 146.88128,39.745482 C 148.93428,38.331442 150.52504,36.700118 151.59509,33.630893 L 150.66878,31.718747 L 150.58527,27.899484 L 151.69232,25.977884 C 149.98284,22.083646 149.70907,21.554551 146.99122,19.575140 C 145.65281,18.585757 143.99615,18.118057 142.38473,17.776136 C 140.77332,17.434222 139.14117,17.314197 137.65386,17.308488 L 137.64418,7.6408212 L 142.22107,8.9146552 L 143.83164,13.485196 C 145.51311,13.819800 148.40764,15.004262 149.37066,15.748510 L 154.21130,14.341060 L 156.42396,16.862735 L 155.05159,21.315903 C 155.92515,22.458814 156.69273,24.116697 157.06094,25.413965 L 164.06690,27.804225 z "
   id="path2911"
   sodipodi:nodetypes="cccccccccccssccccsscccccccccc" />

<path
   style="fill:url(#linearGradient2919);stroke:#0d0d0d;stroke-width:0.0000000;"
   d="M 163.46223,28.260431 L 163.51337,31.202402 L 156.43548,33.680948 C 155.89376,35.429347 155.44139,36.673690 154.22610,38.069520 L 155.76222,42.547293 L 154.08775,44.529191 L 149.24448,43.181147 C 148.28146,43.925400 144.99436,45.213992 143.31289,45.548597 L 141.58791,50.303280 L 138.30961,51.105160 L 138.30911,42.973036 C 141.27028,42.852704 149.69363,41.929260 152.20320,33.495071 L 151.26440,31.586148 L 151.18434,28.042838 L 152.24759,26.145449 C 149.94087,17.482826 141.49958,16.616411 138.40480,16.657608 L 138.33572,8.5267602 L 141.79938,9.5552132 L 143.25240,13.929445 C 144.93387,14.264050 148.29074,15.680142 149.25376,16.424389 L 154.05565,15.020368 L 155.60710,16.981542 L 154.22035,21.350601 C 155.09392,22.493512 156.04250,24.111724 156.65958,26.015772 L 163.46223,28.260431 z "
   id="path2912"
   sodipodi:nodetypes="ccccccccccccccccccccccccc" />

<path
   style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient2841);stroke-width:0.34292641;"
   d="M 41.856634,77.837583 L 41.856634,84.696111 L 43.428380,85.017605 L 43.392658,82.552821 L 45.107291,84.517504 L 46.607593,84.053124 L 44.178531,81.266847 L 46.643315,78.587735 L 45.178734,77.980469 L 43.392658,80.195202 L 43.428380,77.480368 L 41.856634,77.837583 z "
   id="path2918"
   sodipodi:nodetypes="cccccccccccc" />

<path
   style="font-size:12.000000;fill:url(#radialGradient2930);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   d="M -70.618718 135.27145 C -69.981515 131.26379 -68.990757 130.08456 -68.176777 127.49112 C -67.569036 130.24913 -66.430964 131.76971 -66.353553 135.76517 C -66.813981 139.62255 -67.627961 141.18183 -68.265165 143.89017 C -69.049683 141.01726 -70.099366 140.0889 -70.618718 135.27145 z "
   id="path3012"
   sodipodi:nodetypes="ccccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   style="font-size:12.000000;fill:none;stroke-width:0.0000000;"
   d="M -12.409328 120.8266 C -4.368043 128.62099 -4.168503 141.45732 -11.962319 149.49801 C -17.975434 155.7016 -26.988861 157.23279 -34.486938 154.03179 C -34.678224 154.34083 -34.859485 154.63296 -34.958695 154.79445 C -26.925147 158.26436 -17.491084 156.40673 -11.384216 150.10642 C -3.267481 141.73258 -3.476638 128.3172 -11.851071 120.19988 C -18.114657 114.12861 -27.562978 112.54478 -35.459266 116.20043 C -35.36595 116.35862 -35.191378 116.65579 -35.006259 116.96955 C -27.622251 113.57062 -18.596194 114.82969 -12.409626 120.82631 L -12.409328 120.8266 z "
   id="path3013"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   sodipodi:type="inkscape:offset"
   inkscape:radius="-0.56522751"
   inkscape:original="M -54.437500 42.656250 L -54.406250 52.312500 C -52.918935 52.318208 -51.298920 52.439335 -49.687500 52.781250 C -48.076081 53.123168 -46.432168 53.573118 -45.093750 54.562500 C -42.375903 56.541909 -42.084483 57.074513 -40.375000 60.968750 L -41.500000 62.906250 L -41.406250 66.718750 L -40.468750 68.625000 C -41.538795 71.694224 -43.134498 73.335958 -45.187500 74.750000 C -46.598476 75.675162 -48.208507 76.247254 -49.812500 76.625000 C -51.416491 77.002743 -53.033494 77.178339 -54.468750 77.218750 L -54.468750 86.875000 L -49.906250 85.593750 L -48.281250 81.031250 C -46.599781 80.696649 -43.713023 79.525501 -42.750000 78.781250 L -37.906250 80.187500 L -35.687500 77.656250 L -37.062500 73.187500 C -36.188935 72.044587 -35.430705 70.391026 -35.062500 69.093750 L -28.000000 66.593750 L -28.000000 62.812500 L -35.000000 60.406250 C -35.368205 59.108980 -36.157685 57.455409 -37.031250 56.312500 L -35.656250 51.875000 L -37.875000 49.343750 L -42.687500 50.750000 C -43.650523 50.005751 -46.568531 48.834604 -48.250000 48.500000 L -49.843750 43.906250 L -54.437500 42.656250 z "
   inkscape:href="path2344"
   style="fill:url(#linearGradient3009);stroke:#0d0d0d;stroke-width:0.0000000;opacity:0.17297297;"
   id="path3014"
   d="M -53.875000,43.375000 L -53.843750,51.812500 C -52.476357,51.843063 -51.029592,51.907459 -49.562500,52.218750 C -47.928943,52.565365 -46.200452,53.021551 -44.750000,54.093750 C -42.008693,56.090245 -41.555112,56.851483 -39.843750,60.750000 C -39.775713,60.912435 -39.787267,61.097300 -39.875000,61.250000 L -40.937500,63.062500 L -40.843750,66.593750 L -39.968750,68.375000 C -39.899874,68.510684 -39.888609,68.668405 -39.937500,68.812500 C -41.044423,71.987502 -42.766363,73.766388 -44.875000,75.218750 C -46.361506,76.193436 -48.041709,76.799911 -49.687500,77.187500 C -51.151751,77.532334 -52.566867,77.653888 -53.906250,77.718750 L -53.906250,86.156250 L -50.343750,85.156250 L -48.812500,80.843750 C -48.751619,80.656539 -48.597726,80.514484 -48.406250,80.468750 C -47.628593,80.314001 -46.496029,79.948745 -45.468750,79.531250 C -44.441471,79.113755 -43.472547,78.636495 -43.093750,78.343750 C -42.951355,78.235035 -42.765856,78.200254 -42.593750,78.250000 L -38.125000,79.562500 L -36.312500,77.500000 L -37.593750,73.343750 C -37.643496,73.171644 -37.608715,72.986145 -37.500000,72.843750 C -36.690339,71.784444 -35.940750,70.160067 -35.593750,68.937500 C -35.545063,68.765091 -35.417533,68.625967 -35.250000,68.562500 L -28.562500,66.187500 L -28.562500,63.218750 L -35.187500,60.937500 C -35.355033,60.874033 -35.482563,60.734909 -35.531250,60.562500 C -35.875957,59.348020 -36.655141,57.720717 -37.468750,56.656250 C -37.577465,56.513855 -37.612246,56.328356 -37.562500,56.156250 L -36.281250,52.031250 L -38.093750,49.968750 L -42.531250,51.281250 C -42.703356,51.330996 -42.888855,51.296215 -43.031250,51.187500 C -43.407706,50.896565 -44.370975,50.417643 -45.406250,50.000000 C -46.441525,49.582357 -47.596685,49.217381 -48.375000,49.062500 C -48.566476,49.016766 -48.720369,48.874711 -48.781250,48.687500 L -50.281250,44.375000 L -53.875000,43.375000 z "
   transform="translate(81.31000,16.42433)" />

<path
   style="font-size:12.000000;fill:url(#linearGradient3614);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;opacity:0.24864865;"
   d="M -65.381358 135.20525 C -65.675986 129.34215 -66.854497 129.84302 -67.591067 127.16191 C -55.331947 129.36988 -47.713526 130.53705 -39.904698 130.60017 C -30.673325 130.67361 -18.830162 129.48947 -15.088388 128.84128 L -16.237437 131.58132 L -16.149049 135.20524 C -32.559818 135.20524 -48.970588 135.20525 -65.381358 135.20525 z "
   id="path3613"
   sodipodi:nodetypes="ccscccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<path
   style="font-size:12.000000;fill:url(#linearGradient3616);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;opacity:0.20000000;"
   d="M -65.506358 136.28691 C -65.800986 142.15001 -66.979497 141.64914 -67.716067 144.33025 C -55.456947 142.12228 -47.838526 140.95511 -40.029698 140.89199 C -30.798325 140.81855 -18.955162 142.00269 -15.213388 142.65088 L -16.362437 139.91084 L -16.274049 136.28692 C -32.684818 136.28692 -49.095588 136.28691 -65.506358 136.28691 z "
   id="path3615"
   sodipodi:nodetypes="ccscccc"
   transform="matrix(0.571544,0.000000,0.000000,0.571544,48.37176,3.679749)" />

<rect
   width="169.56570"
   height="84.472229"
   ry="4.0219078"
   x="-22.965296"
   y="112.53943"
   style="font-size:12.000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.50800002;"
   id="rect1068"
   rx="4.0219078" />

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
    <text
   id="text854"
   transform="scale(0.924295,0.924295)"
   x="-151.74109"
   y="59.269714" />

    <rect
   width="68.223778"
   height="13.633065"
   rx="5.3597374"
   ry="3.9103417"
   x="72.792801"
   y="105.70743"
   style="fill:url(#linearGradient2669);fill-rule:evenodd;stroke:#000000;stroke-width:0.25227949;"
   id="rect1066" />

    <text
   id="text856"
   transform="scale(0.924295,0.924295)"
   x="-151.74109"
   y="59.269714" />

    <g
   transform="matrix(0.289581,0.000000,0.000000,0.289581,137.2812,183.9399)"
   id="g1103">
      <text
   id="text858" />

      <text
   x="-211.79260"
   y="-269.36719"
   style="font-size:36.000000;fill:#9d9d9d;font-family:PostAntiqua;"
   id="text1074">
        <tspan
   x="-211.79260"
   y="-233.36720"
   id="tspan1083">KIO-SWORD</tspan>
      </text>

      <text
   id="text864" />

      <text
   x="-209.93480"
   y="-270.89661"
   style="font-size:36.000000;font-family:PostAntiqua;"
   id="text1094">
        <tspan
   x="-209.93480"
   y="-234.89661"
   id="tspan1095">KIO-SWORD</tspan>
      </text>

      <text
   id="text870" />

    </g>

    <text
   id="text871"
   transform="scale(0.924295,0.924295)"
   x="-151.74109"
   y="59.269714" />

  
  
  
  
  

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  <g
   transform="translate(79.08239,-108.1777)"
   style="font-size:12.000000;"
   id="g1653">
    <text
   id="text880" />

    <path
   d="M 82.098340,196.82230 L 109.00400,194.67480 L 113.94060,192.37500 L 108.11510,190.12580 L 82.098340,188.13990 L 82.098340,196.82230 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#linearGradient2840);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path974" />

    <text
   id="text882" />

    <path
   d="M 82.966820,188.60460 L 83.061070,189.05150 L 85.440980,190.66010 L 85.591060,191.91120 L 112.20660,192.10840 L 107.64030,190.62390 L 82.966820,188.60460 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#linearGradient2883);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path976" />

    <text
   id="text884" />

    <path
   d="M 82.816650,196.43730 L 83.061000,195.56360 L 85.490920,194.09730 L 85.615990,192.84610 L 112.59900,192.56810 L 108.92750,194.14750 L 82.816650,196.43730 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#linearGradient2885);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path978" />

    <text
   id="text886" />

    <path
   d="M 59.160260,188.67370 C 58.784060,189.90740 58.206620,190.23550 58.031670,192.37470 C 58.315710,194.18050 58.733920,194.77890 59.085040,195.98090 C 61.599060,195.68000 65.386000,194.61150 70.473550,194.65890 C 72.620180,194.65890 78.936600,195.04510 80.833970,195.70920 L 80.663880,188.99620 C 78.266770,189.67270 73.520040,190.07770 70.367170,190.01060 C 63.561870,189.70630 61.592720,189.14920 59.160260,188.67370 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:#676767;fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path981" />

    <text
   id="text888" />

    <path
   d="M 60.292520,192.16300 C 60.180720,189.93810 59.733500,190.12820 59.453990,189.11070 C 64.106010,189.94860 66.997010,190.39150 69.960250,190.41550 C 73.463320,190.44330 77.957490,189.99400 79.377400,189.74800 L 78.941360,190.78780 L 78.974910,192.16300 C 72.747440,192.16300 66.519980,192.16300 60.292520,192.16300 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#linearGradient2929);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path983" />

    <text
   id="text890" />

    <path
   d="M 60.245090,192.57340 C 60.133280,194.79830 59.686070,194.60830 59.406560,195.62570 C 64.058580,194.78780 66.949570,194.34490 69.912820,194.32090 C 73.415890,194.29310 77.910060,194.74240 79.329960,194.98840 L 78.893930,193.94860 L 78.927470,192.57340 C 72.700010,192.57340 66.472550,192.57340 60.245090,192.57340 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#linearGradient2921);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path985" />

    <text
   id="text892" />

    <path
   d="M 58.305080,192.18810 C 58.546880,190.66730 58.922850,190.21980 59.231730,189.23570 C 59.462350,190.28230 59.894220,190.85930 59.923600,192.37550 C 59.748880,193.83920 59.439990,194.43090 59.198190,195.45870 C 58.900490,194.36850 58.502160,194.01620 58.305080,192.18810 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#radialGradient2930);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path987" />

    <text
   id="text894" />

    <path
   d="M 80.394030,186.70670 C 83.445490,189.66440 83.521210,194.53550 80.563660,197.58670 C 78.281840,199.94080 74.861480,200.52190 72.016150,199.30720 C 71.943560,199.42440 71.874780,199.53530 71.837130,199.59660 C 74.885660,200.91330 78.465640,200.20840 80.783040,197.81760 C 83.863130,194.63990 83.783760,189.54910 80.605880,186.46880 C 78.229010,184.16490 74.643620,183.56390 71.647180,184.95110 C 71.682590,185.01120 71.748840,185.12390 71.819080,185.24300 C 74.621120,183.95320 78.046280,184.43100 80.393920,186.70650 L 80.394030,186.70670 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:none;stroke-width:0.0000000;"
   id="path989" />

    <text
   id="text896" />

    <g
   transform="matrix(0.272635,-0.263953,0.263953,0.272635,59.20284,155.8451)"
   id="g991">
      <text
   id="text898" />

      <path
   d="M 22.749300,137.26200 L 22.781810,143.87530 L 10.412030,148.27790 C 9.7678060,150.54770 8.4248170,153.44840 6.8963860,155.44800 L 9.2975560,163.23950 L 5.4261740,167.65150 L -3.0432270,165.18900 C -4.7281760,166.49120 -9.7925770,168.56360 -12.734550,169.14900 L -15.552500,177.14580 L -23.560420,179.37460 L -23.543500,162.45960 C -21.032310,162.38890 -18.219880,162.10790 -15.413470,161.44690 C -12.607050,160.78600 -9.7881700,159.77370 -7.3194590,158.15500 C -3.7274310,155.68090 -0.94416100,152.82670 0.92804000,147.45660 L -0.69267600,144.11110 L -0.83877700,137.42870 L 1.0981620,134.06660 C -1.8928280,127.25310 -2.3718210,126.32730 -7.1270940,122.86410 C -9.4688530,121.13300 -12.367410,120.31470 -15.186820,119.71640 C -18.006240,119.11820 -20.861920,118.90820 -23.464190,118.89820 L -23.481110,101.98320 L -15.473190,104.21200 L -12.655250,112.20880 C -9.7132690,112.79420 -4.6488670,114.86660 -2.9639180,116.16880 L 5.5054810,113.70630 L 9.3768620,118.11830 L 6.9756930,125.90980 C 8.5041230,127.90950 9.8471120,130.81020 10.491340,133.07990 L 22.749300,137.26200 z "
   style="fill:url(#linearGradient2858);stroke:#0d0d0d;stroke-width:0.0000000;"
   id="path993" />

      <text
   id="text900" />

      <path
   d="M 21.691340,138.06020 L 21.780830,143.20770 L 9.3970100,147.54420 C 8.4491970,150.60330 7.6577140,152.78050 5.5313890,155.22270 L 8.2190500,163.05720 L 5.2893160,166.52480 L -3.1846850,164.16620 C -4.8696340,165.46840 -10.620900,167.72300 -13.562870,168.30840 L -16.580990,176.62740 L -22.316860,178.03040 L -22.317720,163.80210 C -17.136720,163.59160 -2.3988460,161.97590 1.9920150,147.21900 L 0.34945900,143.87910 L 0.20938400,137.67950 L 2.0696940,134.35980 C -1.9662640,119.20320 -16.735540,117.68730 -22.150300,117.75940 L -22.271160,103.53330 L -16.210990,105.33270 L -13.668720,112.98610 C -10.726740,113.57150 -4.8534030,116.04920 -3.1684540,117.35130 L 5.2331490,114.89480 L 7.9476440,118.32620 L 5.5213240,125.97050 C 7.0497570,127.97020 8.7094360,130.80150 9.7891030,134.13290 L 21.691340,138.06020 z "
   style="fill:url(#linearGradient2884);stroke:#0d0d0d;stroke-width:0.0000000;"
   id="path995" />

      <text
   id="text902" />

      <path
   d="M 3.0000000,134.75000 L 3.0000000,146.75000 L 5.7500000,147.31250 L 5.6875000,143.00000 L 8.6875000,146.43750 L 11.312500,145.62500 L 7.0625000,140.75000 L 11.375000,136.06250 L 8.8125000,135.00000 L 5.6875000,138.87500 L 5.7500000,134.12500 L 3.0000000,134.75000 z "
   style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient2841);stroke-width:0.60000002;"
   id="path997" />

      <text
   id="text904" />

    </g>

    <text
   id="text905" />

    <path
   d="M 58.305080,192.18810 C 58.546880,190.66730 58.922850,190.21980 59.231730,189.23570 C 59.462350,190.28230 59.894220,190.85930 59.923600,192.37550 C 59.748880,193.83920 59.439990,194.43090 59.198190,195.45870 C 58.900490,194.36850 58.502160,194.01620 58.305080,192.18810 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:url(#radialGradient2930);fill-rule:evenodd;stroke:#000000;stroke-width:0.0000000;"
   id="path1000" />

    <text
   id="text907" />

    <path
   d="M 80.394030,186.70670 C 83.445490,189.66440 83.521210,194.53550 80.563660,197.58670 C 78.281840,199.94080 74.861480,200.52190 72.016150,199.30720 C 71.943560,199.42440 71.874780,199.53530 71.837130,199.59660 C 74.885660,200.91330 78.465640,200.20840 80.783040,197.81760 C 83.863130,194.63990 83.783760,189.54910 80.605880,186.46880 C 78.229010,184.16490 74.643620,183.56390 71.647180,184.95110 C 71.682590,185.01120 71.748840,185.12390 71.819080,185.24300 C 74.621120,183.95320 78.046280,184.43100 80.393920,186.70650 L 80.394030,186.70670 z "
   transform="matrix(0.718454,-0.695575,0.695575,0.718454,-94.57463,111.3119)"
   style="fill:none;stroke-width:0.0000000;"
   id="path1002" />

    <text
   id="text909" />

  </g>

</svg>