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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
version="1.0"
width="750"
height="625"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
sodipodi:docname="about.fr.0.46.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
style="display:inline;enable-background:new"
inkscape:export-filename="/home/needcoffee/Desktop/Inkscape_About_Screen_046.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90">
<sodipodi:namedview
inkscape:window-height="821"
inkscape:window-width="1430"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="false"
inkscape:showpageshadow="false"
inkscape:zoom="0.9488"
inkscape:cx="375"
inkscape:cy="312.5"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="layer4"
showguides="false"
inkscape:guide-bbox="true"
borderlayer="false"
showborder="false">
<sodipodi:guide
id="guide5798"
position="268,300"
orientation="0,1" />
<sodipodi:guide
id="guide5870"
position="100,309"
orientation="1,0" />
<sodipodi:guide
id="guide5872"
position="650,364"
orientation="1,0" />
</sodipodi:namedview>
<metadata
id="metadata51">
<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>Inkscape About Screen (0.46)</dc:title>
<dc:date>2008-01-01</dc:date>
<dc:creator>
<cc:Agent>
<dc:title>Sebastian Kraft</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>About Screen for Inkscape Version 0.46</dc:description>
<dc:subject>
<rdf:Bag>
<rdf:li>inkscape</rdf:li>
<rdf:li>about</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:contributor>
<cc:Agent>
<dc:title>Sebastian Kraft (needcoffee.deviantart.com, eska-art.de)
Felipe Sanches (adapted to french based on Sophie Gousset's advice)</dc:title>
</cc:Agent>
</dc:contributor>
<dc:rights>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:rights>
<dc:publisher>
<cc:Agent>
<dc:title />
</cc:Agent>
</dc:publisher>
<dc:identifier />
<dc:source />
<dc:relation />
<dc:language />
<dc:coverage />
<cc:license
rdf:resource="http://creativecommons.org/licenses/by/3.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by/3.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs4">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 312.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="750 : 312.5 : 1"
inkscape:persp3d-origin="375 : 208.33333 : 1"
id="perspective3232" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 312.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="750 : 312.5 : 1"
inkscape:persp3d-origin="375 : 208.33333 : 1"
id="perspective4887" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 312.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="750 : 312.5 : 1"
inkscape:persp3d-origin="375 : 208.33333 : 1"
id="perspective5089" />
<linearGradient
inkscape:collect="always"
id="linearGradient8936">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop8938" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop8940" />
</linearGradient>
<linearGradient
id="linearGradient8884">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop8886" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop8888" />
</linearGradient>
<pattern
inkscape:collect="always"
xlink:href="#Checkerboardwhite"
id="pattern8803"
patternTransform="matrix(10,0,0,10,0,490)" />
<pattern
inkscape:stockid="Checkerboard white"
id="Checkerboardwhite"
patternTransform="translate(0,0) scale(10,10)"
height="2"
width="2"
patternUnits="userSpaceOnUse"
inkscape:collect="always">
<rect
id="rect8135"
height="1"
width="1"
y="0"
x="0"
style="fill:white;stroke:none" />
<rect
id="rect8137"
height="1"
width="1"
y="1"
x="1"
style="fill:white;stroke:none" />
</pattern>
<linearGradient
inkscape:collect="always"
id="linearGradient6921">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6923" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6925" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6913">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6915" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6917" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6899">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6901" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6903" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6877">
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0"
id="stop6879" />
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="1"
id="stop6881" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6869">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6871" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6873" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6850">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6852" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6854" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6842">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop6844" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop6846" />
</linearGradient>
<pattern
inkscape:collect="always"
xlink:href="#Strips1_1white"
id="pattern23741"
patternTransform="scale(10,10)" />
<pattern
inkscape:stockid="Stripes 1:1 white"
id="Strips1_1white"
patternTransform="matrix(10,0,0,10,0,-272.82958)"
height="1"
width="2"
patternUnits="userSpaceOnUse"
inkscape:collect="always">
<rect
id="rect7002"
height="2"
width="1"
y="-0.5"
x="0"
style="fill:white;stroke:none" />
</pattern>
<linearGradient
id="linearGradient7338">
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="0"
id="stop7340" />
<stop
id="stop7342"
offset="0.5"
style="stop-color:#ffffff;stop-opacity:1" />
<stop
style="stop-color:#ffffff;stop-opacity:0"
offset="1"
id="stop7344" />
</linearGradient>
<linearGradient
id="linearGradient8515">
<stop
id="stop8517"
offset="0"
style="stop-color:#ffffff;stop-opacity:0.29411766;" />
<stop
style="stop-color:#ffffff;stop-opacity:0.78431374;"
offset="0.5"
id="stop8523" />
<stop
id="stop8519"
offset="1"
style="stop-color:#ffffff;stop-opacity:0.29411766;" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter25331"
x="-0.65892518"
width="2.3178504"
y="-0.44495156"
height="1.8899031"
inkscape:label="dq-sh">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="9.5533439"
id="feGaussianBlur25333" />
</filter>
<filter
id="filter6216"
inkscape:collect="always"
inkscape:label="creds-drop">
<feGaussianBlur
id="feGaussianBlur6218"
stdDeviation="2.2456625"
inkscape:collect="always" />
</filter>
<linearGradient
y2="1504.0625"
x2="550.3125"
y1="1504.0625"
x1="592.25"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9453-567-523-272"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
id="linearGradient9386-244-698-839"
inkscape:collect="always">
<stop
id="stop36846"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop36848"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="1565.6562"
x2="279.71875"
y1="1565.6562"
x1="198"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9455-336-611-915"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1719.4375"
x2="100.375"
y1="1719.4375"
x1="368.375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9457-852-515-806"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1623.0312"
x2="333.21875"
y1="1623.0312"
x1="210.625"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9459-531-537-829"
xlink:href="#linearGradient9323-557-502-59"
inkscape:collect="always" />
<linearGradient
id="linearGradient9323-557-502-59"
inkscape:collect="always">
<stop
id="stop36864"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop36866"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="1622.0625"
x2="183.8125"
y1="1622.0625"
x1="108.125"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9461-884-586-981"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1625.1562"
x2="550.3125"
y1="1625.1562"
x1="630.34375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9463-252-598-193"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1466.0625"
x2="432.6875"
y1="1466.0625"
x1="516.53125"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9465-843-430-72"
xlink:href="#linearGradient9378-679-445-64"
inkscape:collect="always" />
<linearGradient
id="linearGradient9378-679-445-64"
inkscape:collect="always">
<stop
id="stop36882"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop36884"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
y2="1574"
x2="448.125"
y1="1425.5625"
x1="310.9375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9467-730-19-399"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<linearGradient
y2="1466.0625"
x2="649.625"
y1="1466.0625"
x1="368.375"
gradientTransform="translate(0,-292)"
gradientUnits="userSpaceOnUse"
id="linearGradient9469-20-629-775"
xlink:href="#linearGradient9386-244-698-839"
inkscape:collect="always" />
<pattern
patternTransform="scale(9.9999997,9.9999998)"
id="pattern9264-966-660-585"
xlink:href="#Checkerboardwhite-626-461-583"
inkscape:collect="always" />
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="2"
height="2"
patternTransform="translate(0,0) scale(10,10)"
id="Checkerboardwhite-626-461-583"
inkscape:stockid="Checkerboard white">
<rect
style="fill:#ffffff;stroke:none"
x="0"
y="0"
width="1"
height="1"
id="rect36900" />
<rect
style="fill:#ffffff;stroke:none"
x="1"
y="1"
width="1"
height="1"
id="rect36902" />
</pattern>
<linearGradient
gradientTransform="matrix(1,0,0,1.75,0,-476.25)"
gradientUnits="userSpaceOnUse"
y2="615"
x2="760"
y1="615"
x1="-10"
id="linearGradient28723-447-575-131"
xlink:href="#linearGradient28717-645-494-124"
inkscape:collect="always" />
<linearGradient
id="linearGradient28717-645-494-124">
<stop
id="stop36970"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#1e1e1e;stop-opacity:1;"
offset="0.5"
id="stop36972" />
<stop
id="stop36974"
offset="1"
style="stop-color:#000000;stop-opacity:1;" />
</linearGradient>
<filter
inkscape:collect="always"
id="filter40387"
inkscape:label="dq-tex-blend">
<feBlend
inkscape:collect="always"
mode="multiply"
in2="BackgroundImage"
id="feBlend40389" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8515"
id="linearGradient40391"
x1="96.59375"
y1="298.42188"
x2="650.59375"
y2="298.42188"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7790421,0,0,0.8954017,82.828161,25.116065)" />
<filter
inkscape:collect="always"
id="filter7324"
x="-0.068697974"
width="1.1373959"
y="-0.28144008"
height="1.5628802"
inkscape:label="bg-glow">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="14.54107"
id="feGaussianBlur7326" />
</filter>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient7338"
id="linearGradient7334"
x1="124"
y1="364"
x2="632"
y2="364"
gradientUnits="userSpaceOnUse" />
<filter
inkscape:collect="always"
id="filter7208"
x="-0.10369298"
width="1.207386"
y="-0.50919253"
height="2.0183852"
inkscape:label="046-drop">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="21.424537"
id="feGaussianBlur7210" />
</filter>
<filter
y="0"
x="0"
filterUnits="userSpaceOnUse"
id="ShadowBlur"
inkscape:label="logo-ink-drop">
<feGaussianBlur
id="feGaussianBlur8059"
result="blur"
stdDeviation="3"
in="SourceAlpha" />
</filter>
<clipPath
id="clipoutline1"
clipPathUnits="userSpaceOnUse">
<path
d="M 54.1,12.5 L 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 C 36.6,77.7 18.5,81.3 22.2,85 C 25.8,88.7 43.9,92.1 47.5,95.7 C 51.1,99.4 40.2,103.3 43.8,107 C 47.3,110.7 55.7,107.2 57.2,115.6 C 58.3,121.8 72.6,118.7 79,113.4 C 83,110 72.1,110 75.7,106.3 C 84.7,97.2 92.7,102.2 96,93.8 C 97.8,89.3 82.4,86.1 86.5,83.2 C 96.3,76.3 132.3,72.8 115.7,56.2 L 73,12.5 C 67.7,7.5 59,7.5 54.1,12.5 z M 44.2,77.2 C 45.1,77.2 75,81.2 63.5,84.3 C 59.1,85.5 38.9,77.2 44.2,77.2 z M 101.4,93.8 C 101.4,95.9 117.7,97.1 116.8,93.3 C 115.5,86.9 103.2,87.4 101.4,93.8 z M 31.9,104.9 C 35.6,108.1 41.2,104.2 43,99.7 C 39.4,95 26.1,100 31.9,104.9 z M 99.4,98.2 C 94.8,102.4 100.2,106.8 104.7,103.9 C 105.9,103.1 104.6,99.2 99.4,98.2 z"
id="outline1" />
</clipPath>
<linearGradient
gradientUnits="userSpaceOnUse"
id="blck">
<stop
id="stop8047"
offset="0"
style="stop-color:#000;stop-opacity:1" />
<stop
id="stop8049"
offset="1"
style="stop-color:#000;stop-opacity:0" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="white">
<stop
id="stop8042"
offset="0"
style="stop-color:#fff;stop-opacity:1" />
<stop
id="stop8044"
offset="1"
style="stop-color:#fff;stop-opacity:0" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8150"
gradientUnits="userSpaceOnUse"
x1="0"
y1="128"
x2="0"
y2="76" />
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8152"
gradientUnits="userSpaceOnUse"
x1="80"
y1="20"
x2="60"
y2="40" />
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8154"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(337.13195,802.0315)"
x1="33"
y1="35"
x2="58"
y2="60" />
<linearGradient
inkscape:collect="always"
xlink:href="#blck"
id="linearGradient8156"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(337.13195,802.0315)"
x1="0"
y1="128"
x2="0"
y2="64" />
<linearGradient
inkscape:collect="always"
xlink:href="#white"
id="linearGradient8158"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(337.13195,802.0315)"
x1="60"
y1="20"
x2="90"
y2="50" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6899"
id="linearGradient8805"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="485.5"
y1="1380.3438"
x2="420.28125"
y2="1380.3438" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6869"
id="linearGradient8807"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="235.9375"
y1="1366.75"
x2="310.96875"
y2="1366.75" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6921"
id="linearGradient8809"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="287.42307"
y1="1388.7706"
x2="370.89771"
y2="1388.7706" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6913"
id="linearGradient8811"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="301.1875"
y1="1491.8438"
x2="418.6875"
y2="1409.0938" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6842"
id="linearGradient8813"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="370.0625"
y1="1335.8125"
x2="161.3125"
y2="1335.8125" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6850"
id="linearGradient8815"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.7384132,0,-132.967)"
x1="370.0625"
y1="1334.1875"
x2="589"
y2="1334.1875" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient6877"
id="radialGradient8817"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(3.3911561,7.7781906e-8,-2.0385796e-8,0.4846138,-897.05713,170.69889)"
cx="375.15625"
cy="1614.4845"
fx="375.15625"
fy="1614.4845"
r="213.84375" />
<filter
id="filter8823"
inkscape:label="reflect-fade">
<feGaussianBlur
stdDeviation="24"
id="feGaussianBlur8825" />
</filter>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8884"
id="radialGradient8912"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0000001,-1.1868047e-7,9.9117737e-8,0.8351648,-8.7185639e-5,117.09893)"
cx="256.5"
cy="628.5"
fx="256.5"
fy="628.5"
r="45.5" />
<mask
maskUnits="userSpaceOnUse"
id="mask8908">
<path
style="opacity:1;fill:url(#radialGradient8912);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M 211,642 L 302,642 L 302,706 L 211,706 L 211,642 z"
id="path8910" />
</mask>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient8936"
id="radialGradient8950"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.5333334,0,0,0.9733333,-309.06674,29.013336)"
cx="579.5"
cy="638"
fx="579.5"
fy="638"
r="37.5" />
<mask
maskUnits="userSpaceOnUse"
id="mask8946">
<rect
style="opacity:1;fill:url(#radialGradient8950);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
id="rect8948"
width="75"
height="51"
x="542"
y="650" />
</mask>
<filter
inkscape:collect="always"
id="filter8996"
inkscape:label="refl-objts-blur">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.8596095"
id="feGaussianBlur8998" />
</filter>
<filter
inkscape:collect="always"
id="filter5402"
x="-0.021845599"
width="1.0436912"
y="-0.10225216"
height="1.2045043">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="2.4294174"
id="feGaussianBlur5404" />
</filter>
<filter
inkscape:collect="always"
id="filter4007"
x="-0.019708813"
width="1.0394176"
y="-0.20760527"
height="1.4152105">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="4.9576135"
id="feGaussianBlur4009" />
</filter>
</defs>
<style
type="text/css"
id="style26">
.specularity {opacity:0.5}
.low-specularity {opacity:0.25}
.full-specularity {opacity:1}
.black {fill:#000}
.white {fill:#fff}
.outline-big {opacity:0.1;fill:none}
.outline-small {opacity:0.2;fill:none}
.stroke-highlight {fill:none;opacity:0.2}
.bs {fill:#000;opacity:75}
</style>
<g
inkscape:groupmode="layer"
id="layer2"
inkscape:label="background"
style="display:inline"
sodipodi:insensitive="true">
<path
style="fill:#8aa678;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
d="M -124,-94.5 L 874,-94.5 L 874,719.5 L -124,719.5 L -124,-94.5 z"
id="rect17124" />
<g
id="g8777"
transform="translate(0,-490)"
style="opacity:1;filter:url(#filter8996)">
<g
transform="matrix(1,0,0,0.7384132,0,281.28283)"
id="g7007"
style="opacity:1">
<path
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 550.1875,769.46875 L 420.28125,819.34375 L 420.28125,851.59375 L 418.6875,852.4375 L 407.34375,848.09375 L 310.96875,893.9375 L 310.96875,876.78125 L 370.90625,851.15625 L 370.90625,827.78125 L 324.65625,811.1875 L 310.96875,814.65625 L 310.96875,805.75 L 210.46875,769.9375 L 161.3125,774.8125 L 161.3125,853 L 235.9375,975.96875 L 301.1875,937.9375 L 301.1875,1083.9688 L 370.0625,1197.625 L 473.96875,1032.0938 L 473.96875,1005.5 L 485.5,1013.7812 L 589,848.8125 L 589,773.1875 L 550.1875,769.46875 z"
id="path6980"
sodipodi:nodetypes="ccccccccccccccccccccccccc" />
<path
inkscape:box3dsidetype="5"
id="path6035"
d="M 420.28529,819.34864 L 485.48753,837.67463 L 588.9932,773.19447 L 550.19838,769.47107 L 420.28529,819.34864 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6037"
d="M 485.48753,837.67463 L 485.48753,1013.7789 L 588.9932,848.81167 L 588.9932,773.19447 L 485.48753,837.67463 z"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6039"
d="M 420.28529,819.34864 L 485.48753,837.67463 L 485.48753,1013.7789 L 420.28529,966.89333 L 420.28529,819.34864 z"
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="5"
id="path6049"
d="M 161.31874,774.81652 L 235.92525,822.85141 L 310.96206,805.75684 L 210.46434,769.94206 L 161.31874,774.81652 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6051"
d="M 235.92525,822.85141 L 235.92525,975.95672 L 310.96206,932.20394 L 310.96206,805.75684 L 235.92525,822.85141 z"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6053"
d="M 161.31874,774.81652 L 235.92525,822.85141 L 235.92525,975.95672 L 161.31874,853.01356 L 161.31874,774.81652 z"
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="5"
id="path6064"
d="M 247.16836,830.7634 L 287.42307,856.84662 L 370.89772,827.77056 L 324.64117,811.18066 L 247.16836,830.7634 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6066"
d="M 287.42307,856.84662 L 287.42307,886.84324 L 370.89772,851.16842 L 370.89772,827.77056 L 287.42307,856.84662 z"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6068"
d="M 247.16836,830.7634 L 287.42307,856.84662 L 287.42307,886.84324 L 247.16836,854.84048 L 247.16836,830.7634 z"
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 407.34375,848.09375 L 301.1875,898.59375 L 341.59375,930.84375 L 370.0625,909.8125 L 342.1875,891.8125 L 418.6875,852.4375 L 407.34375,848.09375 z"
id="path6084"
sodipodi:nodetypes="ccccccc" />
<path
inkscape:box3dsidetype="5"
id="path6096"
d="M 342.1943,891.8062 L 370.07507,909.8146 L 473.95342,845.01747 L 448.39261,837.14044 L 342.1943,891.8062 z"
style="fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 370.07507,909.8146 L 370.07507,1197.6123 L 473.95342,1032.0899 L 473.95342,845.01747 L 370.07507,909.8146 z"
id="path6080" />
<path
style="fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 342.1875,891.8125 L 342.1875,930.46875 L 341.59375,930.84375 L 301.1875,898.59375 L 301.1875,1083.9688 L 370.0625,1197.625 L 370.0625,909.8125 L 342.1875,891.8125 z"
id="path6082"
sodipodi:nodetypes="cccccccc" />
</g>
<g
id="g7991">
<path
style="opacity:0.2;fill:url(#linearGradient8805);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 420.28125,886.29708 L 420.28125,910.11091 L 448.40625,899.42696 L 473.96875,905.265 L 473.96875,1023.7573 L 485.5,1029.8722 L 485.5,899.84231 L 420.28125,886.29708 z"
id="path6234" />
<path
style="opacity:0.2;fill:url(#linearGradient8807);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 310.96875,876.25924 L 235.9375,888.88153 L 235.9375,1001.951 L 310.96875,969.64547 L 310.96875,928.70962 L 287.4375,936.13997 L 247.15625,912.51075 L 247.15625,894.71957 L 310.96875,882.8357 L 310.96875,876.25924 z"
id="path6238" />
<path
style="opacity:0.2;fill:url(#linearGradient8809);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 287.42307,913.98965 L 287.42307,936.13953 L 370.89772,909.79679 L 370.89772,892.51954 L 287.42307,913.98965 z"
id="path6244"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.2;fill:url(#linearGradient8811);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 407.34375,907.52646 L 301.1875,944.81633 L 341.59375,968.63015 L 342.1875,968.30702 L 342.1875,939.80893 L 418.6875,910.73391 L 407.34375,907.52646 z"
id="path6248" />
<path
style="opacity:0.2;fill:url(#linearGradient8813);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 161.3125,853.41458 L 161.3125,911.14926 L 235.9375,1001.951 L 235.9375,888.88153 L 161.3125,853.41458 z M 247.15625,894.71957 L 247.15625,912.51075 L 287.4375,936.13997 L 287.4375,913.98758 L 247.15625,894.71957 z M 342.1875,939.80893 L 342.1875,968.35325 L 341.59375,968.63015 L 301.1875,944.81633 L 301.1875,1081.6997 L 370.0625,1165.6249 L 370.0625,953.10036 L 342.1875,939.80893 z"
id="path6240" />
<path
style="opacity:0.2;fill:url(#linearGradient8815);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 589,852.21466 L 485.5,899.84231 L 485.5,1029.8722 L 589,908.05716 L 589,852.21466 z M 473.96875,905.265 L 370.0625,953.10036 L 370.0625,1165.6249 L 473.96875,1043.3945 L 473.96875,905.265 z"
id="path6232" />
<path
style="opacity:0.2;fill:url(#radialGradient8817);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 550.1875,849.46872 L 420.28125,886.29708 L 485.5,899.84231 L 589,852.21466 L 550.1875,849.46872 z M 210.46875,849.81482 L 161.3125,853.41458 L 235.9375,888.88153 L 310.96875,876.25924 L 210.46875,849.81482 z M 324.65625,880.27436 L 247.15625,894.71957 L 287.4375,913.98758 L 370.90625,892.52737 L 324.65625,880.27436 z M 448.40625,899.42696 L 342.1875,939.80893 L 370.0625,953.10036 L 473.96875,905.265 L 448.40625,899.42696 z"
id="path6230" />
</g>
<path
id="path8002"
d="M 550.1875,849.4688 L 420.28125,886.3125 L 420.28125,910.125 L 418.6875,910.7188 L 407.34375,907.5312 L 310.96875,941.375 L 310.96875,928.7188 L 370.90625,909.7812 L 370.90625,892.5312 L 324.65625,880.2812 L 310.96875,882.8438 L 310.96875,876.25 L 210.46875,849.8125 L 161.3125,853.4062 L 161.3125,911.1562 L 235.9375,1001.9375 L 301.1875,973.875 L 301.1875,1081.6875 L 370.0625,1165.625 L 473.96875,1043.4062 L 473.96875,1023.75 L 485.5,1029.875 L 589,908.0625 L 589,852.2188 L 550.1875,849.4688 z M 342.1875,968.3125 L 342.1875,968.3438 L 341.59375,968.625 L 342.1875,968.3125 z"
style="opacity:0.05;fill:url(#pattern8803);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
<path
id="path7183"
d="M 92.24212,281.5 C 92.24212,281.5 292.75205,461.8979 375,462.5 C 457.24795,463.1021 648.34136,281.5 648.34136,281.5 L 874,719.5 L -124,719.5 C -124,719.5 92.24212,281.5 92.24212,281.5 z"
style="fill:#8aa678;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter8823);enable-background:accumulate"
sodipodi:nodetypes="czcccc" />
<path
transform="matrix(2.2834645,0,0,2.8225807,-488.14958,-596.91942)"
d="M 632,364 A 254,62 0 1 1 124,364 A 254,62 0 1 1 632,364 z"
sodipodi:ry="62"
sodipodi:rx="254"
sodipodi:cy="364"
sodipodi:cx="378"
id="path7322"
style="opacity:0.5;fill:url(#linearGradient7334);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter7324);enable-background:accumulate"
sodipodi:type="arc" />
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="046"
style="opacity:1;display:inline"
sodipodi:insensitive="true">
<path
sodipodi:nodetypes="ccccccccccccc"
id="path7915"
d="M 126.92123,359.73923 L 198,392.2657 L 210.625,390.4844 L 210.625,397.2344 L 262.625,417.7344 L 333.25,402.7031 L 333.25,445.5781 L 368.375,459.4219 L 501.90625,408.5157 L 501.90625,400.4531 L 516.53125,402.9531 L 622.79752,358.44067 L 126.92123,359.73923 z"
style="opacity:1;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:5.89080763;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter7208)"
transform="matrix(0.9390117,0,0,0.9770435,22.862044,-8.5535142)" />
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
id="path9268"
d="M 325.06155,173.37497 L 300.74083,186.69407 L 300.74083,233.87064 L 237.07848,221.25102 L 161.02451,263.11105 L 161.02451,341.87846 L 237.07848,376.35143 L 246.91389,374.75646 L 246.91389,380.80041 L 287.42408,399.15615 L 342.44392,385.6971 L 342.44392,424.08745 L 369.80778,436.4832 L 473.83424,390.90171 L 473.83424,383.68244 L 485.22773,385.92095 L 588.69425,340.59124 L 588.91336,293.69458 L 511.54474,281.15895 L 511.54474,260.34086 L 544.26451,256.84324 L 544.26451,241.03385 L 511.54474,223.62939 L 485.22773,209.6108 L 431.93639,222.42624 L 431.93639,214.92725 L 325.06155,173.37497 z M 226.02583,272.96047 L 226.02583,330.09829 L 219.28225,328.97904 L 219.28225,274.52742 L 226.02583,272.96047 z M 539.49288,322.85118 L 539.49288,329.42674 L 511.54474,334.51934 L 511.54474,326.48866 L 539.49288,322.85118 z"
style="opacity:0.3;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:10.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 325.06155,173.37498 L 300.74083,186.69408 L 300.74083,233.87064 L 237.07848,221.25103 L 161.0245,263.11106 L 161.0245,341.87847 L 237.07848,376.35144 L 246.91389,374.75645 L 246.91389,380.80041 L 287.42408,399.15615 L 342.44393,385.6971 L 342.44393,424.08744 L 369.80778,436.48321 L 473.83424,390.90171 L 473.83424,383.68245 L 485.22772,385.92095 L 588.69425,340.59124 L 588.91336,293.69457 L 511.54474,281.15895 L 511.54474,260.34086 L 544.26451,256.84325 L 544.26451,241.03386 L 511.54474,223.62939 L 485.22772,209.61081 L 431.93638,222.42625 L 431.93638,214.92725 L 325.06155,173.37498 z M 226.02583,272.96048 L 226.02583,330.0983 L 219.28225,328.97905 L 219.28225,274.52743 L 226.02583,272.96048 z M 539.49287,322.85118 L 539.49287,329.42674 L 511.54474,334.51934 L 511.54474,326.48866 L 539.49287,322.85118 z"
id="path8257"
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc" />
<g
transform="matrix(0.7790421,0,0,0.8954017,82.511674,15.309012)"
id="g6846">
<path
inkscape:box3dsidetype="13"
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 433.10655,256.41742 L 516.92891,243.1422 L 592.70789,269.74256 L 524.21909,276.12836 L 433.10655,256.41742 z"
id="path6801" />
<path
inkscape:box3dsidetype="14"
id="path6383"
d="M 198.40756,230.0094 L 198.40756,403.20787 L 295.40366,389.45834 L 295.40366,246.70946 L 198.40756,230.0094 z"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 198.40625,230 L 100.78125,276.75 L 100.78125,364.71875 L 198.40625,403.21875 L 198.40625,230 z M 184.21875,287.75 L 184.21875,351.5625 L 175.5625,350.3125 L 175.5625,289.5 L 184.21875,287.75 z"
id="path6385" />
<path
inkscape:box3dsidetype="5"
id="path6055"
d="M 211.02324,381.20223 L 263.0344,395.05857 L 370.41945,379.61331 L 310.71498,370.80921 L 211.02324,381.20223 z"
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6057"
d="M 263.0344,395.05857 L 263.0344,428.69038 L 370.41945,405.83057 L 370.41945,379.61331 L 263.0344,395.05857 z"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="3"
id="path6059"
d="M 211.02324,381.20223 L 263.0344,395.05857 L 263.0344,428.69038 L 211.02324,408.18227 L 211.02324,381.20223 z"
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 175.5625,350.3125 L 108.53125,353.28125 L 184.21875,373 L 184.21875,351.5625 L 175.5625,350.3125 z"
id="path6396"
sodipodi:nodetypes="ccccc" />
<path
inkscape:box3dsidetype="6"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 108.53974,285.35404 L 108.53974,353.27965 L 175.56819,350.32518 L 175.56819,289.49598 L 108.53974,285.35404 z"
id="path6398" />
<path
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 184.21875,257.6875 L 108.53125,285.34375 L 175.5625,289.5 L 184.21875,287.75 L 184.21875,257.6875 z"
id="path6402"
sodipodi:nodetypes="ccccc" />
<path
inkscape:box3dsidetype="3"
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 586.60624,309.76327 L 630.74081,308.25338 L 630.74081,370.51649 L 586.60624,366.41269 L 586.60624,309.76327 z"
id="path6769" />
<path
inkscape:box3dsidetype="5"
style="opacity:1;fill:#f5d479;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 433.10655,375.07988 L 516.92891,384.77361 L 641.48122,352.84794 L 588.42275,350.54435 L 433.10655,375.07988 z"
id="path6779" />
<path
inkscape:box3dsidetype="3"
id="path6089"
d="M 433.10655,234.5253 L 516.92891,217.01252 L 516.92891,413.90849 L 433.10655,399.48983 L 433.10655,234.5253 z"
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 311.35012,176.51636 L 311.35012,361.47434 L 448.52837,350.07103 L 448.52837,222.93818 L 311.35012,176.51636 z"
id="path6636" />
<path
inkscape:box3dsidetype="5"
id="path6662"
d="M 280.13561,324.94354 L 368.76453,324.92568 L 502.28421,324.9517 L 416.61726,324.95994 L 280.13561,324.94354 z"
style="opacity:1;fill:#dcdcdc;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
inkscape:box3dsidetype="14"
id="path6228"
d="M 368.78741,271.44835 L 368.78741,470.38901 L 502.30446,419.48422 L 502.30446,290.19829 L 368.78741,271.44835 z"
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#fdf198;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 311.34375,176.53125 L 280.125,191.40625 L 280.125,357.8125 L 280.125,399.4375 L 333.65625,413.65625 L 333.65625,456.53125 L 368.78125,470.375 L 368.78125,271.4375 L 333.65625,276.5625 L 333.65625,324.9375 L 311.34375,324.9375 L 311.34375,176.53125 z"
id="path6638" />
<path
style="opacity:1;fill:#eca14f;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 516.9375,217 L 516.9375,243.15625 L 516.9375,292.15625 L 516.9375,351.34375 L 516.9375,384.78125 L 516.9375,413.90625 L 550.71875,401.03125 L 630.75,370.5 L 630.75,370.53125 L 649.75,363.28125 L 649.75,336.34375 L 650.03125,336.3125 L 650.03125,310.90625 L 550.71875,296.90625 L 550.71875,255 L 592.71875,269.75 L 592.71875,252.09375 L 550.71875,232.65625 L 516.9375,217 z M 630.75,338.5 L 630.75,355.59375 L 550.71875,376.125 L 550.71875,347.53125 L 630.75,338.5 z"
id="path6809" />
</g>
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccc"
id="path6867"
d="M 325.06155,173.37498 L 300.74083,186.69408 L 300.74083,233.87064 L 237.07848,221.25103 L 161.0245,263.11106 L 161.0245,341.87847 L 237.07848,376.35144 L 246.91389,374.75645 L 246.91389,380.80041 L 287.42408,399.15615 L 342.44393,385.6971 L 342.44393,424.08744 L 369.80778,436.48321 L 473.83424,390.90171 L 473.83424,383.68245 L 485.22772,385.92095 L 588.69425,340.59124 L 588.91336,293.69457 L 511.54474,281.15895 L 511.54474,260.34086 L 544.26451,256.84325 L 544.26451,241.03386 L 511.54474,223.62939 L 485.22772,209.61081 L 431.93638,222.42625 L 431.93638,214.92725 L 325.06155,173.37498 z M 226.02583,272.96048 L 226.02583,330.0983 L 219.28225,328.97905 L 219.28225,274.52743 L 226.02583,272.96048 z M 539.49287,322.85118 L 539.49287,329.42674 L 511.54474,334.51934 L 511.54474,326.48866 L 539.49287,322.85118 z"
style="opacity:0.02999998;fill:url(#pattern9264-966-660-585);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
style="opacity:0.2"
transform="matrix(0.7790421,0,0,0.8954017,82.828161,-841.63277)"
id="g9441">
<path
id="path9403"
d="M 550.3125,1212.0625 L 550.3125,1230.7188 L 592.25,1226.7812 L 550.3125,1212.0625 z"
style="opacity:1;fill:url(#linearGradient9453-567-523-272);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9405"
d="M 198,1187.0625 L 198,1360.25 L 210.625,1358.4688 L 210.625,1338.25 L 279.71875,1331.0312 L 279.71875,1201.125 L 198,1187.0625 z"
style="opacity:1;fill:url(#linearGradient9455-336-611-915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccccc" />
<path
id="path9407"
d="M 310.9375,1133.5938 L 279.71875,1148.4688 L 279.71875,1356.5 L 333.25,1370.7188 L 333.25,1413.5938 L 368.375,1427.4375 L 368.375,1228.5 L 333.25,1233.625 L 333.25,1282 L 310.9375,1282 L 310.9375,1133.5938 z M 198,1187.0625 L 100.375,1233.8125 L 100.375,1321.7812 L 198,1360.2812 L 198,1187.0625 z M 183.8125,1244.8125 L 183.8125,1308.625 L 175.15625,1307.375 L 175.15625,1246.5625 L 183.8125,1244.8125 z M 210.625,1338.25 L 210.625,1365.2188 L 262.625,1385.75 L 262.625,1352.0938 L 210.625,1338.25 z"
style="opacity:1;fill:url(#linearGradient9457-852-515-806);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="cccccccccccccccccccccccccc" />
<path
sodipodi:nodetypes="cccccccc"
id="path9409"
d="M 279.71875,1331.0312 L 210.625,1338.25 L 262.625,1352.0938 L 262.625,1385.75 L 333.21875,1370.7188 L 279.71875,1356.5 L 279.71875,1349.625 L 279.71875,1331.0312 z"
style="opacity:1;fill:url(#linearGradient9459-531-537-829);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9411"
d="M 183.8125,1214.75 L 108.125,1242.4062 L 108.125,1310.3125 L 175.15625,1307.375 L 175.15625,1246.5625 L 183.8125,1244.8125 L 183.8125,1214.75 z M 175.15625,1307.375 L 108.125,1310.3438 L 183.8125,1330.0625 L 183.8125,1308.625 L 175.15625,1307.375 z"
style="opacity:1;fill:url(#linearGradient9461-884-586-981);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
sodipodi:nodetypes="ccccccc"
id="path9413"
d="M 630.34375,1295.5625 L 586.1875,1300.5312 L 586.1875,1307.875 L 550.3125,1313.5312 L 550.3125,1333.1562 L 630.34375,1312.6562 L 630.34375,1295.5625 z"
style="opacity:1;fill:url(#linearGradient9463-252-598-193);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9415"
d="M 516.53125,1174.0625 L 432.6875,1191.5625 L 432.6875,1237.5312 L 501.90625,1247.25 L 501.90625,1368.4375 L 516.53125,1370.9688 L 516.53125,1174.0625 z"
style="opacity:1;fill:url(#linearGradient9465-843-430-72);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path9417"
d="M 310.9375,1133.5625 L 310.9375,1133.5938 L 310.9375,1282 L 333.25,1282 L 333.25,1233.625 L 368.375,1228.5 L 448.125,1239.6875 L 448.125,1180 L 310.9375,1133.5625 z"
style="opacity:1;fill:url(#linearGradient9467-730-19-399);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 279.72936,1281.9908 L 368.35828,1281.973 L 501.87796,1281.999 L 416.21101,1282.0072 L 279.72936,1281.9908 z"
id="path9419"
inkscape:box3dsidetype="5" />
<path
id="path9421"
d="M 516.53125,1174.0625 L 516.53125,1370.9688 L 649.34375,1320.3438 L 649.625,1267.9688 L 550.3125,1253.9688 L 550.3125,1212.0625 L 592.3125,1226.8125 L 592.3125,1209.1562 L 516.53125,1174.0625 z M 368.375,1228.5 L 368.375,1427.4375 L 501.90625,1376.5312 L 501.90625,1247.25 L 368.375,1228.5 z M 630.34375,1295.5625 L 630.34375,1312.6562 L 550.3125,1333.1875 L 550.3125,1304.5938 L 630.34375,1295.5625 z"
style="opacity:1;fill:url(#linearGradient9469-20-629-775);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
sodipodi:nodetypes="ccccccccccccccccccc" />
</g>
</g>
<g
style="opacity:1;display:inline"
inkscape:label="wireframe"
id="layer6"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
id="path6178"
d="M 370.61117,146.80675 L 369.83212,147.22647 L 369.80778,147.22647 L 369.05308,146.83473 L 369.05308,147.67417 L 325.0859,171.85002 L 300.6678,185.28104 L 299.98613,185.05719 L 299.98613,185.67278 L 298.57412,186.45626 L 299.98613,186.90395 L 299.98613,232.84926 L 237.88187,220.53748 L 237.88187,219.86593 L 236.9811,220.34161 L 236.32379,220.22968 L 236.32379,220.73335 L 184.10363,249.47015 L 160.90278,262.22962 L 160.26981,262.17366 L 160.26981,262.59338 L 158.07875,263.79657 L 160.26981,263.99245 L 160.26981,341.89239 L 160.26981,342.50798 L 160.26981,342.84376 L 160.90278,342.7878 L 236.32379,376.98095 L 236.32379,377.40066 L 237.00545,377.28874 L 237.88187,377.68048 L 237.88187,377.14884 L 246.13485,375.80573 L 246.13485,380.05889 L 243.96814,380.45063 L 246.13485,381.42997 L 246.13485,381.87768 L 246.84086,381.73777 L 286.66938,399.78571 L 286.66938,400.28937 L 287.37539,400.12148 L 288.22747,400.51322 L 288.22747,399.89764 L 299.98613,397.01556 L 299.98613,404.51454 L 298.16025,405.01821 L 299.98613,405.82967 L 299.98613,406.36131 L 300.71649,406.16545 L 369.05308,437.14074 L 369.05308,437.8123 L 369.80778,437.47652 L 369.83212,437.47652 L 370.61117,437.84028 L 370.61117,437.14074 L 473.93162,391.86699 L 474.61328,392.03488 L 474.61328,391.55921 L 476.70695,390.6638 L 474.61328,390.2161 L 474.61328,384.75974 L 484.44869,386.69046 L 484.44869,387.25009 L 485.27641,386.88633 L 485.30076,386.88633 L 486.00677,387.02623 L 486.00677,386.55055 L 589.03508,341.41671 L 589.05942,341.41671 L 589.66805,341.47267 L 589.66805,341.1369 L 589.66805,340.5213 L 589.66805,264.83188 L 589.66805,263.85254 L 589.03508,263.9085 L 486.00677,209.06515 L 486.00677,208.56148 L 485.34945,208.72937 L 485.32511,208.70139 L 485.30076,208.70139 L 484.44869,208.25369 L 484.44869,208.92524 L 474.61328,211.27567 L 474.61328,204.30833 L 476.2444,203.88861 L 474.61328,202.99321 L 474.61328,202.46156 L 473.93162,202.62945 L 370.61117,147.67417 L 370.61117,146.80675 z M 369.05308,149.66085 L 369.05308,207.72204 L 302.93188,186.03653 L 369.05308,149.66085 z M 370.61117,149.66085 L 471.44842,203.301 L 407.12876,220.20171 L 370.61117,208.22571 L 370.61117,149.66085 z M 301.54422,187.4356 L 369.05308,209.56881 L 369.05308,353.98031 L 325.35369,346.59325 L 325.35369,346.3694 L 324.62334,346.45335 L 323.7956,346.31344 L 323.7956,346.56527 L 313.42461,347.79644 L 313.42461,236.235 L 313.42461,235.08776 L 312.62122,235.33959 L 301.54422,233.15705 L 301.54422,187.4356 z M 473.05519,204.70007 L 473.05519,211.66741 L 419.93426,224.3989 L 419.15522,224.14707 L 419.15522,225.32229 L 419.15522,373.03558 L 419.15522,373.79107 L 419.15522,374.18281 L 419.93426,373.95896 L 473.05519,384.45196 L 473.05519,389.88033 L 407.85911,375.77775 L 407.85911,221.82463 L 458.42381,208.5335 L 473.05519,204.70007 z M 370.61117,210.10046 L 406.30103,221.79664 L 406.30103,375.80573 L 370.61117,385.4313 L 370.61117,379.7511 L 371.09806,379.63917 L 371.8771,379.83504 L 371.8771,379.4433 L 371.8771,378.71579 L 371.8771,355.23947 L 371.8771,354.48398 L 371.8771,354.20416 L 371.09806,354.31609 L 370.61117,354.23214 L 370.61117,210.10046 z M 484.44869,210.74403 L 484.44869,245.58074 L 474.61328,242.3629 L 474.61328,213.12243 L 484.44869,210.74403 z M 486.00677,211.05182 L 523.98507,231.25432 L 585.82153,264.18832 L 550.13167,267.12636 L 486.00677,246.08441 L 486.00677,211.05182 z M 473.05519,213.48619 L 473.05519,241.83126 L 423.22085,225.49018 L 473.05519,213.48619 z M 237.88187,222.35627 L 267.68023,228.26033 L 299.98613,234.64006 L 299.98613,239.17303 L 237.88187,258.11638 L 237.88187,222.35627 z M 236.32379,222.72003 L 236.32379,258.59205 L 210.3963,266.48278 L 164.01895,262.50944 L 236.32379,222.72003 z M 420.7133,226.52549 L 473.05519,243.67802 L 473.05519,357.78577 L 420.7133,371.91633 L 420.7133,226.52549 z M 301.54422,234.94785 L 308.96946,236.43087 L 301.54422,238.69735 L 301.54422,234.94785 z M 311.86652,237.4102 L 311.86652,347.99232 L 301.54422,349.2235 L 301.54422,240.54411 L 311.86652,237.4102 z M 299.98613,241.01979 L 299.98613,349.41936 L 271.52675,352.8051 L 237.88187,344.38273 L 237.88187,259.96314 L 299.98613,241.01979 z M 474.61328,244.20967 L 484.44869,247.42751 L 484.44869,354.70783 L 474.61328,357.36606 L 474.61328,244.20967 z M 486.00677,247.93118 L 549.25524,268.66532 L 549.25524,337.19153 L 486.00677,354.28811 L 486.00677,247.93118 z M 236.32379,260.43882 L 236.32379,343.99098 L 211.24838,337.69519 L 211.24838,268.07772 L 236.32379,260.43882 z M 161.82789,264.13235 L 209.69029,268.21762 L 209.69029,337.58328 L 161.82789,340.94103 L 161.82789,264.13235 z M 588.10997,265.81123 L 588.10997,339.56994 L 550.81333,337.05162 L 550.81333,268.8612 L 588.10997,265.81123 z M 550.15601,338.78646 L 550.22905,338.78646 L 585.21291,341.16488 L 491.99566,382.04556 L 486.00677,384.6758 L 486.00677,356.10689 L 550.15601,338.78646 z M 210.44499,339.31812 L 236.32379,345.80977 L 236.32379,375.05023 L 164.57888,342.53596 L 210.44499,339.31812 z M 237.88187,346.20151 L 246.15919,348.27213 L 266.56036,353.42069 L 246.98692,355.74313 L 246.13485,355.49131 L 246.13485,355.85506 L 246.13485,356.66652 L 246.13485,373.98694 L 237.88187,375.33005 L 237.88187,346.20151 z M 323.7956,348.35608 L 323.7956,362.15085 L 320.60641,362.6825 L 313.42461,363.88569 L 313.42461,349.58725 L 323.7956,348.35608 z M 325.35369,348.38406 L 334.58047,349.95101 L 365.59608,355.23947 L 325.35369,361.89903 L 325.35369,348.38406 z M 311.86652,349.78312 L 311.86652,362.93434 L 301.54422,360.33207 L 301.54422,351.0143 L 311.86652,349.78312 z M 299.98613,351.21016 L 299.98613,359.94033 L 276.39577,354.03627 L 299.98613,351.21016 z M 271.45371,354.62389 L 271.47806,354.62389 L 299.98613,361.7871 L 299.98613,365.2288 L 285.62254,367.57922 L 251.24731,357.05826 L 271.45371,354.62389 z M 369.05308,356.47065 L 369.05308,377.28874 L 325.35369,366.32007 L 325.35369,363.71781 L 369.05308,356.47065 z M 484.44869,356.52662 L 484.44869,384.87167 L 474.61328,382.94096 L 474.61328,359.18484 L 484.44869,356.52662 z M 247.69293,357.84173 L 281.62996,368.2228 L 253.68182,372.75577 L 247.69293,373.73512 L 247.69293,357.84173 z M 473.05519,359.60455 L 473.05519,382.63317 L 453.40872,378.74377 L 423.82948,372.89567 L 473.05519,359.60455 z M 301.54422,362.17883 L 308.2878,363.88569 L 301.54422,364.97696 L 301.54422,362.17883 z M 323.7956,363.96964 L 323.7956,366.26411 L 301.54422,370.20947 L 301.54422,367.66317 L 323.7956,363.96964 z M 299.98613,367.915 L 299.98613,370.48928 L 288.22747,372.58788 L 288.22747,369.84571 L 299.98613,367.915 z M 324.59899,367.97097 L 367.37327,378.71579 L 325.5241,388.95695 L 301.54422,394.80503 L 301.54422,372.05623 L 324.59899,367.97097 z M 285.47648,369.39801 L 285.50082,369.39801 L 286.66938,369.76177 L 286.66938,372.8677 L 247.69293,379.77908 L 247.69293,375.5539 L 285.47648,369.39801 z M 299.98613,372.33605 L 299.98613,395.19678 L 288.22747,398.05087 L 288.22747,374.40667 L 299.98613,372.33605 z M 286.66938,374.68648 L 286.66938,397.88298 L 249.85965,381.20612 L 266.41429,378.26809 L 286.66938,374.68648 z M 407.05572,377.42864 L 470.98587,391.22343 L 437.31664,405.96958 L 370.61117,435.21004 L 370.61117,387.27807 L 407.05572,377.42864 z M 369.05308,380.14283 L 369.05308,385.85102 L 301.54422,404.09483 L 301.54422,396.6518 L 369.05308,380.14283 z M 369.05308,387.69778 L 369.05308,435.21004 L 303.39445,405.43793 L 369.05308,387.69778 z"
style="opacity:0.3;fill:url(#linearGradient40391);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="deco-q-sh"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:0.07000002;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 345.22157,207.02653 L 331.45273,217.30468 L 331.45273,248.24994 L 353.36651,258.55579 L 366.24883,254.53872 L 366.24883,227.33349 L 345.22157,207.02653 z"
id="path24551"
transform="matrix(0.6775502,0,0,0.4187457,152.56523,146.48081)" />
<path
transform="matrix(0.4306566,0,0,0.4305766,257.96813,177.22763)"
style="opacity:0.05;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 407.81529,371.23406 L 354.09743,376.58086 L 354.09743,425.69996 L 394.51742,440.32756 L 447.51498,420.54696 L 447.51498,374.69706 L 407.81529,371.23406 z"
id="path24541" />
<path
style="opacity:0.05;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 173.991,327.20513 L 159.19711,328.20253 L 159.19711,361.58573 L 170.00163,373.66453 L 187.03953,370.67253 L 187.03953,332.55203 L 173.991,327.20513 z"
id="path24539"
transform="matrix(0.7534316,0,0,0.3684475,63.408704,206.89617)" />
<path
id="path38836"
d="M 407.81529,371.23406 L 354.09743,376.58086 L 354.09743,425.69996 L 394.51742,440.32756 L 447.51498,420.54696 L 447.51498,374.69706 L 407.81529,371.23406 z"
style="opacity:0.07999998;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
transform="matrix(0.54729,-0.1361643,0.1620046,0.4363318,289.98698,263.77497)" />
<path
transform="matrix(-0.54729,-0.1361643,-0.1620046,0.4363318,545.49895,307.75847)"
style="opacity:0.07999998;fill:#000000;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;filter:url(#filter25331)"
d="M 407.81529,371.23406 L 354.09743,376.58086 L 354.09743,425.69996 L 394.51742,440.32756 L 447.51498,420.54696 L 447.51498,374.69706 L 407.81529,371.23406 z"
id="path38838" />
</g>
<g
style="opacity:1;display:inline"
inkscape:label="deco-q"
id="layer10"
inkscape:groupmode="layer">
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,391.0349 L 582.56129,395.73529 L 605.84681,379.59413 L 580.43511,376.47842 L 552.80324,391.0349 z"
id="path6136"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,375.70827 L 552.80324,391.0349 L 580.43511,376.47842 L 580.43511,363.93383 L 552.80324,375.70827 z"
id="path6138"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 580.43511,363.93383 L 605.84681,366.45407 L 605.84681,379.59413 L 580.43511,376.47842 L 580.43511,363.93383 z"
id="path6140"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,375.70827 L 582.56129,379.51032 L 605.84681,366.45407 L 580.43511,363.93383 L 552.80324,375.70827 z"
id="path6142"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 582.56129,379.51032 L 582.56129,395.73529 L 605.84681,379.59413 L 605.84681,366.45407 L 582.56129,379.51032 z"
id="path6144"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,375.70827 L 582.56129,379.51032 L 582.56129,395.73529 L 552.80324,391.0349 L 552.80324,375.70827 z"
id="path6146"
inkscape:box3dsidetype="3" />
<path
id="path6179"
d="M 221.38807,416.19825 L 249.0473,432.72857 L 290.7916,421.57006 L 260.14089,407.75632 L 221.38807,416.19825 z"
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="13" />
<path
id="path6181"
d="M 221.38807,396.34587 L 221.38807,416.19825 L 260.14089,407.75632 L 260.14089,389.49466 L 221.38807,396.34587 z"
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="6" />
<path
id="path6183"
d="M 260.14089,389.49466 L 290.7916,400.70547 L 290.7916,421.57006 L 260.14089,407.75632 L 260.14089,389.49466 z"
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="11" />
<path
id="path6185"
d="M 221.38807,396.34587 L 249.0473,409.76139 L 290.7916,400.70547 L 260.14089,389.49466 L 221.38807,396.34587 z"
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="5" />
<path
id="path6187"
d="M 249.0473,409.76139 L 249.0473,432.72857 L 290.7916,421.57006 L 290.7916,400.70547 L 249.0473,409.76139 z"
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="14" />
<path
id="path6189"
d="M 221.38807,396.34587 L 249.0473,409.76139 L 249.0473,432.72857 L 221.38807,416.19825 L 221.38807,396.34587 z"
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="3" />
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,334.24233 L 168.18788,336.59576 L 191.8297,335.46157 L 178.96034,333.30218 L 156.94022,334.24233 z"
id="path6826"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,321.3612 L 156.94022,334.24233 L 178.96034,333.30218 L 178.96034,320.93855 L 156.94022,321.3612 z"
id="path6828"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 178.96034,320.93855 L 191.8297,321.9093 L 191.8297,335.46157 L 178.96034,333.30218 L 178.96034,320.93855 z"
id="path6830"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,321.3612 L 168.18788,322.41917 L 191.8297,321.9093 L 178.96034,320.93855 L 156.94022,321.3612 z"
id="path6832"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 168.18788,322.41917 L 168.18788,336.59576 L 191.8297,335.46157 L 191.8297,321.9093 L 168.18788,322.41917 z"
id="path6834"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 156.94022,321.3612 L 168.18788,322.41917 L 168.18788,336.59576 L 156.94022,334.24233 L 156.94022,321.3612 z"
id="path6836"
inkscape:box3dsidetype="3" />
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,356.45188 L 447.10707,359.8 L 470.00549,355.45346 L 443.36566,352.65647 L 419.61517,356.45188 z"
id="path6854"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,337.82387 L 419.61517,356.45188 L 443.36566,352.65647 L 443.36566,335.57856 L 419.61517,337.82387 z"
id="path6856"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 443.36566,335.57856 L 470.00549,337.23322 L 470.00549,355.45346 L 443.36566,352.65647 L 443.36566,335.57856 z"
id="path6858"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,337.82387 L 447.10707,339.80457 L 470.00549,337.23322 L 443.36566,335.57856 L 419.61517,337.82387 z"
id="path6860"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 447.10707,339.80457 L 447.10707,359.8 L 470.00549,355.45346 L 470.00549,337.23322 L 447.10707,339.80457 z"
id="path6862"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 419.61517,337.82387 L 447.10707,339.80457 L 447.10707,359.8 L 419.61517,356.45188 L 419.61517,337.82387 z"
id="path6864"
inkscape:box3dsidetype="3" />
<path
id="path6872"
d="M 398.73786,221.93378 L 410.89074,218.87844 L 410.89074,233.65042 L 398.73786,236.21498 L 398.73786,221.93378 z"
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="11" />
<path
id="path6870"
d="M 385.28429,218.02861 L 385.28429,232.93711 L 398.73786,236.21498 L 398.73786,221.93378 L 385.28429,218.02861 z"
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="6" />
<path
id="path6874"
d="M 385.28429,218.02861 L 397.50678,214.69394 L 410.89074,218.87844 L 398.73786,221.93378 L 385.28429,218.02861 z"
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="5" />
<path
id="path6868"
d="M 385.28429,232.93711 L 397.50678,230.13807 L 410.89074,233.65042 L 398.73786,236.21498 L 385.28429,232.93711 z"
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="13" />
<path
id="path6876"
d="M 397.50678,214.69394 L 397.50678,230.13807 L 410.89074,233.65042 L 410.89074,218.87844 L 397.50678,214.69394 z"
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="14" />
<path
id="path6878"
d="M 385.28429,218.02861 L 397.50678,214.69394 L 397.50678,230.13807 L 385.28429,232.93711 L 385.28429,218.02861 z"
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="3" />
<path
style="opacity:0.50000000000000000;fill:url(#pattern23741);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter40387)"
d="M 400.59375,205.03125 L 386.71875,208.8125 L 386.71875,225.75 L 402,229.5 L 415.8125,226.5625 L 415.8125,209.78125 L 400.59375,205.03125 z M 152.21875,325.8125 L 127.1875,326.28125 L 127.1875,340.9375 L 139.96875,343.59375 L 166.84375,342.3125 L 166.84375,326.90625 L 152.21875,325.8125 z M 452.71875,342.4375 L 425.71875,345 L 425.71875,366.15625 L 456.96875,369.96875 L 483,365.03125 L 483,344.3125 L 452.71875,342.4375 z M 608.5,374.6875 L 577.09375,388.0625 L 577.09375,405.46875 L 610.9375,410.8125 L 637.40625,392.46875 L 637.40625,377.53125 L 608.5,374.6875 z M 244.46875,403.71875 L 200.4375,411.53125 L 200.4375,434.09375 L 231.875,452.875 L 279.3125,440.1875 L 279.3125,416.46875 L 244.46875,403.71875 z"
id="path38840"
transform="matrix(0.8798335,0,0,0.8796701,45.04556,34.34351)" />
<path
id="path40362"
d="M 397.50136,214.70337 L 385.29367,218.02962 L 385.29367,232.92903 L 398.73863,236.22779 L 410.89133,233.64376 L 410.89133,218.8818 L 397.50136,214.70337 z M 178.97272,320.95102 L 156.94938,321.36336 L 156.94938,334.25603 L 168.19476,336.59265 L 191.84028,335.46558 L 191.84028,321.91316 L 178.97272,320.95102 z M 443.36268,335.57553 L 419.60718,337.82969 L 419.60718,356.44021 L 447.10197,359.79395 L 470.00514,355.45058 L 470.00514,337.22492 L 443.36268,335.57553 z M 580.42424,363.9449 L 552.79197,375.71048 L 552.79197,391.02224 L 582.56884,395.72298 L 605.85693,379.58653 L 605.85693,366.44646 L 580.42424,363.9449 z M 260.13736,389.48282 L 221.39719,396.35524 L 221.39719,416.2028 L 249.05695,432.7241 L 290.79405,421.56329 L 290.79405,400.69861 L 260.13736,389.48282 z"
style="opacity:0.20000000000000001;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g8873"
mask="url(#mask8908)"
transform="translate(0,-222)"
style="opacity:0.69999999999999996;filter:url(#filter8996)">
<path
sodipodi:nodetypes="ccccc"
id="path8847"
d="M 221.38807,676.19825 L 249.0473,696.72857 L 290.7916,681.57006 L 260.14089,667.75632 L 221.38807,676.19825 z"
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="13" />
<path
id="path8849"
d="M 221.38807,656.34587 L 221.38807,676.19825 L 260.14089,667.75632 L 260.14089,649.49466 L 221.38807,656.34587 z"
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="6" />
<path
id="path8851"
d="M 260.14089,649.49466 L 290.7916,660.70547 L 290.7916,681.57006 L 260.14089,667.75632 L 260.14089,649.49466 z"
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="11" />
<path
sodipodi:nodetypes="ccccc"
id="path8853"
d="M 221.38807,656.34587 L 249.0473,673.76139 L 290.7916,660.70547 L 260.14089,649.49466 L 221.38807,656.34587 z"
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="5" />
<path
sodipodi:nodetypes="ccccc"
id="path8855"
d="M 249.0473,673.76139 L 249.0473,696.72857 L 290.7916,681.57006 L 290.7916,660.70547 L 249.0473,673.76139 z"
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="14" />
<path
sodipodi:nodetypes="ccccc"
id="path8857"
d="M 221.38807,656.34587 L 249.0473,673.76139 L 249.0473,696.72857 L 221.38807,676.19825 L 221.38807,656.34587 z"
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:box3dsidetype="3" />
</g>
<g
id="g8926"
mask="url(#mask8946)"
transform="translate(0,-262)"
style="opacity:0.69999999999999996;filter:url(#filter8996)">
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,689.0349 L 582.56129,693.73529 L 605.84681,677.59413 L 580.43511,674.47842 L 552.80324,689.0349 z"
id="path8914"
inkscape:box3dsidetype="13" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,673.70827 L 552.80324,689.0349 L 580.43511,674.47842 L 580.43511,661.93383 L 552.80324,673.70827 z"
id="path8916"
inkscape:box3dsidetype="6" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 580.43511,661.93383 L 605.84681,664.45407 L 605.84681,677.59413 L 580.43511,674.47842 L 580.43511,661.93383 z"
id="path8918"
inkscape:box3dsidetype="11" />
<path
style="opacity:0.50000000000000000;fill:#cfcfcf;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,673.70827 L 582.56129,677.51032 L 605.84681,664.45407 L 580.43511,661.93383 L 552.80324,673.70827 z"
id="path8920"
inkscape:box3dsidetype="5" />
<path
style="opacity:0.50000000000000000;fill:#7f7f7f;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 582.56129,677.51032 L 582.56129,693.73529 L 605.84681,677.59413 L 605.84681,664.45407 L 582.56129,677.51032 z"
id="path8922"
inkscape:box3dsidetype="14" />
<path
style="opacity:0.50000000000000000;fill:#ffffff;fill-rule:evenodd;stroke:none;stroke-width:0.80000000999999998;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 552.80324,673.70827 L 582.56129,677.51032 L 582.56129,693.73529 L 552.80324,689.0349 L 552.80324,673.70827 z"
id="path8924"
inkscape:box3dsidetype="3" />
</g>
</g>
<g
style="display:inline"
inkscape:label="url"
id="layer1"
inkscape:groupmode="layer"
sodipodi:insensitive="true">
<path
transform="matrix(1,0,0,1.1666667,0,-105.83333)"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6216);enable-background:accumulate"
d="M -10,575 L 760,575 L 760,635 L -10,635 L -10,575 z"
id="path28465" />
<path
id="rect28462"
d="M -10,565 L 760,565 L 760,635 L -10,635 L -10,565 z"
style="fill:url(#linearGradient28723-447-575-131);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
<g
transform="translate(-3.519045,-21.64062)"
id="g6265">
<path
id="path6241"
d="M 299.84375,612 L 299.84375,610.93652 L 301.52246,610.93652 L 301.52246,599.94141 L 299.84375,599.94141 L 299.84375,598.87793 L 306.59375,598.87793 L 306.59375,599.94141 L 304.90625,599.94141 L 304.90625,610.93652 L 306.59375,610.93652 L 306.59375,612 L 299.84375,612 M 308.22852,612 L 308.22852,610.93652 L 309.90723,610.93652 L 309.90723,599.94141 L 308.22852,599.94141 L 308.22852,598.87793 L 312.33301,598.87793 L 320.25195,608.16797 L 320.25195,599.94141 L 318.58203,599.94141 L 318.58203,598.87793 L 323.16992,598.87793 L 323.16992,599.94141 L 321.49121,599.94141 L 321.49121,612 L 319.18848,612 L 311.14648,602.5166 L 311.14648,610.93652 L 312.81641,610.93652 L 312.81641,612 L 308.22852,612 M 324.73438,612 L 324.73438,610.93652 L 326.41309,610.93652 L 326.41309,599.94141 L 324.73438,599.94141 L 324.73438,598.87793 L 331.48438,598.87793 L 331.48438,599.94141 L 329.79688,599.94141 L 329.79688,604.73145 L 335.36035,599.94141 L 333.9541,599.94141 L 333.9541,598.87793 L 338.84961,598.87793 L 338.84961,599.94141 L 337.10059,599.94141 L 332.38965,603.99316 L 338.79688,610.93652 L 340.08887,610.93652 L 340.08887,612 L 335.6416,612 L 329.79688,605.62793 L 329.79688,610.93652 L 331.48438,610.93652 L 331.48438,612 L 324.73438,612 M 340.92383,611.36719 L 340.92383,608.25586 L 342.04004,608.25586 C 342.20996,609.24024 342.61133,609.97559 343.24414,610.46191 C 343.87695,610.94824 344.75292,611.19141 345.87207,611.19141 C 346.78027,611.19141 347.47167,611.01856 347.94629,610.67285 C 348.42089,610.32715 348.65819,609.82031 348.6582,609.15234 C 348.65819,608.625 348.49706,608.21485 348.1748,607.92188 C 347.85253,607.62891 347.18749,607.35645 346.17969,607.10449 L 344.21094,606.62109 C 342.92773,606.29297 342.02539,605.83887 341.50391,605.25879 C 340.98242,604.67286 340.72168,603.84083 340.72168,602.7627 C 340.72168,601.46192 341.15234,600.45118 342.01367,599.73047 C 342.88086,599.00392 344.09375,598.64064 345.65234,598.64062 C 346.41991,598.64064 347.21679,598.70509 348.04297,598.83398 C 348.87499,598.9629 349.73632,599.15626 350.62695,599.41406 L 350.62695,602.31445 L 349.51074,602.31445 C 349.34081,601.41212 348.96874,600.75294 348.39453,600.33691 C 347.8203,599.91505 347.00292,599.70411 345.94238,599.7041 C 345.07519,599.70411 344.41894,599.85646 343.97363,600.16113 C 343.53418,600.45997 343.31445,600.90821 343.31445,601.50586 C 343.31445,602.05079 343.46679,602.46681 343.77148,602.75391 C 344.07617,603.03517 344.82324,603.32813 346.0127,603.63281 L 347.98145,604.11621 C 349.20019,604.42091 350.08202,604.89551 350.62695,605.54004 C 351.17772,606.18458 351.45311,607.07227 351.45312,608.20312 C 351.45311,609.52735 350.99608,610.53516 350.08203,611.22656 C 349.16796,611.91211 347.82323,612.25488 346.04785,612.25488 C 345.19238,612.25488 344.34277,612.18164 343.49902,612.03516 C 342.65527,611.88867 341.79687,611.66602 340.92383,611.36719 M 365.95508,608.25586 C 365.60936,609.60938 364.98827,610.61426 364.0918,611.27051 C 363.1953,611.92676 361.9912,612.25488 360.47949,612.25488 C 358.26464,612.25488 356.51269,611.64551 355.22363,610.42676 C 353.94043,609.20215 353.29883,607.54395 353.29883,605.45215 C 353.29883,603.3545 353.94043,601.6963 355.22363,600.47754 C 356.51269,599.25294 358.26464,598.64064 360.47949,598.64062 C 361.25878,598.64064 362.0703,598.73439 362.91406,598.92188 C 363.7578,599.10939 364.65136,599.39357 365.59473,599.77441 L 365.59473,603 L 364.47852,603 C 364.24999,601.89845 363.83397,601.07521 363.23047,600.53027 C 362.62694,599.9795 361.83007,599.70411 360.83984,599.7041 C 359.56249,599.70411 358.61328,600.17579 357.99219,601.11914 C 357.37109,602.05665 357.06054,603.50099 357.06055,605.45215 C 357.06054,607.40332 357.37109,608.84766 357.99219,609.78516 C 358.61328,610.72266 359.56835,611.19141 360.85742,611.19141 C 361.73046,611.19141 362.44237,610.94824 362.99316,610.46191 C 363.54979,609.97559 363.95409,609.24024 364.20605,608.25586 L 365.95508,608.25586 M 366.74609,612 L 366.74609,610.93652 L 367.81836,610.93652 L 372.75781,598.87793 L 374.8584,598.87793 L 379.80664,610.93652 L 381.05469,610.93652 L 381.05469,612 L 374.91113,612 L 374.91113,610.93652 L 376.19434,610.93652 L 375.11328,608.25586 L 370.18262,608.25586 L 369.08398,610.93652 L 370.64844,610.93652 L 370.64844,612 L 366.74609,612 M 370.61328,607.19238 L 374.68262,607.19238 L 372.66113,602.17383 L 370.61328,607.19238 M 381.6875,612 L 381.6875,610.93652 L 383.36621,610.93652 L 383.36621,599.94141 L 381.6875,599.94141 L 381.6875,598.87793 L 389.1582,598.87793 C 390.61718,598.87794 391.77733,599.22658 392.63867,599.92383 C 393.49999,600.61525 393.93065,601.54396 393.93066,602.70996 C 393.93065,603.88184 393.49706,604.81934 392.62988,605.52246 C 391.76854,606.21973 390.61132,606.56836 389.1582,606.56836 L 386.75,606.56836 L 386.75,610.93652 L 388.86816,610.93652 L 388.86816,612 L 381.6875,612 M 386.75,605.50488 L 387.73438,605.50488 C 388.49609,605.50489 389.10253,605.25294 389.55371,604.74902 C 390.01073,604.23927 390.23925,603.55958 390.23926,602.70996 C 390.23925,601.86622 390.01366,601.19532 389.5625,600.69727 C 389.11132,600.19337 388.50195,599.94142 387.73438,599.94141 L 386.75,599.94141 L 386.75,605.50488 M 395.22266,612 L 395.22266,610.93652 L 396.90137,610.93652 L 396.90137,599.94141 L 395.22266,599.94141 L 395.22266,598.87793 L 407.01758,598.87793 L 407.01758,601.97168 L 405.80469,601.97168 L 405.80469,600.08203 L 400.28516,600.08203 L 400.28516,604.29199 L 403.72168,604.29199 L 403.72168,602.62207 L 404.92578,602.62207 L 404.92578,607.15723 L 403.72168,607.15723 L 403.72168,605.4873 L 400.28516,605.4873 L 400.28516,610.7959 L 405.97168,610.7959 L 405.97168,608.90625 L 407.17578,608.90625 L 407.17578,612 L 395.22266,612 M 420.61426,611.22656 C 421.31738,611.22656 421.79784,610.90723 422.05566,610.26855 C 422.31933,609.62989 422.45116,608.02442 422.45117,605.45215 C 422.45116,602.89747 422.31933,601.29493 422.05566,600.64453 C 421.79784,599.99415 421.31738,599.66896 420.61426,599.66895 C 419.91113,599.66896 419.42773,599.98829 419.16406,600.62695 C 418.90625,601.26564 418.77734,602.87403 418.77734,605.45215 C 418.77734,608.02442 418.90625,609.62989 419.16406,610.26855 C 419.42773,610.90723 419.91113,611.22656 420.61426,611.22656 M 420.61426,612.25488 C 418.8623,612.25488 417.5205,611.67188 416.58887,610.50586 C 415.65723,609.33399 415.19141,607.64942 415.19141,605.45215 C 415.19141,603.25489 415.65723,601.57032 416.58887,600.39844 C 417.5205,599.22658 418.8623,598.64064 420.61426,598.64062 C 422.36034,598.64064 423.69921,599.22658 424.63086,600.39844 C 425.56249,601.57032 426.02831,603.25489 426.02832,605.45215 C 426.02831,607.64942 425.56249,609.33399 424.63086,610.50586 C 423.69921,611.67188 422.36034,612.25488 420.61426,612.25488 M 428.32227,610.57617 C 428.32226,610.11914 428.48633,609.72656 428.81445,609.39844 C 429.14258,609.07032 429.53515,608.90625 429.99219,608.90625 C 430.45507,608.90625 430.85058,609.07032 431.17871,609.39844 C 431.50683,609.72656 431.67089,610.11914 431.6709,610.57617 C 431.67089,611.03906 431.50683,611.43457 431.17871,611.7627 C 430.85058,612.09082 430.45507,612.25488 429.99219,612.25488 C 429.53515,612.25488 429.14258,612.09082 428.81445,611.7627 C 428.48633,611.43457 428.32226,611.03906 428.32227,610.57617 M 444.6084,612 L 437.38379,612 L 437.38379,610.93652 L 439.33496,610.93652 L 439.33496,608.5459 L 433.85938,608.5459 L 433.85938,607.53516 L 439.35254,598.64062 L 442.65723,598.64062 L 442.65723,607.41211 L 444.90723,607.41211 L 444.90723,608.5459 L 442.65723,608.5459 L 442.65723,610.93652 L 444.6084,610.93652 L 444.6084,612 M 439.33496,607.41211 L 439.33496,601.04004 L 435.42383,607.41211 L 439.33496,607.41211 M 450.06641,604.22168 C 450.44726,603.917 450.87207,603.68848 451.34082,603.53613 C 451.81542,603.3838 452.33105,603.30763 452.8877,603.30762 C 454.22948,603.30763 455.28124,603.7002 456.04297,604.48535 C 456.81054,605.27051 457.19432,606.34864 457.19434,607.71973 C 457.19432,609.167 456.76366,610.28613 455.90234,611.07715 C 455.04101,611.8623 453.8164,612.25488 452.22852,612.25488 C 450.43554,612.25488 449.07617,611.71582 448.15039,610.6377 C 447.23047,609.55371 446.77051,607.96289 446.77051,605.86523 C 446.77051,603.48048 447.2832,601.68165 448.30859,600.46875 C 449.33398,599.25001 450.85449,598.64064 452.87012,598.64062 C 453.39745,598.64064 453.96288,598.68458 454.56641,598.77246 C 455.16991,598.86036 455.81737,598.9922 456.50879,599.16797 L 456.50879,601.48828 L 455.44531,601.48828 C 455.29882,600.89064 455.0205,600.43946 454.61035,600.13477 C 454.20605,599.82423 453.68163,599.66896 453.03711,599.66895 C 451.99413,599.66896 451.23828,600.02638 450.76953,600.74121 C 450.30664,601.45607 450.07226,602.61622 450.06641,604.22168 M 452.02637,611.22656 C 452.62988,611.22656 453.06054,610.97168 453.31836,610.46191 C 453.57616,609.94629 453.70507,609.05567 453.70508,607.79004 C 453.70507,606.52442 453.57616,605.63673 453.31836,605.12695 C 453.06054,604.61134 452.62988,604.35352 452.02637,604.35352 C 451.42285,604.35352 450.99218,604.61134 450.73438,605.12695 C 450.48242,605.63673 450.35644,606.52442 450.35645,607.79004 C 450.35644,609.05567 450.48242,609.94629 450.73438,610.46191 C 450.99218,610.97168 451.42285,611.22656 452.02637,611.22656"
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter6261);font-family:Bitstream Vera Serif" />
<path
style="font-size:18px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Serif"
d="M 299.84375,612 L 299.84375,610.93652 L 301.52246,610.93652 L 301.52246,599.94141 L 299.84375,599.94141 L 299.84375,598.87793 L 306.59375,598.87793 L 306.59375,599.94141 L 304.90625,599.94141 L 304.90625,610.93652 L 306.59375,610.93652 L 306.59375,612 L 299.84375,612 M 308.22852,612 L 308.22852,610.93652 L 309.90723,610.93652 L 309.90723,599.94141 L 308.22852,599.94141 L 308.22852,598.87793 L 312.33301,598.87793 L 320.25195,608.16797 L 320.25195,599.94141 L 318.58203,599.94141 L 318.58203,598.87793 L 323.16992,598.87793 L 323.16992,599.94141 L 321.49121,599.94141 L 321.49121,612 L 319.18848,612 L 311.14648,602.5166 L 311.14648,610.93652 L 312.81641,610.93652 L 312.81641,612 L 308.22852,612 M 324.73438,612 L 324.73438,610.93652 L 326.41309,610.93652 L 326.41309,599.94141 L 324.73438,599.94141 L 324.73438,598.87793 L 331.48438,598.87793 L 331.48438,599.94141 L 329.79688,599.94141 L 329.79688,604.73145 L 335.36035,599.94141 L 333.9541,599.94141 L 333.9541,598.87793 L 338.84961,598.87793 L 338.84961,599.94141 L 337.10059,599.94141 L 332.38965,603.99316 L 338.79688,610.93652 L 340.08887,610.93652 L 340.08887,612 L 335.6416,612 L 329.79688,605.62793 L 329.79688,610.93652 L 331.48438,610.93652 L 331.48438,612 L 324.73438,612 M 340.92383,611.36719 L 340.92383,608.25586 L 342.04004,608.25586 C 342.20996,609.24024 342.61133,609.97559 343.24414,610.46191 C 343.87695,610.94824 344.75292,611.19141 345.87207,611.19141 C 346.78027,611.19141 347.47167,611.01856 347.94629,610.67285 C 348.42089,610.32715 348.65819,609.82031 348.6582,609.15234 C 348.65819,608.625 348.49706,608.21485 348.1748,607.92188 C 347.85253,607.62891 347.18749,607.35645 346.17969,607.10449 L 344.21094,606.62109 C 342.92773,606.29297 342.02539,605.83887 341.50391,605.25879 C 340.98242,604.67286 340.72168,603.84083 340.72168,602.7627 C 340.72168,601.46192 341.15234,600.45118 342.01367,599.73047 C 342.88086,599.00392 344.09375,598.64064 345.65234,598.64062 C 346.41991,598.64064 347.21679,598.70509 348.04297,598.83398 C 348.87499,598.9629 349.73632,599.15626 350.62695,599.41406 L 350.62695,602.31445 L 349.51074,602.31445 C 349.34081,601.41212 348.96874,600.75294 348.39453,600.33691 C 347.8203,599.91505 347.00292,599.70411 345.94238,599.7041 C 345.07519,599.70411 344.41894,599.85646 343.97363,600.16113 C 343.53418,600.45997 343.31445,600.90821 343.31445,601.50586 C 343.31445,602.05079 343.46679,602.46681 343.77148,602.75391 C 344.07617,603.03517 344.82324,603.32813 346.0127,603.63281 L 347.98145,604.11621 C 349.20019,604.42091 350.08202,604.89551 350.62695,605.54004 C 351.17772,606.18458 351.45311,607.07227 351.45312,608.20312 C 351.45311,609.52735 350.99608,610.53516 350.08203,611.22656 C 349.16796,611.91211 347.82323,612.25488 346.04785,612.25488 C 345.19238,612.25488 344.34277,612.18164 343.49902,612.03516 C 342.65527,611.88867 341.79687,611.66602 340.92383,611.36719 M 365.95508,608.25586 C 365.60936,609.60938 364.98827,610.61426 364.0918,611.27051 C 363.1953,611.92676 361.9912,612.25488 360.47949,612.25488 C 358.26464,612.25488 356.51269,611.64551 355.22363,610.42676 C 353.94043,609.20215 353.29883,607.54395 353.29883,605.45215 C 353.29883,603.3545 353.94043,601.6963 355.22363,600.47754 C 356.51269,599.25294 358.26464,598.64064 360.47949,598.64062 C 361.25878,598.64064 362.0703,598.73439 362.91406,598.92188 C 363.7578,599.10939 364.65136,599.39357 365.59473,599.77441 L 365.59473,603 L 364.47852,603 C 364.24999,601.89845 363.83397,601.07521 363.23047,600.53027 C 362.62694,599.9795 361.83007,599.70411 360.83984,599.7041 C 359.56249,599.70411 358.61328,600.17579 357.99219,601.11914 C 357.37109,602.05665 357.06054,603.50099 357.06055,605.45215 C 357.06054,607.40332 357.37109,608.84766 357.99219,609.78516 C 358.61328,610.72266 359.56835,611.19141 360.85742,611.19141 C 361.73046,611.19141 362.44237,610.94824 362.99316,610.46191 C 363.54979,609.97559 363.95409,609.24024 364.20605,608.25586 L 365.95508,608.25586 M 366.74609,612 L 366.74609,610.93652 L 367.81836,610.93652 L 372.75781,598.87793 L 374.8584,598.87793 L 379.80664,610.93652 L 381.05469,610.93652 L 381.05469,612 L 374.91113,612 L 374.91113,610.93652 L 376.19434,610.93652 L 375.11328,608.25586 L 370.18262,608.25586 L 369.08398,610.93652 L 370.64844,610.93652 L 370.64844,612 L 366.74609,612 M 370.61328,607.19238 L 374.68262,607.19238 L 372.66113,602.17383 L 370.61328,607.19238 M 381.6875,612 L 381.6875,610.93652 L 383.36621,610.93652 L 383.36621,599.94141 L 381.6875,599.94141 L 381.6875,598.87793 L 389.1582,598.87793 C 390.61718,598.87794 391.77733,599.22658 392.63867,599.92383 C 393.49999,600.61525 393.93065,601.54396 393.93066,602.70996 C 393.93065,603.88184 393.49706,604.81934 392.62988,605.52246 C 391.76854,606.21973 390.61132,606.56836 389.1582,606.56836 L 386.75,606.56836 L 386.75,610.93652 L 388.86816,610.93652 L 388.86816,612 L 381.6875,612 M 386.75,605.50488 L 387.73438,605.50488 C 388.49609,605.50489 389.10253,605.25294 389.55371,604.74902 C 390.01073,604.23927 390.23925,603.55958 390.23926,602.70996 C 390.23925,601.86622 390.01366,601.19532 389.5625,600.69727 C 389.11132,600.19337 388.50195,599.94142 387.73438,599.94141 L 386.75,599.94141 L 386.75,605.50488 M 395.22266,612 L 395.22266,610.93652 L 396.90137,610.93652 L 396.90137,599.94141 L 395.22266,599.94141 L 395.22266,598.87793 L 407.01758,598.87793 L 407.01758,601.97168 L 405.80469,601.97168 L 405.80469,600.08203 L 400.28516,600.08203 L 400.28516,604.29199 L 403.72168,604.29199 L 403.72168,602.62207 L 404.92578,602.62207 L 404.92578,607.15723 L 403.72168,607.15723 L 403.72168,605.4873 L 400.28516,605.4873 L 400.28516,610.7959 L 405.97168,610.7959 L 405.97168,608.90625 L 407.17578,608.90625 L 407.17578,612 L 395.22266,612 M 420.61426,611.22656 C 421.31738,611.22656 421.79784,610.90723 422.05566,610.26855 C 422.31933,609.62989 422.45116,608.02442 422.45117,605.45215 C 422.45116,602.89747 422.31933,601.29493 422.05566,600.64453 C 421.79784,599.99415 421.31738,599.66896 420.61426,599.66895 C 419.91113,599.66896 419.42773,599.98829 419.16406,600.62695 C 418.90625,601.26564 418.77734,602.87403 418.77734,605.45215 C 418.77734,608.02442 418.90625,609.62989 419.16406,610.26855 C 419.42773,610.90723 419.91113,611.22656 420.61426,611.22656 M 420.61426,612.25488 C 418.8623,612.25488 417.5205,611.67188 416.58887,610.50586 C 415.65723,609.33399 415.19141,607.64942 415.19141,605.45215 C 415.19141,603.25489 415.65723,601.57032 416.58887,600.39844 C 417.5205,599.22658 418.8623,598.64064 420.61426,598.64062 C 422.36034,598.64064 423.69921,599.22658 424.63086,600.39844 C 425.56249,601.57032 426.02831,603.25489 426.02832,605.45215 C 426.02831,607.64942 425.56249,609.33399 424.63086,610.50586 C 423.69921,611.67188 422.36034,612.25488 420.61426,612.25488 M 428.32227,610.57617 C 428.32226,610.11914 428.48633,609.72656 428.81445,609.39844 C 429.14258,609.07032 429.53515,608.90625 429.99219,608.90625 C 430.45507,608.90625 430.85058,609.07032 431.17871,609.39844 C 431.50683,609.72656 431.67089,610.11914 431.6709,610.57617 C 431.67089,611.03906 431.50683,611.43457 431.17871,611.7627 C 430.85058,612.09082 430.45507,612.25488 429.99219,612.25488 C 429.53515,612.25488 429.14258,612.09082 428.81445,611.7627 C 428.48633,611.43457 428.32226,611.03906 428.32227,610.57617 M 444.6084,612 L 437.38379,612 L 437.38379,610.93652 L 439.33496,610.93652 L 439.33496,608.5459 L 433.85938,608.5459 L 433.85938,607.53516 L 439.35254,598.64062 L 442.65723,598.64062 L 442.65723,607.41211 L 444.90723,607.41211 L 444.90723,608.5459 L 442.65723,608.5459 L 442.65723,610.93652 L 444.6084,610.93652 L 444.6084,612 M 439.33496,607.41211 L 439.33496,601.04004 L 435.42383,607.41211 L 439.33496,607.41211 M 450.06641,604.22168 C 450.44726,603.917 450.87207,603.68848 451.34082,603.53613 C 451.81542,603.3838 452.33105,603.30763 452.8877,603.30762 C 454.22948,603.30763 455.28124,603.7002 456.04297,604.48535 C 456.81054,605.27051 457.19432,606.34864 457.19434,607.71973 C 457.19432,609.167 456.76366,610.28613 455.90234,611.07715 C 455.04101,611.8623 453.8164,612.25488 452.22852,612.25488 C 450.43554,612.25488 449.07617,611.71582 448.15039,610.6377 C 447.23047,609.55371 446.77051,607.96289 446.77051,605.86523 C 446.77051,603.48048 447.2832,601.68165 448.30859,600.46875 C 449.33398,599.25001 450.85449,598.64064 452.87012,598.64062 C 453.39745,598.64064 453.96288,598.68458 454.56641,598.77246 C 455.16991,598.86036 455.81737,598.9922 456.50879,599.16797 L 456.50879,601.48828 L 455.44531,601.48828 C 455.29882,600.89064 455.0205,600.43946 454.61035,600.13477 C 454.20605,599.82423 453.68163,599.66896 453.03711,599.66895 C 451.99413,599.66896 451.23828,600.02638 450.76953,600.74121 C 450.30664,601.45607 450.07226,602.61622 450.06641,604.22168 M 452.02637,611.22656 C 452.62988,611.22656 453.06054,610.97168 453.31836,610.46191 C 453.57616,609.94629 453.70507,609.05567 453.70508,607.79004 C 453.70507,606.52442 453.57616,605.63673 453.31836,605.12695 C 453.06054,604.61134 452.62988,604.35352 452.02637,604.35352 C 451.42285,604.35352 450.99218,604.61134 450.73438,605.12695 C 450.48242,605.63673 450.35644,606.52442 450.35645,607.79004 C 450.35644,609.05567 450.48242,609.94629 450.73438,610.46191 C 450.99218,610.97168 451.42285,611.22656 452.02637,611.22656"
id="text6220" />
</g>
<path
id="text6230"
d="M 312.55372,606.62305 L 314.208,611.46973 L 315.5752,607.4502 L 314.625,607.4502 L 314.625,606.62305 L 317.33886,606.62305 L 317.33886,607.4502 L 316.48438,607.4502 L 314.29003,613.88965 L 312.62207,613.88965 L 311.08398,609.33692 L 309.53223,613.88965 L 307.87793,613.88965 L 305.67675,607.4502 L 304.88378,607.4502 L 304.88378,606.62305 L 308.99902,606.62305 L 308.99902,607.4502 L 308.14454,607.4502 L 309.48438,611.38086 L 311.11132,606.62305 L 312.55372,606.62305 M 324.6123,606.62305 L 326.26661,611.46973 L 327.63378,607.4502 L 326.68359,607.4502 L 326.68359,606.62305 L 329.39746,606.62305 L 329.39746,607.4502 L 328.54296,607.4502 L 326.34863,613.88965 L 324.68066,613.88965 L 323.14257,609.33692 L 321.59082,613.88965 L 319.93652,613.88965 L 317.73536,607.4502 L 316.94238,607.4502 L 316.94238,606.62305 L 321.05761,606.62305 L 321.05761,607.4502 L 320.20312,607.4502 L 321.54296,611.38086 L 323.16993,606.62305 L 324.6123,606.62305 M 336.67089,606.62305 L 338.3252,611.46973 L 339.69238,607.4502 L 338.74218,607.4502 L 338.74218,606.62305 L 341.45605,606.62305 L 341.45605,607.4502 L 340.60157,607.4502 L 338.40723,613.88965 L 336.73925,613.88965 L 335.20118,609.33692 L 333.64941,613.88965 L 331.99511,613.88965 L 329.79395,607.4502 L 329.00098,607.4502 L 329.00098,606.62305 L 333.11622,606.62305 L 333.11622,607.4502 L 332.26171,607.4502 L 333.60157,611.38086 L 335.22852,606.62305 L 336.67089,606.62305 M 340.92286,612.78223 C 340.92285,612.42676 341.05045,612.12143 341.30566,611.86622 C 341.56087,611.61101 341.86621,611.48341 342.22168,611.4834 C 342.5817,611.48341 342.88932,611.61101 343.14454,611.86622 C 343.39973,612.12143 343.52733,612.42676 343.52734,612.78223 C 343.52733,613.14226 343.39973,613.44987 343.14454,613.70508 C 342.88932,613.96029 342.5817,614.0879 342.22168,614.0879 C 341.86621,614.0879 341.56087,613.96029 341.30566,613.70508 C 341.05045,613.44987 340.92285,613.14226 340.92286,612.78223 M 345.94043,604.56543 C 345.94043,604.1963 346.06804,603.88641 346.32325,603.63575 C 346.57844,603.38055 346.89062,603.25295 347.25977,603.25293 C 347.61978,603.25295 347.92512,603.38055 348.17579,603.63575 C 348.43098,603.88641 348.55858,604.1963 348.55859,604.56543 C 348.55858,604.92547 348.43098,605.23309 348.17579,605.48829 C 347.92512,605.73895 347.61978,605.86427 347.25977,605.86426 C 346.89062,605.86427 346.57844,605.73895 346.32325,605.48829 C 346.06804,605.23764 345.94043,604.93003 345.94043,604.56543 M 348.58593,613.0625 L 349.625,613.0625 L 349.625,613.88965 L 345.13378,613.88965 L 345.13378,613.0625 L 346.16602,613.0625 L 346.16602,607.4502 L 345.13378,607.4502 L 345.13378,606.62305 L 348.58593,606.62305 L 348.58593,613.0625 M 350.46582,613.88965 L 350.46582,613.0625 L 351.49805,613.0625 L 351.49805,607.4502 L 350.46582,607.4502 L 350.46582,606.62305 L 353.91796,606.62305 L 353.91796,607.64844 C 354.20964,607.21551 354.54232,606.90333 354.91602,606.71192 C 355.28971,606.52052 355.76139,606.42482 356.33105,606.42481 C 357.1468,606.42482 357.76203,606.66635 358.17675,607.14942 C 358.59601,607.62794 358.80566,608.33432 358.80566,609.26856 L 358.80566,613.0625 L 359.84473,613.0625 L 359.84473,613.88965 L 355.50391,613.88965 L 355.50391,613.0625 L 356.38575,613.0625 L 356.38575,609.2002 C 356.38573,608.58497 356.30598,608.15886 356.14648,607.92188 C 355.99153,607.68035 355.72037,607.55958 355.333,607.55958 C 354.84537,607.55958 354.48762,607.73959 354.25977,608.09961 C 354.03189,608.45509 353.91796,609.02247 353.91796,609.80176 L 353.91796,613.0625 L 354.80664,613.0625 L 354.80664,613.88965 L 350.46582,613.88965 M 365.00585,613.88965 L 360.6377,613.88965 L 360.6377,613.0625 L 361.66993,613.0625 L 361.66993,604.07325 L 360.6377,604.07325 L 360.6377,603.25293 L 364.08984,603.25293 L 364.08984,610.08204 L 367.02246,607.4502 L 366.1543,607.4502 L 366.1543,606.62305 L 369.46973,606.62305 L 369.46973,607.4502 L 368.12305,607.4502 L 366.25,609.13184 L 369.3125,613.0625 L 370.09863,613.0625 L 370.09863,613.88965 L 365.92872,613.88965 L 365.92872,613.0625 L 366.7832,613.0625 L 364.76661,610.47168 L 364.08984,611.07325 L 364.08984,613.0625 L 365.00585,613.0625 L 365.00585,613.88965 M 370.52246,613.67774 L 370.52246,611.64747 L 371.29493,611.64747 C 371.35873,612.18979 371.56152,612.6045 371.90332,612.89161 C 372.24511,613.17416 372.70996,613.31543 373.29786,613.31543 C 373.79003,613.31543 374.16602,613.23113 374.42579,613.0625 C 374.6901,612.88933 374.82226,612.64324 374.82227,612.32422 C 374.82226,612.03256 374.73794,611.80697 374.56934,611.64747 C 374.40526,611.48796 374.08398,611.34897 373.60546,611.23047 L 372.60743,610.97754 C 371.85546,610.7907 371.31088,610.5241 370.97363,610.17774 C 370.63639,609.82683 370.46777,609.35515 370.46777,608.7627 C 370.46777,607.97429 370.74121,607.38868 371.28809,607.00586 C 371.83496,606.6185 372.67805,606.42482 373.81738,606.42481 C 374.24577,606.42482 374.7015,606.46128 375.18457,606.53418 C 375.67219,606.60255 376.20996,606.71193 376.79786,606.86231 L 376.79786,608.69434 L 376.02539,608.69434 C 375.98437,608.1976 375.80664,607.8239 375.49218,607.57325 C 375.18228,607.3226 374.73568,607.19728 374.15234,607.19727 C 373.66016,607.19728 373.28646,607.27703 373.03125,607.43653 C 372.78059,607.59148 372.65526,607.81935 372.65527,608.12012 C 372.65526,608.36622 372.72818,608.55991 372.87402,608.70118 C 373.01986,608.84246 373.28189,608.96095 373.66016,609.05665 L 374.65136,609.30958 C 375.60384,609.55112 376.26237,609.84962 376.62695,610.20508 C 376.99153,610.56055 377.17381,611.05502 377.17382,611.68848 C 377.17381,612.5088 376.87987,613.11491 376.292,613.50684 C 375.70866,613.89421 374.79948,614.0879 373.56445,614.0879 C 373.11328,614.0879 372.63477,614.05372 372.12891,613.98536 C 371.62305,613.917 371.08757,613.81446 370.52246,613.67774 M 385.63671,611.62012 C 385.46353,612.44955 385.10807,613.06934 384.57032,613.4795 C 384.0371,613.8851 383.31021,614.0879 382.38964,614.0879 C 381.09537,614.0879 380.09277,613.75293 379.38184,613.08301 C 378.67089,612.41309 378.31543,611.46973 378.31543,610.25293 C 378.31543,609.04981 378.66634,608.11101 379.36816,607.43653 C 380.06998,606.76206 381.04525,606.42482 382.29395,606.42481 C 382.7998,606.42482 383.31021,606.47267 383.8252,606.56836 C 384.34016,606.66407 384.86424,606.80763 385.39746,606.99903 L 385.39746,609.01563 L 384.63184,609.01563 C 384.55891,608.4004 384.37889,607.94467 384.0918,607.64844 C 383.80468,607.34767 383.40136,607.19728 382.88184,607.19727 C 382.20736,607.19728 381.72655,607.42514 381.43945,607.88086 C 381.15689,608.3366 381.01562,609.12729 381.01562,610.25293 C 381.01562,611.35124 381.15462,612.13738 381.43261,612.61133 C 381.7106,613.08073 382.16405,613.31543 382.79296,613.31543 C 383.28059,613.31543 383.67025,613.1696 383.96191,612.87793 C 384.25814,612.58627 384.43814,612.167 384.50195,611.62012 L 385.63671,611.62012 M 393.98339,609.42579 L 393.98339,613.0625 L 395.02246,613.0625 L 395.02246,613.88965 L 391.56348,613.88965 L 391.56348,612.9668 C 391.24446,613.34961 390.889,613.63217 390.49707,613.81446 C 390.10514,613.99675 389.65852,614.0879 389.15723,614.0879 C 388.41439,614.0879 387.84244,613.88965 387.44141,613.49317 C 387.04493,613.09213 386.84668,612.52019 386.84668,611.77735 C 386.84668,610.9616 387.1315,610.35092 387.70118,609.94532 C 388.27539,609.53972 389.139,609.33692 390.292,609.33692 L 391.56348,609.33692 L 391.56348,608.90625 C 391.56348,608.31837 391.42448,607.88543 391.14648,607.60743 C 390.86848,607.32488 390.43782,607.18361 389.8545,607.1836 C 389.37141,607.18361 388.99771,607.28387 388.73339,607.48438 C 388.47362,607.68035 388.28905,608.00392 388.17968,608.45508 L 387.40723,608.45508 L 387.40723,606.88965 C 387.84016,606.73471 388.28905,606.6185 388.75391,606.54102 C 389.21875,606.46355 389.70866,606.42482 390.22363,606.42481 C 391.52246,606.42482 392.47264,606.66635 393.07421,607.14942 C 393.68034,607.6325 393.98338,608.39129 393.98339,609.42579 M 391.56348,611.60645 L 391.56348,610.1504 L 390.6543,610.1504 C 390.20312,610.1504 389.85676,610.27345 389.61523,610.51954 C 389.37369,610.76563 389.25293,611.11882 389.25293,611.57911 C 389.25293,612.03939 389.33952,612.38347 389.5127,612.61133 C 389.69043,612.8392 389.9593,612.95313 390.31934,612.95313 C 390.69303,612.95313 390.9938,612.83008 391.22168,612.58399 C 391.44953,612.3379 391.56348,612.01205 391.56348,611.60645 M 399.13085,609.89747 L 399.13085,610.61524 C 399.13085,611.4629 399.23795,612.07585 399.45214,612.45411 C 399.67089,612.83236 400.0218,613.02149 400.50488,613.02149 C 401.00162,613.02149 401.35025,612.82097 401.55079,612.41993 C 401.75585,612.01889 401.85839,611.29656 401.85839,610.25293 C 401.85839,609.20932 401.75585,608.48927 401.55079,608.09278 C 401.35025,607.69174 401.00162,607.49122 400.50488,607.49122 C 400.0218,607.49122 399.67089,607.68035 399.45214,608.0586 C 399.23795,608.43686 399.13085,609.04981 399.13085,609.89747 M 396.71093,607.4502 L 395.67188,607.4502 L 395.67188,606.62305 L 399.13085,606.62305 L 399.13085,607.5459 C 399.33593,607.16765 399.61164,606.88738 399.958,606.70508 C 400.30435,606.51824 400.73275,606.42482 401.24316,606.42481 C 402.27766,606.42482 403.09114,606.76661 403.68359,607.4502 C 404.28058,608.12924 404.5791,609.06349 404.57911,610.25293 C 404.5791,611.44239 404.28058,612.37891 403.68359,613.0625 C 403.09114,613.7461 402.27766,614.0879 401.24316,614.0879 C 400.73275,614.0879 400.30435,613.99675 399.958,613.81446 C 399.61164,613.62761 399.33593,613.34506 399.13085,612.9668 L 399.13085,615.97461 L 400.25195,615.97461 L 400.25195,616.80176 L 395.67188,616.80176 L 395.67188,615.97461 L 396.71093,615.97461 L 396.71093,607.4502 M 410.75195,609.78809 C 410.75194,608.83106 410.66308,608.16114 410.48536,607.77833 C 410.30761,607.39096 410.00455,607.19728 409.57618,607.19727 C 409.16146,607.19728 408.86295,607.3864 408.68066,607.76465 C 408.50293,608.14291 408.41405,608.77638 408.41407,609.66504 L 408.41407,609.78809 L 410.75195,609.78809 M 413.41113,610.60157 L 408.41407,610.60157 L 408.41407,610.65625 C 408.41405,611.59506 408.55534,612.27409 408.83789,612.69336 C 409.12044,613.10808 409.57616,613.31543 410.20507,613.31543 C 410.72916,613.31543 411.15298,613.17644 411.47657,612.89844 C 411.80012,612.62045 412.00747,612.21713 412.09863,611.68848 L 413.23339,611.68848 C 413.03742,612.51335 412.64778,613.11947 412.06445,613.50684 C 411.48112,613.89421 410.66535,614.0879 409.61718,614.0879 C 408.35938,614.0879 407.39323,613.75749 406.71875,613.09668 C 406.04882,612.43132 405.71386,611.48341 405.71386,610.25293 C 405.71386,609.04981 406.05795,608.11101 406.74609,607.43653 C 407.43425,606.76206 408.39127,606.42482 409.61718,606.42481 C 410.8203,606.42482 411.74316,606.78029 412.38575,607.49122 C 413.02832,608.1976 413.3701,609.23438 413.41113,610.60157 M 415.18848,612.78223 C 415.18848,612.42676 415.31607,612.12143 415.57128,611.86622 C 415.8265,611.61101 416.13184,611.48341 416.4873,611.4834 C 416.84732,611.48341 417.15494,611.61101 417.41016,611.86622 C 417.66536,612.12143 417.79296,612.42676 417.79296,612.78223 C 417.79296,613.14226 417.66536,613.44987 417.41016,613.70508 C 417.15494,613.96029 416.84732,614.0879 416.4873,614.0879 C 416.13184,614.0879 415.8265,613.96029 415.57128,613.70508 C 415.31607,613.44987 415.18848,613.14226 415.18848,612.78223 M 423.59668,613.31543 C 424.10709,613.31543 424.46483,613.09669 424.66993,612.65918 C 424.87955,612.22169 424.98437,611.4196 424.98438,610.25293 C 424.98437,609.08627 424.88183,608.28647 424.67675,607.85352 C 424.47168,607.41603 424.11164,607.19728 423.59668,607.19727 C 423.0817,607.19728 422.71939,607.41831 422.50977,607.86036 C 422.30012,608.29786 422.1953,609.09539 422.19532,610.25293 C 422.1953,611.41049 422.30012,612.21029 422.50977,612.65235 C 422.71939,613.09441 423.0817,613.31543 423.59668,613.31543 M 423.59668,614.0879 C 422.31607,614.0879 421.31119,613.74838 420.58204,613.06934 C 419.85743,612.38575 419.49511,611.44695 419.49511,610.25293 C 419.49511,609.05437 419.85743,608.11785 420.58204,607.44336 C 421.31119,606.76433 422.31607,606.42482 423.59668,606.42481 C 424.88183,606.42482 425.88671,606.76433 426.61132,607.44336 C 427.33592,608.11785 427.69823,609.05437 427.69825,610.25293 C 427.69823,611.44695 427.33365,612.38575 426.6045,613.06934 C 425.87987,613.74838 424.87727,614.0879 423.59668,614.0879 M 435.792,606.54102 L 435.792,608.70801 L 435.01954,608.70801 C 434.99217,608.32065 434.88737,608.03354 434.70507,607.84668 C 434.52278,607.65528 434.25846,607.55958 433.9121,607.55958 C 433.38346,607.55958 432.96646,607.792 432.66113,608.25684 C 432.35578,608.72169 432.20312,609.36655 432.20312,610.19141 L 432.20312,613.0625 L 433.52246,613.0625 L 433.52246,613.88965 L 428.75098,613.88965 L 428.75098,613.0625 L 429.7832,613.0625 L 429.7832,607.4502 L 428.67579,607.4502 L 428.67579,606.62305 L 432.20312,606.62305 L 432.20312,607.91504 C 432.4401,607.40919 432.75227,607.03549 433.13964,606.79395 C 433.53157,606.54786 434.01009,606.42482 434.5752,606.42481 C 434.71646,606.42482 434.88737,606.43621 435.08789,606.45899 C 435.29296,606.47723 435.52766,606.50457 435.792,606.54102 M 444.08398,607.4502 L 444.08398,613.79395 C 444.08398,614.81478 443.71939,615.60319 442.99023,616.15918 C 442.26562,616.71973 441.24023,617 439.91407,617 C 439.43098,617 438.94107,616.96126 438.44434,616.88379 C 437.94759,616.81087 437.43718,616.69922 436.91309,616.54883 L 436.91309,614.8125 L 437.68555,614.8125 C 437.75391,615.29102 437.9453,615.64649 438.25977,615.87891 C 438.57877,616.11133 439.03223,616.22754 439.62011,616.22754 C 440.36751,616.22754 440.89387,616.04753 441.19921,615.6875 C 441.5091,615.33203 441.66405,614.70085 441.66407,613.79395 L 441.66407,612.9668 C 441.45898,613.34506 441.18098,613.62761 440.83007,613.81446 C 440.48371,613.99675 440.05534,614.0879 439.54493,614.0879 C 438.51498,614.0879 437.70377,613.7461 437.11132,613.0625 C 436.52343,612.37891 436.2295,611.44239 436.2295,610.25293 C 436.2295,609.05893 436.52343,608.12241 437.11132,607.44336 C 437.70377,606.76433 438.51498,606.42482 439.54493,606.42481 C 440.05534,606.42482 440.48371,606.51824 440.83007,606.70508 C 441.18098,606.88738 441.45898,607.16765 441.66407,607.5459 L 441.66407,606.62305 L 445.11622,606.62305 L 445.11622,607.4502 L 444.08398,607.4502 M 441.66407,609.89747 C 441.66405,609.04981 441.55468,608.43686 441.33593,608.0586 C 441.11718,607.68035 440.76855,607.49122 440.29003,607.49122 C 439.78873,607.49122 439.43555,607.69174 439.23046,608.09278 C 439.02994,608.48927 438.92968,609.20932 438.92968,610.25293 C 438.92968,611.29656 439.03223,612.01889 439.2373,612.41993 C 439.44237,612.82097 439.79328,613.02149 440.29003,613.02149 C 440.76855,613.02149 441.11718,612.83236 441.33593,612.45411 C 441.55468,612.07585 441.66405,611.4629 441.66407,610.61524 L 441.66407,609.89747"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Serif" />
<path
id="text6277"
d="M 10.01563,184.77637 L 14.63672,184.77637 L 14.63672,186.03418 L 10.05664,186.03418 C 9.33204,186.03419 8.78972,186.17546 8.42969,186.45801 C 8.06967,186.74056 7.88966,187.16439 7.88965,187.72949 C 7.88966,188.40853 8.10613,188.94401 8.53906,189.33594 C 8.97201,189.72787 9.56218,189.92383 10.30957,189.92383 L 14.63672,189.92383 L 14.63672,191.18848 L 6.98047,191.18848 L 6.98047,189.92383 L 8.16992,189.92383 C 7.70964,189.62305 7.36557,189.26986 7.1377,188.86426 C 6.90984,188.4541 6.79591,187.98243 6.7959,187.44922 C 6.79591,186.56967 7.06934,185.9043 7.61621,185.45312 C 8.15854,185.00196 8.95834,184.77637 10.01563,184.77637 M 10.49414,175.70508 L 11.10938,175.70508 L 11.10938,181.48828 C 11.97526,181.43359 12.63607,181.17383 13.0918,180.70898 C 13.54297,180.23959 13.76856,179.58789 13.76856,178.75391 C 13.76856,178.27084 13.70931,177.80372 13.59082,177.35254 C 13.47233,176.89682 13.2946,176.44564 13.05762,175.99902 L 14.24707,175.99902 C 14.43848,176.4502 14.58431,176.91277 14.68457,177.38672 C 14.78483,177.86068 14.83496,178.34148 14.83496,178.8291 C 14.83496,180.05046 14.47949,181.01888 13.76856,181.73437 C 13.05762,182.44531 12.09603,182.80078 10.88379,182.80078 C 9.63054,182.80078 8.63705,182.46354 7.90332,181.78906 C 7.16505,181.11003 6.79591,180.19629 6.7959,179.04785 C 6.79591,178.01791 7.12859,177.20443 7.79395,176.60742 C 8.45476,176.00587 9.35482,175.70509 10.49414,175.70508 M 10.125,176.96289 C 9.43686,176.97201 8.8877,177.1657 8.47754,177.54394 C 8.06739,177.91765 7.86231,178.41439 7.86231,179.03418 C 7.86231,179.73601 8.06055,180.29883 8.45703,180.72266 C 8.85352,181.14193 9.41179,181.38346 10.13184,181.44726 L 10.125,176.96289 M 10.49414,167.0918 L 11.10938,167.0918 L 11.10938,172.875 C 11.97526,172.82031 12.63607,172.56055 13.0918,172.0957 C 13.54297,171.6263 13.76856,170.97461 13.76856,170.14062 C 13.76856,169.65756 13.70931,169.19043 13.59082,168.73926 C 13.47233,168.28353 13.2946,167.83236 13.05762,167.38574 L 14.24707,167.38574 C 14.43848,167.83692 14.58431,168.29948 14.68457,168.77344 C 14.78483,169.2474 14.83496,169.72819 14.83496,170.21582 C 14.83496,171.43718 14.47949,172.4056 13.76856,173.12109 C 13.05762,173.83203 12.09603,174.1875 10.88379,174.1875 C 9.63054,174.1875 8.63705,173.85026 7.90332,173.17578 C 7.16505,172.49675 6.79591,171.58301 6.7959,170.43457 C 6.79591,169.40463 7.12859,168.59115 7.79395,167.99414 C 8.45476,167.39258 9.35482,167.0918 10.49414,167.0918 M 10.125,168.34961 C 9.43686,168.35873 8.8877,168.55241 8.47754,168.93066 C 8.06739,169.30437 7.86231,169.80111 7.86231,170.4209 C 7.86231,171.12272 8.06055,171.68555 8.45703,172.10937 C 8.85352,172.52865 9.41179,172.77018 10.13184,172.83398 L 10.125,168.34961 M 8.14258,159.98926 L 4,159.98926 L 4,158.73144 L 14.63672,158.73144 L 14.63672,159.98926 L 13.48828,159.98926 C 13.94401,160.25359 14.28353,160.58855 14.50684,160.99414 C 14.72559,161.39519 14.83496,161.87826 14.83496,162.44336 C 14.83496,163.36849 14.46582,164.12272 13.72754,164.70605 C 12.98926,165.28483 12.01856,165.57422 10.81543,165.57422 C 9.61231,165.57422 8.64161,165.28483 7.90332,164.70605 C 7.16505,164.12272 6.79591,163.36849 6.7959,162.44336 C 6.79591,161.87826 6.90756,161.39519 7.13086,160.99414 C 7.34962,160.58855 7.68686,160.25359 8.14258,159.98926 M 10.81543,164.27539 C 11.74056,164.27539 12.46745,164.08626 12.9961,163.70801 C 13.52018,163.3252 13.78223,162.80111 13.78223,162.13574 C 13.78223,161.47038 13.52018,160.94629 12.9961,160.56348 C 12.46745,160.18067 11.74056,159.98926 10.81543,159.98926 C 9.89031,159.98926 9.1657,160.18067 8.6416,160.56348 C 8.11296,160.94629 7.84864,161.47038 7.84863,162.13574 C 7.84864,162.80111 8.11296,163.3252 8.6416,163.70801 C 9.1657,164.08626 9.89031,164.27539 10.81543,164.27539 M 7.27442,150.63086 L 8.4502,150.63086 C 8.25424,150.98633 8.10841,151.34408 8.0127,151.7041 C 7.91244,152.05957 7.86231,152.4196 7.86231,152.78418 C 7.86231,153.59994 8.12208,154.2334 8.6416,154.68457 C 9.15658,155.13574 9.88119,155.36133 10.81543,155.36133 C 11.74968,155.36133 12.47657,155.13574 12.9961,154.68457 C 13.51107,154.2334 13.76856,153.59994 13.76856,152.78418 C 13.76856,152.4196 13.72071,152.05957 13.625,151.7041 C 13.52474,151.34408 13.37663,150.98633 13.18067,150.63086 L 14.34277,150.63086 C 14.50684,150.98178 14.62988,151.34636 14.71192,151.72461 C 14.79395,152.09831 14.83496,152.49707 14.83496,152.9209 C 14.83496,154.0739 14.47266,154.98991 13.74805,155.66894 C 13.02344,156.34798 12.0459,156.6875 10.81543,156.6875 C 9.56674,156.6875 8.58464,156.3457 7.86914,155.66211 C 7.15365,154.97396 6.79591,154.03288 6.7959,152.83887 C 6.79591,152.4515 6.83692,152.07325 6.91895,151.7041 C 6.99643,151.33497 7.11492,150.97722 7.27442,150.63086 M 7.86231,145.46289 C 7.86231,146.13737 8.12664,146.67058 8.65527,147.0625 C 9.17937,147.45443 9.89942,147.65039 10.81543,147.65039 C 11.73145,147.65039 12.45378,147.45671 12.98242,147.06934 C 13.50651,146.67741 13.76856,146.14193 13.76856,145.46289 C 13.76856,144.79297 13.50423,144.26205 12.97559,143.87012 C 12.44694,143.4782 11.72689,143.28223 10.81543,143.28223 C 9.90853,143.28223 9.19076,143.4782 8.66211,143.87012 C 8.12891,144.26205 7.86231,144.79297 7.86231,145.46289 M 6.7959,145.46289 C 6.79591,144.36915 7.15138,143.5101 7.86231,142.88574 C 8.57325,142.2614 9.55762,141.94923 10.81543,141.94922 C 12.06869,141.94923 13.05306,142.2614 13.76856,142.88574 C 14.47949,143.5101 14.83496,144.36915 14.83496,145.46289 C 14.83496,146.5612 14.47949,147.42253 13.76856,148.04687 C 13.05306,148.66667 12.06869,148.97656 10.81543,148.97656 C 9.55762,148.97656 8.57325,148.66667 7.86231,148.04687 C 7.15138,147.42253 6.79591,146.5612 6.7959,145.46289 M 4,135.99512 L 5.0459,135.99512 L 5.0459,137.19824 C 5.04591,137.64942 5.13706,137.96387 5.31934,138.1416 C 5.50164,138.31478 5.82976,138.40137 6.30371,138.40137 L 6.98047,138.40137 L 6.98047,136.33008 L 7.95801,136.33008 L 7.95801,138.40137 L 14.63672,138.40137 L 14.63672,139.66601 L 7.95801,139.66601 L 7.95801,140.86914 L 6.98047,140.86914 L 6.98047,139.66601 L 6.44727,139.66601 C 5.59506,139.66602 4.97527,139.46777 4.58789,139.07129 C 4.19598,138.67481 4.00001,138.0459 4,137.18457 L 4,135.99512 M 4,131.07324 L 5.0459,131.07324 L 5.0459,132.27637 C 5.04591,132.72754 5.13706,133.04199 5.31934,133.21973 C 5.50164,133.39291 5.82976,133.47949 6.30371,133.47949 L 6.98047,133.47949 L 6.98047,131.4082 L 7.95801,131.4082 L 7.95801,133.47949 L 14.63672,133.47949 L 14.63672,134.74414 L 7.95801,134.74414 L 7.95801,135.94726 L 6.98047,135.94726 L 6.98047,134.74414 L 6.44727,134.74414 C 5.59506,134.74414 4.97527,134.5459 4.58789,134.14941 C 4.19598,133.75293 4.00001,133.12403 4,132.26269 L 4,131.07324 M 10.49414,123.47851 L 11.10938,123.47851 L 11.10938,129.26172 C 11.97526,129.20703 12.63607,128.94727 13.0918,128.48242 C 13.54297,128.01302 13.76856,127.36133 13.76856,126.52734 C 13.76856,126.04428 13.70931,125.57715 13.59082,125.12598 C 13.47233,124.67025 13.2946,124.21908 13.05762,123.77246 L 14.24707,123.77246 C 14.43848,124.22364 14.58431,124.6862 14.68457,125.16016 C 14.78483,125.63412 14.83496,126.11491 14.83496,126.60254 C 14.83496,127.8239 14.47949,128.79232 13.76856,129.50781 C 13.05762,130.21875 12.09603,130.57422 10.88379,130.57422 C 9.63054,130.57422 8.63705,130.23698 7.90332,129.5625 C 7.16505,128.88347 6.79591,127.96973 6.7959,126.82129 C 6.79591,125.79135 7.12859,124.97787 7.79395,124.38086 C 8.45476,123.7793 9.35482,123.47852 10.49414,123.47851 M 10.125,124.73633 C 9.43686,124.74545 8.8877,124.93913 8.47754,125.31738 C 8.06739,125.69109 7.86231,126.18783 7.86231,126.80762 C 7.86231,127.50944 8.06055,128.07227 8.45703,128.49609 C 8.85352,128.91537 9.41179,129.1569 10.13184,129.2207 L 10.125,124.73633 M 10.49414,114.86523 L 11.10938,114.86523 L 11.10938,120.64844 C 11.97526,120.59375 12.63607,120.33399 13.0918,119.86914 C 13.54297,119.39974 13.76856,118.74805 13.76856,117.91406 C 13.76856,117.43099 13.70931,116.96387 13.59082,116.51269 C 13.47233,116.05697 13.2946,115.6058 13.05762,115.15918 L 14.24707,115.15918 C 14.43848,115.61036 14.58431,116.07292 14.68457,116.54687 C 14.78483,117.02084 14.83496,117.50163 14.83496,117.98926 C 14.83496,119.21061 14.47949,120.17904 13.76856,120.89453 C 13.05762,121.60547 12.09603,121.96094 10.88379,121.96094 C 9.63054,121.96094 8.63705,121.6237 7.90332,120.94922 C 7.16505,120.27018 6.79591,119.35645 6.7959,118.20801 C 6.79591,117.17806 7.12859,116.36459 7.79395,115.76758 C 8.45476,115.16602 9.35482,114.86524 10.49414,114.86523 M 10.125,116.12305 C 9.43686,116.13217 8.8877,116.32585 8.47754,116.7041 C 8.06739,117.0778 7.86231,117.57455 7.86231,118.19434 C 7.86231,118.89616 8.06055,119.45899 8.45703,119.88281 C 8.85352,120.30208 9.41179,120.54362 10.13184,120.60742 L 10.125,116.12305 M 12.90039,112.62305 L 12.90039,111.18066 L 14.63672,111.18066 L 14.63672,112.62305 L 12.90039,112.62305 M 8.14258,103.30566 L 4,103.30566 L 4,102.04785 L 14.63672,102.04785 L 14.63672,103.30566 L 13.48828,103.30566 C 13.94401,103.56999 14.28353,103.90495 14.50684,104.31055 C 14.72559,104.71159 14.83496,105.19466 14.83496,105.75976 C 14.83496,106.6849 14.46582,107.43913 13.72754,108.02246 C 12.98926,108.60124 12.01856,108.89062 10.81543,108.89062 C 9.61231,108.89062 8.64161,108.60124 7.90332,108.02246 C 7.16505,107.43913 6.79591,106.6849 6.7959,105.75976 C 6.79591,105.19466 6.90756,104.71159 7.13086,104.31055 C 7.34962,103.90495 7.68686,103.56999 8.14258,103.30566 M 10.81543,107.5918 C 11.74056,107.5918 12.46745,107.40267 12.9961,107.02441 C 13.52018,106.6416 13.78223,106.11752 13.78223,105.45215 C 13.78223,104.78679 13.52018,104.2627 12.9961,103.87988 C 12.46745,103.49708 11.74056,103.30567 10.81543,103.30566 C 9.89031,103.30567 9.1657,103.49708 8.6416,103.87988 C 8.11296,104.2627 7.84864,104.78679 7.84863,105.45215 C 7.84864,106.11752 8.11296,106.6416 8.6416,107.02441 C 9.1657,107.40267 9.89031,107.5918 10.81543,107.5918 M 10.49414,92.9082 L 11.10938,92.9082 L 11.10938,98.69141 C 11.97526,98.63672 12.63607,98.37695 13.0918,97.91211 C 13.54297,97.44271 13.76856,96.79102 13.76856,95.95703 C 13.76856,95.47396 13.70931,95.00684 13.59082,94.55566 C 13.47233,94.09994 13.2946,93.64877 13.05762,93.20215 L 14.24707,93.20215 C 14.43848,93.65333 14.58431,94.11589 14.68457,94.58984 C 14.78483,95.06381 14.83496,95.5446 14.83496,96.03223 C 14.83496,97.25358 14.47949,98.22201 13.76856,98.9375 C 13.05762,99.64844 12.09603,100.00391 10.88379,100.00391 C 9.63054,100.00391 8.63705,99.66667 7.90332,98.99219 C 7.16505,98.31315 6.79591,97.39942 6.7959,96.25098 C 6.79591,95.22103 7.12859,94.40756 7.79395,93.81055 C 8.45476,93.20899 9.35482,92.90821 10.49414,92.9082 M 10.125,94.16601 C 9.43686,94.17514 8.8877,94.36882 8.47754,94.74707 C 8.06739,95.12077 7.86231,95.61752 7.86231,96.2373 C 7.86231,96.93913 8.06055,97.50196 8.45703,97.92578 C 8.85352,98.34505 9.41179,98.58659 10.13184,98.65039 L 10.125,94.16601 M 6.98047,91.74609 L 6.98047,90.41308 L 13.40625,88.02051 L 6.98047,85.62793 L 6.98047,84.29492 L 14.63672,87.16601 L 14.63672,88.875 L 6.98047,91.74609 M 6.98047,82.55859 L 6.98047,81.30078 L 14.63672,81.30078 L 14.63672,82.55859 L 6.98047,82.55859 M 4,82.55859 L 4,81.30078 L 5.59277,81.30078 L 5.59277,82.55859 L 4,82.55859 M 10.78809,75.19629 C 10.78809,76.21257 10.9043,76.91667 11.13672,77.30859 C 11.36915,77.70052 11.76563,77.89649 12.32617,77.89648 C 12.77279,77.89649 13.12826,77.75065 13.39258,77.45898 C 13.65235,77.16276 13.78223,76.76172 13.78223,76.25586 C 13.78223,75.5586 13.53614,75.00033 13.04395,74.58105 C 12.5472,74.15723 11.88868,73.94532 11.06836,73.94531 L 10.78809,73.94531 L 10.78809,75.19629 M 10.26856,72.6875 L 14.63672,72.6875 L 14.63672,73.94531 L 13.47461,73.94531 C 13.93946,74.23243 14.28353,74.59017 14.50684,75.01855 C 14.72559,75.44694 14.83496,75.97103 14.83496,76.59082 C 14.83496,77.37468 14.61621,77.99902 14.17871,78.46387 C 13.73666,78.92415 13.14649,79.1543 12.4082,79.1543 C 11.54688,79.1543 10.89747,78.86719 10.45996,78.29297 C 10.02247,77.71419 9.80372,76.85287 9.80371,75.70898 L 9.80371,73.94531 L 9.68067,73.94531 C 9.10189,73.94532 8.65528,74.13672 8.34082,74.51953 C 8.02182,74.89779 7.86231,75.43099 7.86231,76.11914 C 7.86231,76.55664 7.91472,76.98275 8.01953,77.39746 C 8.12436,77.81218 8.28158,78.21094 8.49121,78.59375 L 7.3291,78.59375 C 7.15138,78.13346 7.01921,77.68685 6.93262,77.25391 C 6.84148,76.82097 6.79591,76.39942 6.7959,75.98926 C 6.79591,74.88184 7.08302,74.05469 7.65723,73.50781 C 8.23145,72.96094 9.10189,72.68751 10.26856,72.6875 M 10.01563,63.72558 L 14.63672,63.72558 L 14.63672,64.9834 L 10.05664,64.9834 C 9.33204,64.9834 8.78972,65.12468 8.42969,65.40723 C 8.06967,65.68978 7.88966,66.11361 7.88965,66.67871 C 7.88966,67.35775 8.10613,67.89323 8.53906,68.28516 C 8.97201,68.67709 9.56218,68.87305 10.30957,68.87305 L 14.63672,68.87305 L 14.63672,70.13769 L 6.98047,70.13769 L 6.98047,68.87305 L 8.16992,68.87305 C 7.70964,68.57227 7.36557,68.21908 7.1377,67.81348 C 6.90984,67.40332 6.79591,66.93164 6.7959,66.39844 C 6.79591,65.51889 7.06934,64.85352 7.61621,64.40234 C 8.15854,63.95118 8.95834,63.72559 10.01563,63.72558 M 4.80664,59.95898 L 6.98047,59.95898 L 6.98047,57.36816 L 7.95801,57.36816 L 7.95801,59.95898 L 12.11426,59.95898 C 12.73861,59.95899 13.13965,59.87468 13.31738,59.70605 C 13.49512,59.53288 13.58399,59.18425 13.58399,58.66016 L 13.58399,57.36816 L 14.63672,57.36816 L 14.63672,58.66016 C 14.63672,59.63086 14.45671,60.30078 14.09668,60.66992 C 13.7321,61.03906 13.07129,61.22363 12.11426,61.22363 L 7.95801,61.22363 L 7.95801,62.14648 L 6.98047,62.14648 L 6.98047,61.22363 L 4.80664,61.22363 L 4.80664,59.95898 M 10.78809,52.22754 C 10.78809,53.24382 10.9043,53.94792 11.13672,54.33984 C 11.36915,54.73177 11.76563,54.92774 12.32617,54.92773 C 12.77279,54.92774 13.12826,54.7819 13.39258,54.49023 C 13.65235,54.19401 13.78223,53.79297 13.78223,53.28711 C 13.78223,52.58985 13.53614,52.03158 13.04395,51.6123 C 12.5472,51.18848 11.88868,50.97657 11.06836,50.97656 L 10.78809,50.97656 L 10.78809,52.22754 M 10.26856,49.71875 L 14.63672,49.71875 L 14.63672,50.97656 L 13.47461,50.97656 C 13.93946,51.26368 14.28353,51.62142 14.50684,52.0498 C 14.72559,52.47819 14.83496,53.00228 14.83496,53.62207 C 14.83496,54.40593 14.61621,55.03027 14.17871,55.49512 C 13.73666,55.9554 13.14649,56.18555 12.4082,56.18555 C 11.54688,56.18555 10.89747,55.89844 10.45996,55.32422 C 10.02247,54.74544 9.80372,53.88412 9.80371,52.74023 L 9.80371,50.97656 L 9.68067,50.97656 C 9.10189,50.97657 8.65528,51.16797 8.34082,51.55078 C 8.02182,51.92904 7.86231,52.46224 7.86231,53.15039 C 7.86231,53.58789 7.91472,54.014 8.01953,54.42871 C 8.12436,54.84343 8.28158,55.24219 8.49121,55.625 L 7.3291,55.625 C 7.15138,55.16471 7.01921,54.7181 6.93262,54.28516 C 6.84148,53.85222 6.79591,53.43067 6.7959,53.02051 C 6.79591,51.91309 7.08302,51.08594 7.65723,50.53906 C 8.23145,49.99219 9.10189,49.71876 10.26856,49.71875 M 8.15625,42.68457 C 8.07423,42.82585 8.01498,42.9808 7.97852,43.14941 C 7.93751,43.31348 7.917,43.49577 7.91699,43.69629 C 7.917,44.40723 8.14942,44.9541 8.61426,45.33691 C 9.07455,45.71517 9.73764,45.9043 10.60352,45.9043 L 14.63672,45.9043 L 14.63672,47.16894 L 6.98047,47.16894 L 6.98047,45.9043 L 8.16992,45.9043 C 7.70509,45.63998 7.36101,45.2959 7.1377,44.87207 C 6.90984,44.44825 6.79591,43.93327 6.7959,43.32715 C 6.79591,43.24056 6.80274,43.14486 6.81641,43.04004 C 6.82553,42.93523 6.84148,42.81902 6.86426,42.69141 L 8.15625,42.68457 M 4.80664,40.10742 L 6.98047,40.10742 L 6.98047,37.5166 L 7.95801,37.5166 L 7.95801,40.10742 L 12.11426,40.10742 C 12.73861,40.10742 13.13965,40.02311 13.31738,39.85449 C 13.49512,39.68132 13.58399,39.33268 13.58399,38.80859 L 13.58399,37.5166 L 14.63672,37.5166 L 14.63672,38.80859 C 14.63672,39.7793 14.45671,40.44922 14.09668,40.81836 C 13.7321,41.1875 13.07129,41.37207 12.11426,41.37207 L 7.95801,41.37207 L 7.95801,42.29492 L 6.98047,42.29492 L 6.98047,41.37207 L 4.80664,41.37207 L 4.80664,40.10742 M 12.90039,35.67773 L 12.90039,34.23535 L 14.63672,34.23535 L 14.63672,35.67773 L 12.90039,35.67773 M 7.27442,25.88867 L 8.4502,25.88867 C 8.25424,26.24415 8.10841,26.60189 8.0127,26.96191 C 7.91244,27.31739 7.86231,27.67741 7.86231,28.04199 C 7.86231,28.85775 8.12208,29.49121 8.6416,29.94238 C 9.15658,30.39356 9.88119,30.61914 10.81543,30.61914 C 11.74968,30.61914 12.47657,30.39356 12.9961,29.94238 C 13.51107,29.49121 13.76856,28.85775 13.76856,28.04199 C 13.76856,27.67741 13.72071,27.31739 13.625,26.96191 C 13.52474,26.60189 13.37663,26.24415 13.18067,25.88867 L 14.34277,25.88867 C 14.50684,26.23959 14.62988,26.60417 14.71192,26.98242 C 14.79395,27.35612 14.83496,27.75489 14.83496,28.17871 C 14.83496,29.33171 14.47266,30.24772 13.74805,30.92676 C 13.02344,31.60579 12.0459,31.94531 10.81543,31.94531 C 9.56674,31.94531 8.58464,31.60352 7.86914,30.91992 C 7.15365,30.23177 6.79591,29.29069 6.7959,28.09668 C 6.79591,27.70931 6.83692,27.33106 6.91895,26.96191 C 6.99643,26.59278 7.11492,26.23503 7.27442,25.88867 M 7.86231,20.7207 C 7.86231,21.39518 8.12664,21.92839 8.65527,22.32031 C 9.17937,22.71224 9.89942,22.9082 10.81543,22.9082 C 11.73145,22.9082 12.45378,22.71452 12.98242,22.32715 C 13.50651,21.93522 13.76856,21.39974 13.76856,20.7207 C 13.76856,20.05079 13.50423,19.51986 12.97559,19.12793 C 12.44694,18.73601 11.72689,18.54004 10.81543,18.54004 C 9.90853,18.54004 9.19076,18.73601 8.66211,19.12793 C 8.12891,19.51986 7.86231,20.05079 7.86231,20.7207 M 6.7959,20.7207 C 6.79591,19.62696 7.15138,18.76791 7.86231,18.14355 C 8.57325,17.51921 9.55762,17.20704 10.81543,17.20703 C 12.06869,17.20704 13.05306,17.51921 13.76856,18.14355 C 14.47949,18.76791 14.83496,19.62696 14.83496,20.7207 C 14.83496,21.81901 14.47949,22.68034 13.76856,23.30469 C 13.05306,23.92448 12.06869,24.23437 10.81543,24.23437 C 9.55762,24.23437 8.57325,23.92448 7.86231,23.30469 C 7.15138,22.68034 6.79591,21.81901 6.7959,20.7207 M 8.4502,9.16797 C 7.8851,8.85352 7.46811,8.47755 7.19922,8.04004 C 6.93035,7.60255 6.79591,7.08757 6.7959,6.49512 C 6.79591,5.6976 7.07618,5.08237 7.63672,4.64941 C 8.19272,4.21648 8.98568,4.00001 10.01563,4 L 14.63672,4 L 14.63672,5.26465 L 10.05664,5.26465 C 9.32292,5.26466 8.77833,5.39454 8.42285,5.6543 C 8.06739,5.91407 7.88966,6.31056 7.88965,6.84375 C 7.88966,7.49545 8.10613,8.01042 8.53906,8.38867 C 8.97201,8.76693 9.56218,8.95606 10.30957,8.95605 L 14.63672,8.95605 L 14.63672,10.2207 L 10.05664,10.2207 C 9.31837,10.22071 8.77377,10.35059 8.42285,10.61035 C 8.06739,10.87012 7.88966,11.27116 7.88965,11.81348 C 7.88966,12.45606 8.10841,12.96647 8.5459,13.34473 C 8.97885,13.72298 9.56674,13.91211 10.30957,13.91211 L 14.63672,13.91211 L 14.63672,15.17676 L 6.98047,15.17676 L 6.98047,13.91211 L 8.16992,13.91211 C 7.70053,13.625 7.35418,13.28093 7.13086,12.87988 C 6.90756,12.47884 6.79591,12.00261 6.7959,11.45117 C 6.79591,10.89519 6.93718,10.42351 7.21973,10.03613 C 7.50229,9.64421 7.91244,9.35482 8.4502,9.16797"
style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;opacity:0.5;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans" />
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="logo"
style="display:inline"
sodipodi:insensitive="true">
<path
style="opacity:0.5;fill:#000000;fill-opacity:1;stroke-width:1pt;filter:url(#ShadowBlur)"
d="M 368.46875,107.8125 C 366.97571,107.8125 365.96875,108.58416 365.96875,109.75 C 365.96875,110.76622 366.57465,111.27072 368.25,111.625 L 369.34375,111.84375 C 370.18723,112.02076 370.26053,112.03808 370.5,112.1875 C 370.84188,112.40182 371.03125,112.73006 371.03125,113.09375 C 371.03125,113.46669 370.87303,113.74803 370.53125,114 C 370.15496,114.27034 369.78313,114.375 369.15625,114.375 C 368.31272,114.375 367.69187,114.17236 367.15625,113.6875 C 366.67755,113.2491 366.45212,112.81161 366.28125,112.09375 L 365.78125,112.09375 L 365.8125,114.75 L 366.28125,114.75 L 366.78125,114.125 C 367.54493,114.63773 368.19634,114.8125 369.1875,114.8125 C 370.86297,114.8125 371.9375,113.99974 371.9375,112.75 C 371.9375,112.17181 371.69427,111.69809 371.25,111.34375 C 370.9421,111.10124 370.4744,110.93659 369.5625,110.75 L 368.34375,110.5 C 367.32946,110.28559 366.875,109.91258 366.875,109.34375 C 366.875,108.69115 367.50004,108.25 368.46875,108.25 C 369.26669,108.25 369.91911,108.53106 370.375,109.0625 C 370.70554,109.44476 370.91417,109.83687 371.0625,110.3125 L 371.5625,110.3125 L 371.40625,107.875 L 371,107.875 L 370.53125,108.4375 C 369.99551,108.01788 369.27795,107.8125 368.46875,107.8125 z M 379.9375,107.8125 C 378.83192,107.8125 377.89985,108.15108 377.125,108.90625 C 376.3956,109.61498 376.0625,110.41441 376.0625,111.375 C 376.06249,113.37991 377.66079,114.8125 379.90625,114.8125 C 381.72977,114.8125 382.89405,113.94167 383.15625,112.375 L 382.625,112.28125 C 382.51105,112.7754 382.36137,113.12638 382.15625,113.40625 C 381.6891,114.04974 380.98577,114.375 380.0625,114.375 C 378.37578,114.375 377.5625,113.4109 377.5625,111.40625 C 377.5625,110.3523 377.73743,109.6532 378.125,109.09375 C 378.47826,108.57151 379.17671,108.25 379.90625,108.25 C 380.70405,108.25 381.41068,108.59061 381.84375,109.1875 C 382.06034,109.4951 382.23775,109.84444 382.5,110.5625 L 383,110.5625 L 382.84375,107.875 L 382.40625,107.875 L 381.9375,108.4375 C 381.12809,107.95238 380.70118,107.8125 379.9375,107.8125 z M 390.78125,107.8125 L 388.15625,113.25 C 387.92846,113.73503 387.88968,113.78843 387.71875,113.9375 C 387.53625,114.11477 387.21407,114.25 386.90625,114.25 L 386.84375,114.25 L 386.84375,114.6875 L 389.875,114.6875 L 389.875,114.25 L 389.65625,114.25 C 389.04107,114.25 388.71875,114.07307 388.71875,113.71875 C 388.71876,113.60678 388.74421,113.46171 388.8125,113.3125 L 389.1875,112.5 L 392.21875,112.5 L 392.84375,113.75 C 392.91221,113.88987 392.9375,113.95306 392.9375,114 C 392.93751,114.14903 392.64026,114.25 392.21875,114.25 L 391.75,114.25 L 391.75,114.6875 L 395.28125,114.6875 L 395.28125,114.25 L 395.125,114.25 C 394.55482,114.25 394.41821,114.14711 394.15625,113.625 L 391.25,107.8125 L 390.78125,107.8125 z M 333.34375,107.9375 L 333.34375,108.375 L 333.5625,108.375 C 334.48569,108.375 334.59375,108.42095 334.59375,108.8125 L 334.59375,109.09375 L 334.59375,113.53125 L 334.59375,113.8125 C 334.59375,114.20401 334.48569,114.25 333.5625,114.25 L 333.34375,114.25 L 333.34375,114.6875 L 337.09375,114.6875 L 337.09375,114.25 L 336.875,114.25 C 335.96332,114.25 335.875,114.20401 335.875,113.8125 L 335.875,113.53125 L 335.875,109.09375 L 335.875,108.8125 C 335.875,108.42095 335.96333,108.375 336.875,108.375 L 337.09375,108.375 L 337.09375,107.9375 L 333.34375,107.9375 z M 340.9375,107.9375 L 340.9375,108.375 L 341.21875,108.375 C 341.80001,108.375 342.04487,108.45413 342.25,108.6875 L 342.25,112.65625 C 342.25,113.93378 342.03149,114.21257 340.9375,114.25 L 340.9375,114.6875 L 344.1875,114.6875 L 344.1875,114.25 C 343.10447,114.21257 342.875,113.93378 342.875,112.65625 L 342.875,109.1875 L 347.96875,114.8125 L 348.4375,114.8125 L 348.4375,109.96875 C 348.43749,108.69144 348.65578,108.4124 349.75,108.375 L 349.75,107.9375 L 346.5,107.9375 L 346.5,108.375 C 347.58275,108.4124 347.8125,108.69144 347.8125,109.96875 L 347.8125,112.90625 L 343.28125,107.9375 L 340.9375,107.9375 z M 353.5,107.9375 L 353.5,108.375 L 353.71875,108.375 C 354.64189,108.375 354.75,108.42095 354.75,108.8125 L 354.75,109.09375 L 354.75,113.53125 L 354.75,113.8125 C 354.75001,114.20401 354.6419,114.25 353.71875,114.25 L 353.5,114.25 L 353.5,114.6875 L 357.25,114.6875 L 357.25,114.25 L 357.03125,114.25 C 356.10792,114.25 356,114.20401 356,113.8125 L 356,113.53125 L 356,112.34375 L 357.34375,111.25 L 359.3125,113.625 C 359.495,113.84878 359.53125,113.93773 359.53125,114.03125 C 359.53124,114.18019 359.33988,114.25 358.78125,114.25 L 358.40625,114.25 L 358.40625,114.6875 L 362.3125,114.6875 L 362.3125,114.25 L 362.09375,114.25 C 361.4669,114.25 361.29917,114.18212 360.96875,113.78125 L 358.21875,110.5 L 359.90625,109.125 C 360.45317,108.64929 361.15987,108.375 361.84375,108.375 L 361.84375,107.9375 L 358.34375,107.9375 L 358.34375,108.375 L 358.625,108.375 C 359.14941,108.375 359.375,108.4605 359.375,108.65625 C 359.37501,108.78676 359.14295,109.07347 358.8125,109.34375 L 356,111.625 L 356,109.09375 L 356,108.8125 C 355.99999,108.42095 356.10793,108.375 357.03125,108.375 L 357.25,108.375 L 357.25,107.9375 L 353.5,107.9375 z M 398.65625,107.9375 L 398.65625,108.375 L 398.875,108.375 C 399.79815,108.375 399.90625,108.42095 399.90625,108.8125 L 399.90625,109.09375 L 399.90625,113.53125 L 399.90625,113.8125 C 399.90624,114.20401 399.79815,114.25 398.875,114.25 L 398.65625,114.25 L 398.65625,114.6875 L 402.5,114.6875 L 402.5,114.25 L 402.1875,114.25 C 401.26427,114.25 401.15625,114.20401 401.15625,113.8125 L 401.15625,113.53125 L 401.15625,111.6875 L 402.46875,111.6875 C 403.49467,111.6875 404.01269,111.61455 404.46875,111.4375 C 405.27771,111.12023 405.75,110.51781 405.75,109.78125 C 405.75001,109.07273 405.34579,108.5264 404.59375,108.21875 C 404.14914,108.0324 403.44264,107.9375 402.65625,107.9375 L 398.65625,107.9375 z M 409.4375,107.9375 L 409.4375,108.375 L 409.65625,108.375 C 410.57952,108.375 410.6875,108.42095 410.6875,108.8125 L 410.6875,109.09375 L 410.6875,113.53125 L 410.6875,113.8125 C 410.6875,114.20401 410.57953,114.25 409.65625,114.25 L 409.4375,114.25 L 409.4375,114.6875 L 416.4375,114.6875 L 416.65625,112.1875 L 416.15625,112.1875 C 416.00845,112.84019 415.74221,113.41699 415.46875,113.6875 C 415.11532,114.06047 414.48843,114.25 413.53125,114.25 L 412.78125,114.25 C 412.43919,114.25 412.13395,114.17774 412.03125,114.09375 C 411.95162,114.03808 411.9375,113.97696 411.9375,113.78125 L 411.9375,111.40625 L 412.1875,111.40625 C 412.88261,111.40625 413.14681,111.46059 413.375,111.65625 C 413.67104,111.89894 413.78961,112.19996 413.8125,112.75 L 414.34375,112.75 L 414.34375,109.6875 L 413.8125,109.6875 C 413.75547,110.60129 413.30159,110.96875 412.21875,110.96875 L 411.9375,110.96875 L 411.9375,108.84375 C 411.93751,108.44283 412.04089,108.375 412.65625,108.375 L 413.25,108.375 C 414.25302,108.375 414.76855,108.45762 415.15625,108.71875 C 415.53227,108.96115 415.79765,109.50454 415.96875,110.34375 L 416.4375,110.34375 L 416.28125,107.9375 L 409.4375,107.9375 z M 401.875,108.375 L 402.59375,108.375 C 403.77895,108.375 404.34375,108.82409 404.34375,109.8125 C 404.34375,110.77308 403.77053,111.25 402.5625,111.25 L 401.15625,111.25 L 401.15625,108.84375 C 401.15626,108.41492 401.24824,108.375 401.875,108.375 z M 390.6875,109.34375 L 391.96875,112 L 389.4375,112 L 390.6875,109.34375 z"
id="path7358"
sodipodi:nodetypes="csccssssscccccsssccssscccccccsssccssssssccccccccsccccccsccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccscccccccccccccccccccccccccssscccccccccccccccsccscccscccccccccsccccccscccccccc" />
<path
style="fill:#000000;fill-opacity:1;stroke-width:1pt"
d="M 416.29213,107.94096 L 409.44252,107.94096 L 409.44252,108.37927 L 409.6476,108.37927 C 410.57088,108.37927 410.67331,108.42608 410.67331,108.81763 L 410.67331,109.08802 L 410.67331,113.52657 L 410.67331,113.79704 C 410.67331,114.18855 410.57088,114.23535 409.6476,114.23535 L 409.44252,114.23535 L 409.44252,114.67363 L 416.44023,114.67363 L 416.6682,112.18372 L 416.1666,112.18372 C 416.0188,112.83641 415.75639,113.41464 415.48293,113.68515 C 415.12951,114.05812 414.47982,114.23535 413.52264,114.23535 L 412.77044,114.23535 C 412.42839,114.23535 412.14364,114.17943 412.04094,114.09544 C 411.96132,114.03977 411.94984,113.98351 411.94984,113.7878 L 411.94984,111.40999 L 412.17778,111.40999 C 412.87287,111.40999 413.15788,111.46591 413.38607,111.66157 C 413.68212,111.90426 413.79614,112.20263 413.81903,112.75267 L 414.35466,112.75267 L 414.35466,109.69418 L 413.81903,109.69418 C 413.762,110.60797 413.30602,110.97171 412.22318,110.97171 L 411.94984,110.97171 L 411.94984,108.84553 C 411.94984,108.44461 412.0525,108.37927 412.66786,108.37927 L 413.2604,108.37927 C 414.26343,108.37927 414.75344,108.46331 415.14114,108.72444 C 415.51716,108.96684 415.79066,109.48893 415.96176,110.32814 L 416.45182,110.32814 L 416.29213,107.94096 z M 401.16804,111.68028 L 402.45586,111.68028 C 403.48179,111.68028 404.01733,111.61502 404.47339,111.43797 C 405.28235,111.1207 405.73847,110.52402 405.73847,109.78746 C 405.73847,109.07894 405.33938,108.53785 404.58734,108.2302 C 404.14273,108.04385 403.43605,107.94096 402.64966,107.94096 L 398.66079,107.94096 L 398.66079,108.37927 L 398.86588,108.37927 C 399.78903,108.37927 399.8915,108.42608 399.8915,108.81763 L 399.8915,109.08802 L 399.8915,113.52657 L 399.8915,113.79704 C 399.8915,114.18855 399.78903,114.23535 398.86588,114.23535 L 398.66079,114.23535 L 398.66079,114.67363 L 402.49013,114.67363 L 402.49013,114.23535 L 402.1937,114.23535 C 401.27047,114.23535 401.16804,114.18855 401.16804,113.79704 L 401.16804,113.52657 L 401.16804,111.68028 z M 401.16804,111.24204 L 401.16804,108.85491 C 401.16804,108.42608 401.23653,108.37927 401.86329,108.37927 L 402.59278,108.37927 C 403.77797,108.37927 404.33643,108.83629 404.33643,109.8247 C 404.33643,110.78528 403.7552,111.24204 402.54717,111.24204 L 401.16804,111.24204 z M 391.2525,107.81054 L 390.77388,107.81054 L 388.15234,113.24675 C 387.92455,113.73178 387.87905,113.79704 387.70812,113.94611 C 387.52563,114.12338 387.20648,114.23535 386.89866,114.23535 L 386.85322,114.23535 L 386.85322,114.67363 L 389.87336,114.67363 L 389.87336,114.23535 L 389.64536,114.23535 C 389.03018,114.23535 388.72233,114.05812 388.72233,113.7038 C 388.72233,113.59183 388.75655,113.4615 388.82484,113.31229 L 389.20108,112.49157 L 392.22118,112.49157 L 392.83668,113.7412 C 392.90513,113.88107 392.9279,113.94611 392.9279,113.99305 C 392.9279,114.14208 392.64269,114.23535 392.22118,114.23535 L 391.74251,114.23535 L 391.74251,114.67363 L 395.27576,114.67363 L 395.27576,114.23535 L 395.11625,114.23535 C 394.54606,114.23535 394.42078,114.16078 394.15882,113.63867 L 391.2525,107.81054 z M 390.69399,109.33986 L 391.98186,111.98813 L 389.42888,111.98813 L 390.69399,109.33986 z M 382.82997,107.87574 L 382.39682,107.87574 L 381.94096,108.42608 C 381.13154,107.94096 380.6874,107.80117 379.92372,107.80117 C 378.81813,107.80117 377.9062,108.16491 377.13135,108.92008 C 376.40195,109.62881 376.0599,110.412 376.0599,111.37259 C 376.0599,113.3775 377.66685,114.81346 379.91231,114.81346 C 381.73584,114.81346 382.89838,113.93699 383.16058,112.37032 L 382.62488,112.29578 C 382.51093,112.78993 382.37401,113.12553 382.16889,113.4054 C 381.70173,114.04889 380.97224,114.37531 380.04897,114.37531 C 378.36226,114.37531 377.56445,113.41464 377.56445,111.40999 C 377.56445,110.35604 377.73525,109.64747 378.12282,109.08802 C 378.47609,108.56578 379.18277,108.23928 379.91231,108.23928 C 380.71012,108.23928 381.41676,108.58444 381.84983,109.18133 C 382.06641,109.48893 382.23735,109.85259 382.4996,110.57065 L 383.00065,110.57065 L 382.82997,107.87574 z M 371.42139,107.88504 L 370.99983,107.88504 L 370.54386,108.44461 C 370.00811,108.02499 369.27874,107.80117 368.46954,107.80117 C 366.9765,107.80117 365.97363,108.58444 365.97363,109.75028 C 365.97363,110.7665 366.58881,111.27011 368.26416,111.62439 L 369.34695,111.8483 C 370.19043,112.02531 370.27012,112.04397 370.50959,112.19339 C 370.85146,112.40771 371.03378,112.71536 371.03378,113.07905 C 371.03378,113.45199 370.86283,113.75968 370.52105,114.01165 C 370.14477,114.28199 369.76888,114.38461 369.142,114.38461 C 368.29847,114.38461 367.69444,114.17001 367.15882,113.68515 C 366.68011,113.24675 366.44076,112.80847 366.26989,112.09061 L 365.77985,112.09061 L 365.82529,114.74829 L 366.26989,114.74829 L 366.78259,114.11414 C 367.54627,114.62687 368.18482,114.81346 369.17598,114.81346 C 370.85146,114.81346 371.92282,114.01165 371.92282,112.76191 C 371.92282,112.18372 371.68346,111.68965 371.23919,111.33531 C 370.9313,111.0928 370.48682,110.93431 369.57492,110.74772 L 368.35547,110.49608 C 367.34118,110.28167 366.86243,109.91793 366.86243,109.3491 C 366.86243,108.6965 367.51208,108.24856 368.48079,108.24856 C 369.27874,108.24856 369.92823,108.5286 370.38412,109.06004 C 370.71466,109.4423 370.91975,109.83394 371.06808,110.30957 L 371.5581,110.30957 L 371.42139,107.88504 z M 356.01232,111.62439 L 356.01232,109.08802 L 356.01232,108.81763 C 356.01232,108.42608 356.11476,108.37927 357.03808,108.37927 L 357.25462,108.37927 L 357.25462,107.94096 L 353.50495,107.94096 L 353.50495,108.37927 L 353.71016,108.37927 C 354.63331,108.37927 354.73558,108.42608 354.73558,108.81763 L 354.73558,109.08802 L 354.73558,113.52657 L 354.73558,113.79704 C 354.73558,114.18855 354.63331,114.23535 353.71016,114.23535 L 353.50495,114.23535 L 353.50495,114.67363 L 357.25462,114.67363 L 357.25462,114.23535 L 357.03808,114.23535 C 356.11476,114.23535 356.01232,114.18855 356.01232,113.79704 L 356.01232,113.52657 L 356.01232,112.34238 L 357.33447,111.25146 L 359.31747,113.62918 C 359.49997,113.85296 359.5454,113.92755 359.5454,114.02107 C 359.5454,114.17001 359.3291,114.23535 358.77047,114.23535 L 358.41704,114.23535 L 358.41704,114.67363 L 362.31497,114.67363 L 362.31497,114.23535 L 362.09847,114.23535 C 361.47163,114.23535 361.31186,114.17001 360.98144,113.76914 L 358.22347,110.51474 L 359.92176,109.12541 C 360.46867,108.6497 361.16376,108.37927 361.84764,108.37927 L 361.84764,107.94096 L 358.3372,107.94096 L 358.3372,108.37927 L 358.62238,108.37927 C 359.14679,108.37927 359.36308,108.46331 359.36308,108.65906 C 359.36308,108.78957 359.13515,109.06004 358.8047,109.33032 L 356.01232,111.62439 z M 343.27022,107.94096 L 340.92237,107.94096 L 340.92237,108.37927 L 341.20734,108.37927 C 341.7886,108.37927 342.05076,108.45389 342.25589,108.68726 L 342.25589,112.65002 C 342.25589,113.92755 342.02779,114.19792 340.9338,114.23535 L 340.9338,114.67363 L 344.1822,114.67363 L 344.1822,114.23535 C 343.09916,114.19792 342.87136,113.92755 342.87136,112.65002 L 342.87136,109.19057 L 347.95468,114.80422 L 348.43331,114.80422 L 348.43331,109.96457 C 348.43331,108.68726 348.66106,108.41667 349.75528,108.37927 L 349.75528,107.94096 L 346.507,107.94096 L 346.507,108.37927 C 347.58974,108.41667 347.81772,108.68726 347.81772,109.96457 L 347.81772,112.89255 L 343.27022,107.94096 z M 335.86209,109.08802 L 335.86209,108.81763 C 335.86209,108.42608 335.96463,108.37927 336.8763,108.37927 L 337.10428,108.37927 L 337.10428,107.94096 L 333.3318,107.94096 L 333.3318,108.37927 L 333.55978,108.37927 C 334.48297,108.37927 334.58548,108.42608 334.58548,108.81763 L 334.58548,109.08802 L 334.58548,113.52657 L 334.58548,113.79704 C 334.58548,114.18855 334.48297,114.23535 333.55978,114.23535 L 333.3318,114.23535 L 333.3318,114.67363 L 337.10428,114.67363 L 337.10428,114.23535 L 336.8763,114.23535 C 335.96463,114.23535 335.86209,114.18855 335.86209,113.79704 L 335.86209,113.52657 L 335.86209,109.08802 z"
id="path2929" />
<g
id="g8138"
transform="matrix(0.6092602,0,0,0.6092602,130.59563,-462.1954)">
<path
id="path8065"
d="M 345.13195,864.9315 C 342.63195,874.3315 360.53195,876.0315 369.43195,879.6315 C 371.63195,880.6315 370.63195,876.4315 369.53195,875.4315 C 362.33195,871.8315 347.33195,871.0315 345.13195,864.9315 z M 456.73195,865.9315 C 454.03195,874.8315 431.73195,879.0315 423.73195,883.7315 C 421.63195,884.9315 420.53195,890.0315 424.13195,888.0315 C 433.73195,882.7315 459.93195,877.3315 456.73195,865.9315 z M 381.43195,877.7315 C 378.13195,877.7315 376.13195,879.3315 382.03195,881.4315 C 389.73195,882.0315 400.83195,885.0315 403.13195,886.0315 C 406.93195,879.5315 382.13195,877.7315 381.43195,877.7315 z M 360.33195,886.2315 C 358.93195,885.0315 357.43195,887.2315 359.43195,889.0315 C 362.93195,892.8315 382.03195,896.9315 385.73195,900.5315 C 387.53195,901.4315 386.93195,898.0315 385.83195,896.9315 C 382.43195,893.5315 365.33195,889.6315 360.33195,886.2315 z M 438.83195,895.9315 C 439.03195,899.4315 454.63195,903.5315 454.03195,896.0315 C 453.83195,893.4315 438.63195,893.3315 438.83195,895.9315 z M 432.73195,895.7315 C 429.33195,902.8315 421.43195,898.2315 412.93195,906.8315 C 410.63195,908.5315 411.63195,913.0315 413.93195,910.6315 C 422.63195,902.4315 430.33195,906.9315 433.33195,898.0315 C 433.53195,897.0315 433.33195,896.4315 432.73195,895.7315 z M 368.63195,908.0315 C 373.13195,913.0315 378.43195,909.8315 380.13195,902.3315 C 379.73195,900.6315 363.33195,902.4315 368.63195,908.0315 z M 435.83195,902.2315 C 430.43195,906.6315 439.13195,911.6315 441.83195,908.0315 C 445.43195,903.3315 438.43195,904.6315 435.83195,902.2315 z M 380.63195,907.0315 C 379.73195,908.2315 379.83195,910.0315 380.93195,911.2315 C 384.53195,914.8315 392.93195,911.3315 394.43195,919.8315 C 395.53195,925.9315 409.63195,923.3315 416.43195,918.4315 C 417.93195,916.8315 418.03195,913.0315 416.13195,914.0315 C 386.33195,927.4315 405.33195,910.2315 380.63195,907.0315 z"
class="bs"
style="opacity:1;fill:#000000;filter:url(#ShadowBlur)" />
<use
transform="translate(337.13195,802.0315)"
id="use8067"
xlink:href="#outline1"
class="outline-big"
style="opacity:0.1;fill:none"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8069"
xlink:href="#outline1"
class="outline-small"
style="opacity:0.2;fill:none"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8071"
xlink:href="#outline1"
class="black"
style="fill:#000000"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8073"
class="stroke-highlight"
xlink:href="#outline1"
clip-path="url(#clipoutline1)"
style="opacity:0.2;fill:none"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8075"
xlink:href="#outline1"
class="specularity"
style="opacity:0.5;fill:url(#linearGradient8150)"
x="0"
y="0"
width="750"
height="625" />
<use
transform="translate(337.13195,802.0315)"
id="use8077"
xlink:href="#outline1"
class="low-specularity"
style="opacity:0.25;fill:url(#linearGradient8152)"
x="0"
y="0"
width="750"
height="625" />
<path
id="path8079"
d="M 353.93195,858.9315 C 342.83195,869.9315 362.33195,866.8315 377.33195,872.7315 L 408.33195,818.2315 C 403.63195,813.4315 397.63195,813.8315 393.33195,818.2315 L 353.93195,858.9315 z"
style="opacity:0.5;fill:url(#linearGradient8154)"
class="specularity" />
<path
id="path8081"
d="M 346.03195,863.7315 C 343.43195,873.1315 359.43195,872.9315 368.33195,876.4315 C 369.83195,875.5315 370.63195,874.4315 369.53195,873.4315 C 362.33195,869.8315 348.13195,869.8315 346.03195,863.7315 z M 457.13195,864.7315 C 454.43195,873.6315 431.63195,877.0315 423.73195,881.7315 C 422.63195,882.8315 423.33195,883.8315 424.63195,884.8315 C 434.43195,879.9315 460.33195,876.1315 457.13195,864.7315 z M 381.43195,875.7315 C 378.23195,875.7315 376.23195,877.3315 382.03195,879.4315 C 389.73195,880.0315 400.83195,883.1315 403.23195,884.1315 C 406.93195,877.5315 382.23195,875.7315 381.43195,875.7315 z M 360.33195,884.2315 C 359.03195,885.1315 358.33195,886.1315 359.43195,887.1315 C 362.93195,890.8315 380.93195,894.2315 384.63195,897.8315 C 385.53195,896.6315 385.83195,895.4315 384.73195,894.2315 C 381.33195,890.8315 365.33195,887.6315 360.33195,884.2315 z M 440.13195,893.3315 C 439.43195,894.1315 438.83195,895.0315 438.63195,896.0315 C 438.63195,898.1315 454.03195,899.4315 454.03195,895.4315 C 453.73195,894.7315 453.43195,894.0315 452.83195,893.3315 C 450.03195,894.9315 443.13195,894.5315 440.13195,893.3315 z M 432.73195,893.7315 C 429.33195,900.8315 421.43195,896.2315 412.93195,904.8315 C 411.53195,906.3315 412.33195,907.1315 413.63195,907.8315 C 422.33195,899.6315 430.33195,904.9315 433.33195,896.0315 C 433.53195,895.1315 433.33195,894.4315 432.73195,893.7315 z M 378.73195,900.7315 C 376.33195,903.9315 372.13195,906.0315 369.13195,903.4315 C 368.83195,903.2315 368.63195,902.9315 368.43195,902.6315 C 367.33195,904.0315 367.33195,905.5315 369.13195,907.1315 C 372.73195,910.2315 378.43195,906.3315 380.13195,901.9315 C 379.83195,901.4315 379.23195,901.0315 378.73195,900.7315 z M 435.43195,901.7315 C 433.13195,905.4315 437.73195,908.4315 441.83195,906.1315 C 442.43195,905.4315 442.33195,904.0315 441.23195,902.6315 C 438.83195,903.8315 436.53195,903.1315 435.43195,901.7315 z M 381.03195,905.6315 C 380.13195,906.7315 379.83195,908.0315 380.93195,909.2315 C 384.53195,912.8315 392.93195,909.3315 394.43195,917.8315 C 395.53195,923.9315 409.13195,920.7315 415.93195,915.8315 C 417.43195,914.1915 416.73195,913.1315 415.43195,912.3315 C 408.33195,917.1315 395.43195,920.0315 394.43195,914.2315 C 392.93195,905.7315 384.63195,909.1315 381.03195,905.6315 z"
class="shade"
style="fill:url(#linearGradient8156)" />
<path
id="path8083"
d="M 407.63195,817.5315 L 423.93195,834.1315 C 425.43195,835.6315 425.43195,838.7315 424.53195,839.6315 L 416.43195,833.0315 L 414.83195,842.7315 L 408.13195,839.1315 L 397.23195,846.0315 L 393.63195,831.5315 L 387.83195,844.1315 L 373.33195,844.0315 C 370.53195,844.0315 370.93195,841.1315 373.83195,838.2315 C 379.53195,831.9315 390.63195,821.2315 394.13195,817.5315 C 397.73195,813.8315 404.03195,813.9315 407.63195,817.5315 z"
style="opacity:1;fill:url(#linearGradient8158)"
class="full-specularity" />
</g>
<g
id="g4011"
transform="matrix(0.6115543,0,0,0.6115543,477.28901,290.36056)">
<use
style="filter:url(#filter4007)"
id="use3235"
xlink:href="#text2160"
y="0"
x="0"
width="750"
height="625" />
<path
id="text2160"
d="M -383.51026,322.9861 C -383.84635,323.75415 -384.83035,324.85815 -386.46226,326.2981 C -389.00635,328.55415 -390.35035,329.75415 -390.49426,329.8981 C -389.91835,331.43415 -389.55835,332.73014 -389.41426,333.7861 C -389.41435,333.97814 -389.41435,335.13014 -389.41426,337.2421 C -389.41435,340.02614 -390.56635,343.65013 -392.87026,348.1141 C -395.31834,352.81812 -398.29434,356.92212 -401.79826,360.4261 C -405.83033,364.45811 -410.70232,367.77011 -416.41426,370.3621 C -421.59831,372.6661 -426.11031,373.8181 -429.95026,373.8181 C -433.5503,373.8181 -437.8943,372.9061 -442.98226,371.0821 C -443.99029,371.80211 -446.72629,372.9301 -451.19026,374.4661 C -456.66228,376.3381 -461.07827,377.2741 -464.43826,377.2741 C -471.20626,377.2741 -474.59026,375.2101 -474.59026,371.0821 C -474.59026,369.21011 -472.57426,367.55411 -468.54226,366.1141 C -464.84627,364.81811 -460.95827,364.14611 -456.87826,364.0981 C -454.81428,364.05011 -452.63028,364.38611 -450.32626,365.1061 C -448.21429,365.73011 -446.10229,366.37811 -443.99026,367.0501 C -441.39829,364.45811 -434.9183,359.20212 -424.55026,351.2821 C -420.75831,348.49813 -415.81432,344.87413 -409.71826,340.4101 C -406.45433,338.05814 -401.82233,334.55414 -395.82226,329.8981 C -397.26234,328.26615 -399.35034,326.87415 -402.08626,325.7221 C -405.59033,324.28215 -409.57433,323.56215 -414.03826,323.5621 C -417.06232,323.56215 -420.66232,324.11415 -424.83826,325.2181 C -429.25431,326.37015 -433.3583,327.93015 -437.15026,329.8981 C -441.27829,332.01014 -445.04629,334.57814 -448.45426,337.6021 C -452.10228,340.86614 -453.92628,343.48213 -453.92626,345.4501 C -453.92628,346.41013 -453.63828,347.08213 -453.06226,347.4661 C -452.72628,347.65813 -452.00628,347.85013 -450.90226,348.0421 C -449.31829,348.28213 -446.70229,347.65813 -443.05426,346.1701 C -439.4063,344.68213 -436.3103,343.00213 -433.76626,341.1301 C -428.63031,337.29014 -426.06231,334.02614 -426.06226,331.3381 C -426.06231,330.61815 -426.13431,330.01815 -426.27826,329.5381 C -426.32631,329.34615 -426.25431,329.10615 -426.06226,328.8181 C -425.48631,327.85815 -424.81431,327.42615 -424.04626,327.5221 C -423.13431,327.66615 -422.72631,328.45815 -422.82226,329.8981 C -423.11031,334.12214 -426.03831,338.39414 -431.60626,342.7141 C -434.6303,345.06613 -438.3263,347.13013 -442.69426,348.9061 C -446.53429,350.49013 -449.27029,351.28213 -450.90226,351.2821 C -452.58228,351.28213 -454.14228,350.70613 -455.58226,349.5541 C -456.97428,348.35413 -457.59828,346.98613 -457.45426,345.4501 C -457.02228,340.55414 -450.78228,334.57814 -438.73426,327.5221 C -434.6543,325.12215 -430.14231,323.22615 -425.19826,321.8341 C -420.83031,320.58616 -417.11032,319.96216 -414.03826,319.9621 C -405.92633,319.96216 -398.91834,322.24215 -393.01426,326.8021 C -392.10234,325.98615 -390.56635,324.71415 -388.40626,322.9861 C -387.68635,322.31415 -386.94235,321.64216 -386.17426,320.9701 C -385.35835,320.29816 -384.75835,319.96216 -384.37426,319.9621 C -383.60635,319.96216 -383.22235,320.51416 -383.22226,321.6181 C -383.22235,322.09815 -383.31835,322.55415 -383.51026,322.9861 M -393.01426,337.2421 C -393.01434,336.18614 -393.30234,334.69814 -393.87826,332.7781 C -398.15034,336.47414 -402.66233,340.07414 -407.41426,343.5781 C -410.34233,345.45013 -415.04632,348.59413 -421.52626,353.0101 C -431.9903,360.45012 -438.3983,365.44211 -440.75026,367.9861 C -436.3823,369.28211 -432.7823,369.93011 -429.95026,369.9301 C -426.11031,369.93011 -421.93431,368.99411 -417.42226,367.1221 C -412.38232,365.10611 -408.03833,362.29811 -404.39026,358.6981 C -400.98233,355.33812 -398.24634,351.73813 -396.18226,347.8981 C -394.07034,344.01013 -393.01434,340.45814 -393.01426,337.2421 M -447.66226,369.9301 C -449.29429,369.54611 -450.90228,369.13811 -452.48626,368.7061 C -454.55028,368.27411 -456.39828,368.03411 -458.03026,367.9861 C -460.52628,367.89011 -463.38227,368.32211 -466.59826,369.2821 C -469.81426,370.24211 -471.42226,371.03411 -471.42226,371.6581 C -471.42226,373.4821 -469.09426,374.3941 -464.43826,374.3941 C -462.56627,374.3941 -459.27828,373.6981 -454.57426,372.3061 C -450.35029,371.05811 -448.04629,370.26611 -447.66226,369.9301 M -374.46864,367.6261 C -374.46866,368.25011 -376.43666,369.33011 -380.37264,370.8661 C -384.69265,372.5941 -388.29265,373.4581 -391.17264,373.4581 C -393.52464,373.4581 -395.42064,373.0261 -396.86064,372.1621 C -398.30064,371.29811 -399.02064,370.26611 -399.02064,369.0661 C -399.02064,366.66611 -397.02864,363.73811 -393.04464,360.2821 C -390.88465,358.41012 -388.46065,356.61012 -385.77264,354.8821 C -383.27665,353.29812 -381.74066,352.50612 -381.16464,352.5061 C -379.62866,352.50612 -378.86066,353.13012 -378.86064,354.3781 C -378.86066,356.20212 -380.94866,358.57812 -385.12464,361.5061 C -388.38865,363.81011 -391.02865,365.46611 -393.04464,366.4741 C -394.43664,367.43411 -395.13264,368.29811 -395.13264,369.0661 C -395.13264,370.31411 -393.59664,370.93811 -390.52464,370.9381 C -388.41265,370.93811 -385.48465,370.19411 -381.74064,368.7061 C -377.94866,367.21811 -375.95666,366.47411 -375.76464,366.4741 C -374.90066,366.47411 -374.46866,366.85811 -374.46864,367.6261 M -341.77614,363.0901 C -344.12817,364.00211 -347.96817,365.53811 -353.29614,367.6981 C -354.92816,368.22611 -357.47216,369.18611 -360.92814,370.5781 C -362.51215,371.8741 -364.33615,373.0501 -366.40014,374.1061 C -368.41615,375.2101 -369.78415,375.7621 -370.50414,375.7621 C -371.70414,375.7621 -372.30414,375.1381 -372.30414,373.8901 C -372.30414,373.7461 -371.70414,373.1701 -370.50414,372.1621 C -368.63215,370.53011 -367.40815,369.45011 -366.83214,368.9221 C -365.48815,367.67411 -364.57615,366.64211 -364.09614,365.8261 C -364.04815,365.77811 -363.76015,364.84211 -363.23214,363.0181 C -364.72015,363.69011 -367.16815,364.79411 -370.57614,366.3301 C -370.72015,366.37811 -372.01614,367.02611 -374.46414,368.2741 C -375.90414,368.99411 -376.86414,369.35411 -377.34414,369.3541 C -377.96814,369.35411 -378.28014,368.82611 -378.28014,367.7701 C -378.28014,367.19411 -374.20014,364.81811 -366.04014,360.6421 C -363.35215,359.20212 -360.68816,357.78612 -358.04814,356.3941 C -355.60016,355.09812 -353.99216,354.45012 -353.22414,354.4501 C -352.31216,354.45012 -351.85616,355.12212 -351.85614,356.4661 C -351.85616,356.99412 -352.76816,357.93012 -354.59214,359.2741 C -356.03216,360.33012 -357.49616,361.38612 -358.98414,362.4421 C -359.12816,363.35411 -359.58416,364.67411 -360.35214,366.4021 C -358.67216,365.82611 -355.98416,364.93811 -352.28814,363.7381 C -346.43217,362.05811 -343.40817,361.21812 -343.21614,361.2181 C -342.25617,361.21812 -341.77617,361.84212 -341.77614,363.0901 M -311.11989,363.0901 C -313.47192,364.00211 -317.31192,365.53811 -322.63989,367.6981 C -324.27191,368.22611 -326.81591,369.18611 -330.27189,370.5781 C -331.8559,371.8741 -333.6799,373.0501 -335.74389,374.1061 C -337.7599,375.2101 -339.1279,375.7621 -339.84789,375.7621 C -341.04789,375.7621 -341.64789,375.1381 -341.64789,373.8901 C -341.64789,373.7461 -341.04789,373.1701 -339.84789,372.1621 C -337.9759,370.53011 -336.7519,369.45011 -336.17589,368.9221 C -334.8319,367.67411 -333.9199,366.64211 -333.43989,365.8261 C -333.3919,365.77811 -333.1039,364.84211 -332.57589,363.0181 C -334.0639,363.69011 -336.5119,364.79411 -339.91989,366.3301 C -340.0639,366.37811 -341.35989,367.02611 -343.80789,368.2741 C -345.24789,368.99411 -346.20789,369.35411 -346.68789,369.3541 C -347.31189,369.35411 -347.62389,368.82611 -347.62389,367.7701 C -347.62389,367.19411 -343.54389,364.81811 -335.38389,360.6421 C -332.6959,359.20212 -330.03191,357.78612 -327.39189,356.3941 C -324.94391,355.09812 -323.33591,354.45012 -322.56789,354.4501 C -321.65591,354.45012 -321.19991,355.12212 -321.19989,356.4661 C -321.19991,356.99412 -322.11191,357.93012 -323.93589,359.2741 C -325.37591,360.33012 -326.83991,361.38612 -328.32789,362.4421 C -328.47191,363.35411 -328.92791,364.67411 -329.69589,366.4021 C -328.01591,365.82611 -325.32791,364.93811 -321.63189,363.7381 C -315.77592,362.05811 -312.75192,361.21812 -312.55989,361.2181 C -311.59992,361.21812 -311.11992,361.84212 -311.11989,363.0901 M -295.65564,351.2821 C -297.14366,351.28213 -297.88766,350.53813 -297.88764,349.0501 C -297.88766,347.56213 -297.14366,346.81813 -295.65564,346.8181 C -295.03166,346.81813 -294.50366,347.05813 -294.07164,347.5381 C -293.59166,347.97013 -293.35166,348.49813 -293.35164,349.1221 C -293.35166,350.56213 -294.11966,351.28213 -295.65564,351.2821 M -293.99964,368.3461 C -293.99966,369.06611 -296.15966,370.09811 -300.47964,371.4421 C -305.13565,372.9781 -309.31165,373.7461 -313.00764,373.7461 C -314.25564,373.7461 -315.35964,373.3381 -316.31964,372.5221 C -317.23164,371.70611 -317.68764,370.69811 -317.68764,369.4981 C -317.68764,368.39411 -315.76764,366.16211 -311.92764,362.8021 C -308.18365,359.58612 -305.63965,357.83412 -304.29564,357.5461 C -303.67165,357.40212 -303.35965,357.85812 -303.35964,358.9141 C -303.35965,359.34612 -305.06365,361.02612 -308.47164,363.9541 C -311.87964,366.83411 -313.58364,368.68211 -313.58364,369.4981 C -313.58364,370.36211 -312.69564,370.79411 -310.91964,370.7941 C -308.71165,370.79411 -305.71165,370.17011 -301.91964,368.9221 C -298.12766,367.67411 -296.15966,367.05011 -296.01564,367.0501 C -294.67166,367.05011 -293.99966,367.48211 -293.99964,368.3461 M -253.87089,366.6901 C -253.87093,367.07411 -254.68693,367.72211 -256.31889,368.6341 C -257.90293,369.54611 -259.55893,370.29011 -261.28689,370.8661 C -267.09492,372.8341 -271.65491,373.8181 -274.96689,373.8181 C -276.11891,373.8181 -277.10291,373.5301 -277.91889,372.9541 C -278.73491,372.3301 -279.14291,371.51411 -279.14289,370.5061 C -279.14291,369.97811 -278.42291,368.89811 -276.98289,367.2661 C -275.73491,365.97011 -274.51091,364.65011 -273.31089,363.3061 C -276.47891,363.78611 -280.17491,365.03411 -284.39889,367.0501 C -290.97489,370.17011 -294.55089,371.73011 -295.12689,371.7301 C -296.23089,371.73011 -296.78289,371.13011 -296.78289,369.9301 C -296.78289,369.25811 -295.82289,368.05811 -293.90289,366.3301 C -291.93489,364.60211 -290.95089,363.45011 -290.95089,362.8741 C -290.95089,361.53012 -290.85489,360.47412 -290.66289,359.7061 C -290.42289,358.93812 -289.5829,358.55412 -288.14289,358.5541 C -287.4229,358.55412 -286.8709,358.93812 -286.48689,359.7061 C -286.1029,360.42612 -285.9829,361.26612 -286.12689,362.2261 C -286.2709,363.23411 -286.6789,364.24211 -287.35089,365.2501 C -285.3829,364.38611 -282.1669,363.11411 -277.70289,361.4341 C -273.09491,359.94612 -269.54292,359.20212 -267.04689,359.2021 C -266.03892,359.20212 -265.53492,359.75412 -265.53489,360.8581 C -265.53492,361.29012 -266.32692,362.01011 -267.91089,363.0181 C -269.97492,364.31411 -271.34291,365.32211 -272.01489,366.0421 C -274.31891,368.49011 -275.47091,369.97811 -275.47089,370.5061 C -275.47091,371.13011 -274.75091,371.44211 -273.31089,371.4421 C -271.15091,371.44211 -267.67092,370.69811 -262.87089,369.2101 C -261.67092,368.82611 -259.99093,368.17811 -257.83089,367.2661 C -255.95893,366.45011 -254.95093,366.04211 -254.80689,366.0421 C -254.18293,366.04211 -253.87093,366.25811 -253.87089,366.6901 M -233.56239,367.6261 C -233.56241,368.25011 -235.53041,369.33011 -239.46639,370.8661 C -243.7864,372.5941 -247.3864,373.4581 -250.26639,373.4581 C -252.61839,373.4581 -254.51439,373.0261 -255.95439,372.1621 C -257.39439,371.29811 -258.11439,370.26611 -258.11439,369.0661 C -258.11439,366.66611 -256.12239,363.73811 -252.13839,360.2821 C -249.9784,358.41012 -247.5544,356.61012 -244.86639,354.8821 C -242.3704,353.29812 -240.83441,352.50612 -240.25839,352.5061 C -238.72241,352.50612 -237.95441,353.13012 -237.95439,354.3781 C -237.95441,356.20212 -240.04241,358.57812 -244.21839,361.5061 C -247.4824,363.81011 -250.1224,365.46611 -252.13839,366.4741 C -253.53039,367.43411 -254.22639,368.29811 -254.22639,369.0661 C -254.22639,370.31411 -252.69039,370.93811 -249.61839,370.9381 C -247.5064,370.93811 -244.5784,370.19411 -240.83439,368.7061 C -237.04241,367.21811 -235.05041,366.47411 -234.85839,366.4741 C -233.99441,366.47411 -233.56241,366.85811 -233.56239,367.6261 M -205.04589,367.3381 C -205.04592,367.72211 -206.19792,368.46611 -208.50189,369.5701 C -210.75791,370.67411 -212.98991,371.63411 -215.19789,372.4501 C -218.17391,373.5061 -220.14191,374.1541 -221.10189,374.3941 C -222.9739,374.8741 -225.1579,375.1141 -227.65389,375.1141 C -228.4219,375.1141 -229.4059,374.7781 -230.60589,374.1061 C -232.04589,373.2421 -232.76589,372.2581 -232.76589,371.1541 C -232.76589,370.38611 -231.82989,368.97011 -229.95789,366.9061 C -227.8459,364.65011 -226.7419,363.42611 -226.64589,363.2341 C -228.1819,362.41811 -229.0699,362.05811 -229.30989,362.1541 C -229.5499,362.25011 -230.4619,363.13811 -232.04589,364.8181 C -233.58189,366.49811 -234.46989,367.33811 -234.70989,367.3381 C -236.05389,367.33811 -236.72589,366.54611 -236.72589,364.9621 C -236.72589,364.38611 -235.47789,362.61011 -232.98189,359.6341 C -230.4379,356.61012 -228.6619,355.09812 -227.65389,355.0981 C -226.2619,355.09812 -225.4219,355.55412 -225.13389,356.4661 C -225.0859,357.33012 -225.0379,358.21812 -224.98989,359.1301 C -224.8939,359.99412 -224.4139,360.42612 -223.54989,360.4261 C -222.7339,360.42612 -221.5339,359.89812 -219.94989,358.8421 C -218.36591,357.73812 -217.06991,357.18612 -216.06189,357.1861 C -214.38191,357.18612 -213.54191,358.05012 -213.54189,359.7781 C -213.54191,360.59412 -214.38191,361.38612 -216.06189,362.1541 C -217.98191,362.87411 -219.87791,363.61811 -221.74989,364.3861 C -226.1179,366.35411 -228.3019,368.61011 -228.30189,371.1541 C -228.3019,371.82611 -227.7499,372.1621 -226.64589,372.1621 C -224.4859,372.1621 -220.66991,371.29811 -215.19789,369.5701 C -213.99791,369.18611 -212.19791,368.46611 -209.79789,367.4101 C -207.82992,366.49811 -206.65392,366.04211 -206.26989,366.0421 C -205.74192,366.04211 -205.40592,366.11411 -205.26189,366.2581 C -205.11792,366.40211 -205.04592,366.76211 -205.04589,367.3381 M -116.01789,323.3461 C -116.01796,325.45815 -119.11396,329.15415 -125.30589,334.4341 C -126.74595,335.68214 -130.41795,338.25014 -136.32189,342.1381 C -140.35394,345.11413 -145.08193,348.59413 -150.50589,352.5781 C -152.08992,353.73012 -153.96192,355.24212 -156.12189,357.1141 C -158.76192,359.41812 -161.04192,361.33812 -162.96189,362.8741 C -160.32192,365.13011 -157.27392,367.17011 -153.81789,368.9941 C -150.50593,370.81811 -148.22593,371.73011 -146.97789,371.7301 C -145.20193,371.73011 -143.23393,371.20211 -141.07389,370.1461 C -138.86594,369.09011 -137.32994,368.56211 -136.46589,368.5621 C -135.55394,368.56211 -135.09794,369.18611 -135.09789,370.4341 C -135.09794,370.96211 -136.53794,371.8501 -139.41789,373.0981 C -142.29793,374.3461 -144.57793,374.9701 -146.25789,374.9701 C -148.22593,374.9701 -152.20992,373.3621 -158.20989,370.1461 C -159.55392,369.28211 -162.02591,367.77011 -165.62589,365.6101 C -166.96991,366.09011 -168.45791,366.78611 -170.08989,367.6981 C -171.7219,368.56211 -173.3299,369.45011 -174.91389,370.3621 C -176.1139,371.03411 -177.2899,371.68211 -178.44189,372.3061 C -180.2659,373.1701 -181.84989,373.6021 -183.19389,373.6021 C -185.83389,373.6021 -187.15389,372.8821 -187.15389,371.4421 C -187.15389,369.33011 -184.24989,367.38611 -178.44189,365.6101 C -175.8979,364.84211 -172.7059,363.93011 -168.86589,362.8741 C -167.08991,361.57812 -165.33791,360.30612 -163.60989,359.0581 C -160.77792,356.94612 -158.56992,355.09812 -156.98589,353.5141 C -164.71391,355.81812 -169.17791,356.97012 -170.37789,356.9701 C -170.95391,356.97012 -171.4579,356.70612 -171.88989,356.1781 C -172.3219,355.65012 -172.5379,355.09812 -172.53789,354.5221 C -172.5379,353.89812 -170.68991,353.25012 -166.99389,352.5781 C -162.09791,351.66613 -158.76192,350.87413 -156.98589,350.2021 C -154.24992,349.14613 -152.54592,348.47413 -151.87389,348.1861 C -150.43393,347.51413 -148.51393,346.45813 -146.11389,345.0181 C -143.76193,342.71413 -141.40993,340.41014 -139.05789,338.1061 C -135.98594,335.22614 -133.10594,332.70614 -130.41789,330.5461 C -127.96995,328.57815 -125.52195,326.61015 -123.07389,324.6421 C -120.43396,322.57815 -118.70596,321.54616 -117.88989,321.5461 C -116.64196,321.54616 -116.01796,322.14615 -116.01789,323.3461 M -115.51501,351.2821 C -117.00303,351.28213 -117.74703,350.53813 -117.74701,349.0501 C -117.74703,347.56213 -117.00303,346.81813 -115.51501,346.8181 C -114.89104,346.81813 -114.36304,347.05813 -113.93101,347.5381 C -113.45104,347.97013 -113.21104,348.49813 -113.21101,349.1221 C -113.21104,350.56213 -113.97904,351.28213 -115.51501,351.2821 M -113.85901,368.3461 C -113.85904,369.06611 -116.01903,370.09811 -120.33901,371.4421 C -124.99503,372.9781 -129.17102,373.7461 -132.86701,373.7461 C -134.11502,373.7461 -135.21901,373.3381 -136.17901,372.5221 C -137.09101,371.70611 -137.54701,370.69811 -137.54701,369.4981 C -137.54701,368.39411 -135.62701,366.16211 -131.78701,362.8021 C -128.04302,359.58612 -125.49902,357.83412 -124.15501,357.5461 C -123.53103,357.40212 -123.21903,357.85812 -123.21901,358.9141 C -123.21903,359.34612 -124.92303,361.02612 -128.33101,363.9541 C -131.73902,366.83411 -133.44302,368.68211 -133.44301,369.4981 C -133.44302,370.36211 -132.55502,370.79411 -130.77901,370.7941 C -128.57102,370.79411 -125.57102,370.17011 -121.77901,368.9221 C -117.98703,367.67411 -116.01903,367.05011 -115.87501,367.0501 C -114.53104,367.05011 -113.85904,367.48211 -113.85901,368.3461 M -51.050256,325.1461 C -51.050326,326.10615 -52.634326,328.09815 -55.802256,331.1221 C -59.402316,334.53014 -63.650316,337.86614 -68.546256,341.1301 C -71.714306,343.24213 -76.538296,345.73813 -83.018256,348.6181 C -92.138286,352.65012 -97.106276,354.95412 -97.922256,355.5301 C -98.690276,356.10612 -99.890276,356.97012 -101.52226,358.1221 C -103.53828,359.70612 -105.26627,361.26612 -106.70626,362.8021 C -110.93027,367.36211 -113.04227,370.17011 -113.04226,371.2261 C -113.04227,371.9461 -112.70627,372.3061 -112.03426,372.3061 C -110.83427,372.3061 -108.93827,371.56211 -106.34626,370.0741 C -104.09028,368.68211 -101.81028,367.29011 -99.506256,365.8981 C -98.834276,365.08211 -97.634276,363.97811 -95.906256,362.5861 C -93.170286,360.33012 -91.178286,359.20212 -89.930256,359.2021 C -88.970286,359.20212 -88.490286,359.70612 -88.490256,360.7141 C -88.490286,362.58611 -90.338286,364.79411 -94.034256,367.3381 C -93.074286,368.10611 -91.706286,368.49011 -89.930256,368.4901 C -87.626286,368.49011 -85.154296,368.15411 -82.514256,367.4821 C -79.874296,366.81011 -78.266296,366.47411 -77.690256,366.4741 C -77.114296,366.47411 -76.826296,366.97811 -76.826256,367.9861 C -76.826296,368.32211 -78.746296,368.97011 -82.586256,369.9301 C -86.570286,370.89011 -89.546286,371.37011 -91.514256,371.3701 C -93.338286,371.37011 -95.714276,370.53011 -98.642256,368.8501 C -101.04228,370.14611 -103.41828,371.44211 -105.77026,372.7381 C -108.60227,374.1301 -111.07427,374.8261 -113.18626,374.8261 C -114.29027,374.8261 -115.27426,374.3941 -116.13826,373.5301 C -116.81026,372.8581 -117.14626,372.2581 -117.14626,371.7301 C -117.14626,370.14611 -116.33026,368.32211 -114.69826,366.2581 C -114.36227,365.87411 -112.63427,364.00211 -109.51426,360.6421 C -108.02627,359.05812 -106.29827,357.54612 -104.33026,356.1061 C -100.73028,353.46612 -98.858276,352.07412 -98.714256,351.9301 C -95.546276,349.24213 -92.378286,346.57813 -89.210256,343.9381 C -84.026296,339.61814 -79.466296,336.16214 -75.530256,333.5701 C -68.618306,329.01015 -64.562316,326.34615 -63.362256,325.5781 C -58.898316,322.89015 -55.850316,321.54616 -54.218256,321.5461 C -53.402326,321.54616 -52.682326,321.93015 -52.058256,322.6981 C -51.386326,323.41815 -51.050326,324.23415 -51.050256,325.1461 M -54.362256,325.1461 C -54.362326,324.76215 -54.506326,324.57015 -54.794256,324.5701 C -56.762316,324.57015 -63.122316,328.41015 -73.874256,336.0901 C -76.226296,337.77014 -80.882296,341.56214 -87.842256,347.4661 C -83.810296,345.93013 -81.002296,344.80213 -79.418256,344.0821 C -76.058296,342.59413 -72.986306,340.93814 -70.202256,339.1141 C -66.746306,336.85814 -63.242316,334.17014 -59.690256,331.0501 C -56.138316,327.93015 -54.362326,325.96215 -54.362256,325.1461 M -48.811506,367.3381 C -48.811546,367.72211 -49.963536,368.46611 -52.267506,369.5701 C -54.523536,370.67411 -56.755536,371.63411 -58.963506,372.4501 C -61.939526,373.5061 -63.907526,374.1541 -64.867506,374.3941 C -66.739526,374.8741 -68.923526,375.1141 -71.419506,375.1141 C -72.187516,375.1141 -73.171516,374.7781 -74.371506,374.1061 C -75.811516,373.2421 -76.531516,372.2581 -76.531506,371.1541 C -76.531516,370.38611 -75.595516,368.97011 -73.723506,366.9061 C -71.611516,364.65011 -70.507516,363.42611 -70.411506,363.2341 C -71.947516,362.41811 -72.835516,362.05811 -73.075506,362.1541 C -73.315516,362.25011 -74.227516,363.13811 -75.811506,364.8181 C -77.347516,366.49811 -78.235516,367.33811 -78.475506,367.3381 C -79.819506,367.33811 -80.491506,366.54611 -80.491506,364.9621 C -80.491506,364.38611 -79.243516,362.61011 -76.747506,359.6341 C -74.203516,356.61012 -72.427516,355.09812 -71.419506,355.0981 C -70.027516,355.09812 -69.187526,355.55412 -68.899506,356.4661 C -68.851526,357.33012 -68.803526,358.21812 -68.755506,359.1301 C -68.659526,359.99412 -68.179526,360.42612 -67.315506,360.4261 C -66.499526,360.42612 -65.299526,359.89812 -63.715506,358.8421 C -62.131526,357.73812 -60.835526,357.18612 -59.827506,357.1861 C -58.147536,357.18612 -57.307536,358.05012 -57.307506,359.7781 C -57.307536,360.59412 -58.147536,361.38612 -59.827506,362.1541 C -61.747526,362.87411 -63.643526,363.61811 -65.515506,364.3861 C -69.883516,366.35411 -72.067516,368.61011 -72.067506,371.1541 C -72.067516,371.82611 -71.515516,372.1621 -70.411506,372.1621 C -68.251526,372.1621 -64.435526,371.29811 -58.963506,369.5701 C -57.763536,369.18611 -55.963536,368.46611 -53.563506,367.4101 C -51.595536,366.49811 -50.419536,366.04211 -50.035506,366.0421 C -49.507536,366.04211 -49.171546,366.11411 -49.027506,366.2581 C -48.883546,366.40211 -48.811546,366.76211 -48.811506,367.3381 M -28.671756,367.6261 C -28.671786,368.25011 -30.639786,369.33011 -34.575756,370.8661 C -38.895776,372.5941 -42.495766,373.4581 -45.375756,373.4581 C -47.727766,373.4581 -49.623766,373.0261 -51.063756,372.1621 C -52.503756,371.29811 -53.223756,370.26611 -53.223756,369.0661 C -53.223756,366.66611 -51.231766,363.73811 -47.247756,360.2821 C -45.087766,358.41012 -42.663766,356.61012 -39.975756,354.8821 C -37.479776,353.29812 -35.943776,352.50612 -35.367756,352.5061 C -33.831776,352.50612 -33.063776,353.13012 -33.063756,354.3781 C -33.063776,356.20212 -35.151776,358.57812 -39.327756,361.5061 C -42.591766,363.81011 -45.231766,365.46611 -47.247756,366.4741 C -48.639766,367.43411 -49.335766,368.29811 -49.335756,369.0661 C -49.335766,370.31411 -47.799766,370.93811 -44.727756,370.9381 C -42.615766,370.93811 -39.687776,370.19411 -35.943756,368.7061 C -32.151776,367.21811 -30.159786,366.47411 -29.967756,366.4741 C -29.103786,366.47411 -28.671786,366.85811 -28.671756,367.6261 M 31.524744,366.6901 C 31.524674,367.07411 30.708674,367.72211 29.076744,368.6341 C 27.492684,369.54611 25.836684,370.29011 24.108744,370.8661 C 18.300694,372.8341 13.740694,373.8181 10.428744,373.8181 C 9.276694,373.8181 8.292704,373.5301 7.476744,372.9541 C 6.660704,372.3301 6.252704,371.51411 6.252744,370.5061 C 6.252704,369.97811 6.972704,368.89811 8.412744,367.2661 C 9.660694,365.97011 10.884694,364.65011 12.084744,363.3061 C 8.916704,363.78611 5.220704,365.03411 0.99674395,367.0501 C -5.579286,370.17011 -9.155286,371.73011 -9.731256,371.7301 C -10.547286,371.73011 -10.955276,371.13011 -10.955256,369.9301 C -10.955276,369.78611 -9.899286,368.75411 -7.787256,366.8341 C -5.627286,364.86611 -4.547286,363.54611 -4.547256,362.8741 C -4.547286,362.34611 -4.763286,362.08211 -5.195256,362.0821 C -5.867286,362.08211 -7.835286,362.65811 -11.099256,363.8101 C -14.699276,365.05811 -18.155276,366.42611 -21.467256,367.9141 C -21.947266,368.10611 -24.203266,369.25811 -28.235256,371.3701 C -30.923256,372.7621 -32.627256,373.4581 -33.347256,373.4581 C -34.259256,373.4581 -34.715256,372.8821 -34.715256,371.7301 C -34.715256,370.72211 -31.955256,368.08211 -26.435256,363.8101 C -20.915266,359.53812 -17.411276,357.40212 -15.923256,357.4021 C -15.203276,357.40212 -14.843276,357.71412 -14.843256,358.3381 C -14.843276,358.67412 -15.851276,359.63412 -17.867256,361.2181 C -20.219276,363.04211 -21.635266,364.26611 -22.115256,364.8901 C -22.067266,364.89011 -20.003276,364.21811 -15.923256,362.8741 C -15.155276,362.63411 -12.707276,361.72212 -8.579256,360.1381 C -5.843286,359.13012 -4.091286,358.62612 -3.323256,358.6261 C -2.075286,358.62612 -1.091286,358.96212 -0.37125605,359.6341 C 0.39670395,360.30612 0.70870395,361.12212 0.56474395,362.0821 C 0.37270395,363.52211 0.012703953,364.62611 -0.51525605,365.3941 C 1.452704,364.48211 4.668704,363.16211 9.132744,361.4341 C 13.740694,359.94612 16.812694,359.20212 18.348744,359.2021 C 19.356684,359.20212 19.860684,359.75412 19.860744,360.8581 C 19.860684,361.29012 18.996694,362.13011 17.268744,363.3781 C 15.060694,364.91411 13.620694,366.01811 12.948744,366.6901 C 12.276694,367.36211 11.604694,368.03411 10.932744,368.7061 C 10.260694,369.37811 9.924694,369.97811 9.924744,370.5061 C 9.924694,371.13011 10.644694,371.44211 12.084744,371.4421 C 14.244694,371.44211 17.724694,370.69811 22.524744,369.2101 C 23.724684,368.82611 25.404684,368.17811 27.564744,367.2661 C 29.436674,366.45011 30.444674,366.04211 30.588744,366.0421 C 31.212674,366.04211 31.524674,366.25811 31.524744,366.6901 M 50.359494,367.6261 C 50.359464,368.25011 48.391464,369.33011 44.455494,370.8661 C 40.135474,372.5941 36.535484,373.4581 33.655494,373.4581 C 31.303484,373.4581 29.407484,373.0261 27.967494,372.1621 C 26.527494,371.29811 25.807494,370.26611 25.807494,369.0661 C 25.807494,366.66611 27.799484,363.73811 31.783494,360.2821 C 33.943484,358.41012 36.367484,356.61012 39.055494,354.8821 C 41.551474,353.29812 43.087474,352.50612 43.663494,352.5061 C 45.199474,352.50612 45.967474,353.13012 45.967494,354.3781 C 45.967474,356.20212 43.879474,358.57812 39.703494,361.5061 C 36.439484,363.81011 33.799484,365.46611 31.783494,366.4741 C 30.391484,367.43411 29.695484,368.29811 29.695494,369.0661 C 29.695484,370.31411 31.231484,370.93811 34.303494,370.9381 C 36.415484,370.93811 39.343474,370.19411 43.087494,368.7061 C 46.879474,367.21811 48.871464,366.47411 49.063494,366.4741 C 49.927464,366.47411 50.359464,366.85811 50.359494,367.6261 M 89.675994,366.6901 C 89.675944,367.07411 88.859944,367.72211 87.227994,368.6341 C 85.643954,369.54611 83.987954,370.29011 82.259994,370.8661 C 76.451964,372.8341 71.891964,373.8181 68.579994,373.8181 C 67.427974,373.8181 66.443974,373.5301 65.627994,372.9541 C 64.811974,372.3301 64.403974,371.51411 64.403994,370.5061 C 64.403974,369.97811 65.123974,368.89811 66.563994,367.2661 C 67.811974,365.97011 69.035964,364.65011 70.235994,363.3061 C 67.067974,363.78611 63.371974,365.03411 59.147994,367.0501 C 52.571984,370.17011 48.995984,371.73011 48.419994,371.7301 C 47.315994,371.73011 46.763994,371.13011 46.763994,369.9301 C 46.763994,369.25811 47.723994,368.05811 49.643994,366.3301 C 51.611984,364.60211 52.595984,363.45011 52.595994,362.8741 C 52.595984,361.53012 52.691984,360.47412 52.883994,359.7061 C 53.123984,358.93812 53.963984,358.55412 55.403994,358.5541 C 56.123984,358.55412 56.675984,358.93812 57.059994,359.7061 C 57.443984,360.42612 57.563984,361.26612 57.419994,362.2261 C 57.275984,363.23411 56.867984,364.24211 56.195994,365.2501 C 58.163984,364.38611 61.379974,363.11411 65.843994,361.4341 C 70.451964,359.94612 74.003964,359.20212 76.499994,359.2021 C 77.507964,359.20212 78.011964,359.75412 78.011994,360.8581 C 78.011964,361.29012 77.219964,362.01011 75.635994,363.0181 C 73.571964,364.31411 72.203964,365.32211 71.531994,366.0421 C 69.227964,368.49011 68.075974,369.97811 68.075994,370.5061 C 68.075974,371.13011 68.795964,371.44211 70.235994,371.4421 C 72.395964,371.44211 75.875964,370.69811 80.675994,369.2101 C 81.875954,368.82611 83.555954,368.17811 85.715994,367.2661 C 87.587954,366.45011 88.595944,366.04211 88.739994,366.0421 C 89.363944,366.04211 89.675944,366.25811 89.675994,366.6901 M 120.0645,357.5461 C 120.06446,358.36212 119.44046,358.86612 118.1925,359.0581 C 118.04846,359.10612 116.72847,359.15412 114.2325,359.2021 L 103.7205,359.2021 C 103.48048,359.44212 100.81648,361.91411 95.728494,366.6181 C 88.960484,372.9061 85.408494,376.0501 85.072494,376.0501 C 84.064494,376.0501 83.560494,375.4021 83.560494,374.1061 C 83.560494,373.6741 84.544494,372.5461 86.512494,370.7221 C 88.288484,368.99411 90.088484,367.29011 91.912494,365.6101 C 92.296484,365.22611 94.744484,362.94611 99.256494,358.7701 C 95.560484,358.77012 93.424484,358.74612 92.848494,358.6981 C 92.320484,358.65012 91.600484,358.65012 90.688494,358.6981 C 89.488484,358.74612 88.744484,358.77012 88.456494,358.7701 C 86.776494,358.77012 85.936494,358.36212 85.936494,357.5461 C 85.936494,356.58612 86.824494,355.98612 88.600494,355.7461 C 89.176484,355.69812 90.856484,355.67412 93.640494,355.6741 L 102.0645,355.6741 C 104.08048,353.89812 107.00848,350.99413 110.8485,346.9621 C 115.16847,341.77814 117.76046,339.18614 118.6245,339.1861 C 119.58446,339.18614 120.06446,339.73814 120.0645,340.8421 C 120.06446,341.13014 118.07246,343.50613 114.0885,347.9701 C 112.02447,350.08213 109.43247,352.77012 106.3125,356.0341 C 107.32047,356.03412 108.92847,356.13012 111.1365,356.3221 C 113.20047,356.51412 114.59247,356.58612 115.3125,356.5381 C 118.48046,356.44212 120.06446,356.77812 120.0645,357.5461 M 129.11287,370.2181 C 129.11286,370.93811 128.87286,371.61011 128.39287,372.2341 C 127.91286,372.8101 127.33686,373.1221 126.66487,373.1701 C 125.84886,373.2181 125.12886,373.0021 124.50487,372.5221 C 123.92886,371.9941 123.64086,371.32211 123.64087,370.5061 C 123.64086,369.73811 123.95286,369.01811 124.57687,368.3461 C 125.20086,367.67411 125.89686,367.36211 126.66487,367.4101 C 128.29686,367.55411 129.11286,368.49011 129.11287,370.2181"
style="font-size:72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Pushkin" />
</g>
</g>
</svg>
|