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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="1220"
height="980"
id="InkscapePatterns"
sodipodi:version="0.32"
inkscape:version="1.3-dev (4631277b66, 2023-02-24, custom)"
version="1.1"
sodipodi:docname="Patterns.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<sodipodi:namedview
id="namedview1110"
pagecolor="#e8e8e8"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="false"
inkscape:deskcolor="#d1d1d1"
showgrid="true"
showguides="true"
inkscape:zoom="0.65606929"
inkscape:cx="759.82828"
inkscape:cy="374.96039"
inkscape:window-width="1453"
inkscape:window-height="916"
inkscape:window-x="-3"
inkscape:window-y="38"
inkscape:window-maximized="0"
inkscape:current-layer="InkscapePatterns">
<inkscape:grid
type="xygrid"
id="grid2369"
originx="0"
originy="0"
spacingx="1"
spacingy="1"
empcolor="#0099e5"
empopacity="0.16862745"
visible="true" />
<inkscape:grid
type="xygrid"
id="grid99971"
spacingx="120"
spacingy="120"
empspacing="1"
empcolor="#005ecd"
empopacity="0.40392157"
originx="0"
originy="0"
visible="true" />
<inkscape:grid
type="xygrid"
id="grid102779"
spacingx="120"
spacingy="120"
originx="20"
originy="20"
empspacing="1"
empcolor="#0056e5"
empopacity="0.43921569"
visible="true" />
</sodipodi:namedview>
<title
id="title132">Patterns</title>
<defs
id="defs2387"><pattern
inkscape:collect="always"
xlink:href="#pattern6-7"
preserveAspectRatio="xMidYMid"
id="pattern2"
patternTransform="translate(190,350)" /><pattern
patternUnits="userSpaceOnUse"
width="29"
height="20"
patternTransform="translate(190,350)"
preserveAspectRatio="xMidYMid"
style="fill:#000000"
id="pattern6-7"
inkscape:label="Tiles 2"
inkscape:collect="always"
inkscape:isstock="true"><path
style="fill:none;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-dasharray:none;paint-order:stroke markers fill;stop-color:#000000"
d="M 0,5 C 19,5 10,15 29,15"
id="path4-2"
sodipodi:nodetypes="cc" /></pattern>
<pattern
inkscape:collect="always"
xlink:href="#Gingham"
id="pattern8"
patternTransform="scale(0.5)" />
<pattern
inkscape:collect="always"
xlink:href="#TableCloth"
id="pattern161745"
patternTransform="translate(500,620)" />
<pattern
inkscape:collect="always"
xlink:href="#RedButton"
id="pattern128000"
patternTransform="matrix(0.5,0,0,0.5,720,380)" />
<linearGradient
inkscape:collect="always"
id="linearGradient119593">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop119589" />
<stop
style="stop-color:#f70000;stop-opacity:1;"
offset="1"
id="stop119591" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient118859">
<stop
style="stop-color:#fc0000;stop-opacity:1;"
offset="0"
id="stop118855" />
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="1"
id="stop118857" />
</linearGradient>
<pattern
inkscape:collect="always"
xlink:href="#Grid"
id="pattern96407"
patternTransform="scale(0.5)" />
<pattern
inkscape:collect="always"
xlink:href="#Tiles"
id="pattern96399"
patternTransform="scale(0.2)" />
<pattern
inkscape:collect="always"
xlink:href="#oldpaint_bitmap"
id="pattern96397"
patternTransform="translate(-605,305)" />
<pattern
inkscape:collect="always"
xlink:href="#cloth_bitmap"
id="pattern96395"
patternTransform="translate(-140,190)" />
<pattern
inkscape:collect="always"
xlink:href="#sand_bitmap"
id="pattern96393"
patternTransform="translate(-135,190)" />
<pattern
inkscape:collect="always"
xlink:href="#Camouflage"
id="pattern96389"
patternTransform="matrix(0.2,0,0,0.2,-365,790)" />
<pattern
inkscape:collect="always"
xlink:href="#Wavy"
id="pattern96385"
patternTransform="translate(-255,435)" />
<pattern
inkscape:collect="always"
xlink:href="#Polkadots-large"
id="pattern96381"
patternTransform="matrix(10,0,0,10,-245,795)" />
<pattern
inkscape:collect="always"
xlink:href="#Polkadots-med"
id="pattern96377"
patternTransform="matrix(10,0,0,10,-135,680)" />
<pattern
inkscape:collect="always"
xlink:href="#Polkadots-small"
id="pattern96373"
patternTransform="matrix(10,0,0,10,-485,680)" />
<pattern
inkscape:collect="always"
xlink:href="#Checkerboard"
id="pattern96367"
patternTransform="matrix(10,0,0,10,110,-155)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips4_1"
id="pattern96363"
patternTransform="matrix(10,0,0,10,220,-270)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips2_1"
id="pattern96359"
patternTransform="matrix(2,0,0,2,-10,-150)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_64"
id="pattern96357"
patternTransform="matrix(2,0,0,2,-5,-150)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_32"
id="pattern96353"
patternTransform="matrix(2,0,0,2,105,-145)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_16"
id="pattern96349"
patternTransform="matrix(2,0,0,2,-5,-145)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_10"
id="pattern96345"
patternTransform="matrix(2,0,0,2,105,-140)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_8"
id="pattern96341"
patternTransform="matrix(2,0,0,2,-5,-140)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_5"
id="pattern96337"
patternTransform="matrix(2,0,0,2,105,-135)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_4"
id="pattern96333"
patternTransform="matrix(2,0,0,2,-5,-135)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_3"
id="pattern96329"
patternTransform="matrix(2,0,0,2,105,-130)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_2"
id="pattern96325"
patternTransform="matrix(2,0,0,2,-5,-130)" />
<pattern
inkscape:collect="always"
xlink:href="#Strips1_1.5"
id="pattern96321"
patternTransform="matrix(2,0,0,2,105,-125)" />
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="2"
height="10"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_1"
style="fill:black"
inkscape:stockid="Stripes 01 (1:1)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="11"
id="rect134" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="2.5"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_1.5"
style="fill:black"
inkscape:stockid="Stripes 02 (2:3)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect140" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="3"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_2"
style="fill:black"
inkscape:stockid="Stripes 03 (1:2)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect146" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="4"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_3"
style="fill:black"
inkscape:stockid="Stripes 04 (1:3)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect152" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="5"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_4"
style="fill:black"
inkscape:stockid="Stripes 05 (1:4)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect158" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="6"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_5"
style="fill:black"
inkscape:stockid="Stripes 06 (1:5)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect164" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="9"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_8"
style="fill:black"
inkscape:stockid="Stripes 07 (1:8)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect170" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="11"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_10"
style="fill:black"
inkscape:stockid="Stripes 08 (1:10)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect176" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="17"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_16"
style="fill:black"
inkscape:stockid="Stripes 09 (1:16)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect182" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="33"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_32"
style="fill:black"
inkscape:stockid="Stripes 10 (1:32)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect188" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="65"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips1_64"
style="fill:black"
inkscape:stockid="Stripes 11 (1:64)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect194" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="1.5"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips2_1"
style="fill:black"
inkscape:stockid="Stripes 12 (2:1)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect197" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="1.25"
height="1"
patternTransform="translate(0,0) scale(2,2)"
preserveAspectRatio="xMidYMid"
id="Strips4_1"
style="fill:black"
inkscape:stockid="Stripes 13 (4:1)">
<rect
style="stroke:none"
x="0"
y="-0.5"
width="1"
height="2"
id="rect203" />
</pattern>
<pattern
inkscape:collect="always"
style="fill:black"
patternUnits="userSpaceOnUse"
width="2"
height="2"
patternTransform="translate(0,0) scale(10,10)"
id="Checkerboard"
inkscape:stockid="Checkerboard"
preserveAspectRatio="xMidYMid">
<rect
style="stroke:none"
x="0"
y="0"
width="1"
height="1"
id="rect209" />
<rect
style="stroke:none"
x="1"
y="1"
width="1"
height="1"
id="rect211" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="30.066020"
height="5.1805778"
id="Wavy"
inkscape:stockid="Wavy">
<path
style="stroke:none;"
d="M 7.597,0.061 C 5.079,-0.187 2.656,0.302 -0.01,1.788 L -0.01,3.061 C 2.773,1.431 5.173,1.052 7.472,1.280 C 9.770,1.508 11.969,2.361 14.253,3.218 C 18.820,4.931 23.804,6.676 30.066,3.061 L 30.062,1.788 C 23.622,5.497 19.246,3.770 14.691,2.061 C 12.413,1.207 10.115,0.311 7.597,0.061 z "
id="path786" />
</pattern>
<pattern
inkscape:collect="always"
patternUnits="userSpaceOnUse"
width="372"
height="400"
patternTransform="translate(0,0) scale(0.2,0.2)"
preserveAspectRatio="xMidYMid"
id="Camouflage"
inkscape:stockid="Camouflage">
<g
id="g3410"
transform="translate(-89,-270)">
<path
style="fill:#344a33;"
d="M 89,270 L 480,270 L 480,680 L 89,680 L 89,270 z"
id="rect5504" />
<g
style="fill:#463a28;fill-opacity:1"
id="g5707"
transform="matrix(0.5,0,0,0.5,161.785,352.005)">
<path
style="fill:#463a28"
d="M 600,178.31 C 560.97,190.236 519.231,189.9 479.23,183.581 C 455.918,186.853 438.62,213.05 412.95,203.143 C 384.723,200.460 356.541,204.918 328.406,206.68 C 309.806,190.517 275.53,228.018 306.603,234.354 C 327.210,236.132 348.992,229.341 368.62,238.962 C 383.037,247.894 390.808,258.693 408.529,259.350 C 420.656,274.332 386.675,270.062 378.494,268.502 C 357.207,270.434 385.060,292.401 395.894,290.848 C 424.579,294.517 449.809,275.993 477.405,272.721 C 495.590,279.799 463.282,296.428 453.105,296.250 C 438.778,294.524 418.703,307.58 439.246,316.579 C 457.033,324.061 485.201,315.67 493.525,338.098 C 485.057,361.173 449.064,351.396 431.337,343.369 C 413.333,329.691 390.442,339.22 375.767,353.012 C 362.304,365.825 347.051,376.832 329.963,383.669 C 312.790,403.576 345.997,415.972 357.265,402.870 C 362.161,424.280 326.751,414.476 324.658,431.463 C 341.974,441.266 373.473,430.487 380.502,454.940 C 378.508,479.296 348.435,488.15 329.175,477.225 C 300.598,468.454 269.938,460.273 240.214,468.494 C 224.261,471.401 206.547,476.887 191.786,467.162 C 172.250,457.596 155.905,442.99 138,430.8 C 124.824,404.143 96.097,387.060 66.775,384.893 C 46.983,374.555 15.716,362.529 -2.282,380.956 C -5.629,405.028 31.603,403.219 46.194,414.656 C 67.224,420.952 69.502,454.051 42.915,450.37 C 12.992,451.162 -21.439,452.420 -45.709,431.774 C -57.746,419.467 -61.574,401.735 -71.239,387.695 C -88.819,367.483 -61.456,351.684 -42.526,355.292 C -16.517,355.025 -17.113,321.144 -10.032,303.64 C -25.652,288.652 -40.742,321.498 -56.006,324.403 C -78.301,322.326 -83.577,292.543 -82.521,274.145 C -80.525,250.62 -107.323,242.235 -114.751,221.643 C -125.662,204.223 -139.460,220.004 -131.811,234.932 C -120.793,259.937 -133.284,286.858 -127.928,312.715 C -124.867,334.367 -91.797,344.018 -99.659,368.317 C -111.945,383.164 -125.622,410.580 -150,399.781 C -150,424. -150,448.718 -150,473.18 C -125.302,478.553 -132.230,508.537 -136.682,526.118 C -138.435,548.920 -115.870,560.382 -97.390,566.074 C -79.986,572.020 -63.202,582.322 -55.644,599.777 C -37.724,622.346 -5.898,618.235 19.446,623.426 C 38.438,629.090 57.258,637.088 77.557,634.888 C 128.370,635.236 179.185,634.855 230,635 C 205.840,620.831 176.501,628.467 150.735,620.057 C 174.602,613.037 202.175,628.036 223.812,611.93 C 248.788,599.491 208.494,588.826 196.470,593.890 C 174.716,597.94 151.747,602.937 130.463,593.724 C 109.734,583.381 90.847,567.89 76.969,549.340 C 58.947,527.803 79.814,500.291 105.420,509.858 C 127.255,513.818 153.171,511.947 169.881,529.057 C 154.102,533.042 132.701,517.975 116.702,530.217 C 97.280,546.038 118.157,574.262 136.675,579.629 C 161.105,588.782 187.823,576.764 211.865,587.810 C 236.001,599.167 265.115,595.524 286.270,579.468 C 302.270,568.417 341.076,576.817 350.421,572.420 C 333.300,581.50 328.493,610.228 355.054,600.493 C 381.612,594.843 406.638,583.784 433.093,577. C 452.413,583.091 483.371,598.36 495.980,574.90 C 501.833,555.719 521.524,550.721 534.710,538.651 C 552.058,518.928 517.047,523.810 505.635,523.333 C 486.286,522.775 466.995,521.032 447.75,519.031 C 462.818,495.215 494.296,493.760 519.567,495.617 C 546.589,483.008 582.396,482.543 600,455 C 598.131,432.490 603.727,402.981 597.220,384.820 C 567.631,377.721 602.659,349.517 600,332.297 C 600,280.969 600,229.640 600,178.31 z"
id="path7788" />
<path
style="fill:#463a28;"
d="M -74.218,518.06 C -97.532,526.845 -124.316,516.128 -145.992,521.806 C -157.072,543.338 -145.463,569.615 -149.820,593.10 C -151.229,611.617 -155.632,643.9 -127.319,634.913 C -97.561,634.560 -67.597,636.446 -37.975,633.489 C -24.011,634.582 -7.730,614.171 -30.230,612.945 C -58.089,611.719 -54.502,572.239 -26.809,574.076 C -3.761,572.761 19.404,568.607 38.632,555.215 C 54.406,535.664 16.639,537.46 5.606,542.32 C -14.881,542.187 -29.999,552.534 -44.080,565.88 C -59.331,563.486 -73.922,550.934 -92.005,556.885 C -113.452,558.010 -95.924,533.254 -81.630,540.383 C -67.556,534.655 -37.894,553.619 -34.982,532.886 C -41.444,521.257 -61.503,518.496 -74.218,518.06 z"
id="path5796" />
<path
style="fill:#463a28;"
d="M -77.873,101.507 C -61.245,117.641 -35.033,101.775 -18.966,106.888 C -35.237,127.785 -1.393,135.40 13.663,126.668 C 34.894,135.65 46.799,108.962 66.603,111.441 C 88.453,118.352 111.506,110.511 133.557,110.931 C 146.552,107.752 177.049,127.459 155.197,134.646 C 137.041,134.209 117.488,127.557 101.063,135.571 C 85.282,153.172 113.748,148.425 123.936,148.060 C 140.630,156.251 158.465,163.670 170.942,144.758 C 186.614,132.311 207.878,136.555 226.074,130.774 C 253.269,131.014 234.168,157.849 216.711,157.163 C 198.764,167.882 177.594,162.934 158.941,169.746 C 132.016,184.951 160.562,207.39 178.167,209.892 C 179.357,231.237 144.387,225.712 129.351,230.21 C 112.394,234.817 82.211,217.187 76.263,240.878 C 74.364,262.691 119.457,261.719 96.662,283.479 C 88.080,299.449 50.228,285.837 65.631,310.924 C 75.750,333.571 38.484,313.147 25.461,318.338 C 13.084,327.758 -11.260,313.710 3.757,300.453 C 11.434,299.004 32.809,302.772 26.839,288.875 C 10.009,286.651 -14.890,301.330 -25.642,281.730 C -18.642,263.900 -43.268,246.97 -27.986,233.262 C -22.287,229.756 -48.133,238.298 -42.827,222.371 C -36.804,205.576 -39.335,190.426 -41.601,174.046 C -34.701,169.194 -17.617,153.507 -37.551,156.061 C -47.733,158.3 -62.292,150.373 -69.392,151.239 C -69.143,139.703 -75.979,120.783 -89.516,134.314 C -114.483,130.598 -92.908,101.2 -77.873,101.507 z"
id="path7734" />
<path
style="fill:#463a28;"
d="M 119.843,-1 C 116.556,-137.634 82.136,-140.81 64.585,-150.953 C 42.657,-148.527 33.487,-122.141 11.296,-119.480 C -14.956,-116.940 8.724,-83.186 -17.272,-79.091 C -56.271,-65.964 -100.879,-67.422 -135.573,-42.601 C -153.881,-26.024 -143.982,0.661 -141.751,21.550 C -139.412,45.169 -104.870,34.373 -105.628,58.104 C -99.882,87.281 -68.317,57.858 -53.203,52.771 C -31.034,41.210 -11.896,68.353 10.154,60.876 C 22.041,48.348 39.710,45.854 56.278,45.240 C 74.791,44.990 88.864,30.990 107.722,32.386 C 139.310,29.879 171.071,32.348 202.605,30.205 C 222.380,27.043 242.209,24.338 262.163,22.913 C 283.344,19.446 304.971,9.012 326.555,15.928 C 343.027,36.999 366.296,17.733 374.887,0.832 C 395.270,-11.985 420.435,-10.365 443.402,-13.363 C 463.417,-11.221 493.073,-9.726 498.820,-34.799 C 499.965,-55.190 474.411,-61.506 458.112,-61.252 C 432.280,-55.690 406.923,-44.314 379.859,-46.245 C 366.366,-42.028 332.931,-23.175 332.146,-47.095 C 340.849,-53.140 360.005,-71.805 336.974,-71.342 C 312.874,-71.978 288.314,-52.549 265.031,-66.281 C 256.299,-89.716 287.554,-98.793 305.299,-98.953 C 330.803,-102.261 356.292,-97.825 381.048,-92.039 C 398.272,-93.695 428.282,-82.086 438.577,-95.697 C 432.712,-113.674 417.972,-119.830 401.585,-126.651 C 390.598,-136.203 361.634,-122.216 362.391,-146.599 C 376.520,-165.216 341.318,-156.437 331.042,-152.221 C 315.827,-145.266 299.206,-144.548 283.122,-142.637 C 259.176,-143.957 249.187,-174.257 223.052,-1 C 188.649,-1 154.246,-1 119.843,-1 z M 107.125,-108.5 C 128.383,-98.019 149.698,-87.606 171.601,-78.527 C 189.186,-73.970 221.496,-93.304 228.634,-72.459 C 215.601,-56.322 190.578,-71.098 172.445,-67.078 C 149.711,-65.477 123.370,-58.850 104.074,-75.051 C 92.331,-81.647 51.714,-77.224 65.846,-98.560 C 79.069,-104.077 95.620,-98.359 107.125,-108.5 z"
id="rect8003" />
<path
style="fill:#463a28;"
d="M -150,-1 C -150,-134.446 -150,-103.893 -150,-73.340 C -140.617,-68.983 -119.386,-66.831 -133.939,-81.861 C -146.584,-107.449 -107.838,-92.756 -99.971,-110.812 C -80.328,-132.78 -125.557,-128.479 -121.460,-151.42 C -117.123,-175.278 -85.779,-157.045 -69.257,-162.198 C -60.864,-162.377 -40.952,-165.987 -60.241,-165.042 C -90.159,-164.916 -120.080,-165.046 -150,-1 z"
id="path5784" />
<path
style="fill:#463a28;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;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"
d="M 473.656,509.156 C 452.234,504.277 441.387,551.97 468.796,538.902 C 490.088,528.916 469.817,571.564 493.359,560.897 C 504.024,567.417 538.462,558.658 517.053,575.909 C 503.234,582.520 508.456,593.847 514.496,602.529 C 510.232,616.211 501.017,641.753 526.025,635 C 550.683,635 575.341,635 600,635 C 600,598.177 600,561.354 600,524.531 C 583.610,540.604 555.550,533.912 536.555,537.104 C 524.205,532.170 531.392,516.638 531.498,513.096 C 510.741,511.891 492.699,524.018 473.656,509.156 z"
id="path5798" />
<path
style="fill:#463a28;"
d="M 510,-1 C 507.765,-149.145 537.198,-169.760 521.773,-156.735 C 509.530,-141.80 534.936,-126.48 526.170,-110.745 C 535.759,-86.341 574.941,-114.840 580.160,-97.956 C 570.192,-90.967 533.398,-90.853 556.435,-73.165 C 570.230,-73.551 587.408,-72.641 598.802,-76.813 C 603.207,-95.887 597.254,-116.108 600.019,-135.693 C 603.625,-153.054 599.552,-171.961 578.115,-1 C 555.410,-1 532.705,-1 510,-1 z"
id="path5800" />
<path
style="fill:#463a28;"
d="M 297.218,609.281 C 273.460,616.16 245.099,607.606 224.733,624.859 C 213.115,642.376 249.131,636.399 258.093,631.305 C 277.004,620.102 298.754,616.212 320.476,617.711 C 335.240,616.788 337.511,610.244 321.564,611.424 C 313.436,610.909 305.261,610.666 297.218,609.281 z"
id="path5822" />
<path
style="fill:#463a28;"
d="M -126.656,154.81 C -137.651,170.980 -158.192,184.029 -150,206.627 C -150,252.751 -150,298.875 -150,345 C -142.652,328.6 -127.352,305.181 -107.988,321.931 C -82.305,327.845 -77.109,291.184 -85.353,274.07 C -96.521,258.54 -116.604,286.214 -119.612,262.303 C -129.445,242.23 -130.482,220.834 -121.032,200.456 C -119.582,186.121 -97.174,152.998 -126.656,154.81 z M -150,385 C -150,410.083 -150,435.166 -150,460. C -135.228,443.436 -139.871,419.809 -133.972,400.025 C -131.703,390.185 -140.503,382.296 -150,385 z"
id="path5872" />
</g>
<g
style="fill:#758949;fill-opacity:1"
id="g5530"
transform="matrix(0.5,0,0,0.5,161.785,352.005)">
<path
style="fill:#758949;"
d="M -19.092,152.663 C -0.336,165.154 -44.495,173.82 -22.905,182.657 C -18.543,203.392 -55.957,201.559 -44.511,225.005 C -39.954,238.057 -60.169,248.53 -56.909,229.876 C -54.108,217.223 -58.600,202.326 -73.928,208.118 C -89.423,197.340 -51.695,192.141 -64.568,177.550 C -70.646,150.414 -39.259,153.91 -22.517,154.630 L -19.092,152.663 L -19.092,152.663 z"
id="path7689" />
<path
style="fill:#758949;"
d="M 233.782,202.069 C 212.165,215.215 251.363,241.045 228.203,248.174 C 216.084,262.584 197.512,272.265 181.504,258.722 C 166.306,253.675 158.151,286.797 173.605,270.658 C 187.546,263.531 197.630,287.677 178.147,284.195 C 152.858,293.417 187.317,304.915 198.171,295.591 C 222.204,290.740 214.910,317.192 210.320,329.770 C 226.071,327.954 237.467,305.507 255.759,301.380 C 272.512,302.120 241.691,291.452 238.658,291.396 C 231.708,281.968 211.890,280.530 228.799,270.141 C 241.557,253.974 263.959,244.392 283.670,248.937 C 307.010,259.22 306.336,290.76 287.321,305.101 C 275.751,324.097 301.617,317.866 306.139,305.330 C 313.269,295.780 319.991,293.767 321.832,307.153 C 328.474,315.898 343.140,299.239 334.218,313.064 C 343.564,330.863 365.600,294.385 355.932,281.417 C 335.827,263.687 377.040,269.185 373.147,254.758 C 355.214,239.308 329.890,254.377 312.623,257.325 C 303.211,240.040 290.434,225.805 269.487,228.434 C 253.320,225.850 240.032,216.376 233.782,202.069 z"
id="path7371" />
<path
style="fill:#758949;"
d="M -130,-165 C -146.497,-154.421 -111.929,-144.56 -116.154,-130.844 C -106.837,-127.738 -105.619,-157.368 -93.415,-141.701 C -92.028,-125.613 -124.299,-103.209 -96.213,-92.855 C -71.406,-90.775 -92.001,-126.698 -70.547,-124.698 C -48.241,-125.914 -96.932,-142.021 -76.377,-155.530 C -56.893,-158.324 -51.410,-131.611 -35.806,-126.653 C -16.916,-131.918 -55.218,-163.601 -27.063,-154.425 C -2.890,-146.007 17.057,-129.190 39.176,-116.894 C 40.828,-101.311 15.033,-93.682 13.535,-75.677 C -0.378,-55.259 31.471,-32.696 45.974,-49.748 C 60.624,-69.816 14.547,-63.868 33.181,-81.896 C 45.279,-99.115 64.649,-103.932 83.254,-110.523 C 95.273,-125.338 123.044,-137.032 134.741,-115.232 C 132.972,-91.529 161.875,-99.012 158.794,-119.174 C 159.876,-142.26 119.587,-129.296 123.977,-151.367 C 142.397,-170.599 102.674,-166.12 101.607,-163.014 C 114.787,-137.921 71.243,-145.883 57.367,-143.840 C 36.664,-144.791 -2.221,-141.174 -8.202,-163.7 C 10.582,-166.931 -21.788,-163.9 -28.437,-165 C -62.291,-165 -96.145,-165 -130,-165 z"
id="path8024" />
<path
style="fill:#758949;"
d="M 80.180,-53.140 C 56.900,-52.662 89.138,-31.342 99.278,-34.180 C 122.695,-29.031 145.247,-45.948 168.535,-38.850 C 186.050,-14.683 148.370,-10.383 133.396,-6.339 C 116.031,0.591 112.889,23.829 134.592,24.996 C 135.046,35.775 104.864,26.141 93.677,32.376 C 38.303,40.303 -18.369,41.542 -73.682,32.866 C -97.562,31.831 -123.660,45.595 -130.480,69.639 C -113.540,88.374 -88.665,64.747 -69.062,62.697 C -43.559,53.796 -17.618,64.805 4.823,76.600 C 24.493,85.249 46.587,90.598 68.023,86.259 C 89.548,90.484 106.942,57.041 127.416,72.700 C 123.301,103.634 177.876,71.627 171.783,106.819 C 170.418,134.092 132.041,130.404 126.886,154.059 C 126.564,179.769 158.650,187.075 178.860,186.680 C 198.986,179.982 183.582,152.17 203.066,141.92 C 215.750,130.298 231.005,120.20 247.654,115.737 C 269.912,113.679 284.047,143.49 306.963,134.030 C 318.786,136.867 329.086,132.320 316.097,122.62 C 303.680,100.913 279.415,95.542 257.066,92.728 C 243.720,93.656 207.006,77.408 234.473,68.069 C 256.968,62.338 277.178,77.229 296.535,85.874 C 321.830,88.892 310.681,57.703 308.688,43.767 C 299.163,20.644 271.759,28.617 252.560,29.583 C 242.307,32.841 223.412,25.117 240.438,17.169 C 247.469,-3.014 201.522,6.149 215.980,-13.696 C 232.971,-27.984 257.284,-32.22 278.739,-28.691 C 295.008,-22.015 253.843,-1.598 280.725,-3.239 C 303.384,-7.501 326.577,-10.184 349.306,-5.881 C 363.001,-4.568 369.729,-23.494 351.428,-21.061 C 329.114,-15.869 301.776,-7.311 287.447,-31.455 C 266.756,-42.578 241.953,-29.973 220.607,-38.314 C 203.587,-45.622 230.866,-69.353 208.095,-60.375 C 188.176,-54.085 167.423,-55.103 146.981,-57.487 C 128.546,-59.556 109.670,-59.219 91.876,-53.596 C 88.021,-52.967 84.073,-52.601 80.180,-53.140 z"
id="rect5572" />
<path
style="fill:#758949;"
d="M 512.876,-62.711 C 540.679,-53.738 506.599,-23.828 488.541,-31.107 C 464.951,-28.723 440.378,-29.361 417.860,-24.858 C 399.324,-29.592 415.081,-41.282 426.286,-35.644 C 447.544,-37.616 468.492,-43.816 488.623,-50.619 C 496.805,-54.453 504.426,-59.442 512.876,-62.711 z"
id="path5592" />
<path
style="fill:#758949;"
d="M 451.001,-1.461 C 468.726,-0.840 461.653,26.563 466.651,33.645 C 440.211,40.460 480.446,55.015 478.446,33.704 C 469.630,18.486 488.076,21.671 488.649,34.861 C 501.909,41.444 521.233,44.311 536.671,53.170 C 549.653,68.129 520.183,89.230 512.178,103.759 C 496.897,110.255 479.090,134.667 505.043,140.112 C 513.160,142.650 534.585,164.06 513.400,153.396 C 493.096,147.189 475.071,131.345 453.169,133.204 C 436.762,138.61 398.134,129.671 423.385,110.110 C 430.946,105.76 458.160,91.780 436.083,89.728 C 420.126,97.581 403.326,80.553 423.550,71.954 C 434.306,69.172 470.866,67.501 454.313,50.572 C 445.784,48.466 418.500,43.825 441.341,38.155 C 452.561,26.652 419.249,0.098 451.001,-1.461 z"
id="path5007" />
<path
style="fill:#758949;"
d="M 120.750,286.171 C 95.028,279.495 71.769,297.18 51.206,309.947 C 35.800,326.947 7.625,339.422 -8.827,316.962 C -29.141,299.556 -58.821,323.637 -39.107,345.140 C -28.354,366.769 -3.695,371.322 13.216,386.158 C 29.069,397.511 48.529,384.460 65.904,391.702 C 92.546,397.365 109.087,423.019 114.132,448.215 C 116.592,470.547 134.874,469.710 150.046,460.218 C 165.384,461.610 176.739,476.346 192.194,480.406 C 206.600,486.078 225.071,491.646 239.137,483.120 C 252.957,467.143 198.093,455.840 228.878,455.984 C 250.782,455.775 272.424,461.84 294.358,459.633 C 310.460,437.525 276.753,415.776 257.095,428.803 C 235.117,436.219 209.734,435.850 191.901,419.574 C 174.240,414.639 157.613,394.55 180.200,385.132 C 175.730,357.879 144.842,376.758 127.838,370.299 C 110.594,367.219 75.422,347.013 104.391,332.559 C 113.581,322.981 140.066,349.011 131.848,326.882 C 127.762,310.403 94.619,329.441 100.705,311.855 C 112.458,298.604 137.616,328.81 141.168,310.94 C 136.582,303.309 104.502,300.13 116.585,292.76 C 121.002,292.822 128.260,290.432 120.750,286.171 z"
id="path7658" />
<path
style="fill:#758949;"
d="M 562.095,205.850 C 573.784,200.524 605.253,210.77 580.048,219.99 C 562.632,226.276 531.034,224.833 522.783,236.940 C 532.805,257.104 504.185,266.119 490.345,257.813 C 481.847,265.491 457.320,273.067 467.437,252.59 C 479.464,245.02 513.436,239.577 490.560,222.884 C 502.985,210.705 523.137,218.586 538.101,210.887 C 546.004,208.804 553.971,206.857 562.095,205.850 z"
id="path7828" />
<path
style="fill:#758949;"
d="M 473.938,414.663 C 501.010,421.925 445.051,444.214 469.783,436.782 C 481.931,439.690 488.672,451.514 500.505,440.17 C 519.854,432.389 541.157,440.217 558.634,427.959 C 570.709,426.51 567.747,443.33 574.535,449.934 C 569.059,472.078 541.022,468.421 523.535,472.904 C 497.113,478.137 470.403,482.785 444.297,489.084 C 428.588,496. 436.671,519.826 453.422,508.08 C 475.113,501.799 497.856,499.731 518.201,510.654 C 533.977,515.25 572.554,494.800 569.848,521.948 C 552.927,541.235 527.667,522.388 506.503,526.540 C 492.944,527.705 455.888,520.852 470.485,545.276 C 476.067,565.641 437.601,563.860 423.021,561.455 C 411.298,558.316 422.445,523.731 396.859,534.222 C 373.444,536.237 348.263,539.128 326.518,528. C 313.708,506.171 352.117,512.546 357.533,513.494 C 372.669,497.037 398.984,509.528 416.148,496.495 C 428.843,482.992 399.882,459.606 425.604,454.270 C 438.106,452.098 429.349,446.715 429.187,442.468 C 439.381,428.038 455.947,416.048 473.938,414.663 z"
id="path7887" />
<path
style="fill:#758949;"
d="M 275.179,501.892 C 292.410,488.933 311.668,520.896 286.513,524.008 C 262.770,525.078 239.559,532.63 216.363,531.992 C 197.448,538.067 173.981,510.852 200.541,504.633 C 217.368,497.768 234.994,502.859 252.080,504.591 C 259.858,504.647 267.578,503.437 275.179,501.892 z"
id="path5163" />
<path
style="fill:#758949;"
d="M 90.907,421.850 C 115.097,434.205 79.915,449.140 75.308,461.933 C 76.046,476.838 111.893,493.205 88.037,505.814 C 65.591,511.710 67.119,539.381 74.391,554.828 C 68.793,571.202 60.646,583.138 74.985,576.198 C 90.053,583.430 77.355,599.522 69.679,599.936 C 78.245,606.26 82.148,640.738 58.958,631.437 C 43.811,614.828 51.809,598.97 38.187,581.490 C 15.582,576.927 11.083,531.721 38.271,531.790 C 51.983,522.087 23.004,527.286 25.987,516.22 C 14.801,507.378 -24.167,523.467 -13.648,497.965 C 4.844,484.197 29.168,497.071 49.732,490.9 C 72.736,477.877 64.285,445.583 79.401,426.719 C 82.216,423.403 86.609,421.655 90.907,421.850 z"
id="path5341" />
<path
style="fill:#758949;"
d="M -79.875,564.18 C -85.413,581.540 -46.054,608.532 -78.955,614.355 C -97.039,617.317 -117.370,620.221 -130,635 C -82.896,634.678 -35.759,635.66 11.323,634.460 C 29.818,631.873 32.140,603.452 9.861,611.038 C -9.013,604.237 -29.929,628.832 -44.497,610.055 C -56.171,594.637 -68.690,579.512 -79.875,564.18 z M 150,603.127 C 144.337,627.035 108.911,611.083 99.920,630.969 C 117.081,647.786 135.136,622.453 152.770,622.460 C 175.979,626.833 198.486,638.54 222.864,633.699 C 235.379,636.403 262.364,617.725 238.087,614.456 C 217.835,612.636 197.972,611.038 177.764,613.750 C 164.751,616.281 153.083,579.323 144.860,597.480 C 146.791,599.185 148.550,600.989 150,603.127 z"
id="path5363" />
<path
style="opacity:1;fill:#758949;"
d="M 540.843,255.5 C 524.778,267.032 546.199,290.831 557.714,298.356 C 573.544,321.31 550.898,343.348 529.817,350.348 C 514.884,360.46 498.146,378.822 478.618,367.634 C 457.085,358.232 456.528,329.755 472.804,314.99 C 480.380,309.560 496.059,280.616 476.601,293.060 C 454.726,306.354 466.225,259.548 454.897,269.268 C 449.416,295.563 437.087,322.417 413.277,336.765 C 397.554,352.32 376.854,358.488 357.903,368.558 C 335.403,385.986 351.746,414.691 371.734,425.793 C 380.956,437.386 405.654,466.909 416.517,447.00 C 406.766,425.211 374.881,424.090 368.522,399.817 C 380.294,378.698 405.382,401.155 419.465,408.932 C 436.020,418.397 440.374,399.051 423.214,395.466 C 407.605,387.724 417.303,366.273 433.411,377.239 C 455.436,387.157 477.494,397.603 498.735,408.735 C 517.530,426.448 537.356,442.847 556.807,459.809 C 571.992,479.766 610.187,470.050 600.638,441.696 C 595.542,428.910 609.339,397.222 584.625,408.658 C 566.401,407.978 544.296,410.00 527.955,401.135 C 525.184,385.43 540.099,372.884 550.007,362.353 C 562.306,351.130 577.496,343.24 593.523,339.24 C 607.774,328.866 599.681,310.070 582.581,312.480 C 568.270,296.309 567.300,269.826 548.224,257.375 C 545.919,256.285 543.411,255.53 540.843,255.5 z"
id="rect7802" />
<path
style="opacity:1;fill:#758949;"
d="M -94.406,299.06 C -112.304,303.291 -145.945,302.32 -155,322.5 C -155.824,347.833 -128.327,317.835 -114.937,319.205 C -86.634,311.946 -56.693,319.598 -30.861,331.769 C -10.525,320.979 -47.440,311.617 -56.852,308.219 C -68.863,303.53 -81.342,299.037 -94.406,299.06 z M -155,405 C -155.704,423.49 -155.581,450.965 -155.077,463.884 C -127.982,452.644 -103.146,452.013 -84.900,437.138 C -76.646,411.704 -111.267,402.906 -130.098,401.640 C -136.858,401.257 -143.835,402.0 -155,405 z"
id="path6151" />
</g>
<g
style="fill:#17181f;fill-opacity:1;"
id="g5672"
transform="matrix(0.5,0,0,0.5,161.785,352.052)">
<path
style="opacity:0.6;fill:#17181f;"
d="M 44.470,84.288 C 42.091,86.145 43.127,87.588 44.470,84.288 z"
id="path5621" />
<path
style="fill:#17181f;"
d="M 435.313,39.975 C 437.069,40.076 435.818,39.307 435.313,39.975 z"
id="path5005" />
<path
style="fill:#17181f;"
d="M 569.376,220.569 C 571.946,219.7 568.522,218.329 569.376,220.569 z"
id="path7844" />
<path
style="fill:#17181f;"
d="M -40.779,446.382 L -40.561,446.382 L -40.779,446.382 L -40.779,446.382 z"
id="path5285" />
<path
style="fill:#17181f;"
d="M 417.375,581.8 C 398.238,581.952 380.983,586.234 363.105,590.959 C 345.113,599.35 386.040,605.875 363.224,611.210 C 343.557,611.47 359.752,626.180 370.685,619.529 C 386.174,614.371 400.008,607.479 416.337,607.208 C 422.333,590.876 379.920,607.349 399.568,591.529 C 402.112,588.623 427.042,589.396 417.375,581.8 z"
id="path5703" />
<path
style="fill:#17181f;"
d="M 355.75,406.93 C 345.563,426.00 359.119,445.641 379.079,449.548 C 393.821,459.642 403.065,489.476 378.326,492.93 C 364.364,500.197 346.707,507.293 332.940,495.498 C 312.881,487.077 321.290,464.152 317.027,448.902 C 308.642,458.480 307.855,480.428 304.438,495.173 C 296.137,513.389 275.074,521.187 264.685,538.074 C 258.726,552.710 249.924,565.688 244.872,580.692 C 243.891,598.635 249.491,617.083 244.252,634.905 C 271.077,640.679 252.795,609.001 258.218,595.085 C 263.563,569.722 282.664,597.31 269.918,608.247 C 252.700,621.883 294.199,644.002 290.428,630.909 C 274.423,617.495 289.749,597.368 280.918,580.774 C 270.535,561.572 289.093,546.569 306.823,545.81 C 313.962,540.53 322.801,529.558 316.024,545.185 C 308.605,559.668 323.185,573.127 322.772,550.686 C 328.963,526.89 339.400,578.581 350.155,564.257 C 348.082,555.731 331.634,532.831 349.913,546.99 C 358.984,556.440 371.463,549.012 358.273,539.421 C 349.754,522.001 376.915,513.411 391.297,515.025 C 404.986,509.113 425.639,502.079 427.100,484.595 C 421.416,461.503 450.427,457.184 466.518,462.311 C 490.519,463.933 514.039,456.772 537.138,451.289 C 551.669,448.932 576.006,418.961 546.684,423.721 C 527.187,414.422 511.907,442.330 489.895,433.585 C 459.885,432.463 430.621,456.076 401.087,441.566 C 382.700,434.482 371.333,417.65 355.75,406.93 z"
id="path7926" />
<path
style="fill:#17181f;"
d="M -26.717,185.819 C -4.009,189.708 -24.996,210.33 -34.568,217.511 C -39.374,239.736 -17.316,208.817 -8.795,211.183 C 7.990,223.443 -31.198,234.136 -20.724,250.752 C -10.009,262.063 7.054,278.131 -17.995,280.536 C -14.593,283.824 -4.163,280.203 -1.952,288.349 C 7.172,283.655 30.926,277.876 13.464,292.746 C -12.105,296.797 15.175,317.069 21.452,327.938 C 23.165,343.552 2.944,317.842 -4.293,317.437 C -28.648,311.364 -14.592,277.076 -41.598,277.185 C -50.194,267.248 -55.047,248.224 -57.829,234.093 C -45.571,221.697 -61.987,197.556 -39.529,192.225 C -36.326,188.081 -30.491,189.045 -26.717,185.819 z"
id="path7716" />
<path
style="fill:#17181f;"
d="M 55.876,52.194 C 78.421,57.603 31.912,89.563 53.025,80.097 C 71.395,82.048 64.699,116.828 55.896,127.423 C 36.265,131.554 36.368,155.472 19.776,162.6 C 15.135,173.292 -8.288,180.141 0.013,161.736 C -6.056,140.265 -28.842,169.336 -43.099,158.238 C -55.076,156.300 -73.653,174.818 -71.911,151.839 C -75.676,146.077 -74.836,122.54 -67.447,136.601 C -70.518,154.716 -56.847,142.723 -60.010,131.582 C -50.276,124.990 -58.894,159.068 -41.321,150.581 C -29.086,152.776 -5.023,148.485 -11.680,132.406 C 13.073,127.595 -28.953,103.292 -6.472,103.009 C -0.976,125.046 16.324,106.496 8.478,91.834 C 11.912,74.662 22.715,85.114 19.746,97.393 C 22.728,89.987 28.087,66.534 42.915,59.842 C 46.861,56.779 50.465,52.453 55.876,52.194 z"
id="path5623" />
<path
style="fill:#17181f;"
d="M 312.751,36.819 C 333.347,31.401 319.520,68.441 339.837,53.566 C 355.785,62.978 336.469,71.570 334.110,79.235 C 342.926,82.750 353.361,85.892 344.447,97.071 C 353.134,99.680 367.802,101.47 378.486,102.476 C 391.604,100.00 399.455,92.651 405.879,81.436 C 420.967,87.675 377.675,107.470 401.457,104.086 C 401.113,116.866 376.638,106.043 368.316,111.684 C 354.696,120.757 339.014,116.713 332.787,100.527 C 310.130,94.775 300.900,68.842 300.369,48.584 C 302.113,42.960 306.226,36.966 312.751,36.819 z"
id="path5610" />
<path
style="fill:#17181f;"
d="M 124.563,61.382 C 141.869,61.999 123.813,93.281 146.275,82.862 C 164.259,65.635 179.165,98.949 171.855,113.641 C 163.317,122.193 159.439,139.925 151.047,144.667 C 152.153,135.436 152.690,126.589 143.802,125.534 C 153.709,118.321 175.291,92.812 148.314,94.460 C 138.699,102.752 133.010,118.902 121.868,123.960 C 117.942,117.990 123.621,114.946 118.440,110.975 C 132.067,112.793 142.774,86.452 123.194,95.627 C 118.380,100.722 103.558,124.369 106.209,104.387 C 106.320,94.245 132.543,86.253 113.688,81.819 C 96.133,83.671 89.213,111.185 73.688,109.569 C 73.979,101.064 107.162,83.463 83.630,87.231 C 77.083,94.797 57.400,93.831 72.357,82.939 C 90.393,80.118 103.401,65.319 121.033,61.716 L 124.563,61.382 L 124.563,61.382 z"
id="path7545" />
<path
style="fill:#17181f;"
d="M 600,65 C 578.446,70.035 558.890,80.922 538.305,88.790 C 514.410,94.174 529.541,115.832 543.789,121.904 C 557.726,137.020 513.328,132.244 530.286,143.139 C 539.038,141.785 565.464,141.977 547.525,153.817 C 538.669,160.204 537.703,174.858 535.410,183.983 C 560.548,189.769 547.664,147.864 574.688,149.69 C 585.780,143.918 584.790,125.621 600,132.537 C 601.995,117.92 599.777,112.229 584.967,117.773 C 576.042,121.476 552.111,108.38 573.016,108.230 C 583.603,111.967 602.154,100.226 581.569,100.450 C 579.292,94.783 601.689,90.527 584.670,89.034 C 576.763,91.731 557.543,111.007 555.736,94.681 C 565.083,78.373 603.506,84.368 600,65 z"
id="path5033" />
<path
style="fill:#17181f;"
d="M 205.999,403.162 C 222.110,400.367 234.226,391.739 232.584,373.83 C 234.461,365.526 241.617,336.05 248.461,356.988 C 252.945,369.136 233.998,393.456 257.801,385.073 C 268.688,382.753 290.532,383.386 294.040,392.778 C 277.204,399.388 256.313,394.789 241.160,401.138 C 235.562,410.652 211.000,414.918 205.999,403.162 z"
id="path7676" />
<path
style="fill:#17181f;"
d="M 332.845,139.475 C 352.863,130.378 349.487,158.01 337.832,165.14 C 331.732,174.884 336.697,200.271 341.491,178.337 C 346.584,160.053 367.846,164.000 379.377,152.626 C 390.418,146.210 420.427,167.530 397.029,174.301 C 386.417,176.486 377.457,201.185 392.497,186.372 C 397.068,174.413 406.442,182.571 408.958,183.425 C 414.068,158.077 439.235,174.174 455.675,175.739 C 482.828,175.897 468.285,213.057 450.947,215.550 C 440.538,213.907 408.369,216.499 415.688,229.194 C 427.156,218.386 460.833,219.25 448.600,241.171 C 438.832,257.209 415.750,243.928 406.295,261.499 C 391.087,275.576 384.198,295.784 370.463,311.248 C 357.435,323.151 348.308,340.656 355.16,358.499 C 355.389,339.321 365.823,311.751 386.970,310.444 C 390.792,318.100 381.501,352.171 396.408,334.557 C 395.831,322.811 391.000,291.040 411.286,308.877 C 418.026,318.01 441.996,305.671 422.283,302.697 C 401.139,302.839 404.714,267.453 420.799,260.306 C 433.241,248.443 445.414,261.684 446.944,271.273 C 452.090,255.386 460.197,240.366 466.783,225.053 C 471.331,209.361 489.971,199.825 488.548,182.335 C 482.707,169.026 470.173,165.759 457.203,160.569 C 448.661,148.764 427.427,161.944 413.982,156.483 C 397.448,150.315 389.629,129.947 371.871,126.594 C 355.030,131.24 340.265,134.178 326.383,121.030 C 314.588,114.722 291.517,99.562 287.560,121.929 C 279.397,133.690 264.780,107.848 251.050,111.580 C 232.488,106.003 213.227,123.157 212.830,141.344 C 222.162,137.388 231.952,131.694 237.381,144.667 C 246.012,142.670 253.719,121.984 267.025,134.670 C 270.664,149.682 250.665,157.810 243.525,169.20 C 239.271,182.893 207.443,183.278 212.044,189.767 C 222.009,184.899 237.877,186.188 235.552,197.509 C 243.165,193.245 248.768,163.463 256.028,185.527 C 259.303,197.669 288.974,203.598 270.948,188.430 C 258.541,178.825 257.702,156.452 274.009,150.469 C 293.394,140.31 298.839,166.61 282.455,174.589 C 268.624,190.52 298.714,167.773 288.785,185.394 C 297.133,199.246 295.406,171.123 298.905,165.093 C 307.593,154.063 322.334,149.656 332.845,139.475 z"
id="path7569" />
<path
style="fill:#17181f;"
d="M 560.345,226.194 C 570.694,239.566 539.999,265.05 568.244,267.620 C 575.316,273.079 605.897,265.093 589.369,277.637 C 576.209,280.310 543.939,271.606 552.439,295.321 C 554.648,309.836 530.244,319.813 550.738,329.860 C 557.794,341.681 559.532,356.254 577.322,352.021 C 587.427,349.241 607.058,360.351 588.549,364.587 C 564.999,354.584 559.015,381.195 561.119,398.87 C 562.259,410.792 550.118,418.982 552.783,402.285 C 552.202,389.57 541.440,357.285 526.467,375.71 C 515.224,382.672 505.208,407.771 490.576,397.434 C 497.813,379.725 521.228,373.73 529.154,355.58 C 532.419,340.678 534.228,308.963 509.707,318.284 C 492.014,328.649 466.845,312.548 484.473,294.387 C 502.429,288.056 520.196,314.187 537.560,300.139 C 546.962,284.527 534.385,268.670 526.479,256.339 C 532.000,248.640 547.654,259.186 547.325,242.59 C 550.056,236.278 553.516,228.789 560.345,226.194 z"
id="path7851" />
<path
style="fill:#17181f;"
d="M -55.529,-47.117 C -46.847,-36.949 -63.249,-11.023 -39.965,-13.941 C -33.287,3.138 3.100,-19.203 6.667,7.749 C -5.992,13.522 -19.200,-5.973 -34.811,3.163 C -46.610,-0.387 -36.169,23.362 -51.061,11.757 C -42.695,27.198 -46.887,50.869 -67.774,52.935 C -84.797,48.901 -97.365,70.083 -110.259,67.709 C -120.803,52.397 -113.898,21.858 -91.193,27.681 C -76.723,29.255 -58.147,32.595 -65.560,11.62 C -66.480,0.487 -99.369,-14.114 -76.027,-17.707 C -62.994,-15.800 -70.688,-45.17 -55.529,-47.117 z"
id="path7865" />
<path
style="fill:#17181f;"
d="M -15.614,356.373 C -22.403,348.830 -23.847,321.532 -34.489,341.948 C -39.582,350.629 -72.942,356.794 -56.909,339.771 C -55.617,321.053 -79.360,353.510 -86.482,358.694 C -94.385,362.874 -115.117,390.635 -94.150,376.79 C -78.640,368.87 -85.083,396.030 -75.739,402.815 C -69.384,424.632 -74.873,371.691 -63.846,395.540 C -62.987,403.270 -53.017,420.966 -52.531,403.753 C -61.296,392.467 -72.899,371.944 -48.689,371.770 C -35.270,369.222 -35.187,352.828 -19.106,359.587 L -17.247,358.490 L -15.614,356.373 L -15.614,356.373 z"
id="path5063" />
<path
style="fill:#17181f;"
d="M 169.313,461.538 C 184.142,467.810 192.624,486.09 210.325,485.603 C 226.187,487.988 242.800,487.038 258.165,484.202 C 262.328,488.353 238.273,499.633 252.967,499.026 C 266.888,497.131 265.229,523.527 259.041,529.633 C 254.225,515.813 235.402,515.915 220.920,516.423 C 208.878,513.232 197.253,513.893 194.486,526.777 C 180.219,539.762 172.658,525.310 167.480,513.518 C 158.059,511.106 135.154,513.719 133.967,503.363 C 145.535,492.595 179.909,511.129 177.436,487.441 C 177.558,481.149 158.925,462.943 169.313,461.538 z"
id="path5266" />
<path
style="fill:#17181f;"
d="M -40.686,443.038 C -21.520,445.723 -2.097,465.144 -10.440,485.440 C -19.570,496.441 -29.373,509.947 -32.266,522.070 C -47.029,509.955 -22.895,492.764 -21.759,482.933 C -34.249,490.868 -43.020,472.218 -26.364,473.56 C -19.963,466.903 -46.450,470.498 -43.742,482.067 C -59.084,491.761 -55.148,462.129 -40.126,463.895 C -15.251,461.297 -52.618,451.196 -40.686,443.038 z"
id="path5306" />
<path
style="fill:#17181f;"
d="M 78.813,492.819 C 88.192,510.53 111.962,487.893 120.676,503.749 C 115.913,513.54 99.194,520.609 115.112,531.096 C 120.828,548.580 103.417,532.345 101.629,533.188 C 96.278,545.210 125.887,547.533 108.656,554.638 C 89.357,550.904 97.998,508.071 76.012,530.570 C 70.225,521.22 58.023,537.398 52.928,521.668 C 50.288,503.300 72.306,505.902 78.813,492.819 z"
id="path5321" />
<path
style="fill:#17181f;"
d="M 478.446,-72.782 C 478.183,-83.682 491.734,-106.253 470.272,-95.140 C 460.356,-92.706 432.833,-106.305 455.389,-110.775 C 466.313,-123.74 435.073,-114.252 428.140,-113.795 C 418.571,-110.672 394.611,-113.297 393.981,-103.344 C 405.837,-104.771 416.828,-97.845 405.269,-87.088 C 406.255,-78.639 394.458,-54.213 408.576,-70.884 C 423.592,-90.312 410.948,-56.836 413.971,-51.449 C 427.901,-56.316 416.009,-97.808 442.901,-79.639 C 454.725,-73.048 465.100,-88.276 473.503,-72.331 L 475.308,-71.998 L 478.446,-72.782 L 478.446,-72.782 z"
id="path5609" />
<path
style="fill:#17181f;"
d="M 54.288,1.417 C 47.103,-16.418 53.991,-42.708 75.519,-45.931 C 89.742,-42.596 107.710,-43.539 118.942,-44.488 C 113.542,-26.528 88.429,-39.100 79.536,-34.829 C 95.289,-18.824 75.016,-19.849 70.452,-26.339 C 69.373,-8.026 106.206,-21.882 90.647,-3.772 C 77.195,4.692 59.241,-31.932 61.536,-2.433 C 62.413,1.167 56.571,5.100 54.288,1.417 z"
id="path5613" />
<path
style="fill:#17181f;"
d="M 333.562,16.595 C 344.782,18.575 361.143,24.846 365.950,9.752 C 374.717,3.240 383.335,-14.773 394.142,-11.198 C 395.573,1.476 385.209,10.753 376.356,18.027 C 375.801,26.170 390.687,25.108 396.296,29.802 C 402.660,31.180 428.193,54.886 409.578,49.049 C 396.111,44.021 382.162,40.038 370.572,31.047 C 358.094,37.109 334.671,32.854 333.562,16.595 L 333.562,16.595 z"
id="path5615" />
<path
style="fill:#17181f;"
d="M 233.928,-120.424 C 245.534,-107.508 213.363,-81.435 241.722,-78.732 C 250.558,-74.717 282.707,-79.616 260.580,-67.054 C 246.867,-68.206 214.694,-73.649 225.859,-48.931 C 224.633,-36.963 203.816,-26.156 222.783,-16.286 C 232.365,-8.174 230.322,10.256 247.865,4.915 C 257.680,3.129 282.077,12.010 262.133,17.967 C 238.492,7.917 231.838,35.071 234.959,52.933 C 237.241,63.962 224.103,73.841 226.209,56.772 C 225.189,44.505 215.763,10.934 200.544,29.642 C 189.264,36.419 178.644,60.250 164.496,51.021 C 171.462,33.298 195.025,27.240 203.001,9.117 C 205.887,-5.488 207.926,-37.434 183.723,-28.335 C 166.085,-18.076 140.569,-34.025 158.052,-52.351 C 176.145,-58.517 193.816,-32.558 211.414,-46.558 C 221.270,-62.364 207.050,-78.044 200.081,-90.910 C 205.128,-98.126 221.297,-88.353 220.261,-104.204 C 222.832,-110.266 227.663,-118.374 233.928,-120.424 z"
id="path5617" />
<path
style="fill:#17181f;"
d="M 558.906,509.906 C 539.592,517.182 519.104,520.67 498.514,520.9 C 484.109,516.356 460.993,514.612 460.892,534.430 C 452.247,543.106 468.317,556.489 458.385,565.734 C 465.926,580.012 482.357,592.871 478.460,610.803 C 469.727,621.167 464.486,640.715 484.256,634.905 C 495.362,637.240 478.216,623.907 487.027,616.565 C 483.614,600.780 495.801,598.319 506.176,607.791 C 515.342,615.670 533.662,607.570 514.807,603.74 C 502.518,604.746 503.964,597.515 506.547,590.031 C 486.569,601.265 482.699,577.572 477.590,563.859 C 471.438,547.955 470.328,528.3 492.976,531.888 C 513.385,525.684 514.216,550.435 526.600,559.826 C 531.256,569.226 551.493,568.705 535.349,559.71 C 522.035,551.670 513.792,525.375 538.223,528.778 C 555.640,531.127 554.874,556.624 575.538,555.057 C 592.128,561.517 605.267,559.988 600,539.576 C 593.847,541.82 574.112,554.99 563.370,540.952 C 546.444,534.686 553.954,518.28 561.556,510.864 L 558.906,509.906 z"
id="path5786" />
<path
style="fill:#17181f;"
d="M 470,-165.094 C 463.359,-144.158 494.001,-138.293 491.066,-119.944 C 490.507,-103.773 485.828,-79.478 503.305,-72.742 C 507.168,-70.474 521.992,-83.950 516.537,-68.776 C 513.522,-49.912 516.709,-25.731 535.399,-16.125 C 551.003,-9.792 575.376,-17.042 550.519,-27.731 C 556.650,-39.723 554.212,-45.855 540.024,-45.090 C 517.107,-56.704 542.053,-73.859 556.967,-61.306 C 573.040,-58.242 589.202,-54.980 600,-41.393 C 598.833,-50.390 589.912,-57.816 600,-63.689 C 596.203,-69.665 564.345,-58.787 581.167,-76.241 C 589.536,-85.017 580.931,-114.73 576.330,-91.684 C 575.492,-72.620 547.328,-61.733 537.031,-80 C 526.038,-95.605 551.030,-102.009 561.031,-92.81 C 576.415,-92.302 545.527,-104.363 565.270,-105.191 C 572.972,-120.975 543.736,-98.314 536.033,-104.238 C 525.682,-116.525 494.984,-114.75 497.886,-135.0 C 511.721,-144.197 534.296,-130.717 545,-149.218 C 524.016,-142.21 503.022,-153.159 487.568,-165.094 C 481.712,-165.094 475.856,-165.094 470,-165.094 z"
id="path5788" />
<path
style="fill:#17181f;"
d="M -150,-65.906 C -152.530,-57.763 -143.633,-62.932 -150,-65.906 z M -150,-46.156 C -152.421,-34.897 -132.804,-34.567 -147.875,-44 L -150,-46.156 z"
id="path5802" />
<path
style="fill:#17181f;"
d="M -147.406,510.781 C -151.840,520.254 -137.880,532.329 -150,540.110 C -154.884,557.926 -144.674,562.675 -128.478,560.466 C -107.816,563.553 -83.737,572.708 -67.239,554.332 C -77.444,557.642 -101.176,566.010 -116.703,555.9 C -143.787,544.798 -83.651,538.706 -102.543,528.309 C -114.046,527.597 -140.500,557.889 -137.132,530.607 C -132.177,523.879 -142.212,513.819 -147.406,510.781 z"
id="path5804" />
<path
style="fill:#17181f;"
d="M 244.156,-165 C 239.392,-156.74 230.683,-124.441 249.357,-136.510 C 262.760,-140.958 248.694,-156.823 257.843,-165 C 253.281,-165 248.718,-165 244.156,-165 z M 282.25,-165 C 285.766,-157.48 302.910,-151.930 293.343,-165 C 289.645,-165 285.947,-165 282.25,-165 z"
id="path5808" />
<path
style="fill:#17181f;"
d="M -148.343,65 C -153.944,71.344 -147.949,79.819 -142.276,68.433 C -139.207,63.527 -146.000,65.357 -148.343,65 z M -121.125,106.218 C -133.686,114.03 -157.067,108.382 -150,130.332 C -146.282,135.359 -140.641,112.483 -129.789,122.651 C -115.702,136.795 -109.182,109.703 -121.125,106.218 z"
id="path5818" />
</g>
</g>
</pattern>
<pattern
patternUnits="userSpaceOnUse"
width="100"
height="100"
id="Tiles"
preserveAspectRatio="xMidYMid"
patternTransform="translate(0,0) scale(0.2,0.2)"
inkscape:collect="always"
style="fill:#a8cbfe">
<g
id="g9422">
<rect
style="fill-opacity:1;stroke:none"
width="100"
height="100"
x="0"
y="0"
id="rect2996" />
<path
id="rect7383"
style="fill:#ffffff;fill-opacity:0.42487;stroke-width:0"
d="M 60,40 50,50 V 0 H 60 Z M 50,50 v 10 40 H 60 V 60 h 40 V 50 H 60 Z m 0,0 -10,10 H 0 V 50 Z" />
<path
id="rect7385"
style="fill:#000000;fill-opacity:0.300518;stroke-width:0"
d="M 40,60 50,50 v 50 H 40 Z M 100,40 V 50 H 50 L 60,40 Z M 40,0 V 40 H 0 V 50 H 40 50 V 40 0 Z" />
</g>
</pattern>
<pattern
patternUnits="userSpaceOnUse"
width="100"
height="100"
id="Grid"
inkscape:stockid="Grid"
patternTransform="scale(0.3,0.3)"
inkscape:collect="always"
style="fill:#ff0000">
<g
id="g63950">
<rect
style="fill-opacity:0.5;stroke:none;stroke-width:1;stroke-dasharray:none"
id="rect62492"
width="50"
height="100"
x="50"
y="0" />
<rect
style="fill-opacity:0.5;stroke:none;stroke-width:1;stroke-dasharray:none"
id="rect63583"
width="50"
height="100"
x="-100"
y="0"
transform="rotate(-90)" />
</g>
</pattern>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient118859"
id="linearGradient118861"
x1="20"
y1="50"
x2="80"
y2="50"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.1666667,0,0,1.1666667,12.377344,-58.333337)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient119593"
id="linearGradient119595"
x1="0"
y1="0"
x2="100"
y2="100"
gradientUnits="userSpaceOnUse" />
<pattern
patternUnits="userSpaceOnUse"
width="100"
height="100"
id="RedButton"
style="fill:none"
preserveAspectRatio="xMidYMid"
patternTransform="scale(0.5,0.5)"
inkscape:collect="always">
<g
id="g119599">
<rect
style="opacity:1;fill:url(#linearGradient119595);fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
id="rect118102"
width="100"
height="100"
x="0"
y="0" />
<circle
style="opacity:1;fill:url(#linearGradient118861);fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
id="path118104"
cx="70.71067"
cy="-6.3879543e-07"
r="35.000004"
transform="rotate(45)" />
</g>
</pattern>
<pattern
patternUnits="userSpaceOnUse"
preserveAspectRatio="xMidYMid"
width="50"
height="50"
id="TableCloth"
inkscape:stockid="Table Cloth"
style="fill:none">
<g
id="g152475">
<rect
style="fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
id="rect152346"
width="50"
height="50"
x="0"
y="0" />
<path
id="path152348"
style="fill:#afecda;fill-opacity:1;stroke:none;stroke-width:0.999995;stroke-dasharray:none"
d="m 0.5,25.5 v 22 l 2,2 h 22 v -19 l -5,-5 z" />
<path
id="path152350"
style="fill:#a8cbfe;fill-opacity:1;stroke:none;stroke-width:0.999995;stroke-dasharray:none"
d="m 30.5,25.5 -5,5 v 19 h 22 l 2,-2 v -22 z" />
<path
id="path152352"
style="fill:#cbbbe9;fill-opacity:1;stroke:none;stroke-width:0.999995;stroke-dasharray:none"
d="m 25.5,0.5 v 19 l 5,5 h 19 v -22 l -2,-2 z" />
<path
id="path152354"
style="fill:#f0b6d3;fill-opacity:1;stroke:none;stroke-width:0.999995;stroke-dasharray:none"
d="m 2.5,0.5 -2,2 v 22 h 19 l 5,-5 v -19 z" />
<path
id="path152356"
style="fill:#ffe9a6;stroke-width:1"
d="m 17.5,37.5 c 0,2.761423 -2.238577,5 -5,5 -2.7614235,0 -5,-2.238577 -5,-5 0,-2.761424 2.2385765,-5 5,-5 2.761423,0 5,2.238576 5,5 z m 2.5,0 C 20,33.345004 16.654996,30 12.5,30 h -12 v 15 h 12 c 4.154996,0 7.5,-3.345004 7.5,-7.5 z"
sodipodi:nodetypes="sssssssccss" />
<path
id="path152358"
style="fill:#ea95bf;stroke-width:1"
d="m 42.5,37.5 c 0,2.761423 -2.238577,5 -5,5 -2.761424,0 -5,-2.238577 -5,-5 0,-2.761424 2.238576,-5 5,-5 2.761423,0 5,2.238576 5,5 z M 37.5,30 C 33.345004,30 30,33.345004 30,37.5 v 12 h 15 v -12 C 45,33.345004 41.654996,30 37.5,30 Z"
sodipodi:nodetypes="sssssssccss" />
<path
id="path152360"
style="fill:#81b4fe;stroke-width:1"
d="m 12.5,7.5 c 2.77,0 5,2.23 5,5 0,2.77 -2.23,5 -5,5 -2.77,0 -5,-2.23 -5,-5 0,-2.77 2.23,-5 5,-5 z m 0,12.5 C 16.654996,20 20,16.654996 20,12.5 V 0.5 H 5 v 12 c 0,4.154996 3.345004,7.5 7.5,7.5 z"
sodipodi:nodetypes="sssssssccss" />
<path
id="path152362"
style="fill:#8be3c9;stroke-width:1"
d="m 42.5,12.5 c 0,2.761423 -2.238577,5 -5,5 -2.761424,0 -5,-2.238577 -5,-5 0,-2.7614235 2.238576,-5 5,-5 2.761423,0 5,2.2385765 5,5 z m -12.5,0 c 0,4.154996 3.345004,7.5 7.5,7.5 h 12 V 5 h -12 C 33.345004,5 30,8.345004 30,12.5 Z"
sodipodi:nodetypes="sssssssccss" />
<path
style="fill:#81b4fe;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 25.5,30.5 h 5 v -5 z"
id="path152364"
sodipodi:nodetypes="cccc" />
<path
style="fill:#67dab8;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 24.5,30.5 h -5 v -5 z"
id="path152366"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ea95bf;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 24.5,19.5 h -5 v 5 z"
id="path152368"
sodipodi:nodetypes="cccc" />
<path
style="fill:#b49ddf;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 25.5,19.5 h 5 v 5 z"
id="path152370"
sodipodi:nodetypes="cccc" />
<path
style="fill:#81b4fe;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 49.5,47.5 h -2 v 2 z"
id="path153287"
sodipodi:nodetypes="cccc" />
<path
style="fill:#67dab8;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 0.5,47.5 h 2 v 2 z"
id="path154015"
sodipodi:nodetypes="cccc" />
<path
style="fill:#ea95bf;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 0.5,2.5 h 2 v -2 z"
id="path154155"
sodipodi:nodetypes="cccc" />
<path
style="fill:#b49ddf;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
d="m 49.5,2.5 h -2 v -2 z"
id="path154226"
sodipodi:nodetypes="cccc" />
</g>
</pattern>
<pattern
patternUnits="userSpaceOnUse"
width="100"
height="100"
id="Gingham"
preserveAspectRatio="xMidYMid"
patternTransform="scale(0.5,0.5)"
style="fill:#0000ff">
<rect
style="fill-opacity:0.5;stroke:none"
id="rect3"
width="50"
height="50"
x="50"
y="0" />
<rect
style="stroke:none"
id="rect4"
width="50"
height="50"
x="50"
y="50" />
<rect
style="fill-opacity:0.5;stroke:none"
id="rect5"
width="50"
height="50"
x="0"
y="50" />
</pattern>
</defs>
<g
id="g873"
transform="translate(5,125)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="15"
id="rect869" />
<rect
class="preview"
fill="url(#Strips1_1)"
width="100"
height="100"
x="15"
y="15"
id="rect871"
style="fill:url(#Strips1_1)" />
</g>
<g
id="g885"
transform="translate(-105,125)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="15"
id="rect881" />
<rect
class="preview"
fill="url(#Strips1_1.5)"
width="100"
height="100"
x="245"
y="15"
id="rect883"
style="fill:url(#pattern96321)" />
</g>
<g
id="g897"
transform="translate(5,130)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="130"
id="rect893" />
<rect
class="preview"
fill="url(#Strips1_2)"
width="100"
height="100"
x="15"
y="130"
id="rect895"
style="fill:url(#pattern96325)" />
</g>
<g
id="g909"
transform="translate(-105,130)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="130"
id="rect905" />
<rect
class="preview"
fill="url(#Strips1_3)"
width="100"
height="100"
x="245"
y="130"
id="rect907"
style="fill:url(#pattern96329)" />
</g>
<g
id="g921"
transform="translate(5,135)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="245"
id="rect917" />
<rect
class="preview"
fill="url(#Strips1_4)"
width="100"
height="100"
x="15"
y="245"
id="rect919"
style="fill:url(#pattern96333)" />
</g>
<g
id="g933"
transform="translate(-105,135)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="245"
id="rect929" />
<rect
class="preview"
fill="url(#Strips1_5)"
width="100"
height="100"
x="245"
y="245"
id="rect931"
style="fill:url(#pattern96337)" />
</g>
<g
id="g945"
transform="translate(5,140)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="360"
id="rect941" />
<rect
class="preview"
fill="url(#Strips1_8)"
width="100"
height="100"
x="15"
y="360"
id="rect943"
style="fill:url(#pattern96341)" />
</g>
<g
id="g957"
transform="translate(-105,140)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="360"
id="rect953" />
<rect
class="preview"
fill="url(#Strips1_10)"
width="100"
height="100"
x="245"
y="360"
id="rect955"
style="fill:url(#pattern96345)" />
</g>
<g
id="g969"
transform="translate(5,145)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="475"
id="rect965" />
<rect
class="preview"
fill="url(#Strips1_16)"
width="100"
height="100"
x="15"
y="475"
id="rect967"
style="fill:url(#pattern96349)" />
</g>
<g
id="g981"
transform="translate(-105,145)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="475"
id="rect977" />
<rect
class="preview"
fill="url(#Strips1_32)"
width="100"
height="100"
x="245"
y="475"
id="rect979"
style="fill:url(#pattern96353)" />
</g>
<g
id="g993"
transform="translate(5,150)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="590"
id="rect989" />
<rect
class="preview"
fill="url(#Strips1_64)"
width="100"
height="100"
x="15"
y="590"
id="rect991"
style="fill:url(#pattern96357)" />
</g>
<g
id="g999"
transform="translate(10,150)">
<rect
fill="#ffffff"
width="100"
height="100"
x="130"
y="590"
id="rect995" />
<rect
class="preview"
fill="url(#Strips2_1)"
width="100"
height="100"
x="130"
y="590"
id="rect997"
style="fill:url(#pattern96359)" />
</g>
<g
id="g1011"
transform="translate(-220,270)">
<rect
fill="#ffffff"
width="100"
height="100"
x="360"
y="590"
id="rect1007" />
<rect
class="preview"
fill="url(#Strips4_1)"
width="100"
height="100"
x="360"
y="590"
id="rect1009"
style="fill:url(#pattern96363)" />
</g>
<g
id="g1023"
transform="translate(-110,155)">
<rect
fill="#ffffff"
width="100"
height="100"
x="130"
y="705"
id="rect1019" />
<rect
class="preview"
fill="url(#Checkerboard)"
width="100"
height="100"
x="130"
y="705"
id="rect1021"
style="fill:url(#pattern96367)" />
</g>
<g
id="g1029"
transform="translate(15,155)" />
<g
id="g1035"
transform="translate(-100,155)">
<rect
fill="#ffffff"
width="100"
height="100"
x="360"
y="705"
id="rect1031" />
</g>
<g
id="g1041"
transform="translate(485,-680)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="820"
id="rect1037" />
<rect
class="preview"
fill="url(#Polkadots-small)"
width="100"
height="100"
x="15"
y="820"
id="rect1039"
style="fill:url(#pattern96373)" />
</g>
<g
id="g1053"
transform="translate(135,-680)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="820"
id="rect1049" />
<rect
class="preview"
fill="url(#Polkadots-med)"
width="100"
height="100"
x="245"
y="820"
id="rect1051"
style="fill:url(#pattern96377)" />
</g>
<g
id="g1065"
transform="translate(245,-795)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="935"
id="rect1061" />
<rect
class="preview"
fill="url(#Polkadots-large)"
width="100"
height="100"
x="15"
y="935"
id="rect1063"
style="fill:url(#pattern96381)" />
</g>
<g
id="g1077"
transform="translate(255,-435)">
<rect
fill="#ffffff"
width="100"
height="100"
x="245"
y="935"
id="rect1073" />
<rect
class="preview"
fill="url(#Wavy)"
width="100"
height="100"
x="245"
y="935"
id="rect1075"
style="fill:url(#pattern96385)" />
</g>
<g
id="g1089"
transform="translate(365,-790)">
<rect
fill="#ffffff"
width="100"
height="100"
x="15"
y="1050"
id="rect1085" />
<rect
class="preview"
fill="url(#Camouflage)"
width="100"
height="100"
x="15"
y="1050"
id="rect1087"
style="fill:url(#pattern96389)" />
</g>
<g
id="g1095"
transform="translate(370,-790)">
<rect
fill="#ffffff"
width="100"
height="100"
x="130"
y="1050"
id="rect1091" />
</g>
<g
id="g1099"
transform="translate(135,-190)">
<rect
class="preview"
fill="url(#sand_bitmap)"
width="100"
height="100"
x="245"
y="1050"
id="rect1097"
style="fill:url(#pattern96393)" />
</g>
<g
id="g1103"
transform="translate(140,-190)">
<rect
class="preview"
fill="url(#cloth_bitmap)"
width="100"
height="100"
x="360"
y="1050"
id="rect1101"
style="fill:url(#pattern96395)" />
</g>
<metadata
id="metadata2367">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Patterns</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<rect
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0"
id="rect3980"
width="100"
height="100"
x="475"
y="145" />
<rect
style="fill:url(#pattern96399);stroke:none"
width="100"
height="100"
x="260"
y="260"
id="rect11442" />
<rect
style="fill:url(#pattern128000);fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
id="rect51084"
width="100"
height="100"
x="380"
y="380" />
<rect
style="fill:url(#pattern96407);stroke:none"
width="100"
height="100"
x="260"
y="740"
id="rect63957" />
<text
xml:space="preserve"
style="font-size:13.3333px;line-height:1.4;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-dasharray:none"
x="160"
y="30"
id="text107378">
<tspan
sodipodi:role="line"
id="tspan107376"
x="160"
y="30">Stock patterns in no particular order.</tspan>
<tspan
sodipodi:role="line"
x="160"
y="48.666618"
id="tspan107490">They will be sorted by ID in the UI.</tspan>
</text>
<rect
style="fill:url(#pattern161745);stroke:none;stroke-width:1"
width="100"
height="100"
x="260"
y="620"
id="rect161015" />
<g
id="circle2" />
<rect
style="fill:url(#pattern30);stroke:none;stroke-width:1"
width="100"
height="100"
x="380"
y="740"
id="rect30" />
<rect
style="fill:url(#pattern8);stroke:none"
width="100"
height="100"
x="620"
y="740"
id="rect8" />
<path
sodipodi:type="star"
style="fill:#81b4fe;fill-opacity:0.513228;stroke-width:2;stroke-miterlimit:10"
id="path1"
inkscape:flatsided="true"
sodipodi:sides="6"
sodipodi:cx="10"
sodipodi:cy="35"
sodipodi:r1="41"
sodipodi:r2="34.910599"
sodipodi:arg1="1.5707963"
sodipodi:arg2="2.0943951"
inkscape:rounded="0"
inkscape:randomized="0"
d="m 10,76 -35.507042,-20.5 0,-41 L 10,-6 l 35.507042,20.5 0,41 z"
transform="translate(-120,10)" />
<rect
style="fill:#000000;fill-opacity:0.6;stroke-width:2.00001;stroke-miterlimit:10"
id="rect26"
width="142"
height="123"
x="-220"
y="1" />
<ellipse
style="fill:url(#pattern2);stroke-width:4;fill-opacity:1"
id="path2"
cx="875.58832"
cy="1126.0649"
rx="26.991009"
ry="33.468849" /></svg>
|