1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="2in"
height="2in"
viewBox="0 0 50.800001 50.800001"
version="1.1"
id="svg3212"
inkscape:version="1.3-alpha (95f74fb, 2023-03-31)"
sodipodi:docname="→.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
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/"
xmlns:inkstitch="http://inkstitch.org/namespace">
<sodipodi:namedview
id="namedview3214"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:document-units="mm"
showgrid="false"
units="in"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="5.1644528"
inkscape:cx="-32.142805"
inkscape:cy="155.0019"
inkscape:window-width="1920"
inkscape:window-height="1152"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer93"
inkscape:snap-global="true"
inkscape:showpageshadow="2"
inkscape:deskcolor="#d1d1d1">
<inkscape:grid
type="xygrid"
id="grid3273"
visible="false" />
<sodipodi:guide
position="25.400001,0"
orientation="0,-1"
id="guide3275"
inkscape:locked="false" />
</sodipodi:namedview>
<title
id="title534">Dinomouse72</title>
<metadata
id="metadata1064">
<inkstitch:collapse_len_mm
id="collapse_len_mm1942">3</inkstitch:collapse_len_mm>
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Dinomouse72</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Fontgrove/Octavian Codrea, Karen Cravens/Silver Seams</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>An Ink/Stitch embroidery alphabet by Karen Cravens/Silver Seams, based on the Dinomouse OpenType font by Fontgrove/Octavian Codrea</dc:description>
</cc:Work>
</rdf:RDF>
<inkstitch:min_stitch_len_mm
id="min_stitch_len_mm6115">0</inkstitch:min_stitch_len_mm>
<inkstitch:inkstitch_svg_version>1</inkstitch:inkstitch_svg_version>
</metadata>
<defs
id="defs3209" />
<g
inkscape:groupmode="layer"
id="layer65"
inkscape:label="GlyphLayer-!"
style="display:none">
<g
id="g7148"
style="stroke:#260605"
transform="translate(-92.3725,-132.376)"
>
<path
id="path2548"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 92.70594,182.02854 3.385897,-0.042 m -1.656497,1.48845 c 0.8636,0 1.4478,-0.6604 1.4478,-1.524 0,-0.7366 -0.6096,-1.397 -1.3716,-1.397 m -0.0762,2.921 c -0.762,0 -1.3716,-0.6858 -1.3716,-1.4224 0,-0.8636 0.5588,-1.4986 1.4478,-1.4986"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2550"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 93.147151,169.63809 3.056674,0.0526 m -1.565285,9.1361 c -1.778,0 -1.5748,-2.54 -1.5748,-3.7592 0,-1.524 0.1016,-3.0226 0.1524,-4.5212 l 0.1524,-4.5212 c 0.0254,-0.8636 0.6604,-1.397 1.4986,-1.397 m -0.2286,14.1986 c 0.762,0 1.3716,-0.6604 1.3716,-1.4224 0,-0.762 -0.127,-1.524 -0.127,-2.3114 -0.0254,-3.0226 0.2032,-6.0452 0.3048,-9.0678 0.0254,-0.6858 -0.6096,-1.397 -1.3208,-1.397"
sodipodi:nodetypes="cccsccccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer66"
inkscape:label="GlyphLayer-""
style="display:none">
<g
id="g20689"
transform="translate(-306.396,-132.376)">
<path
id="path2642"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 307.34967,168.67791 3.82851,-0.4768 m -1.73741,-2.53152 c -0.8128,0 -1.4224,0.5842 -1.4224,1.397 -0.0508,0.635 0,1.2446 0.1016,1.8542 0.1778,1.016 0.5588,2.4638 1.8288,2.4384 0.254,0 0.4826,-0.0508 0.6858,-0.1778 m -1.1938,-5.5118 c 0.3302,0 0.7366,0.1524 0.9906,0.4064 0.2286,0.2286 0.4318,0.6604 0.4064,0.9906 -0.0254,0.3556 -0.0254,0.7366 0,1.0922 0.0254,0.3556 0.1778,0.7366 0.3048,1.0922 0.127,0.2032 0.2032,0.4572 0.2032,0.7112 -0.0762,0.635 -0.1016,0.8382 -0.7112,1.2192"
sodipodi:nodetypes="ccccccccscsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2644"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 311.651,168.67791 3.82851,-0.4768 m -1.87314,-2.65852 c -0.8382,0 -1.3716,0.5842 -1.4224,1.397 -0.0508,0.6604 0.0254,1.3208 0.127,1.9558 0.127,0.8128 0.2794,1.9812 1.0414,2.4384 0.2032,0.127 0.4572,0.2032 0.7112,0.1778 0.19491,0 0.40366,-0.0508 0.59674,-0.14052 m -1.05394,-5.82848 c 0.3302,0 0.762,0.1524 0.9906,0.4064 0.2286,0.254 0.4318,0.6604 0.4064,0.9906 -0.0254,0.4572 0,0.889 0.0508,1.3208 0.0508,0.508 0.1778,0.9906 0.3556,1.4732 0.127,0.3556 0.0508,0.762 -0.127,1.0922 -0.13115,0.23315 -0.36261,0.4245 -0.62246,0.54528"
sodipodi:nodetypes="cccccccccsccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer67"
inkscape:label="GlyphLayer-#"
style="display:none">
<g
id="g13464"
transform="translate(-117.68,-132.376)">
<path
id="path2564"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.62579,179.59932 3.10255,0.64681 m -2.26942,2.74633 c -0.39086,-0.0678 -0.70714,-0.27503 -0.91,-0.66047 -0.1778,-0.3302 -0.2286,-0.7112 -0.127,-1.0922 0.2286,-0.8636 0.4064,-1.7272 0.635,-2.5908 m 0.402,4.34347 c 0.0985,0.0171 0.20181,0.0253 0.3092,0.0253 0.635,0 1.1938,-0.4064 1.3716,-1.016 0.3302,-1.1176 0.5588,-2.3114 0.8382,-3.4544"
sodipodi:nodetypes="cccccccscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 123.97792,178.54736 -2.2098,-2.74317"
id="path7847" />
<path
id="path2569"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 121.83266,174.27485 3.4322,0.61541 m -3.49674,0.91393 0.6096,-2.286 m 2.3368,2.2098 c 0.1778,-0.7366 0.381,-1.4732 0.5842,-2.2098"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 125.29872,173.51819 0.69677,-7.81621"
id="path7849" />
<path
id="path2556"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.66801,167.53047 3.40379,0.57887 m -1.07631,-2.40736 c 0.34109,0.0942 0.62894,0.30353 0.82723,0.62801 0.2032,0.3302 0.254,0.7366 0.1524,1.0922 -0.3048,1.0668 -0.5334,2.159 -0.889,3.2004 l -0.0254,0.0762 m -0.0652,-4.99681 c -0.13951,-0.0385 -0.28793,-0.0578 -0.44277,-0.0578 -0.635,0 -1.143,0.4318 -1.2954,1.0414 -0.3556,1.3208 -0.762,2.667 -1.1176,4.0132"
sodipodi:nodetypes="ccccscccscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 123.13975,170.69878 -4.80063,1.39701"
id="path11347" />
<path
id="path2560"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 126.83911,170.40862 -0.0396,3.27319 m -8.46039,-1.58602 c 0.0254,0.7874 0.5842,1.4224 1.397,1.4224 h 2.6416 2.921 0.0762 l 2.46408,-1.9e-4 m -9.49988,-1.42221 c -0.0254,-0.762 0.635,-1.397 1.397,-1.397 h 3.1242 0.2794 2.921 l 1.474,-1.9e-4 h 0.3048"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccscccccsccccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 127.83952,170.6986 c 2.11623,0.59214 2.26702,-1.24683 3.8172,-4.696"
id="path8579"
sodipodi:nodetypes="cc" />
<path
id="path2558"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.22857,167.90575 3.45097,0.7553 m -1.02269,-2.65845 c 0.34828,0.0903 0.63932,0.29516 0.83007,0.65759 0.1524,0.2794 0.2794,0.7366 0.1524,1.0668 -0.3556,0.9652 -0.6604,1.9812 -0.9906,2.9718 m 0.008,-4.69619 c -0.11547,-0.0299 -0.23724,-0.0473 -0.36373,-0.0536 -0.254,0 -0.508,0.0762 -0.7112,0.2032 -0.3048,0.2032 -0.5334,0.4826 -0.6604,0.8382 -0.4318,1.2192 -0.8382,2.4638 -1.2446,3.7084"
sodipodi:nodetypes="ccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 128.67692,170.69879 6.731,0.9398"
id="path12043" />
<path
id="path8576"
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 132.543,174.146 v -3.982 m 2.865,1.475 c -0.178,-0.661 -0.711,-0.991 -1.346,-1.042 -0.127,0 -0.254,0.026 -0.381,0.051 -0.432,0.051 -0.864,0.051 -1.296,0.076 -0.254,0 -0.482,-0.025 -0.736,-0.025 h -3.809 m 7.568,0.94 c 0.102,0.355 0.025,0.787 -0.152,1.092 -0.153,0.279 -0.508,0.584 -0.839,0.66 -0.558,0.127 -1.143,0.153 -1.701,0.153 -0.585,0 -1.143,-0.026 -1.728,-0.026 h -0.228 -2.921"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccssccccccsc"
inkstitch:reverse_rails="none" />
<path
id="path2571"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 127.312,174.248 3.432,0.615 m -2.905,-1.345 c -0.229,0.711 -0.432,1.448 -0.635,2.159 m 3.556,-2.159 -0.61,2.134"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 127.204,175.677 -9.22048,1.62579"
id="path13431" />
<path
id="path9969"
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.41879,175.24868 0.0325,3.9195 m -2.46777,-1.86539 c -0.0254,-0.3556 0.1524,-0.7366 0.4064,-0.9906 0.2794,-0.2794 0.635,-0.4064 0.9906,-0.4064 0.8128,-0.0254 1.6002,-0.0762 2.3876,-0.1016 l 2.9464,-0.0762 c 0.8382,-0.0254 0.91388,-0.0508 1.75208,-0.0508 m -8.48308,1.6256 c 0.0254,0.762 0.6096,1.4224 1.397,1.4224 0.5588,0 1.1176,-0.0508 1.6764,-0.0762 l 2.921,-0.1016 c 0.8382,0 1.651,0 2.4892,-0.0508"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 126.46716,178.49659 8.509,-1.4224"
id="path13439"
sodipodi:nodetypes="cc" />
<path
id="path2562"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 134.97616,177.07419 c 0.0254,0.3556 -0.1524,0.7366 -0.4064,0.9906 -0.2286,0.2286 -0.5842,0.4064 -0.9144,0.4064 h -0.0762 c -0.3556,-0.0254 -0.6858,-0.0254 -1.0414,-0.0254 -0.6858,0 -1.397,0.0254 -2.0828,0.0254 h -1.0668 l -2.921,0.0254 m 8.509,-1.4224 c -0.0508,-0.762 -0.5842,-1.4224 -1.397,-1.4224 h -3.429 l -3.68352,0.0254 m 0.19513,3.2819 -0.005,-3.54247"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="csscsscccscccc"
inkstitch:reverse_rails="none" />
<path
id="path2567"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.21022,180.18086 -3.3017,-0.67966 m 0.5586,-1.00461 c -0.2794,1.0414 -0.5588,2.1082 -0.7874,3.1496 -0.0762,0.381 -0.0508,0.762 0.1524,1.0922 0.1778,0.2794 0.508,0.5588 0.8382,0.635 m 2.7178,-4.9022 c -0.3556,1.2954 -0.5842,2.6416 -0.9652,3.937 -0.1778,0.6096 -0.7366,1.016 -1.3462,1.016 -0.127,0 -0.2794,-0.0254 -0.4064,-0.0508"
sodipodi:nodetypes="ccccccccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer68"
inkscape:label="GlyphLayer-$"
style="display:none">
<g
id="g18499"
transform="translate(-136.07,-132.376)">
<path
id="path2587"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 140.40896,163.87899 c 0.0648,-0.009 0.13073,-0.0128 0.19723,-0.0128 0.6858,0 1.143,0.6604 1.1938,1.2954 l 0.0508,0.762 m -1.44183,-2.0446 c -0.65305,0.0854 -1.19748,0.58939 -1.17437,1.28258 l 0.0508,1.27 m -0.29959,-1.09963 3.16226,-0.14357 m -3.22932,-0.6991 h 3.02897"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccsccccccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="M 139.28539,166.43157 139.387,169.175"
id="path15631"
sodipodi:nodetypes="cc" />
<path
id="path2575"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 139.191,170.776 3.162,-0.143 m -2.966,-1.458 0.152,3.683 m 2.413,-4.318 v 0.432 l 0.153,3.759"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="ccccccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 139.53939,172.85777 0.1016,2.6162"
id="path15633"
sodipodi:nodetypes="cc" />
<path
id="path2579"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 139.435,176.556 3.162,-0.144 m -0.391,-1.116 0.026,0.457 c 0.051,0.915 0.051,1.855 0.076,2.794 m -2.667,-3.073 0.102,2.743"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccsc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 139.74259,178.21717 1.7018,6.3754"
id="path15635"
sodipodi:nodetypes="cc" />
<path
id="path2583"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 141.44439,184.59257 c 0.7112,0 1.2446,-0.5842 1.2446,-1.2954 0,-0.3302 -0.1016,-0.7112 -0.1524,-1.0414 -0.0508,-0.381 -0.0762,-0.7366 -0.1016,-1.1176 m -0.9906,3.4544 c -0.5588,0 -1.143,-0.381 -1.27,-0.9398 -0.2032,-0.9144 -0.2794,-1.8796 -0.3302,-2.8194 m 3.05184,1.7229 -3.16226,0.14357"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="csccccccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 139.84419,180.83337 4.81379,-0.47909 0.34241,4.23829"
id="path16338"
sodipodi:nodetypes="ccc" />
<path
id="path2585"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 143.3818,182.49515 3.16226,-0.14357 m -1.54367,2.24099 c -0.762,0 -1.2446,-0.5588 -1.2954,-1.2954 -0.0508,-0.7112 -0.1016,-1.4478 -0.127,-2.1844 m 1.4224,3.4798 c 0.7112,0 1.2954,-0.5842 1.2954,-1.2954 0,-0.8636 -0.0254,-1.7018 -0.0762,-2.5654"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="ccccccsc"
inkstitch:reverse_rails="none" />
<path
id="path2581"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 143.17,176.539 3.163,-0.144 m -0.24,1.67 c -0.051,-0.991 -0.102,-2.007 -0.127,-3.023 m -2.515,3.48 -0.076,-3.429"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccc"
inkstitch:reverse_rails="none" />
<path
id="path2577"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 143.05,170.644 3.162,-0.144 m -2.913,2.028 c 0,-0.204 -0.026,-0.407 -0.026,-0.61 0,-1.168 -0.101,-2.311 -0.127,-3.48 m 2.743,3.988 -0.076,-3.81"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccsc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 145.813,168.616 -1.47301,-5.15621"
id="path17740" />
<path
id="path2573"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 144.34,163.46 c -0.711,0 -1.27,0.584 -1.27,1.295 v 1.092 m 1.27,-2.387 c 0.762,0 1.245,0.584 1.295,1.295 0.026,0.407 0.051,0.838 0.077,1.245 m -2.815,-1.243 3.162,-0.144 m -3.273,0.692 h 3.218"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="ccccccsccc"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 145.712,166 3.87575,2.90292"
id="path18446" />
<path
id="path2589"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 137.06639,180.11579 1.48681,-2.61245 m 4.36725,3.91433 0.0742,-3.06217 m 5.57891,1.46242 -1.54834,-2.34018 m 1.54547,-4.07743 -1.88849,2.15374 m -3.71795,-0.1541 -0.41384,-2.86175 m -3.80665,-0.30914 -2.06549,2.10193 m 2.25452,-4.75425 -2.18053,-2.20592 m 5.82376,1.47452 -0.15789,-3.12565 m 4.94574,3.67416 1.42213,-2.69596 m 0.80175,2.20503 c 0.10364,-0.19194 0.16244,-0.41189 0.16244,-0.64253 0,-1.2954 -2.2352,-1.9558 -4.0386,-2.2606 l -2.6416,-0.1524 c -0.4064,0 -0.8128,0.0254 -1.2192,0.0762 l -2.5654,0.50798 c -1.9812,0.6604 -3.5306,1.9558 -3.5306,4.4704 0,2.667 1.3716,4.318 3.8862,4.572 l 2.5654,-0.1778 c 0.381,-0.0508 0.762,-0.127 1.1684,-0.2032 l 2.5908,-0.0508 c 0.8382,0.2286 1.4986,0.762 1.4986,1.778 0,0.6096 -0.6096,0.9906 -1.3716,1.2446 l -2.6416,0.4572 c -0.3048,0.0254 -0.5588,0.0254 -0.7366,0.0254 h -0.4064 l -2.5654,-0.3302 c -0.381,-0.1016 -0.762,-0.2032 -1.1176,-0.3556 -0.6096,-0.254 -1.143,-0.9398 -1.8288,-0.9398 -0.37873,0 -0.7491,0.17542 -0.99614,0.45442 m 13.7877,-8.47327 c -0.21602,0.39994 -0.627,0.67827 -1.10756,0.67827 -0.5334,0 -0.9652,-0.4064 -1.4478,-0.5842 -0.4064,-0.1524 -0.8128,-0.2794 -1.2192,-0.381 l -2.667,-0.17782 c -0.3556,0 -0.7874,0.0508 -1.1938,0.1016 l -2.5654,0.635 c -0.7874,0.381 -1.0414,0.8636 -1.0414,1.7526 0,1.1684 0.3048,1.7272 1.1938,1.9304 l 2.5654,-0.127 c 0.4064,-0.0508 0.7874,-0.1524 1.1938,-0.2032 l 2.5908,-0.1016 c 2.286,0.3302 4.1656,1.8288 4.1656,4.3942 0,2.2606 -1.8034,3.3782 -3.8354,3.9116 l -2.6416,0.381 c -0.3048,0.0254 -0.6096,0.0254 -0.8636,0.0254 h -0.2794 l -2.5908,-0.3048 c -2.0828,-0.381 -4.3434,-1.1938 -4.3434,-2.6924 0,-0.29251 0.11552,-0.55729 0.29926,-0.76478"
sodipodi:nodetypes="cccccccccccccccccccsccccsccccsccscccsccscccccsccccsccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer69"
inkscape:label="GlyphLayer-%"
style="display:none">
<g
id="g18504"
transform="translate(-150.67,-132.376)">
<path
id="path2591"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 159.97925,172.28026 2.63958,2.21721 m -7.7523,8.15053 c -0.33717,-0.26317 -0.55199,-0.66733 -0.53759,-1.12881 0,-0.254 0.0508,-0.508 0.1778,-0.7366 0.9652,-1.7272 10.033,-14.6812 10.7442,-15.0368 0.2032,-0.1016 0.4572,-0.2032 0.7112,-0.2032 0.30001,0 0.57925,0.09 0.81219,0.24437 m -11.9078,16.86104 c 0.25669,0.20035 0.58429,0.31899 0.93561,0.31899 0.508,0 0.9906,-0.3048 1.2446,-0.7112 2.4892,-3.9878 5.2578,-7.7216 8.001,-11.5316 0.7112,-0.9906 1.4732,-2.0066 2.1844,-2.9972 0.1524,-0.2032 0.2032,-0.4572 0.2032,-0.7112 0,-0.51279 -0.26286,-0.96493 -0.66101,-1.22883"
sodipodi:nodetypes="cccccssccscccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2593"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 156.45653,170.73614 1.19037,2.78244 m -0.85911,-4.54805 2.34958,-1.8128 m -4.08114,2.1681 -3.06291,-1.59278 m 2.88297,2.79369 -3.16225,1.47069 m -0.0775,-1.75584 c 0,-2.3114 2.1336,-4.445 4.5466,-4.445 2.0828,0 3.937,2.032 3.937,4.0894 0,2.2352 -2.3368,3.9624 -4.572,3.9624 -2.0828,0 -3.9116,-1.4986 -3.9116,-3.6068 m 2.8194,-0.1016 c 0,-0.5588 0.5588,-1.0922 1.0668,-1.4224 0.127,-0.0254 0.254,-0.1016 0.5334,-0.1016 0.8636,0 1.0668,0.3556 1.2446,1.1684 -0.1778,0.8128 -0.9652,1.2446 -1.6764,1.2446 -0.5842,0 -1.1684,-0.3048 -1.1684,-0.889"
sodipodi:nodetypes="cccccccccssscccscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2595"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 166.58239,180.03856 1.1751,3.12794 m -1.18247,-5.3383 0.64237,-3.20467 m -2.79252,4.93905 -3.02552,1.09023 m -0.11098,-2.38624 3.09323,0.48995 m -3.01686,0.40047 c 0,-2.54 2.3876,-4.3688 4.8006,-4.3688 2.3876,0 4.445,1.8034 4.445,4.2418 0,2.54 -2.4892,4.3688 -4.8768,4.3688 -2.3114,0 -4.3688,-1.905 -4.3688,-4.2418 m 2.8194,-0.0254 c 0,-0.9398 1.1938,-1.524 2.0066,-1.524 0.8128,0 1.6002,0.5334 1.6002,1.4224 0,0.9398 -1.2446,1.5494 -2.0574,1.5494 -0.7874,0 -1.5494,-0.635 -1.5494,-1.4478"
sodipodi:nodetypes="cccccccccsssccsssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer70"
inkscape:label="GlyphLayer-&"
style="display:none">
<g
id="g19921"
transform="translate(-188.143,-132.376)">
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 192.67298,173.67059 11.24288,9.41417"
id="path18506" />
<path
id="path2603"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 201.006,182.853 2.519,-3.036 m 0.391,3.268 c 0.247,-0.231 0.416,-0.54 0.416,-0.855 0,-1.244 -2.49,-3.276 -2.464,-3.581 m 2.048,4.436 c -0.252,0.235 -0.585,0.39 -0.905,0.39 -1.042,0 -2.108,-1.626 -2.743,-2.286"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2601"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 198.57345,174.65062 -2.63875,2.83297 m 2.37712,1.6734 c -0.254,-0.4064 -3.3274,-3.4544 -3.6068,-3.5052 m 5.0038,0.8382 c -0.8636,-0.9144 -1.778,-1.8034 -2.7432,-2.6416"
sodipodi:nodetypes="cccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2605"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 194.81823,170.88773 -3.28209,2.29108 m 2.51032,-4.01407 -3.61774,0.11526 m 4.89028,-1.3135 -0.003,-3.38442 m 0.67514,4.643 4.24711,-0.17505 m -3.90152,6.08145 -2.94278,-2.90777 m -0.61356,6.05368 -3.31786,-1.61385 m 4.77992,3.43592 -0.51756,3.59082 m 4.58528,-6.30985 3.42584,2.16354 m 0.0837,-9.47198 3.39922,1.13332 m -10.36155,0.71268 c -0.6604,-0.762 -1.1684,-1.6764 -1.1684,-2.4638 0,-0.9398 0.7112,-1.9558 1.7018,-1.9558 0.7112,0 1.4224,0.5588 1.4224,1.5494 0,0.254 -0.0508,0.5334 -0.0762,0.635 -0.127,0.5334 -1.5748,2.286 -1.8796,2.2352 l -2.1844,1.7526 c -1.4732,1.2192 -3.3274,2.8956 -3.3274,5.4356 0,2.9718 2.5146,4.5466 5.4356,4.5466 2.2606,0 4.2164,-0.9398 5.4864,-2.4638 l 1.6002,-2.54 c 0.4572,-0.9906 2.9718,-7.1882 2.9718,-8.1788 0,-0.37726 -0.36421,-0.79653 -0.86377,-0.98737 m -11.30283,4.18777 c -1.0414,-1.1938 -1.8288,-2.7432 -1.8288,-4.2926 0,-2.413 1.9558,-4.699 4.4958,-4.699 2.3114,0 4.2672,1.8288 4.2672,4.5466 0,1.9812 -1.016,3.2258 -2.6416,4.6228 l -2.2606,1.8034 c -0.762,0.6096 -2.54,2.0066 -2.54,3.5052 0,1.2954 1.3462,1.7018 2.5654,1.7018 1.6256,0 2.7432,-0.6858 3.5814,-1.7018 l 1.397,-2.667 c 0.762,-2.0066 1.7272,-3.9878 2.1336,-5.3086 0.4064,-1.3462 0.9144,-1.8034 1.5748,-1.8034 0.19612,0 0.3855,0.0387 0.55863,0.10483"
sodipodi:nodetypes="cccccccccccccccccccssscccssccsccsssccsscccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer71"
inkscape:label="GlyphLayer-'"
style="display:none">
<path
id="path2538"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.3685875,35.940806 -3.42334001,0.46092 m 1.71721001,-3.08243 c -0.8128,0 -1.3462,0.6096 -1.397,1.397 -0.0508,0.6604 0.0254,1.3208 0.127,1.9558 0.1524,1.0414 0.4064,2.6162 1.7526,2.6162 0.16086,0 0.33116,-0.0314 0.49429,-0.091 m -0.97689,-5.87799 c 0.3556,0 0.7874,0.1524 1.016,0.4064 0.2286,0.254 0.4318,0.6604 0.4064,0.9906 -0.0254,0.4572 -0.0254,0.889 0.0254,1.3208 0.0508,0.508 0.2032,0.9906 0.381,1.4732 0.127,0.3556 0.0508,0.762 -0.127,1.0922 -0.14817,0.27988 -0.42439,0.48505 -0.72491,0.59479"
sodipodi:nodetypes="cccccsccsccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer72"
inkscape:label="GlyphLayer-("
style="display:none">
<path
id="path182954"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 6.0852765,49.97936 3.1023902,51.61774 M 6.0852765,34.367068 3.1023902,32.728688 m 0.7343685,8.951018 -3.40300006,-0.0386 m 5.13198006,-9.36511 c -0.24822,-0.17079 -0.55496,-0.2644 -0.86842,-0.2775 -0.4572,0 -1.0414,0.4064 -1.2192,0.7874 -1.3716001,2.032 -2.3368001,4.699 -2.61620006,7.112 -0.3048,2.6416 -0.127,5.334 0.68579996,7.874 0.4572,1.397 1.1684001,2.7178 1.9304001,3.9878 0.2286,0.381 0.7366,0.6096 1.1684,0.6096 0.28446,0 0.54707,-0.07429 0.76608,-0.21018 m 0.15314,-19.88312 c 0.23452,0.16135 0.4168,0.39156 0.50318,0.6877 0.0508,0.1778 0.0762,0.3556 0.0508,0.5588 0,0.1778 -0.0254,0.3556 -0.127,0.5334 -1.4478,2.54 -2.2098,4.1656 -2.4384,7.1628 -0.0762,1.3462 0,2.7178 0.254,4.0386 0.4064,1.9812 0.9906,3.2512 2.0066,4.9276 0.2032,0.3302 0.2794,0.6858 0.2032,1.0668 -0.0743,0.40134 -0.29652,0.71569 -0.60552,0.90742"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccccccccsscccccccccc"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer73"
inkscape:label="GlyphLayer-)"
style="display:none">
<path
id="path2622"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.4876091,41.724996 3.492159,-0.49151 m -4.9946983,-9.08259 c -0.3302,0.127 -0.5588,0.4826 -0.6858,0.8128 -0.0762,0.1778 -0.1016,0.3556 -0.0762,0.5588 0,0.1778 0.0254,0.3556 0.1524,0.5334 1.4731993,2.0574 2.2351993,4.6736 2.4383993,7.1628 0.0762,1.3462 0,2.7178 -0.254,4.0386 -0.381,1.8288 -1.0159993,3.3782 -2.0065993,4.9276 -0.2032,0.3302 -0.254,0.6858 -0.2032,1.0668 0.0589,0.3829 0.29713,0.6975 0.61565,0.89427 m 0.0194,-19.99507 c 0.2032,-0.0762 0.4318,-0.1524 0.660399,-0.1524 0.5334003,0.0254 0.9906003,0.3048 1.2446003,0.7874 1.396999,2.0828 2.285999,4.6228 2.616199,7.112 0.3556,2.6416 0.1524,5.334 -0.6858,7.874 -0.4572,1.397 -1.1938,2.7178 -1.930399,3.9878 -0.2286,0.381 -0.7112,0.6096 -1.1430003,0.6096 -0.277499,0 -0.550509,-0.0807 -0.781349,-0.22333"
sodipodi:nodetypes="cccccccccccccccccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer74"
inkscape:label="GlyphLayer-*"
style="display:none">
<g
id="g20681"
transform="translate(-206.709,-132.376)">
<path
id="path2618"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 210.13227,172.46515 0.0777,-2.90804 m -1.37184,1.47188 c -0.0254,-0.3302 0.1778,-0.6858 0.4064,-0.889 0.2794,-0.2286 0.635,-0.381 1.016,-0.381 h 1.016 l 2.3479,1.16002 m -4.7863,0.10998 c 0.0254,0.7366 0.7112,1.2446 1.4224,1.2446 0.6604,0 0.8128,0 1.0668,-0.0254 l 2.2971,-1.32918"
sodipodi:nodetypes="cccscccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 213.62443,170.91901 -2.71703,-3.91919"
id="path19923" />
<path
id="path2607"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 210.34295,168.73776 2.51853,-1.67984 m -1.95411,-0.0581 c 0.21834,-0.15525 0.49143,-0.23802 0.77556,-0.23802 0.1016,0 0.2032,0 0.3048,0.0254 0.3556,0.1016 0.6604,0.3302 0.8636,0.635 0.2032,0.3048 0.4826,0.7112 0.762,1.143 l 0.0111,2.35381 m -2.71703,-3.91919 c -0.2501,0.17784 -0.42834,0.45079 -0.46904,0.80338 -0.0508,0.3556 0.0254,0.7366 0.2286,1.0414 0.381,0.5588 0.4572,0.6858 0.6096,0.9144 l 2.34787,1.16001"
sodipodi:nodetypes="cccscsccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 213.62443,170.91901 2.53816,-4.17919"
id="path19931" />
<path
id="path2609"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 214.42454,166.88806 2.45184,1.31813 m -0.71379,-1.46637 c -0.17438,-0.10001 -0.37694,-0.15583 -0.59346,-0.15583 -0.508,0 -0.9652,0.2794 -1.1938,0.7112 -0.4318,0.7874 -0.4318,0.7112 -0.762,1.27 l 0.0111,2.35382 m 2.53816,-4.17919 c 0.29613,0.16983 0.51104,0.46709 0.57494,0.83477 0.0508,0.3302 -0.0254,0.7366 -0.2032,1.0414 -0.1778,0.3048 -0.4064,0.7112 -0.6858,1.143 l -2.2241,1.16002"
sodipodi:nodetypes="cccscccscccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 213.62443,170.91901 5.0435,0.0592"
id="path19939" />
<path
id="path2611"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 217.30604,169.60594 -0.001,2.90235 m 1.36289,-1.5301 c -0.0508,-0.7874 -0.635,-1.1938 -1.397,-1.1938 -0.4318,0 -0.9144,0 -1.4224,-0.0254 l -2.2241,1.16002 m 5.0435,0.0592 c 0.0254,0.3302 -0.1778,0.7366 -0.4064,0.9398 -0.2794,0.254 -0.635,0.3556 -0.9906,0.3556 h -1.27 l -2.3765,-1.3546"
sodipodi:nodetypes="cccscccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 213.62443,170.91901 2.79103,4.22239"
id="path19947" />
<path
id="path2613"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 216.73386,173.17446 -2.49169,1.7245 m 2.17329,0.24244 c -0.23187,0.16559 -0.52072,0.25639 -0.82093,0.25639 -0.4572,0 -0.889,-0.2794 -1.143,-0.6604 -0.2286,-0.3556 -0.5334,-0.8382 -0.8382,-1.3208 l 0.0111,-2.49758 m 2.79103,4.22239 c 0.25858,-0.18464 0.4463,-0.46222 0.49987,-0.81041 0.0508,-0.3556 -0.0508,-0.6858 -0.2794,-1.016 -0.2032,-0.3048 -0.4064,-0.6858 -0.635,-1.0414 l -2.3765,-1.35458"
sodipodi:nodetypes="ccccsccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 213.62443,170.91901 -2.5257,4.22478"
id="path19955" />
<path
id="path2616"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 213.0896,174.5824 -2.49579,-1.59541 m 0.50492,2.1568 c -0.2794,-0.1524 -0.5334,-0.508 -0.5842,-0.8382 -0.0508,-0.3302 0,-0.7366 0.2032,-1.0414 0.1778,-0.2794 0.381,-0.635 0.6096,-1.016 l 2.2971,-1.32918 m -2.5257,4.22478 c 0.2032,0.127 0.4318,0.2032 0.635,0.1778 0.4826,0 0.9398,-0.3302 1.1684,-0.7366 0.2032,-0.3556 0.4572,-0.762 0.7112,-1.1684 l 0.0111,-2.49758"
sodipodi:nodetypes="ccccsccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer75"
inkscape:label="GlyphLayer-+"
style="display:none">
<g
id="g22146"
transform="translate(-248.033,-132.376)">
<path
id="path2628"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 253.19649,180.0708 3.76984,-0.079 m -1.92799,1.93379 c -0.762,0 -1.397,-0.6604 -1.397,-1.4224 v -2.921 m 1.397,4.3434 c 0.7366,0 1.4224,-0.6858 1.4224,-1.4224 v -2.8956"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 256.46074,177.60759 -1.4224,-6.985"
id="path21416" />
<path
id="path2626"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 253.18501,172.65914 3.56117,-0.0509 m -1.70784,-1.98565 c 0.762,0 1.4224,0.635 1.4224,1.4224 v 2.7432 m -1.4224,-4.1656 c -0.7874,0 -1.397,0.635 -1.397,1.4224 v 2.7178"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 253.64134,174.76279 -4.445,1.3716"
id="path21418" />
<path
id="path2630"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 255.02742,174.34489 -0.14458,3.56441 m -5.6865,-1.77491 c -0.0254,-0.3556 0.1778,-0.762 0.4064,-0.9906 0.254,-0.254 0.635,-0.4318 0.9906,-0.4318 0.6604,0 1.2954,0.0254 1.9558,0.0254 0.3556,0 0.7112,0.0254 1.0922,0.0254 l 2.8194,0.0254 c 0.9652,0.0254 1.9558,0.0508 2.9464,0.0508 0.7874,0 1.3716,0.6096 1.397,1.397 m -11.6078,-0.1016 c 0.0508,0.7874 0.5842,1.397 1.397,1.397 1.016,0 2.032,0.0254 3.048,0.0508 l 2.8194,0.0254 c 0.3302,0 0.6604,0.0254 0.9906,0.0254 0.6604,0 1.2954,0.0254 1.9558,0.0254 0.762,0 1.4224,-0.6604 1.397,-1.4224"
sodipodi:nodetypes="cccsssccsccsccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer76"
inkscape:label="GlyphLayer-,"
style="display:none">
<path
id="path2540"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.5585011,50.808056 3.37412,0.28235 m -2.5822,3.00545 c -0.30052,-0.12229 -0.5733,-0.34404 -0.70576,-0.60896 -0.1524,-0.3048 -0.254,-0.7366 -0.127,-1.0668 0.1778,-0.4826 0.3048,-0.9906 0.381,-1.4732 0.0762,-0.4572 0.0508,-0.889 0.0254,-1.3208 -0.0254,-0.3556 0.1778,-0.762 0.4064,-1.016 0.2032,-0.2286 0.6096,-0.4064 0.9398,-0.4064 m -0.91984,5.89216 c 0.16048,0.0653 0.32888,0.10224 0.48804,0.10224 0.254,0 0.5334,-0.0762 0.7366,-0.2032 0.7366,-0.4572 0.9398,-1.6256 1.0414,-2.413 0.1016,-0.6604 0.1778,-1.2954 0.127,-1.9558 -0.0762,-0.8382 -0.5842,-1.4224 -1.4732,-1.4224"
sodipodi:nodetypes="cccsccccccscccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer77"
inkscape:label="GlyphLayer--"
style="display:none">
<path
id="path2522"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.0060032,43.047356 -0.008,3.03815 m -3.98061998,-1.51401 c 0,0.7874 0.635,1.4224 1.42239998,1.4224 h 5.2324 c 0.7366,0 1.397,-0.6096 1.397,-1.3716 m -8.05179998,-0.0508 c 0,-0.7874 0.635,-1.3716 1.42239998,-1.397 0.7112,-0.0254 1.4224,-0.0254 2.1336,-0.0254 0.3048,-0.0254 0.5842,0 0.889,0 0.381,0 0.8636,-0.0254 1.3462,-0.0254 1.143,-0.0254 2.286,0.1778 2.2606,1.4986"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer78"
inkscape:label="GlyphLayer-."
style="display:none">
<path
id="path2542"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 0.32149347,49.384376 3.23135003,-0.0359 m -1.59027,1.5222 c 0.7366,0 1.4224,-0.635 1.4224,-1.3716 0,-0.8636 -0.635,-1.4478 -1.4732,-1.4478 m 0.0508,2.8194 c -0.8382,0 -1.47320003,-0.6096 -1.47320003,-1.4732 0,-0.7366 0.68580003,-1.3462 1.42240003,-1.3462"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer79"
inkscape:label="GlyphLayer-/"
style="display:none">
<path
id="path2544"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.4899014,40.564976 2.9767195,1.14506 m -5.1478895,7.81268 c -0.31577,-0.15012 -0.57954996,-0.4032 -0.70587996,-0.73482 -0.127,-0.3556 -0.127,-0.7366 0.0254,-1.0668 1.87959996,-4.2164 3.70839996,-8.4582 5.35939996,-12.7508 0.1269995,-0.3302 0.4063995,-0.635 0.7619995,-0.762 0.1524,-0.0508 0.3302,-0.1016 0.508,-0.1016 0.16935,0.008 0.34104,0.0434 0.50305,0.10426 m -6.4519695,15.31176 c 0.19214,0.0913 0.40353,0.14457 0.61492,0.15418 0.1778,0 0.3556,-0.0508 0.508,-0.1016 0.3556,-0.127 0.635,-0.4318 0.7874,-0.762 0.2032,-0.4572 0.4064,-0.9398 0.6096,-1.397 0.7366,-1.6764 4.0893995,-9.652 4.7497995,-11.3284 0.1524,-0.381 0.127,-0.7366 0,-1.0922 -0.12392,-0.37174 -0.44522,-0.64479 -0.81775,-0.78474"
sodipodi:nodetypes="cccccsccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer54"
inkscape:label="GlyphLayer-0"
style="display:none">
<path
id="path2474"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.8442501,37.001469 -3.56359,-1.46587 m 5.69055,0.0588 -0.23767,-3.3732 m 3.7371799,6.07579 2.94645,-1.57432 m -3.2116,9.28507 2.99501,1.41292 m -6.1339299,3.52978 -0.001,-3.32449 m -5.52474,0.0531 3.29906,-1.58391 m -4.35890004,-7.40859 3.88027004,0.34925 m -3.03185,-2.2657 c -0.381,1.4224 -0.48260004,3.1242 -0.48260004,4.5974 0,2.7178 0.66040004,7.4168 3.25120004,8.8138 0.9144,0.508 1.9812,0.635 2.9972,0.635 1.27,0 2.6924,-0.2032 3.7845999,-0.9144 2.3368,-1.524 3.175,-5.7658 3.175,-8.4074 0,-4.5212 -2.159,-9.0678 -7.0611999,-9.0678 -2.5908,0 -5.13157,1.66009 -5.6642,4.3434 -0.0976,0.49172 0.27747,1.01959 1.02341,1.1856 m 1.89714,-0.90615 c -0.3048,1.3716 -0.508,2.794 -0.508,4.2164 0,1.3716 0.3302,5.1816 1.4224,6.0706 0.5334,0.4318 1.3208,0.4826 1.9558,0.4826 0.8128,0 1.8034,-0.0762 2.4892,-0.6096 1.1429999,-0.889 1.5747999,-4.3942 1.5747999,-5.8166 0,-2.7686 -1.0668,-5.969 -4.2163999,-5.969 -1.3208,0 -1.93993,0.57706 -2.7178,1.6256 -0.41899,0.56478 -1.14719,0.99592 -1.90214,0.89075"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer55"
inkscape:label="GlyphLayer-1"
style="display:none">
<g
id="g2886"
transform="translate(147.184,-132.405)">
<path
id="path2480"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -142.64649,167.34339 2.09278,2.49951 m -4.55692,-0.15264 1.79515,2.94317 m -1.4599,-1.00235 c -0.0975,-0.19537 -0.15214,-0.41731 -0.15214,-0.65289 0,-0.4572 0.254,-1.016 0.6858,-1.2192 1.8542,-0.8636 2.6416,-2.4892 3.5052,-4.2164 m -4.03886,6.08849 c 0.22854,0.45764 0.69304,0.76951 1.24486,0.76951 0.8128,0 2.032,-0.9652 2.5908,-1.524 l 0.2032,-5.334"
sodipodi:nodetypes="cccccscccscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2478"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -141.511,166.28443 3.71712,-0.0429 m -3.34693,5.23593 3.16902,-0.0197 m -3.41737,7.86633 3.49546,0.0255 m -1.62362,-14.4928 c 1.8034,0 1.397,2.3876 1.397,3.5814 0,4.0132 0,8.001 -0.0508,12.0142 m -1.3462,-15.5956 c -0.4572,0 -1.00919,0.28288 -1.2192,0.6858 -0.41432,0.79489 -0.19236,2.6783 -0.2032,5.334 -0.0129,3.14968 0,6.2992 -0.0508,9.4488"
sodipodi:nodetypes="cccccccsccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -140.99052,180.32539 -4.4958,1.3716"
id="path2175" />
<path
id="path2476"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -135.21225,180.06133 0.0161,3.27955 m -4.95517,-3.36735 -0.18307,3.29927 m -3.98255,-3.52801 -0.25802,3.69363 m -0.91136,-1.74143 c 0,1.524 1.2954,1.524 2.413,1.524 0.7874,0 1.5748,-0.0762 2.3368,-0.0762 1.2446,0 2.4892,0.1524 3.7338,0.1524 1.0668,0 3.2258,0.1524 3.2258,-1.4224 m -11.7094,-0.1778 c 0,-1.2954 1.4478,-1.397 2.54,-1.397 h 0.6858 c 0.4064,0 0.8382,0 1.27,0.0254 l 2.8194,0.127 c 0.381,0 0.7874,0.0254 1.1684,0.0254 0.5588,0 1.1176,-0.0762 1.7018,-0.0762 0.889,0 1.524,0.5334 1.524,1.4732"
sodipodi:nodetypes="cccccccsssccssccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer56"
inkscape:label="GlyphLayer-2"
style="display:none">
<g
id="g85900">
<path
id="path2482"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.7498168,46.099199 1.81669,2.39966 m 1.87617,-7.33598 2.7022902,1.3956 m -3.0536902,-5.8352 2.3488602,-2.00296 m -6.7891202,2.08299 -2.36485,-2.1507 m -0.45017,7.33426 2.66733,-1.96415 m -0.53526,1.91344 c 0.30446,-0.24103 0.51675,-0.59799 0.51675,-1.00043 0,-1.143 -0.9144,-1.1176 -0.9144,-2.2352 0,-1.6764 1.7526,-3.048 3.3782,-3.048 1.7272,0 3.2004002,1.651 3.2004002,3.3528 0,2.6416 -3.0226002,6.1214 -4.9784002,7.62 -0.9652,0.7366 -2.2098,1.27 -3.0734,1.9812 m 1.87085,-6.67037 c -0.2528,0.20014 -0.56914,0.32037 -0.88025,0.32037 -1.4986,0 -2.3368,-2.3368 -2.3368,-3.5814 0,-3.2004 3.0226,-5.842 6.1468,-5.842 3.3020002,0 6.0706002,2.8702 6.0706002,6.1468 0,3.2512 -2.794,7.0358 -5.1308002,9.0678 -1.93913,0.0964 -3.95716,-0.0833 -5.7404,0.5588"
sodipodi:nodetypes="cccccccccccssssccssssccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2484"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.664317,48.002439 0.14823,3.03559 m -5.7951802,-3.40945 -0.0256,3.45233 m -5.17974,-3.40464 -0.13285,3.67285 m -0.98836,-1.72659 c 0,0.6858 0.635,1.397 1.3208,1.397 1.3208,0 2.667,-0.1524 4.0132,-0.1524 1.4732,0 2.9718,0.0508 4.4704002,0.0508 0.254,0 0.5588,0 0.889,0.0254 1.0414,0 2.2352,-0.1524 2.2352,-1.4732 m -12.9286002,0.1524 c 0,-0.3048 0.1524,-0.8128 0.4064,-1.016 1.04362,-0.75961 3.61027,-0.5708 5.7404,-0.5588 1.19405,0.007 2.4130002,0.0508 3.6068002,0.0508 0.3302,0 0.7366,-0.0254 1.143,-0.0254 1.016,0 2.032,0.1778 2.032,1.397"
sodipodi:nodetypes="cccccccssscccccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer57"
inkscape:label="GlyphLayer-3"
style="display:none">
<g
id="g85895"
transform="translate(-15.301)">
<path
id="path2486"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 24.920747,36.109289 0.0307,-3.3463 m -2.76933,3.3463 0.0307,-3.3463 m -4.10728,3.3463 0.0307,-3.3463 m -0.83792,1.51786 c 0,0.7366 0.5842,1.397 1.4224,1.397 h 4.8768 l 3.1496,-2.81936 m -9.4488,1.42236 c 0,-0.8128 0.7112,-1.4224 1.4224,-1.4224 h 8.0264"
sodipodi:nodetypes="cccccccscccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2488"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 20.168797,38.672029 1.81664,1.33377 m 1.13416,-4.38207 2.76147,2.21569 m -0.5654,-4.72636 2.82598,2.14741 m -0.49153,-2.05595 c -0.24486,-0.21308 -0.56187,-0.36824 -0.903,-0.34599 -0.54741,0.0357 -2.11641,1.61928 -3.1496,2.8194 -1.30329,1.51385 -2.667,2.9718 -3.3782,3.7084 m 7.4308,-6.18181 c 0.30095,0.26189 0.494,0.64486 0.494,1.05101 0,0.381 -0.127,0.762 -1.1684,1.8796 -0.3302,0.3556 -1.4224,1.6002 -2.54,2.8194 l -4.2164,0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2490"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.470497,44.244489 2.75051,0.39383 m 0.3971,2.25645 -3.09574,1.69218 m 6.83419,-0.96407 0.99158,3.05332 m 1.25207,-5.79247 3.08835,0.3668 m -4.54303,-3.06225 1.59485,-3.00695 m -6.39708,0.72162 1.79371,2.36914 m -1.83574,-0.51504 c -0.11205,-0.20444 -0.17415,-0.44056 -0.17415,-0.66892 0,-0.4064 0.16588,-0.77375 1.0922,-1.7018 0.34793,-0.3486 2.2071,-0.90593 4.2164,-0.4318 2.54231,0.5999 4.1402,3.0226 4.1402,5.715 0,3.6322 -2.921,6.223 -6.731,6.223 -2.9972,0 -5.5372,-1.6256 -5.5372,-4.6736 0,-1.1938 0.4064,-2.1336 1.4224,-2.1336 m 1.57115,-2.32828 c 0.17461,0.31857 0.47054,0.56021 0.84185,0.57568 0.127,0 0.2794,-0.0508 0.4318,-0.127 0.6604,-0.3302 1.3716,-0.5842 2.2606,-0.5842 1.7526,0 2.921,1.3462 2.921,3.0734 0,2.0574 -1.651,3.3782 -4.064,3.3782 -1.1938,0 -2.3622,-0.3302 -2.54,-1.7526 -0.0508,-0.4064 0.0254,-0.5588 0.0254,-0.8382 0,-0.762 -0.6096,-1.397 -1.4478,-1.397"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccccccccccsssssscccssssssc"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer58"
inkscape:label="GlyphLayer-4"
style="display:none">
<g
id="g4359"
style="display:inline;stroke:#260605"
transform="translate(103.158,-132.405)"
>
<path
id="path2498"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -94.250636,182.13093 3.227348,-0.90691 m -0.969241,2.27196 c -0.148301,0.0522 -0.307977,0.0806 -0.474467,0.0806 -0.4826,0 -0.9398,-0.254 -1.1938,-0.7112 -0.3556,-0.635 -0.6096,-1.6256 -0.7874,-2.7178 m 2.455667,3.34839 c 0.553076,-0.19474 0.947933,-0.72088 0.947933,-1.34179 0,-0.2032 -0.4318,-1.6002 -0.6096,-2.3876"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccscccsc"
inkstitch:reverse_rails="none" />
<path
id="path2496"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -91.51154,176.50117 -3.610948,0.26417 m 3.649242,-4.22518 -3.475035,0.24866 m 3.622871,-3.72931 -2.465962,0.0538 m 1.883176,7.80848 c -0.0254,-0.6096 -0.0254,-1.2446 -0.0254,-1.8796 0,-1.905 0.0762,-3.81 0.1524,-5.715 0.0254,-0.7112 0.1016,-1.4224 0.1016,-2.1336 m -3.0226,10.16 c -0.0254,-0.9398 -0.0508,-1.8034 -0.0508,-2.4384 0,-0.381 0,-1.3716 0.0254,-2.54 l 3.048,-5.1816"
sodipodi:nodetypes="cccccccscccscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2494"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -94.485496,165.50202 3.082594,1.16217 m -5.314325,2.19122 3.171314,1.95939 m -6.968697,3.59343 2.912471,2.3534 m 5.222464,-11.27244 c -0.198425,-0.11118 -0.426355,-0.1752 -0.671521,-0.1752 -0.254,0 -0.4826,0.0762 -0.7112,0.2032 -0.4318,0.254 -0.8128,0.9398 -1.0668,1.3716 -1.016,1.7526 -1.905,3.4798 -3.0734,5.1562 -1.2192,1.7272 -2.514604,3.5306 -3.937004,5.1054 m 9.459925,-11.6612 c 0.438856,0.2459 0.733388,0.72246 0.750879,1.2472 0,0.1016 -0.0254,0.2286 -0.0508,0.3302 v 0.127 l -3.048,5.1816 c -1.1176,1.7018 -2.3876,3.3274 -3.6576,4.9276 -1.151481,-0.0628 -2.303844,-0.92493 -3.454404,-0.1524"
sodipodi:nodetypes="cccccccsccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2492"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -97.919303,177.09194 -0.226322,3.41128 m 4.198366,-3.54753 0.413538,3.40756 m 3.809468,-4.54354 1.405401,3.09725 m -13.835078,-1.3121 c 0.0751,-0.15965 0.18309,-0.3057 0.31433,-0.45447 0.95495,-1.08251 2.302936,0.1016 3.454404,0.1524 0.635,0.127 1.27,0.1524 1.905,0.1524 0.4826,0 1.0922,-0.0508 1.778,-0.1016 l 2.794,-0.4318 c 0.7366,-0.127 1.397,-0.3048 1.8542,-0.4826 0.4826,-0.2032 0.8382,-0.5842 1.3462,-0.5842 0.517619,0 0.988356,0.29301 1.237057,0.72776 m -14.683191,1.02211 c -0.0752,0.15966 -0.11747,0.33293 -0.11747,0.53613 0.0254,1.9304 4.445004,2.1336 5.816604,2.1336 0.381,0 1.1176,-0.0254 2.0066,-0.127 l 2.794,-0.381 c 2.2352,-0.4572 4.3688,-1.2192 4.3688,-2.4892 0,-0.25253 -0.06792,-0.48938 -0.185343,-0.69464"
sodipodi:nodetypes="cccccccscscccscccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer59"
inkscape:label="GlyphLayer-5"
style="display:none">
<g
id="g5043"
transform="translate(86.3968,-132.405)"
style="display:inline">
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -83.069998,166.1786 10.899452,-1.00046"
id="path4361" />
<path
id="path2500"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -73.836349,164.28292 1.237813,3.08382 m -5.229,-2.52112 0.04862,3.40377 m -3.132066,-3.70657 -0.700548,3.8133 m 9.440984,-3.17798 c 0.0706,0.17352 0.109678,0.37305 0.109678,0.59305 0,1.3716 -1.4224,1.7272 -2.6416,1.905 -1.1938,0.1778 -2.54,0.3048 -4.4196,0.3048 -0.4318,0 -1.5748,0 -2.6924,-0.2286 m 9.643922,-2.57425 c -0.190236,-0.46756 -0.609346,-0.74628 -1.109522,-0.72775 h -0.1778 c -0.4318,0 -0.8382,0.2794 -1.1684,0.3556 -1.27,0.2286 -2.5908,0.3556 -3.5306,0.3556 -0.8382,0 -3.4544,-0.1016 -4.0386,-0.5588"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2502"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -82.797406,177.08121 -2.954781,0.0893 m 3.86693,2.40352 -2.034119,2.40947 m 6.620994,-2.38091 1.538501,2.95521 m -1.030684,-8.81023 2.694427,-2.03127 m -7.79453,-0.79949 0.652125,3.14727 m -3.770456,-2.94788 3.118331,-0.19939 m -2.806538,-4.56823 3.143369,0.0394 m -1.581431,-2.19159 c 0.3556,0 0.687105,0.12582 0.9398,0.4064 0.616638,0.68468 0.44181,2.12023 0.381,3.1496 -0.04056,0.68648 -0.1524,1.4478 -0.127,2.2352 0,0.3556 0,0.7874 0.0508,1.1938 0.127,-0.0508 0.2794,-0.1524 0.7366,-0.3556 0.762,-0.3302 1.905,-0.7366 3.1242,-0.7366 3.5814,0 5.4102,3.5306 5.3848,6.6802 0,1.1684 -0.2286,2.5908 -0.9906,3.683 -1.2192,1.7526 -3.7846,2.8956 -5.969,2.8956 -2.9972,0 -6.1468,-2.1336 -6.1468,-4.8514 0,-1.27 0.6604,-1.8288 1.5494,-1.8288 m 1.0668,-12.4714 c -1.0922,0 -1.3716,1.3208 -1.4224,2.1844 -0.0508,0.6604 -0.2032,2.1082 -0.2032,4.2672 0,0.7112 -0.0254,3.556 2.159,3.556 1.4732,0 2.8702,-1.27 4.4196,-1.27 2.0574,0 2.7178,2.3114 2.7178,3.937 0,0.4572 -0.0508,1.0922 -0.254,1.5494 -0.6096,1.3462 -2.6924,2.1082 -4.0894,2.1082 -1.1176,0 -2.4892,-0.6096 -2.9464,-1.7018 -0.3556,-0.889 -0.1524,-2.159 -1.4478,-2.159"
sodipodi:nodetypes="cccccccccccccccsscccsccsscccsssscscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer60"
inkscape:label="GlyphLayer-6"
style="display:none">
<path
id="path2504"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.2798831,42.344329 -1.788237,-2.62666 m 5.6849659,2.71061 1.68052,-2.99468 m -0.86415,7.7836 2.48737,2.22776 m -7.4961669,-1.86125 -1.628071,2.89701 m -0.459984,-10.46938 -3.20880804,0.0465 m 6.30751604,-5.18654 -1.49624,-2.80208 m 6.8042139,4.48684 2.29403,-2.08597 M 4.4844861,46.269729 c -0.1778,-0.4572 -0.254,-1.2192 -0.1778,-1.8034 0.2286,-1.7018 1.9558,-2.7686 3.8354,-2.7686 2.0573959,0 3.9369959,1.4986 3.9369959,3.6068 0,2.1844 -1.7526,3.1242 -3.7083959,3.1242 -1.5494,0 -3.28216,-0.5917 -3.8862,-2.159 -0.62017,-1.60915 -1.105531,-2.19983 -0.8382,-5.715 0.231784,-3.04776 1.5748,-6.1976 5.2578,-6.1976 2.8701959,0 2.9971959,2.4892 4.4703959,2.4892 0.32475,0 0.62976,-0.11849 0.8693,-0.31847 m -10.6982489,7.57244 c -0.136746,-1.23048 -0.230563,-2.44871 0.100753,-3.54557 1.1938,-1.0922 2.8448,-1.6764 4.5212,-1.6764 3.5813959,0 6.7309959,2.7432 6.7309959,6.4008 0,3.429 -2.7432,5.842 -6.0959959,5.842 -1.016,0 -2.4892,-0.127 -3.5814,-0.5842 -3.9116,-1.6002 -4.44500004,-4.7244 -4.44500004,-8.3566 0,-3.8354 0.48260004,-6.5786 3.37820004,-8.89 1.2446,-0.9906 2.794,-1.7526 4.572,-1.7526 2.2097959,0 4.6481959,1.016 5.7403959,3.048 0.2032,0.381 0.2794,0.6096 0.2794,0.8636 0,0.44025 -0.19851,0.82492 -0.5023,1.07853"
sodipodi:nodetypes="ccccccccccccccccssssssscccssscscscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer61"
inkscape:label="GlyphLayer-7"
style="display:none">
<g
id="g7132"
transform="translate(55.6325,-132.405)"
style="display:inline">
<path
id="path2506"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -46.256879,165.44548 0.385075,2.59099 m -3.803936,1.48467 0.464304,-3.84092 m -5.426202,2.1747 1.343396,-2.95791 m -1.397001,0.92498 c 0.2032,-0.4064 0.7366,-0.6858 1.1938,-0.6858 0.0762,0 0.127,0 0.2032,0.0254 0.1778,0 0.3556,0.0508 0.5334,0.1524 0.0254,0.0254 0.0508,0.0254 0.0762,0.0508 0.8636,0.3302 1.7526,0.5842 2.6416,0.7112 0.4826,0.0508 0.9652,0.1016 1.4478,0.1016 1.3716,-0.0254 2.7432,-0.2794 4.0386,-0.7874 m -10.1346,0.4318 c -0.1778,0.3302 -0.2794,0.7366 -0.1524,1.0922 0.1016,0.3302 0.3302,0.6858 0.6604,0.8382 1.4478,0.6604 2.794,1.016 4.3942,1.1684 0.4064,0.0508 0.8382,0.0762 1.27,0.0508 0.5842,0 1.1684,-0.0254 1.7526,-0.1016 l 2.2098,-3.4798"
sodipodi:nodetypes="cccccccsccccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2508"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -45.527777,172.99387 -2.992625,-1.22465 m 4.811453,-1.72105 -3.371014,-1.65237 m 4.875466,-1.4854 -2.902923,-1.62012 m 1.95377,0.10984 c 0.352951,0.21265 0.61489,0.56788 0.679807,1.00607 0.0508,0.3302 -0.0254,0.635 -0.1778,0.9144 -1.1176,1.905 -2.1082,3.8608 -3.0988,5.842 -0.0254,0.0508 -0.0508,0.127 -0.0762,0.1778 m 2.672993,-7.94027 c -0.199445,-0.12016 -0.427953,-0.19479 -0.666393,-0.21313 -0.0762,0 -0.1524,0.0254 -0.2286,0.0254 -0.1778,0.0254 -0.347712,0.0892 -0.508,0.1778 -0.705759,0.39026 -1.537734,2.14968 -2.2098,3.4798 -0.789041,1.56163 -1.5494,3.0988 -2.159,4.7498"
sodipodi:nodetypes="cccccccccsccccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -48.925442,173.61979 -5.1816,1.8542"
id="path5744" />
<path
id="path5732"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -53.194174,173.82486 0.270568,3.39473 m -1.183437,-1.7456 c 0.0254,0.3556 0.127,0.7366 0.4064,0.9906 0.3048,0.2794 0.5842,0.4064 0.9906,0.4064 0.9906,0 1.9812,-0.2286 2.9718,-0.3556 m -4.3688,-1.0414 c -0.0254,-0.3556 0.1778,-0.7366 0.4064,-0.9906 0.2032,-0.254 0.6858,-0.4318 0.9906,-0.4318 0.7112,-0.0762 1.4224,-0.2032 2.1082,-0.254 0.209273,-0.019 0.418545,-0.0416 0.627818,-0.0651"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -49.974026,173.73249 8.160584,0.82707"
id="path7117" />
<path
id="path2510"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -41.813443,174.55955 c 0,-0.7874 -0.635,-1.397 -1.397,-1.397 -0.8636,0 -1.7272,0.1016 -2.6162,0.1778 l -3.0988,0.2794 c -0.349527,0.0318 -0.699055,0.0735 -1.048582,0.11271 m 8.160582,0.8271 c 0,0.8382 -0.5842,1.3716 -1.397,1.4224 -0.7112,0.0508 -1.4224,0.0508 -2.1082,0.127 -0.4826,0.0508 -0.9652,0.0762 -1.4478,0.127 l -2.9718,0.2794 m 2.105232,0.084 -0.225359,-3.43914 m 5.434047,2.99329 -0.334283,-3.29983"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2512"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -46.799224,177.4053 -3.305898,-0.49355 m 3.027749,2.63591 -3.488354,-0.24635 m 3.636952,3.39347 -3.459001,0.15068 m 0.649533,-6.33007 c -0.0762,0.4064 -0.1524,0.7874 -0.2032,1.1938 -0.2032,1.524 -0.381,3.048 -0.2794,4.5974 0.0508,0.7874 0.6096,1.4224 1.4224,1.4224 m 2.032,-7.493 c -0.2032,0.762 -0.3556,1.524 -0.4572,2.3114 -0.1778,1.2446 -0.254,2.5146 -0.1778,3.7592 0.0254,0.381 -0.1524,0.7366 -0.4064,0.9906 -0.254,0.2794 -0.635,0.4318 -0.9906,0.4318"
sodipodi:nodetypes="ccccccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer62"
inkscape:label="GlyphLayer-8"
style="display:none">
<g
id="g7136"
transform="translate(41.0871,-132.405)"
style="display:inline">
<path
id="path2516"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -36.335835,176.1215 -1.897223,-2.69645 m 1.674968,6.07397 -2.411113,2.19625 m 8.781065,-2.1504 2.501429,2.48331 m -2.599862,-6.24772 1.976684,-2.88613 m -4.297072,1.03437 -0.06518,1.14401 m -1.522769,-0.0779 0.04405,-1.13327 m 0.966429,1.0069 c 0.581045,0.008 1.076409,0.0275 1.307946,0.0468 1.4224,0.254 3.0988,1.1176 3.0988,2.8448 0,0.6096 -0.2032,0.9906 -0.4826,1.3462 -0.9906,1.27 -2.4892,1.6256 -4.0132,1.6256 -2.3876,0 -4.2164,-0.889 -4.2164,-2.7432 0,-0.6096 0.2032,-0.9652 0.5842,-1.4732 0.9906,-1.2954 1.8288,-1.651 3.1496,-1.651 0.195367,0 0.3878,0.001 0.571654,0.004 m -0.008,-0.37044 c 1.812222,-0.10354 3.070645,-0.67443 4.186195,-1.51321 1.778,0.9398 3.048,2.54 3.048,4.826 0,1.016 -0.254,1.8034 -0.889,2.7432 -1.7018,2.4892 -4.1402,3.0226 -6.1976,3.0226 -4.1148,0 -7.2644,-2.0828 -7.2644,-5.3594 0,-2.1082 1.27,-3.9624 2.7432,-5.0038 1.3667,0.88148 2.813242,1.28261 4.373605,1.28461"
sodipodi:nodetypes="ccccccccccccccscsscscccscsscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2514"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -32.649697,171.36862 -0.02244,3.70409 m 1.841662,-5.4071 3.462002,-0.0308 m -6.241727,-2.36093 0.05724,-3.25056 m -2.931965,5.42291 -3.256663,-0.033 m 5.729105,1.59911 -0.182425,3.98247 m 0.794425,-3.12762 c -1.3716,0 -3.175,-0.8382 -3.175,-2.413 0,-1.6256 1.27,-2.3368 2.7686,-2.3368 1.7526,0 3.3274,1.016 3.3274,2.54 0,1.651 -1.778,2.2098 -2.921,2.2098 m 0.05484,2.7272 c -1.439535,0.0156 -2.945871,-0.39571 -4.220443,-1.381 -1.14245,-0.88316 -1.8288,-2.2606 -1.8288,-3.9878 0,-3.2512 3.048,-4.9276 5.461,-4.9276 3.3782,0.0254 6.2738,2.2352 6.2738,5.4356 0,1.3462 -0.513914,2.45837 -1.3462,3.2512 -1.021431,0.97301 -2.633492,1.5911 -4.339357,1.6096"
sodipodi:nodetypes="cccccccccccsssccsscssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer63"
inkscape:label="GlyphLayer-9"
style="display:none">
<path
id="path2518"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 0.52832205,43.352189 3.00848005,0.0663 m 0.84233,3.30999 -3.2285,1.93601 m 7.806289,-1.33195 1.4099599,3.03073 m 0.44617,-7.34512 3.39837,0.0335 m -4.5031699,-8.22727 2.4628699,-2.2258 m -7.4947389,3.15886 -2.85009,-1.95062 m 4.44282,5.69629 -1.15234,3.49813 m 4.093009,-3.61056 1.6032699,3.62747 m 0.28791,-5.30822 c 0,0.5588 -0.1524,0.8128 -0.3302,1.2446 -0.4826,1.1938 -2.4891999,1.2446 -3.6321989,1.2446 -1.7526,0 -3.2258,-0.3556 -3.2258,-2.6162 0,-2.159 1.3462,-3.3782 3.7846,-3.3782 2.3621989,0 3.4035989,1.1176 3.4035989,3.5052 v 4.4958 c -0.1016,3.4544 0.0762,5.9182 -4.3941989,5.9182 -1.6256,0 -3.0226,-0.4064 -3.175,-2.3368 -0.0762,-0.635 0.0762,-1.1684 0.0762,-1.4732 0,-0.889 -0.6858,-1.5494 -1.5748,-1.5494 m 0,0 c -1.14300005,0 -1.32080005,1.4478 -1.32080005,2.3876 0,4.0386 2.00660005,5.7912 6.17220005,5.7912 6.6039989,0 7.0865989,-5.5372 7.0865989,-10.7442 0,-5.2578 -1.2446,-8.8138 -6.1721989,-8.8138 -4.064,0 -6.7056,2.413 -6.7056,6.223 0,3.9878 2.7686,5.3848 6.3754,5.3848 1.193799,0 2.463799,-0.2032 3.6321989,-0.7874 v -4.4958"
sodipodi:nodetypes="ccccccccccccccccccsssscscsccsssssscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer80"
inkscape:label="GlyphLayer-:"
style="display:none">
<g
id="g20685"
transform="translate(-302.033,-132.376)">
<path
id="path2638"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 302.26443,179.60363 3.85699,-0.0921 m -1.90868,1.55046 c 0.7366,0 1.4224,-0.6096 1.4224,-1.3716 0,-0.8636 -0.635,-1.4478 -1.4732,-1.4478 m 0.0508,2.8194 c -0.8382,0 -1.4732,-0.5842 -1.4732,-1.4478 0,-0.762 0.6858,-1.3716 1.4224,-1.3716"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2640"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 302.26443,174.16486 3.85699,-0.0921 m -1.90868,1.47743 c 0.7366,0 1.4224,-0.635 1.4224,-1.3716 0,-0.8636 -0.635,-1.4478 -1.4732,-1.4478 m 0.0508,2.8194 c -0.8382,0 -1.4732,-0.6096 -1.4732,-1.4732 0,-0.7366 0.6858,-1.3462 1.4224,-1.3462"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer81"
inkscape:label="GlyphLayer-;"
style="display:none">
<g
id="g7144"
style="stroke:#260605"
transform="translate(-46.3988,-132.376)"
>
<path
id="path2534"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 47.378818,180.26858 3.47545,0.62272 m -2.4267,2.81596 c -0.36131,-0.0959 -0.694779,-0.33083 -0.867938,-0.63867 -0.1778,-0.3302 -0.2794,-0.7366 -0.1524,-1.0922 0.1778,-0.4826 0.2794,-0.9652 0.381,-1.4732 0.0762,-0.4318 0.0762,-0.889 0.0508,-1.3208 -0.0254,-0.762 0.635,-1.4224 1.397,-1.4224 m -0.808462,5.94727 c 0.115683,0.0307 0.234219,0.0471 0.351262,0.0471 1.2954,0 1.6002,-1.5748 1.7526,-2.6162 0.1016,-0.6604 0.1524,-1.2954 0.127,-1.9558 -0.0254,-0.7874 -0.635,-1.3716 -1.4224,-1.4224"
sodipodi:nodetypes="cccccccccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2536"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 47.38693,174.85096 3.511142,-0.0794 m -1.662042,1.5152 c 0.7366,0 1.4224,-0.635 1.4224,-1.3716 0,-0.8636 -0.635,-1.4478 -1.4986,-1.4478 m 0.0762,2.8194 c -0.8382,0 -1.4732,-0.6096 -1.4732,-1.4732 0,-0.7366 0.6604,-1.3462 1.397,-1.3462"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer82"
inkscape:label="GlyphLayer-<"
style="display:none">
<path
id="path2646"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.7020586,48.144436 2.21157,-2.5311 m -6.94642,-1.20314 2.21157,-2.5311 m -2.21157,-2.5311 2.21157,2.5311 m 2.52328,-6.27352 2.21157,2.5311 m 0.3853594,-2.17578 c -0.1524,-0.3048 -0.5079994,-0.508 -0.8381994,-0.635 -0.1016,-0.0508 -0.2032,-0.0762 -0.3048,-0.0508 -0.1016,0 -0.1778,0 -0.254,0.0254 -0.2032,0 -0.3556,0.0254 -0.5334,0.1524 -2.3114,1.651 -4.47039,3.5306 -6.55319,5.461 -0.2794,0.254 -0.4064,0.6096 -0.4318,0.9906 0,0.3302 0.1778,0.762 0.4318,0.9906 l 1.3716,1.2192 c 1.7018,1.524 3.45439,3.0226 5.35939,4.2926 0.1778,0.127 0.4318,0.1778 0.6604,0.1778 0.1524,0 0.3048,-0.0254 0.4318,-0.0508 0.3556,-0.0762 0.6603994,-0.3556 0.8381994,-0.635 m -0.1778,-11.938 c 0.1778,0.3302 0.2794,0.7112 0.1524,1.0922 -0.127,0.3556 -0.330199,0.635 -0.6603994,0.8382 -0.3302,0.2032 -0.6096,0.4572 -0.9398,0.7112 -1.3462,1.0414 -2.6416,2.1336 -3.93699,3.2766 1.62559,1.4478 3.32739,2.794 5.05459,4.0894 0.2285994,0.127 0.5841994,0.5842 0.6349994,0.8382 0.0508,0.3302 0.0508,0.7874 -0.127,1.0922"
sodipodi:nodetypes="ccccccccccccscccccsccccsccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer83"
inkscape:label="GlyphLayer-="
style="display:none">
<g
id="g7140"
style="stroke:#260605"
transform="translate(-3.47506,-132.376)"
>
<path
id="path2524"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.474828,171.36788 -0.01566,3.15886 m 7.715972,-1.49115 c 0.0254,0.7874 -0.635,1.4224 -1.397,1.4224 -0.9144,0 -1.8288,-0.0254 -2.7432,-0.0508 -1.2446,-0.0254 -2.5146,-0.0508 -3.7592,-0.0508 -1.9558,0.0254 -3.8862,0.0508 -5.841998,0.0508 -0.7874,0 -1.397,-0.635 -1.4224,-1.397 m 15.163798,0.0254 c -0.0254,-0.7874 -0.6096,-1.397 -1.397,-1.397 -3.2004,0 -6.4008,-0.0762 -9.6266,-0.0762 -0.9144,0 -1.8034,0.0254 -2.717798,0.0254 -0.381,0 -0.7366,0.1524 -0.9906,0.4064 -0.254,0.254 -0.4318,0.6604 -0.4318,1.016"
sodipodi:nodetypes="cccsccsccssssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2526"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.525706,176.87368 -0.0065,3.31235 m -7.507864,-1.66404 c 0.0254,0.762 0.6604,1.4224 1.4224,1.4224 h 9.601198 1.3716 c 0.4572,0 0.9144,0 1.3716,0.0254 h 0.0762 c 0.7366,0 1.3208,-0.6858 1.3208,-1.397 m -15.163798,-0.0508 c 0,-0.3556 0.1778,-0.7366 0.4318,-0.9906 0.254,-0.254 0.6096,-0.4064 0.9906,-0.4064 0.914398,0 1.803398,-0.0254 2.717798,-0.0254 3.2258,0 6.4262,-0.1524 9.6266,0.0508 0.7874,0.0508 1.397,0.6096 1.397,1.4224"
sodipodi:nodetypes="cccscscsccssscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer84"
inkscape:label="GlyphLayer->"
style="display:none">
<path
id="path2648"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.5584181,48.144436 -2.21157,-2.5311 m 6.94643,-1.20314 -2.21157,-2.5311 m 2.21157,-2.5311 -2.21157,2.5311 m -2.52329,-6.27352 -2.21157,2.5311 m -0.38536,-2.17578 c 0.1524,-0.3048 0.508,-0.508 0.8382,-0.635 0.1016,-0.0508 0.2032,-0.0762 0.3048,-0.0508 0.1016,0 0.1778,0 0.254,0.0254 0.2032,0 0.3556,0.0254 0.5334,0.1524 2.3114,1.651 4.4704,3.5306 6.5531999,5.461 0.2794,0.254 0.4064,0.6096 0.4318,0.9906 0,0.3302 -0.1778,0.762 -0.4318,0.9906 l -1.3715999,1.2192 c -1.7018,1.524 -3.4544,3.0226 -5.3594,4.2926 -0.1778,0.127 -0.4318,0.1778 -0.6604,0.1778 -0.1524,0 -0.3048,-0.0254 -0.4318,-0.0508 -0.3556,-0.0762 -0.6604,-0.3556 -0.8382,-0.635 m 0.1778,-11.938 c -0.1778,0.3302 -0.2794,0.7112 -0.1524,1.0922 0.127,0.3556 0.3302,0.635 0.6604,0.8382 0.3302,0.2032 0.6096,0.4572 0.9398,0.7112 1.3462,1.0414 2.6416,2.1336 3.937,3.2766 -1.6256,1.4478 -3.3274,2.794 -5.0546,4.0894 -0.2286,0.127 -0.5842,0.5842 -0.635,0.8382 -0.0508,0.3302 -0.0508,0.7874 0.127,1.0922"
sodipodi:nodetypes="ccccccccccccscccccsccccsccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer85"
inkscape:label="GlyphLayer-?"
style="display:none">
<g
id="g20693"
transform="translate(-341.677,-132.376)">
<path
id="path2650"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 345.81941,182.29862 2.88039,-0.023 m -1.39716,1.30097 c 0.7112,0 1.3208,-0.5588 1.3208,-1.2954 0,-0.7112 -0.6096,-1.5494 -1.3716,-1.5494 m 0.0508,2.8448 c -0.762,0 -1.3716,-0.8128 -1.3716,-1.5494 0,-0.7366 0.5842,-1.2954 1.3208,-1.2954"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2652"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 346.13011,170.37083 -2.48399,1.80578 m 1.72209,-2.71029 -3.05826,1.27368 m 3.58455,-2.14073 -2.21732,-2.31855 m 5.50664,1.53028 0.0965,-3.06105 m 1.47494,4.43507 2.97336,-0.55222 m -3.44257,2.31385 1.47833,2.5598 m -3.24551,1.81512 -2.36685,-1.89157 m -0.81345,5.17542 3.15495,-0.71203 m -1.08473,1.73651 c -0.14367,0.0555 -0.2994,0.0859 -0.46175,0.0859 -1.3208,0 -1.6256,-1.8542 -1.6256,-2.8702 0,-1.397 0.5588,-2.7686 1.524,-3.7846 1.1176,-1.1684 3.4798,-1.5494 4.0132,-2.2352 0.1778,-0.2286 0.2032,-0.5588 0.2032,-0.8382 0,-1.7018 -0.635,-2.4384 -2.3368,-2.4384 -1.27,0 -3.6576,0.3556 -3.6576,2.0574 0,0.0508 0.6604,0.4572 0.6604,1.1684 0,0.3302 -0.1397,0.65405 -0.3683,0.89535 m 2.04925,7.95956 c 0.48572,-0.18744 0.83365,-0.66066 0.83365,-1.20951 0,-0.5334 -0.3302,-0.9906 -0.3302,-1.5748 -0.0254,-4.0132 5.7404,-1.8034 5.7404,-6.9088 0,-3.0734 -1.8288,-4.9784 -4.8768,-4.9784 -2.7686,0 -6.2992,1.2446 -6.2992,4.572 0,1.0922 0.7112,2.54 1.9812,2.54 0.3556,0 0.6731,-0.15875 0.9017,-0.40005"
sodipodi:nodetypes="cccccccccccccccccsscsssssccscssssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer86"
inkscape:label="GlyphLayer-@"
style="display:none">
<g
id="g7163"
transform="translate(-97.1195,-132.376)">
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 98.891181,174.73257 c 2.467999,-4.85296 5.186529,-10.04075 10.589989,-8.67696 7.94223,2.00456 6.73425,7.51417 4.47914,11.34096 -1.93853,3.28958 -3.93917,-3.94548 -5.5387,-7.78998"
id="path7150"
sodipodi:nodetypes="cssc" />
<path
id="path2552"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 108.53365,176.72601 1.65981,0.20722 m -2.30188,-2.62048 1.65228,-0.27328 m -1.28801,3.72895 2.49459,2.396 m -5.22102,-3.79991 -3.11068,0.43047 m 4.64849,-7.39939 0.53789,3.24771 m 0.23229,-0.24271 c -1.5748,0.4572 -2.5908,1.8796 -2.5908,3.5052 0,1.524 0.7112,2.54 2.3114,2.54 0.8636,0 1.27,-0.8382 1.27,-1.6002 0,-0.2032 -0.0254,-0.5588 -0.0508,-1.016 -0.0508,-0.4064 -0.0762,-0.8128 -0.1016,-1.2192 -0.127,-1.0414 -0.381,-2.0828 -0.8382,-2.2098 m 0.5842,-2.794 c -3.302,0.1016 -5.8674,3.0988 -5.8674,6.3246 0,2.9718 1.9558,5.207 5.0038,5.207 1.524,0 2.7178,-0.8636 3.3782,-2.0574 -1.713,-1.33836 -2.70347,-7.68931 -2.5146,-9.4742"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2554"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 114.68123,179.93199 2.60624,1.3472 m -8.21947,1.78531 0.34882,3.40323 m -7.63548,-6.26749 -2.553548,1.76428 m 4.531828,-12.71957 -2.07689,-2.32793 m 9.71812,1.19026 1.57731,-2.5209 m 0.51802,9.48448 2.99242,0.82095 m -3.9899,0.6468 0.42204,2.95914 m -1.18603,-3.68197 -2.69464,0.50878 m 2.14244,-7.20767 -3.0814,0.13817 m 1.6159,-0.63907 c -0.5588,0 -1.16172,0.42703 -1.2954,0.9906 -0.23802,1.00341 0.35956,8.61115 2.5146,9.4742 0.44302,0.17742 0.9144,0.3302 1.3716,0.3302 3.0226,0 4.2672,-3.2258 4.2672,-5.7912 0,-4.9022 -2.4638,-8.9662 -7.7978,-8.9662 -6.1722,0 -11.049,5.1816 -11.049,11.2522 0,4.2164 2.4892,8.89 6.858,9.9314 1.143,0.2794 2.3876,0.3556 3.5306,0.3556 3.175,0 5.588,-0.7366 7.7724,-3.1496 0.4572,-0.508 1.2192,-1.397 1.2192,-2.1082 0,-0.45049 -0.2375,-0.84397 -0.5905,-1.08168 m -6.8009,-11.23732 c 0.3556,0 0.7112,0.127 0.9652,0.381 1.0922,1.016 0.0254,7.7216 1.5748,7.7216 1.3208,0 1.6256,-2.1336 1.6256,-3.1242 0,-3.3528 -1.3208,-6.2484 -5.08,-6.2484 -4.7244,0 -8.382,3.937 -8.382,8.5852 0,2.7686 1.397,5.9436 4.0894,7.0866 1.0668,0.4572 2.4892,0.4826 3.6576,0.4826 0.635,0 1.2954,0 1.9304,-0.1016 1.7526,-0.2794 3.6068,-1.6002 4.5212,-3.1242 0.2286,-0.381 0.6604,-0.6604 1.1176,-0.6604 0.28611,0 0.5569,0.0881 0.7811,0.23912"
sodipodi:nodetypes="cccccccccccccccccccsssssscscscccsssscscssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:label="GlyphLayer-A"
inkscape:groupmode="layer"
id="layer1"
style="display:none">
<g
id="g4770"
transform="translate(96.0981,-77.4)">
<path
id="path2236"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path3564"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path2238"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="GlyphLayer-B"
style="display:none">
<g
id="g5196"
transform="translate(80.4243,-77.4)">
<path
id="path2242"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -76.956417,125.71059 c -0.17897,-1.52124 -0.358545,-3.04073 -0.4318,-4.572 m 2.9464,4.9022 c -0.214603,-1.95734 -0.350735,-3.9952 -0.508,-5.6642"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="M -77.388216,121.13859 -77.566,118.548"
id="path5975"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path2244"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -75.0117,118.501 c -0.0743,-1.579 -0.3463,-3.917 -0.4969,-5.49 m -2.0574,5.537 c -0.1099,-1.661 -0.2261,-3.415 -0.3556,-4.852"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -77.9216,113.696 -1.752616,-1.168"
id="path5978"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path2246"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -75.906849,110.34006 0.398233,2.93511 m -3.172987,0.89715 -0.689078,-2.87099 m 6.807827,2.55856 1.510808,-2.57664 m -1.164381,4.83946 3.12892,1.17081 m -4.906534,0.0422 0.172546,1.50403 m -5.852722,-6.31175 c 0,0.6858 0.5334,1.27 1.2446,1.27 0.1778,0 0.3556,-0.0508 0.508,-0.1016 l 2.413,-0.6858 h 0.508 c 1.651,0 3.4036,0.127 3.4036,2.4384 0,1.778 -1.9558,2.1844 -3.5306,2.286 m -4.5466,-5.207 c 0,-1.6764 3.3528,-2.032 4.4196,-2.032 2.3622,0 5.4102,0.5334 5.9182,3.302 0.1016,0.5588 0.254,1.143 0.254,1.8288 0,1.0414 -0.3302,1.8542 -0.8636,2.5146 l -5.145124,0.13159"
sodipodi:nodetypes="cccccccccccsccssccscscc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -75.0117,118.501 -3.875116,1.44379"
id="path6598" />
<path
id="path2248"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -77.668749,125.3993 -0.135633,3.04517 m 7.302743,-3.4708 1.706295,2.66916 m -0.21355,-5.08825 2.767335,-0.36046 m -5.121844,-1.56248 0.481672,-2.76935 m -4.437986,0.12996 0.395893,2.79433 m -3.240238,-2.5471 0.370406,3.14919 m -1.093161,-1.44388 c 0,-0.9144 0.5842,-1.143 1.3208,-1.397 l 2.474876,-0.27485 5.145124,-0.13155 c 2.0066,0.7112 3.606799,2.2352 3.606799,4.6736 0,4.3434 -3.759199,5.715 -7.492999,5.715 -1.2954,0 -2.5908,-0.0762 -3.8608,-0.381 -0.5334,-0.127 -0.9144,-0.6604 -0.9144,-1.2446 m -0.2794,-6.9596 c 0,0.6858 0.5588,1.2192 1.2446,1.2192 0.1016,0 0.1778,0 0.254,-0.0254 l 2.4384,-0.762 c 0.6858,-0.127 1.3462,-0.1778 1.905,-0.1778 1.9304,0 4.191,0.635 4.191,2.8702 0,2.8448 -3.5306,2.9718 -5.588,2.9718 l -2.5146,-0.3302 c -0.127,-0.0254 -0.2286,-0.0254 -0.3302,-0.0254 -0.762,0 -1.3208,0.5334 -1.3208,1.2192"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
sodipodi:nodetypes="ccccccccccccccccsscccsccssccsc"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="GlyphLayer-C"
style="display:none">
<path
id="path2252"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.18363,44.903524 2.68614,0.27749 m -3.44404,1.52908 2.22586,1.89461 m -4.51609,-0.4729 0.50505,2.79562 m -3.55362,-3.83715 -1.99998,2.2056 m 0.65115,-5.2591 -2.92024,0.93181 m 3.13009,-4.27963 -2.77633,-0.84011 m 3.81476,-1.41564 -2.46884,-1.64455 m 4.0609,0.0288 -2.1311,-2.26136 m 3.80083,1.45457 -0.56549,-2.92167 m 1.96856,3.61491 3.29609,-0.89161 m -3.56942,2.30907 3.29117,1.00307 m -1.86914,0.19266 c 0.13954,0.0506 0.28905,0.0781 0.44334,0.0781 1.1684,0 1.5748,-1.3716 1.5748,-2.3368 0.0254,-2.2352 -2.0828,-3.9116 -4.2164,-3.9116 -4.699,0 -7.7978,5.5626 -7.7978,9.779 0,4.064 2.3622,8.0264 6.8072,8.0264 2.5908,0 4.9276,-1.651 5.8674,-4.0132 0.1524,-0.381 0.3302,-0.8128 0.3302,-1.2446 0,-0.58929 -0.39015,-1.08103 -0.91035,-1.25416 m -2.09839,-5.12312 c -0.50367,-0.18257 -0.87746,-0.66592 -0.87746,-1.24272 0,-0.4064 0.2286,-0.7112 0.2286,-0.8636 0,-0.8382 -0.7366,-1.397 -1.524,-1.397 -0.8382,0 -1.651,0.4318 -2.286,0.9398 -1.8288,1.4478 -2.8702,3.8354 -2.8702,6.1468 0,2.5146 1.2192,5.3594 4.1656,5.3594 1.651,0 3.1496,-1.2192 3.5306,-2.8194 0.1524,-0.635 0.6604,-1.0668 1.3208,-1.0668 0.14224,0 0.28041,0.0234 0.41045,0.0666"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="GlyphLayer-D"
style="display:none">
<g
id="g5201"
transform="translate(51.1068,-77.4)">
<path
id="path2254"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -47.5862,124.549 3.4098,-0.563 m -3.7975,-4.794 3.3128,-0.63 m -3.4832,-4.011 3.1498,-0.447 m 0.7078,11.683 c -0.127,-0.356 -0.1778,-0.584 -0.2286,-0.965 l -0.0254,-0.127 c -0.1524,-0.788 -0.1778,-1.55 -0.254,-2.312 -0.3048,-3.073 -0.4826,-6.172 -0.5842,-9.245 m -1.6002,12.395 c -0.1016,-0.534 -0.1524,-1.042 -0.2032,-1.55 -0.3556,-3.403 -0.7112,-6.959 -0.762,-10.414"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -47.94433,113.56943 -2.271663,-0.72861"
id="path7823" />
<path
id="path2256"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -47.92616,125.05812 -0.89726,2.81117 m 7.20656,-2.79036 0.6612,3.14863 m 2.39533,-10.12695 3.2317,-0.52057 m -8.38038,-3.99827 0.38362,-3.11106 m -6.552902,0.69688 0.495072,2.99811 m -0.832772,-1.32488 c 0.14432,0.56196 0.658332,0.98261 1.154062,0.98261 0.254,0 0.6604,-0.127 1.1176,-0.254 l 2.5654,-0.4318 c 3.0226,0 5.5626,0.5588 6.8326,3.6322 0.381,0.9398 0.5588,1.8542 0.5588,3.1496 0,4.3434 -2.159,5.8674 -6.2992,5.8674 l -2.6924,-0.254 c -0.3556,-0.0762 -0.6604,-0.1524 -0.9398,-0.1524 -0.7366,-0.0254 -1.2954,0.5588 -1.2954,1.27 m -1.001662,-13.80961 c -0.0258,-0.10029 -0.0397,-0.20508 -0.0397,-0.31279 0,-1.1684 1.676402,-1.651 3.251202,-1.8288 0.0762,-0.0254 1.8796,-0.127 2.0828,-0.127 4.1656,0 7.3406,1.524 8.9154,5.715 0.4318,1.143 0.5842,2.159 0.5842,3.556 0,5.9436 -3.1496,8.509 -8.6868,8.509 -0.9906,0 -2.7432,-0.1016 -3.7338,-0.3556 -0.9652,-0.254 -1.3716,-0.762 -1.3716,-1.3462"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer6"
inkscape:label="GlyphLayer-E"
style="display:none">
<g
id="g5207"
transform="translate(34.6569,-77.4)">
<path
id="path2260"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -27.574674,118.70793 0.216715,2.9622 m 2.058268,-3.49585 0.395137,3.4975 m -4.954275,-2.99797 0.226113,3.10372 m 6.085749,-1.83274 c 0.0254,0.3048 -0.127,0.6604 -0.3556,0.889 -0.2032,0.2032 -0.5842,0.3556 -0.889,0.3556 -0.1778,0.0254 -0.3556,0.0254 -0.5334,0.0508 -0.8636,0.127 -1.7526,0.127 -2.6416,0.1524 -0.6604,0.0254 -1.3462,0.0762 -2.0066,0.0762 m 6.4262,-1.524 c -0.0254,-0.3048 -0.1016,-0.635 -0.3556,-0.8636 -0.1778,-0.1778 -0.508,-0.381 -0.7874,-0.3556 h -0.1016 c -0.4826,0 -0.9906,0.0508 -1.524,0.0762 -0.9906,0.0508 -2.0066,0.0762 -2.9972,0.1524 -0.2794,0.0254 -0.5588,0.0254 -0.8128,0.0254"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -30.125566,118.97959 -0.626489,-0.53824 -0.824895,-4.63557 11.859627,-1.53707"
id="path8463" />
<path
id="path8461"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -33.341685,118.41495 3.555344,-0.32552 m 10.069018,-5.82072 c -0.126761,-0.5642 -0.626271,-0.95992 -1.238844,-0.95992 -0.5334,0 -1.1938,0.2286 -1.7526,0.3048 h -0.0254 c -1.6256,0.2286 -2.9464,0.2286 -4.5974,0.2286 -1.7526,0 -3.5306,-0.1524 -5.2832,-0.1524 -0.508,0 -1.0922,0.5588 -1.143,1.0414 -0.0762,0.1778 -0.127,0.3556 -0.127,0.5588 0,0.1016 0.0254,0.2032 0.0508,0.2794 0.583342,1.91206 0.990949,3.71042 1.209633,5.57971 m 1.890149,-4.60465 -2.983037,0.27404 m 2.978103,-0.4169 -3.078359,-2.22852 m 3.856882,2.54583 -0.428347,-3.33259 m 8.828651,2.81551 -0.495918,-2.99928 m 2.338887,1.06617 c 0.02041,0.0908 0.03116,0.18605 0.03116,0.28468 0,0.5588 -0.3556,1.0414 -0.9144,1.1938 -1.8288,0.4826 -3.8354,0.5588 -5.7658,0.5588 h -1.4478 c -1.0414,0 -2.1336,0 -3.2004,-0.0254 0.4318,1.4986 0.7112,3.0988 0.889,4.699"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
id="path2262"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -20.827219,125.00585 0.276809,2.89663 m -9.287822,-2.27414 0.02358,2.71907 m -0.190981,-2.64855 -2.681177,2.27942 m 2.683002,-2.4582 -2.727854,0.11603 m -0.203486,-5.53571 3.132252,-0.2059 m -0.322667,-0.91491 0.1524,2.4892 c 0,1.4478 -0.0254,2.8956 -0.1778,4.3434 2.286,-0.0762 4.5466,-0.1524 6.8326,-0.3556 0.8128,-0.0762 1.6002,-0.2032 2.413,-0.2032 0.6604,0 1.2446,0.5842 1.2446,1.2446 m -12.963571,-7.34889 c 0.124108,1.06087 0.187367,2.14458 0.187367,3.28489 0,1.2192 -0.127,2.4384 -0.2286,3.6576 -0.0254,0.3302 -0.1524,0.6604 -0.1524,0.9906 0,0.6604 0.6096,1.2446 1.27,1.2446 1.3716,0 10.541,-0.381 11.1506,-0.6858 0.4064,-0.2032 0.7366,-0.6604 0.7366,-1.143"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer7"
inkscape:label="GlyphLayer-F"
style="display:none">
<g
id="g5216"
transform="translate(18.6509,-77.4)">
<path
id="path2272"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -16.702655,127.62845 3.257877,-0.18244 m -3.445539,-3.33195 3.248961,-0.0442 m -3.271894,-1.78979 3.317885,-0.046 m -1.622781,6.29592 c -0.7874,0 -1.27,-0.5842 -1.2954,-1.3208 -0.0762,-1.9558 -0.127,-3.937 -0.1524,-5.9182 m 1.4478,7.239 c 0.7112,0 1.3208,-0.6096 1.3208,-1.3208 -0.0254,-1.905 -0.0762,-3.8354 -0.127,-5.7404"
sodipodi:nodetypes="cccccccccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -14.024346,121.46879 7.6707993,-1.5748"
id="path10305" />
<path
id="path10302"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -9.7075116,118.25764 0.130784,3.44829 m 2.1977173,-3.50906 0.3793033,3.00936 m -5.023825,-2.71956 0.130784,3.21926 m 5.5392014,-1.81194 c 0,-0.6604 -0.4318,-1.4224 -1.1938,-1.4224 h -0.1016 c -2.3622004,0 -4.2925994,0.3048 -6.4261994,0.3302 m 7.7215994,1.0922 c 0,0.4572 -0.4064,0.9398 -0.8128,1.0922 -0.8889999,0.3556 -5.6387994,0.4826 -6.8579994,0.4826"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -14.024346,121.46879 -3.4798,-1.4478"
id="path10917"
sodipodi:nodetypes="cc" />
<path
id="path10291"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -17.504146,120.02099 c 0,0.7112 0.3556,1.0922 0.8382,1.27 l 2.6416,0.1778 m -3.4798,-1.4478 c 0,-0.4572 0.381,-0.889 0.8128,-1.0922 l 2.6162,-0.127 m -2.99462,2.75674 -0.03996,-2.78979"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
id="path2268"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -13.8095,115.735 -3.3242,0.06 m 3.0586,3.007 c -0.0254,-1.702 -0.0254,-3.404 -0.0762,-5.106 m -2.54,5.233 c -0.006,-1.866 -0.133,-3.701 -0.127,-5.791"
sodipodi:nodetypes="cccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2266"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -4.600268,110.43393 0.7875741,2.65961 m -4.6638326,-2.07677 0.4181004,2.95978 m -5.1675179,-0.09 0.330889,-2.94339 m -4.708684,2.1403 0.402277,-2.56495 m -0.709084,1.34904 c 0,-0.6858 0.5588,-1.27 1.2192,-1.27 0.8382,0 2.0574,0.381 2.9718,0.508 1.0414,0.1524 2.1336,0.1778 3.174999,0.1778 1.0160005,0 2.0066005,-0.0254 2.9972004,-0.1778 0.889,-0.127 2.159,-0.5334 2.9464,-0.5334 0.6858,0 1.1938,0.5842 1.2192,1.27 m -14.5287994,0.0254 c 0,0.7112 0.4572,1.0414 1.0922,1.27 l 2.667,0.5588 c 1.2192,0.127 2.4638,0.2032 3.682999,0.2032 1.5494005,0 6.3500004,-0.254 6.9088004,-1.3716 0.1016,-0.2032 0.1778,-0.4318 0.1778,-0.6858"
sodipodi:nodetypes="cccccccccscscsccccssc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer8"
inkscape:label="GlyphLayer-G"
style="display:none">
<g
id="g5220"
style="stroke:#260605"
transform="translate(2.60549,-77.4)"
>
<path
id="path2278"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.572743,123.26891 3.241644,-0.0575 m -3.255878,1.40391 2.249101,2.20041 m -7.010403,-1.98454 -2.187884,2.6116 m 0.48814,-8.52793 -3.533381,-0.0903 m 7.52447,-5.71485 -0.401429,-3.04881 m 2.217031,4.89228 3.313396,1.01556 m -2.010784,0.4904 c -0.429203,-0.20654 -0.747435,-0.63364 -0.747435,-1.13711 0,-0.3048 0.1778,-0.5842 0.2032,-0.8636 0,-1.2192 -0.8382,-1.6764 -1.9558,-1.6764 -3.683,0 -4.9784,3.8354 -4.9784,6.9342 0,1.4732 0.5334,4.3942 1.7018,5.3594 0.7112,0.5842 1.9812,0.7112 2.8448,0.7112 1.3208,0 2.7686,-0.4826 2.7686,-2.032 0,-0.3556 -0.1778,-0.635 -0.2286,-0.9398 m 0.391835,-6.35589 c 0.177084,0.0852 0.373057,0.13289 0.573365,0.13289 1.0922,0 1.4732,-1.3716 1.4732,-2.2606 0,-2.5146 -2.0828,-4.1402 -4.5212,-4.1402 -5.334,0 -7.5692,4.9784 -7.5692,9.652 0,2.1844 0.7874,5.7658 2.5654,7.1882 1.2446,0.9652 2.8702,1.3462 4.445,1.3462 2.8448,0 5.4356,-1.4732 5.4356,-4.6228 0,-0.3302 -0.0508,-0.7366 -0.1524,-1.1176"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccccccccccscsscssccsssscssc"
inkstitch:reverse_rails="none" />
<path
id="path2276"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10.939545,119.74258 0.119988,3.41711 m -2.655323,-3.34287 0.03107,3.47763 m -3.703261,-3.29875 -0.0381,3.29877 m 7.159613,-1.97804 c 0,-0.9144 -0.6096,-1.2446 -1.4224,-1.2446 -0.254,0 -0.4826,0 -0.7366,0.0254 -1.524,0.1524 -3.048,0.1778 -4.572,0.1778 -0.6858,0 -1.3208,0.6096 -1.3208,1.27 m 8.0518,-0.2286 c 0,0.9398 -0.5842,1.2192 -1.397,1.3208 l -2.6416,0.1778 c -0.889,0.0254 -1.6764,0.0508 -2.032,0.0508 -0.9144,0 -1.9812,-0.1016 -1.9812,-1.3208"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccccsssccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer9"
inkscape:label="GlyphLayer-H"
style="display:none">
<g
id="g5229"
style="stroke:#260605"
transform="translate(-12.7424,-77.4)"
>
<path
id="path2282"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.988337,111.33207 2.635251,-0.26482 m -2.892451,2.40374 3.402606,-0.52647 m -3.390705,5.44156 3.334149,-0.44715 m -1.550621,-7.34134 c 0.762,0 1.4224,0.6604 1.4224,1.4224 0,2.2098 -0.0508,4.4196 -0.0508,6.6294 m -1.3716,-8.0518 c -0.7874,0 -1.3716,0.6604 -1.397,1.4224 -0.0508,1.8796 -0.0762,3.7846 -0.0762,5.6642 v 1.4478"
sodipodi:nodetypes="cccccccscccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 14.053366,119.13199 1.6764,9.2456"
id="path12153" />
<path
id="path2284"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 14.272886,127.81083 2.97304,-0.1471 m -3.201434,-2.31036 3.310924,0.0155 m -3.659515,-3.45412 3.570026,0.0737 m -1.536161,6.38914 c 0.7874,0 1.397,-0.635 1.397,-1.397 0,-1.8288 -0.1524,-3.683 -0.2032,-5.5118 m -1.1938,6.9088 c -0.8382,0 -1.3716,-0.5842 -1.4224,-1.397 -0.127,-1.8288 -0.2286,-3.683 -0.2286,-5.5372"
sodipodi:nodetypes="cccccccscccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path12149"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 23.248308,117.64297 0.102177,3.60011 m -3.564231,-3.18752 0.09705,3.34163 m -5.38028,-2.453 -0.0061,2.70686 m -1.103958,-1.47766 c 0,-0.508 0.254,-0.8128 0.6604,-1.0414 l 2.8448,-0.4826 c 0.1778,-0.0254 0.3556,-0.0254 0.508,-0.0508 l 6.6294,-0.635 m -10.6426,2.2098 c 0,0.4572 0.254,0.9652 0.6858,1.27 l 2.8448,0.0254 6.731,-0.6604 c 0.127,0 0.2794,0 0.4572,-0.0254"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
id="path2288"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 23.801201,117.39239 3.163571,-0.0361 m -3.087688,-3.67212 3.386985,-0.0113 m -2.807253,-3.43163 2.262473,-0.026 m -0.981923,-0.22725 c 0.635,0 1.3208,0.635 1.3208,1.27 0,1.8796 -0.2286,3.8608 -0.2032,5.7912 v 0.8636 m -1.1176,-7.9248 c -0.5588,0 -1.016,0.2032 -1.3208,0.6858 -0.3302,0.5334 -0.381,5.1562 -0.381,6.0706 v 1.2192"
sodipodi:nodetypes="cccccccsccccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2290"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 24.976574,128.12898 2.60627,-0.21919 m -3.334757,-3.29239 3.277554,-0.17281 m -3.570331,-3.12426 3.199105,-0.28093 m -0.934449,7.43979 c -0.6096,0 -1.27,-0.4064 -1.397,-1.0414 -0.4318,-2.159 -0.6096,-4.4196 -0.7112,-6.6548 m 2.1082,7.6962 c 0.7366,0 1.3716,-0.6858 1.3716,-1.4224 0,-0.3048 -0.1016,-0.6604 -0.1524,-0.9906 -0.3048,-1.905 -0.4318,-3.81 -0.508,-5.7404 m 0.508,5.7404 -0.0254,-0.2286 c 0,0.0762 0.0254,0.1524 0.0254,0.2286 z"
sodipodi:nodetypes="cccccccsccsccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2286"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 26.626153,117.76019 0.0493,2.90506 m -2.639887,-2.70166 2.8194,-0.0508 c 0.4826,0.254 0.8128,0.8382 0.8128,1.3462 m -3.556,1.524 2.8194,-0.4572 c 0.4318,-0.2032 0.7366,-0.5334 0.7366,-1.0668"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer10"
inkscape:label="GlyphLayer-I"
style="display:none">
<g
id="g5237"
style="stroke:#260605"
transform="translate(-28.3837,-77.4)"
>
<path
id="path2065"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 29.945126,110.58701 0.247488,2.82272 m 0.950771,-3.05508 0.227846,3.15921 m -1.745285,-1.59547 c 0,-0.635 0.7112,-1.1176 1.2954,-1.1684 0.293607,-0.0245 0.590042,-0.0499 0.888397,-0.075 m -2.183797,1.24336 c 0,0.6096 0.4826,1.397 1.1938,1.397 0.3302,0 0.6604,0 1.016,-0.0254"
inkstitch:satin_column="True"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 31.835746,113.28995 4.9276,-1.4224"
id="path2673" />
<path
id="path2294"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 33.016364,113.39105 -0.116472,-2.93303 m 3.863454,1.40953 c 0,-0.635 -0.4572,-1.397 -1.1684,-1.397 -1.2509,0 -2.534911,0.0993 -3.785203,0.20444 m 4.953603,1.19256 c 0,0.6858 -0.6858,1.1176 -1.2954,1.1684 l -0.9144,0.0762 -2.7178,0.1778"
sodipodi:nodetypes="cccsccscc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
id="path2296"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 31.401247,125.10275 3.012633,-0.23471 m -3.310885,-5.98759 2.968223,-0.16986 m -2.793002,-4.73722 3.217121,-0.20374 m -2.659591,-0.47964 c -0.4318,2.2098 -0.4826,5.6388 -0.4826,7.1628 0,1.778 0.127,3.6322 0.4572,5.4356 m 2.7432,-12.7762 c -0.127,0.3302 -0.254,0.7112 -0.3048,1.0414 -0.3048,2.0574 -0.3302,4.2164 -0.3302,6.2992 0,1.8034 0.127,3.4544 0.508,5.207"
sodipodi:nodetypes="cccccccscccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 34.426546,125.65979 -5.2578,1.4478"
id="path3298" />
<path
id="path2298"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 36.541696,125.48467 0.343903,2.49203 m -4.049429,-2.36202 0.121697,2.86885 m -3.264206,-2.5449 0.12275,2.46163 m -0.647665,-1.29267 c 0,0.762 0.508,1.397 1.2954,1.397 0.9652,0 5.1562,-0.254 5.9182,-0.5334 0.4064,-0.1524 0.7874,-0.5842 0.7874,-1.0668 m -8.001,0.2032 c 0,-0.635 0.7112,-1.143 1.2954,-1.1684 0.4572,-0.0254 0.889,-0.0254 1.3462,-0.0508 l 2.6162,-0.2286 c 0.4826,-0.0508 0.9652,0 1.4478,-0.127 l 0.1016,-0.0254 c 0.7366,0 1.1938,0.7366 1.1938,1.397"
sodipodi:nodetypes="cccccccsccccccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer11"
inkscape:label="GlyphLayer-J"
style="display:none">
<g
id="g5243"
style="stroke:#260605"
transform="translate(-37.7864,-77.4)"
>
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 45.527534,113.31539 -3.1496,-1.3462"
id="path3915" />
<g
id="g5187"
style="stroke:#260605"
>
<path
id="path2304"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 40.168133,119.91939 c -1.5748,0 -1.524,1.778 -1.524,2.921 0,2.9972 1.9304,5.715 5.1308,5.715 3.7338,0 5.334,-3.0988 5.334,-6.4516 0,-2.8702 -0.2794,-6.096 -0.9144,-8.9154 m -8.0264,6.731 c 0.6096,0 1.2446,0.6604 1.2446,1.27 0,0.5842 -0.1016,1.1684 -0.1016,1.7272 0,1.524 0.7874,2.9972 2.5146,2.9972 2.1844,0 2.6416,-2.1082 2.6416,-3.8608 0,-1.8034 -0.127,-3.6068 -0.381,-5.4102 -0.127,-0.889 -0.5588,-2.5146 -0.5588,-3.3274 m 3.002167,0.55347 -3.095593,0.0737 m 3.857961,9.33058 -3.076885,-0.51076 m 0.451988,5.10965 -1.664759,-2.57443 m -4.636084,2.27311 2.224947,-2.24294 m -3.878707,-4.82728 3.010421,0.34179"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2302"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 50.291941,110.55168 0.02098,2.68983 m -3.797513,-2.79437 0.02209,3.11424 m -3.490118,-2.84386 0.02666,2.65792 m -0.696107,-1.40625 c 0,-0.4572 0.4064,-0.9398 0.8382,-1.0922 0.7366,-0.2794 5.334,-0.381 6.3754,-0.381 0.8382,0 1.3208,0.635 1.3208,1.4224 m -8.5344,0.0508 c 0,0.7112 0.4826,1.4478 1.2446,1.4478 h 0.1016 c 0.6096,-0.0508 1.1938,-0.0762 1.8034,-0.1016 l 2.667,-0.127 c 0.4572,0 0.9398,-0.0254 1.397,-0.0508 0.635,-0.0254 1.3208,-0.5588 1.3208,-1.2192"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer12"
inkscape:label="GlyphLayer-K"
style="display:none">
<g
id="g5183"
style="stroke:#260605"
transform="translate(-51.6795,-77.4)"
>
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 55.610545,118.75099 3.29329,0.56224 6.673634,8.66376"
id="path4541" />
<path
id="path2312"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 63.953691,128.35086 2.049391,-1.89786 m -5.318937,-1.97758 2.390878,-1.8151 m -5.173943,-1.8773 2.365716,-2.04612 m -2.42105,1.58889 c 0.0762,0.0762 0.127,0.1778 0.2032,0.254 l -0.2032,-0.254 m 7.731723,7.6512 c -0.250898,0.22892 -0.581371,0.3752 -0.899123,0.3752 -0.3302,0 -0.7112,-0.1524 -0.9398,-0.4064 -2.1844,-2.413 -3.8862,-5.1054 -5.8928,-7.62 m 7.731723,7.6512 c 0.2505,-0.22854 0.421677,-0.53946 0.421677,-0.8694 0,-0.381 -0.127,-0.7366 -0.381,-1.0414 -0.8636,-1.0414 -1.7526,-2.0066 -2.5654,-3.0734 l 0.2286,0.3048 c -1.0922,-1.3716 -2.3114,-3.3782 -3.4544,-4.826"
sodipodi:nodetypes="ccccccccccscccscccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="M 59.826945,118.47159 64.71023,111.1679"
id="path4552" />
<path
id="path2310"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 63.197295,110.95451 2.163664,1.94232 m -6.191207,2.03993 2.107144,2.34645 m -5.552935,1.09246 1.646201,2.54934 m 7.340067,-9.75711 c 0.327071,0.24417 0.552317,0.63171 0.552317,1.05529 0,0.3556 -0.1778,0.6858 -0.4064,0.9398 -0.7874,0.889 -2.8956,3.2004 -5.0292,5.3086 l -1.9812,1.8542 c -0.7112,0.635 -1.3716,1.143 -1.9558,1.4986 m 8.820283,-10.65649 c -0.222092,-0.16581 -0.491133,-0.26551 -0.768483,-0.26551 -0.3556,0 -0.6858,0.1016 -0.9652,0.381 -2.4638,2.4638 -4.6482,5.2832 -7.366,7.4676"
sodipodi:nodetypes="cccccccscccccssc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 55.610545,118.75099 -1.7272,-8.2042"
id="path4560" />
<path
id="path2308"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 53.512722,127.10866 3.413681,-0.53766 m -4.278988,-8.56654 3.181959,-0.22631 m -3.808365,-6.4826 3.055983,-0.24505 m -1.193646,-0.50371 c -0.6858,0 -1.4478,0.4572 -1.4478,1.2192 0,2.0066 0.2032,4.0894 0.381,6.096 0.254,2.8956 0.6096,6.7564 1.1176,9.6012 0.1016,0.5842 0.762,0.9652 1.3208,0.9652 m -1.3716,-17.8816 c 0.7366,0 1.1684,0.7112 1.2192,1.3462 0.1778,2.286 0.3048,4.572 0.508,6.858 l 0.2794,3.0734 c 0.1016,1.143 0.2286,2.2606 0.381,3.4036 0.0762,0.5842 0.2794,1.2954 0.2794,1.8796 0,0.7112 -0.5588,1.3208 -1.2954,1.3208"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer13"
inkscape:label="GlyphLayer-L"
style="display:none">
<path
id="path2316"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.6307479,47.856284 0.17318,2.89082 m -0.2986,-2.74622 -2.2998199,3.14152 m -0.62873004,-2.85307 2.88572994,-0.48387 m 7.7495301,-0.57434 0.0275,2.9117 M 0.84191796,33.939484 3.9620679,33.827364 m -1.4414,-0.93456 c -0.762,0 -1.2445999,0.5842 -1.3207999,1.3208 -0.50800004,4.8006 -0.40640004,9.6774 -0.40640004,14.5034 0,0.9906 -0.1016,2.4892 1.34619994,2.4892 0.127,0 0.2286,-0.0254 0.3302,-0.0762 1.3716,-0.6858 2.43841,-0.7112 3.96241,-0.9652 l 0.1524,-0.0254 c 0.8636,-0.1524 1.6764,-0.1778 2.5146,-0.1778 0.762,0 1.5240001,0.0254 2.2860001,0.0254 0.7112,0 1.2954,-0.6096 1.2954,-1.3208 M 2.5206679,32.892804 c 0.7366,0 1.2954,0.5842 1.2954,1.3208 0,1.1176 -0.127,2.286 -0.1778,3.429 -0.1524,3.2258 -0.2286,6.4516 -0.2286,9.7028 v 0.8128 c 2.31141,-0.6096 4.69901,-0.8382 7.0866101,-0.8382 0.9906,0 2.1844,0.1016 2.1844,1.3462"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer14"
inkscape:label="GlyphLayer-M"
style="display:none">
<g
id="g2325"
transform="translate(-115.128,-53.3867)"
style="stroke:#260605"
>
<path
id="path2319"
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 115.6041,89.287566 1.94735,0.0451 m -2.00845,2.70718 3.7285,-0.003 m -3.59715,10.878984 3.27284,-0.0946 m -1.83502,1.64487 c -0.6858,0 -1.1938,-0.6858 -1.1938,-1.3208 0,-4.014534 0.0327,-8.029064 0.0456,-12.043594 0.003,-0.98927 0.005,-1.97854 0.005,-2.96781 m 1.143,16.332204 c 0.8128,0 1.4224,-0.4826 1.4224,-1.3208 0.0254,-3.987804 0.0508,-7.975604 0.0508,-11.963404 l -2.58854,-3.04306"
sodipodi:nodetypes="cccccccssccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
<path
id="path2321"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.41137,92.364536 2.24051,2.1795 m 2.39231,-8.35046 3.01385,1.78422 m -7.64667,4.38674 -0.004,3.3367 m -2.16559,-1.37816 2.16959,-1.95854 m -7.17062,-3.29564 2.45862,-2.12166 m -2.11831,-0.0278 c 0.23674,-0.1769 0.52721,-0.28438 0.81051,-0.28438 0.3302,0 0.6858,0.127 0.9398,0.381 1.1938,1.1938 2.3114,2.5146 3.4544,3.7846 0.508,0.5588 1.0414,1.27 1.6256,1.8288 0.9144,-0.9144 2.3114,-2.54 2.8194,-3.302 l 0.0508,-0.0762 c 0.5842,-0.8636 1.27,-1.6764 1.8288,-2.5146 0.3048,-0.4572 0.6096,-0.6604 1.143,-0.6604 0.3003,0 0.57527,0.0971 0.79565,0.26204 m -13.46796,0.58114 c -0.209,0.15616 -0.37612,0.36643 -0.45949,0.60462 -0.1016,0.1778 -0.1524,0.4064 -0.1524,0.6096 0.0141,0.47328 1.74413,2.032 2.6162,3.048 0.9906,1.0668 1.9812,2.1082 2.9464,3.2004 0.508,0.5588 1.0668,1.143 1.8796,1.143 0.6096,0 1.2192,-0.381 1.6256,-0.8382 0.8636,-0.9906 1.7272,-1.9304 2.5654,-2.9464 1.90777,-2.23702 2.98605,-3.74483 2.9718,-4.3434 0,-0.4363 -0.20496,-0.81913 -0.52515,-1.05876"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
<path
id="path2323"
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 130.80828,89.287566 -1.94735,0.0451 m 1.48493,2.70458 -3.00409,0.0861 m 3.13168,10.792274 -3.00503,0.0677 m 3.10575,-15.586314 c 0,1.1176 -0.2286,2.3368 -0.3048,3.4798 -0.127,2.0828 -0.1778,4.1656 -0.1778,6.223 0,2.1336 0.2286,4.241804 0.2286,6.375404 0,0.7112 -0.7874,1.1938 -1.4478,1.1938 m 1.67866,-17.272004 c -0.2046,0.96408 -1.21932,2.25909 -2.94866,4.3434 -0.1016,1.6764 -0.17554,3.33241 -0.17554,4.98341 0,2.2098 0.12474,4.414594 0.27714,6.624394 0.0508,0.6096 0.4826,1.3208 1.1684,1.3208"
sodipodi:nodetypes="ccccccccsscccscc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer15"
inkscape:label="GlyphLayer-N"
style="display:none">
<g
id="g15993"
transform="translate(-96.3451,-77.4)">
<path
id="path5900"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 96.817856,113.14604 3.265604,-0.13833 m -3.07115,14.57141 3.28775,-0.24706 m -3.436755,-9.00334 3.403855,-0.22961 m -1.735406,10.10062 c -0.7112,0 -1.2192,-0.6858 -1.2446,-1.3716 -0.1016,-3.0988 -0.0508,-6.1976 -0.1016,-9.2964 l -0.067,-5.24844 m 1.4132,15.91644 c 0.812803,0 1.498606,-0.508 1.498606,-1.3716 l -0.127003,-9.6774 -0.0254,-4.9276"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path7148"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 100.08699,111.44541 -3.280809,0.14966 m 3.280809,-0.94321 -3.280809,0.14966 m 1.776373,-0.58499 c -0.7874,0 -1.4732,0.508 -1.4732,1.3462 l 0.0092,0.72056 m 1.464,-2.06676 c 1.168403,0 1.295403,1.1176 1.295403,2.0066"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2327"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 104.84773,125.22591 2.04253,-2.26832 m -3.34195,-6.14775 -2.60698,2.17018 m -0.0802,-6.41086 -1.384593,1.13855 m 0.40146,-1.48454 0.0254,4.92756 c 2.159003,2.9972 4.267203,6.0198 6.375403,9.0678 0.0254,0.0254 0.0508,0.0508 0.0762,0.1016 m -6.477003,-14.09696 c 2.032003,2.9464 4.064003,5.8928 6.146803,8.7884 l 0.3302,5.30856"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="ccccccccccccc"
inkstitch:reverse_rails="none" />
<path
id="path2331"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 106.49058,110.56446 2.98875,0.26428 m -3.76066,7.16944 3.47235,0.22952 m -2.92354,9.34105 3.32801,-0.33676 m -1.58953,1.09474 c 0.7112,0 1.3208,-0.6858 1.3208,-1.397 0,-0.5588 -0.381,-1.6256 -0.4826,-2.2606 -0.0762,-0.635 -0.1016,-1.2954 -0.1016,-1.9304 0.0254,-2.667 0.1524,-5.3848 0.3556,-8.0518 0.0762,-1.016 0.2286,-2.0828 0.2286,-3.0988 0,-0.6858 -0.6858,-1.2446 -1.3462,-1.2446 m 0.0254,17.9832 c -1.143,0 -1.4478,-1.0668 -1.651,-2.0066 l -0.3302,-5.3086 c 0.1016,-3.0988 0.4318,-9.4742 0.762,-10.0076 0.2794,-0.4826 0.6858,-0.6604 1.1938,-0.6604"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer16"
inkscape:label="GlyphLayer-O"
style="display:none">
<path
id="path2335"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.4117015,36.289704 -2.04122,-2.28978 m 6.4355305,2.06084 1.63085,-2.26658 m -0.26728,8.48929 2.89035,0.55594 m -8.1944905,5.32871 -0.16079,2.71103 m -6.03578597,-7.28804 2.92892597,-0.18821 m -3.07246597,-1.00333 3.13830597,-0.0691 m -2.84499597,0.74773 c 0,3.7592 1.77799997,7.7724 6.07059597,7.7724 5.3848005,0 8.1788005,-5.969 8.1788005,-10.6934 0,-3.5306 -2.1082,-7.2898 -6.0452005,-7.2898 -0.4826,0 -0.889,0.127 -1.3462,0.1778 -1.8288,0.2032 -2.9464,0.7366 -4.1402,2.1844 -1.701796,2.0828 -2.71779597,5.1562 -2.71779597,7.8486 m 2.51459597,0.0508 c 0,2.2606 0.8128,5.207 3.556,5.207 3.9116005,0 5.6642005,-5.0038 5.6642005,-8.2042 0,-2.1082 -1.0922,-4.7498 -3.5306005,-4.7498 -1.1176,0 -1.2954,0.0762 -1.8288,0.2286 -2.54,0.762 -3.8608,5.207 -3.8608,7.5184"
sodipodi:nodetypes="cccccccccccccsssscccssscc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer17"
inkscape:label="GlyphLayer-P"
style="display:none">
<g
id="g9652"
transform="translate(-126,-77.4)">
<path
id="path2337"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 130.19747,127.03176 3.49652,-0.4587 m -3.53541,-1.77121 3.36484,-0.39197 m -3.40911,-2.01589 3.69115,-0.39634 m -1.89769,6.37994 c -0.762,0 -1.397,-0.635 -1.397,-1.4224 v -5.1054 m 1.397,6.5278 c 0.8128,0 1.3716,-0.635 1.4224,-1.4224 0.0762,-1.0414 0.0508,-2.1336 0.0508,-3.2004 0,-0.7366 0,-1.4986 -0.0254,-2.3114"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2339"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.637,113.711 3.424,-0.552 m -3.124,2.619 3.423,-0.552 m -3.314,2.728 3.424,-0.552 m -0.216,1.222 c -0.102,-2.159 -0.279,-4.343 -0.559,-6.299 m -2.26,6.807 c -0.077,-2.057 -0.28,-4.115 -0.508,-6.147"
sodipodi:nodetypes="cccccccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 129.92657,112.98519 -3.08956,0.0323"
id="path9629" />
<path
id="path2341"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 129.65484,118.92005 0.35707,3.01653 m 5.37947,-4.21543 1.45822,2.85646 m 0.32062,-5.79338 3.30126,-0.53226 m -6.58493,-4.80863 -0.12092,3.0662 m -6.99299,-0.95592 1.55922,2.45924 m -1.49485,-0.99541 c 0.20899,0.48107 0.64712,0.83134 1.23536,0.83134 0.6604,0 1.2446,-0.5334 1.8542,-0.8636 l 2.7686,-0.6604 c 0.2794,-0.0254 0.5588,-0.0254 0.8382,-0.0254 h 0.2032 c 1.778,0 3.7084,0.3302 3.7084,2.6162 0,0.7366 -0.3048,1.4478 -0.762,2.032 -0.8382,1.0668 -2.1336,1.4478 -3.429,1.6764 l -2.8194,0.508 c -0.7112,0.2286 -1.1684,0.6096 -1.1684,1.3208 m -2.42916,-7.43534 c -0.0888,-0.20442 -0.13624,-0.43245 -0.13624,-0.66726 0,-0.6858 0.6604,-1.143 1.1938,-1.4732 1.5748,-0.9906 3.429,-1.397 5.2578,-1.397 h 0.3556 c 1.143,0 2.3876,0.0508 3.4798,0.4826 2.0574,0.8128 3.2766,2.794 3.2766,4.9784 0,2.286 -1.524,4.4704 -3.5306,5.5372 -0.9652,0.508 -2.1082,0.5842 -3.1242,0.9144 -0.0762,0.0254 -0.1778,0.0508 -0.254,0.0508 l -2.8448,0.4064 c -0.6858,-0.1016 -1.2446,-0.6604 -1.2446,-1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer18"
inkscape:label="GlyphLayer-Q"
style="display:none">
<g
id="g15999"
transform="translate(-141.044,-77.4)">
<path
id="path2345"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 149.319,125.455 1.217,3.045 m -4.867,-4.487 -2.851,1.527 m 2.206,-7.556 -3.214,-0.623 m 6.552,-4.194 -1.521,-2.787 m 6.666,4.391 2.766,-1.543 m -4.09,8.834 3.602,1.82 m -1.481,1.397 c 1.727,-2.362 2.642,-5.537 2.642,-8.204 0,-3.734 -2.337,-7.366 -6.376,-7.366 -3.81,0 -7.213,2.895 -8.255,6.502 -0.33,1.143 -0.533,2.311 -0.533,3.48 0,4.038 1.448,9.042 6.325,9.042 1.6,0 2.997,-0.533 4.191,-1.397 m -0.178,-3.81 c 1.321,-1.93 2.006,-4.597 2.006,-6.477 0,-2.184 -1.117,-4.496 -3.606,-4.521 -0.534,0 -1.321,0.152 -1.982,0.381 -0.609,0.279 -1.447,0.838 -1.828,1.168 -0.966,0.864 -2.109,3.302 -2.109,5.614 0,2.337 0.508,6.223 3.531,6.223 0.686,0 1.321,-0.178 1.88,-0.457"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 150.012,125.457 -0.55674,-3.32273"
id="path10276" />
<path
id="path2347"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 155.33619,128.69505 0.81051,-2.72947 m -5.44617,0.44862 2.4913,-2.13231 m -4.4356,-0.55319 2.44634,-1.80132 m -1.74731,0.20689 c -0.37259,0.24973 -0.61203,0.67932 -0.61203,1.18872 0,0.6096 0.4572,1.3716 1.1684,2.1336 l 2.286,1.8796 c 1.1684,0.762 2.3622,1.2954 3.0988,1.2954 0.69256,0 1.23759,-0.44258 1.38369,-1.07634 m -7.32486,-5.42098 c 0.22191,-0.14874 0.49105,-0.23368 0.78497,-0.23368 0.9906,0 1.1938,0.7112 1.6764,1.3716 0.0762,0.1016 0.127,0.1778 0.2032,0.254 l 2.1844,1.7526 c 0.4572,0.254 0.9652,0.4318 1.4986,0.5842 0.5842,0.1778 1.016,0.7112 1.016,1.3462 0,0.12024 -0.0133,0.23603 -0.0387,0.34606"
sodipodi:nodetypes="cccccccsccsccsccccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer19"
inkscape:label="GlyphLayer-R"
style="display:none">
<g
id="g234645">
<path
id="path2355"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.49655,49.220634 -3.36428,-0.12502 m 1.4577,2.01113 c -0.0624,-0.0127 -0.12486,-0.0306 -0.18653,-0.053 -0.47964,-0.17454 -0.91229,-0.62782 -0.91229,-1.1429 0,-0.9652 0.1524,-2.0066 0.2286,-2.9972 0.0762,-1.0668 0.1524,-2.1082 0.2032,-3.175 m 0.66702,7.36806 c 0.0745,0.0153 0.14898,0.0233 0.22198,0.0233 0.5334,0 0.889,-0.254 1.1684,-0.6604 0.1778,-0.25862 0.32474,-1.77209 0.43428,-3.4997 0.0626,-0.98724 0.11297,-2.04441 0.14992,-2.9773"
sodipodi:nodetypes="cccsscccsssc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 6.56455,43.992604 3.62504,-1.03527 4.5697,7.5427"
id="path10908"
sodipodi:nodetypes="ccc" />
<path
id="path2358"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 14.75929,50.500034 c 0.33032,-0.23865 0.54286,-0.6275 0.54286,-1.07179 0,-0.2286 -0.0508,-0.4826 -0.1524,-0.6858 -0.9652,-1.9304 -1.9304,-3.8354 -2.8956,-5.7658 m 2.50514,7.52339 c -0.21732,0.15701 -0.48563,0.24901 -0.77794,0.24901 -0.4572,0 -0.9144,-0.2794 -1.143,-0.6604 -0.508,-0.8636 -2.4384,-4.5466 -3.2004,-6.35 m 3.30012,-0.29963 -3.361,1.01105 m 5.96481,4.73951 -2.79425,1.39912 m 1.52565,-4.47307 -3.647,1.15932"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 12.25415,42.976644 -5.6134,-1.6764"
id="path10916"
sodipodi:nodetypes="cc" />
<path
id="path2353"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.63541,38.769774 -3.1348,0.42295 m 0.47314,2.33612 c 0,-1.4986 -0.0508,-3.3528 -0.3048,-4.826 m 2.9718,4.5974 c 0,-1.7526 -0.0762,-3.6322 -0.381,-5.4356"
sodipodi:nodetypes="cccccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 6.25975,35.864644 -1.1684,-2.5146"
id="path11545" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 4.35206,33.285544 c 0.25752,-0.0411 0.4692,-0.0386 0.73929,0.0645 m -0.73929,-0.0645 c -0.3061,0.0704 -0.57973,0.23145 -0.75931,0.47089"
id="path2351"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 3.59275,33.756434 -2.66977,2.97363"
id="path12175" />
<path
id="path2360"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.23331,41.015264 -0.0137,3.26419 m 3.97242,-4.1542 1.56927,2.71915 m -0.1692,-4.92142 2.91921,-0.41299 m -7.9676,-1.42392 0.22353,-3.07392 m -6.5803,1.70187 1.74774,2.70624 m -2.0117,-0.6902 c 0.21655,0.41604 0.64395,0.73478 1.1204,0.73478 0.5588,0 1.0922,-0.4064 1.6256,-0.762 0.76842,-0.4213 1.63264,-0.69978 2.5908,-0.8382 0.4064,-0.0508 0.8128,-0.0508 1.2192,-0.0508 1.5748,0 5.334,0.3302 5.334,2.5654 0,2.5146 -3.8608,2.8702 -6.1722,2.921 -1.00676,-0.0228 -1.98617,-0.0589 -2.667,0.2286 -0.381,0.2032 -0.635,0.5334 -0.635,1.0922 m -2.4158,-5.89098 c -0.0952,-0.18282 -0.1496,-0.38442 -0.1496,-0.58602 0,-1.1684 1.8796,-2.032 2.8194,-2.3876 0.49157,-0.16745 0.99147,-0.30148 1.4986,-0.4064 0.7874,-0.1524 1.6002,-0.2286 2.3876,-0.2286 3.302,0 8.001,1.1176 8.001,5.2832 0,2.0574 -1.397,3.7592 -3.2258,4.572 -0.82038,0.36762 -1.69495,0.61613 -2.6162,0.762 -1.0414,0.1778 -2.1082,0.2286 -3.0734,0.254 -0.98195,0.0123 -2.09243,0.0481 -2.6416,-0.254 -0.3556,-0.2032 -0.5842,-0.5334 -0.5842,-1.1176"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
sodipodi:nodetypes="cccccccccccsccssccccsccssccccc"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer20"
inkscape:label="GlyphLayer-S"
style="display:none">
<path
id="path2364"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 9.9402827,37.259284 2.8191003,-1.56698 m -5.8159003,0.30714 -0.43858,-3.11906 m -2.144619,5.25577 -3.27517,-0.017 m 8.369819,5.84455 1.4070603,-2.81133 m -0.8861103,5.17873 2.8659403,0.97229 m -8.7866293,3.65142 0.85168,-2.8859 m -4.36014003,-2.48009 3.23489003,0.86757 m -1.23392,-1.66354 c 0.55112,0.16423 0.94722,0.68095 0.94722,1.26657 0,0.254 -0.127,0.4826 -0.127,0.7366 0,1.4732 1.8288,1.6256 2.895599,1.6256 1.9304,0 4.1148003,-0.9398 4.1148003,-3.175 0,-3.3782 -5.8927993,-1.1684 -8.1787993,-4.572 -0.508,-0.762 -0.7366,-1.651 -0.7366,-2.54 0,-3.302 2.9718,-5.0546 5.994399,-5.0546 1.9304,0 4.0894003,0.9144 5.0038003,2.7432 0.1524,0.3048 0.2794,0.635 0.2794,0.9652 0,0.49758 -0.26658,0.92562 -0.65881,1.15101 m -9.5340093,6.85342 c -0.11819,-0.0352 -0.24351,-0.0542 -0.37358,-0.0542 -1.0668,0 -1.42240003,1.0922 -1.42240003,1.9812 0,3.175 2.76860003,4.318 5.51179903,4.318 3.3782,0 6.7310003,-2.032 6.7310003,-5.7404 0,-3.0226 -2.2098,-4.3942 -4.9530003,-4.8514 -1.4986,-0.254 -3.936999,-0.2032 -3.936999,-2.286 0,-1.8288 1.905,-2.4384 3.428999,-2.4384 3.1496003,0 2.1844,2.3876 3.9116003,2.3876 0.23078,0 0.44818,-0.0615 0.63659,-0.16979"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer21"
inkscape:label="GlyphLayer-T"
style="display:none">
<g
id="g16016"
transform="translate(-187.774,-77.4)">
<path
id="path2366"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 193.91808,114.60321 3.41761,-0.0633 m -3.21825,5.76205 3.33983,-0.27991 m -3.3867,7.39987 3.38219,-0.14456 m -1.6477,1.07483 c -0.7874,0 -1.3462,-0.635 -1.397,-1.397 -0.1778,-2.8702 -0.1016,-5.7658 -0.127,-8.6106 v -4.191 m 1.524,14.1986 c 0.7874,0 1.4224,-0.635 1.4224,-1.397 0,-2.8702 -0.127,-5.7404 -0.127,-8.6106 0,-1.397 0.0254,-2.7686 0.0508,-4.1402"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 197.15126,114.20439 -1.397,-3.68302"
id="path12183" />
<path
id="path2408"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 194.41867,111.08585 2.73063,0.0196 m -2.70498,-0.23848 2.62402,0.0259 m -2.63455,-0.24451 2.6137,0.0243 m -1.29323,-0.15129 c 0.5842,0 1.0922,0.3556 1.3208,0.8636 m -1.3208,-0.8636 c -0.5842,0 -1.0414,0.3302 -1.27,0.8128"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 194.48426,111.33417 -5.93944,0.1151"
id="path12185" />
<path
id="path2368"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 202.04165,110.48448 1.07215,2.78418 m -7.2816,1.02429 0.0415,-3.07705 m -6.86028,2.17108 0.91392,-3.10511 m -1.38256,1.1674 c -0.0522,0.15362 -0.0803,0.31997 -0.0803,0.49452 0,0.6096 0.4318,1.143 1.0414,1.3208 1.524,0.4572 3.1496,0.762 4.7752,0.889 l 2.8702,0.0508 c 1.8288,-0.0762 3.7084,-0.3556 5.4356,-0.8382 0.635,-0.1778 1.0414,-0.7366 1.0414,-1.397 0,-0.12458 -0.0177,-0.24509 -0.0505,-0.35953 m -15.03296,-0.16039 c 0.19088,-0.56173 0.70383,-0.95328 1.34208,-0.95328 0.5842,0 2.5908,0.6096 3.429,0.7112 0.381,0.0508 0.7874,0.1016 1.1684,0.127 l 2.5908,0.0508 c 0.6604,-0.0254 1.3462,-0.0762 2.0066,-0.1778 0.8382,-0.127 2.4638,-0.6096 3.1242,-0.6096 0.63742,0 1.20374,0.42656 1.37188,1.01207"
sodipodi:nodetypes="cccccccsccccsccsccccsc"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer22"
inkscape:label="GlyphLayer-U"
style="display:none">
<path
id="path2370"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10.16535,34.326274 2.77694,-0.80819 m -2.79591,12.00982 2.7072,1.02474 m -6.5288203,1.80098 -0.097,2.81473 m -5.37912103,-4.94445 3.10903003,-0.88332 m -2.7043,-10.87964 3.00007,-0.1593 m -1.49426,-1.15484 c -0.7366,0 -1.2446,0.6604 -1.2446,1.3462 0,2.8448 -0.73660003,6.223 -0.73660003,8.4328 0,4.191 1.70180003,8.2042 5.66420103,8.2042 1.3462,0 2.667,-0.4826 3.7846003,-1.3208 2.7432,-2.0574 3.3528,-5.461 3.3528,-9.144 0,-2.0066 -0.1778,-4.4704 -0.4318,-5.715 -0.3302,-1.5748 -0.9398,-1.9812 -1.4986,-1.9812 -0.0961,0 -0.1902,0.012 -0.28097,0.0347 m -8.6090313,0.14308 c 0.6604,0 1.3208,0.5588 1.3462,1.5494 0,0.4826 -0.1524,1.3462 -0.254,2.6162 -0.1524,1.7526 -0.4826,4.0894 -0.4826,5.7658 0,2.4892 0.6858,5.461 3.124201,5.461 0.8382,0 1.6256,-0.3556 2.2606,-0.8382 2.0320003,-1.5494 2.2352003,-4.5466 2.2352003,-6.8072 0,-1.6764 -0.127,-3.2512 -0.254,-4.2672 -0.1524,-1.1176 -0.3556,-1.778 -0.3556,-2.2606 0,-0.67707 0.43195,-1.22267 0.98903,-1.36228"
sodipodi:nodetypes="cccccccccccssssscsccccsscscsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer23"
inkscape:label="GlyphLayer-V"
style="display:none">
<g
id="g12833"
transform="translate(-219.006,-77.4)">
<path
id="path2372"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 223.05423,126.00322 2.47966,-2.41019 m -5.10471,-4.87867 3.09052,-0.8136 m -4.02599,-6.87734 2.68473,-0.52937 m -1.16349,-0.25206 c -0.7366,0 -1.3462,0.6096 -1.3462,1.3462 0,4.2418 1.7272,11.7094 4.572,15.1384 0.4826,0.5842 1.3462,1.5748 2.159,1.5748 m -5.3848,-18.0594 c 0.762,0 1.3208,0.6096 1.3716,1.3462 0.2794,3.7084 1.2446,9.4742 3.3528,12.6492 0.15722,1.34897 -0.72646,2.60369 0.6604,4.064"
sodipodi:nodetypes="cccccccscccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2374"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 228.00026,127.06394 -3.17219,-0.67355 m 7.46704,-15.77926 2.7641,1.60242 m -6.89111,4.23003 2.95388,1.73658 m -5.30638,4.62768 3.1261,0.89421 m -2.54195,4.59934 c 0.5842,0 1.27,-0.4572 1.397,-1.0414 1.0668,-4.9022 2.54,-8.6868 5.4356,-12.8524 0.4064,-0.5842 1.524,-1.8288 1.524,-2.5146 0,-0.4744 -0.25286,-0.89613 -0.62965,-1.13625 m -7.72695,17.54465 c -1.1214,-0.53801 -1.19418,-0.95847 -1.14928,-1.54163 0.0515,-0.66875 0.30793,-1.642 0.48888,-2.52237 0.1524,-0.5334 0.2794,-0.9906 0.3556,-1.27 1.1684,-4.2672 3.5306,-8.5598 6.35,-12.0142 0.2286,-0.2794 0.6096,-0.4064 0.9652,-0.4064 0.2622,0 0.5083,0.0772 0.71655,0.20995"
sodipodi:nodetypes="cccccccccccsccscccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer24"
inkscape:label="GlyphLayer-W"
style="display:none">
<g
id="g16022"
transform="translate(-235.516,-77.4)">
<path
id="path2378"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 239.57309,126.61358 2.6687,-1.0375 m -4.73743,-6.93503 2.97383,-0.81018 m -4.66707,-5.85151 3.23486,-0.93081 m -1.80004,-0.47274 c -0.55541,0.12557 -0.95805,0.64182 -0.95805,1.21559 0,0.8128 1.2446,5.715 1.4986,6.8326 0.3556,1.5494 1.4224,7.493 3.0988,9.2456 m -3.63935,-17.2938 c 0.0839,-0.019 0.17119,-0.029 0.26115,-0.029 0.5588,0 1.1176,0.3556 1.2446,0.9144 l 0.6858,3.1242 c 0.4826,2.159 1.1938,6.1976 2.1082,8.9916 -0.72463,2.65084 -0.80511,3.85842 -0.6604,4.29259"
sodipodi:nodetypes="cccccccscccscccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2380"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 243.2852,117.44138 1.62558,0.6534 m -2.75016,2.3344 3.20309,1.53468 m -4.87037,3.9473 3.20464,0.95787 m -1.77129,1.53396 c -0.4318,0 -0.82139,-0.19742 -1.0414,-0.5334 -0.36461,-0.5568 0.25061,-3.08869 0.6604,-4.2926 0.81789,-2.40284 1.8288,-4.8768 3.0226,-6.858 m -2.6416,11.684 c 0.5334,0 1.0668,-0.4064 1.1938,-0.9144 0.508,-2.0828 1.0414,-4.0894 1.8796,-6.0452 -0.17595,-1.56485 -0.65328,-3.46614 -0.4318,-4.7244"
sodipodi:nodetypes="cccccccssccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2382"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 245.9412,126.34658 2.58572,-1.06346 m -0.75667,-5.29951 -3.19122,0.95335 m 2.70348,-4.23178 -3.33453,0.88143 m 1.73791,-1.47722 c -0.4572,0 -0.89113,0.22733 -1.1176,0.6096 -0.3155,0.53254 0.071,2.79272 0.4318,4.7244 0.27074,1.44944 1.2954,5.6388 2.4892,6.4516 m -1.8034,-11.7856 c 0.4826,0 1.0922,0.4064 1.1684,0.9144 0.3556,2.3622 0.635,4.6736 1.397,6.9596 -0.36538,0.99351 -1.70346,3.31079 -0.762,3.9116"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2384"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 252.65207,110.60821 3.07594,1.23049 m -5.77601,5.80498 3.12715,1.59175 m -3.02461,8.47571 -3.23183,-1.4437 m 1.11237,1.81375 c -0.1608,-0.0374 -0.31564,-0.0994 -0.44579,-0.1862 -0.97148,-0.78588 0.30902,-2.68807 0.762,-3.9116 l 4.6736,-12.6238 c 0.2032,-0.5334 0.5842,-0.9144 1.1938,-0.9144 0.16253,0 0.31516,0.0272 0.45435,0.0775 m -6.63796,17.55848 c 0.12163,0.0283 0.24668,0.0424 0.36701,0.0424 1.3208,-0.0254 1.6256,-1.524 2.0066,-2.5146 l 2.8702,-7.747 c 0.254,-0.6858 2.2098,-5.6134 2.2098,-6.1214 0,-0.57407 -0.32399,-1.04015 -0.81565,-1.21788"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer25"
inkscape:label="GlyphLayer-X"
style="display:none">
<g
id="g16029"
transform="translate(-256.088,-77.4)">
<path
id="path2390"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 258.18924,123.33077 2.81022,1.42026 m -1.91085,-3.78079 3.06929,1.57614 m -2.06473,4.78037 -3.01077,-1.5773 m 0.66198,2.60103 c -0.49696,-0.19334 -0.8178,-0.64712 -0.8178,-1.26829 0,-0.1016 0,-0.2032 0.0508,-0.3048 0.5842,-1.1938 1.0922,-2.5146 1.6256,-3.7084 0.5842,-1.2954 1.1938,-2.5654 1.8288,-3.8608 m -2.6874,9.14229 c 0.17362,0.0675 0.36875,0.10331 0.5792,0.10331 0.762,0 1.0414,-0.5588 1.2954,-1.1684 l -0.127,0.3048 c 0.762,-1.8034 1.5748,-3.6322 2.4384,-5.4102 l -1.4986,-2.9718"
sodipodi:nodetypes="cccccccsccccscccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 260.43178,119.20819 6.15595,-8.44578"
id="path13465" />
<path
id="path2392"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 265.04714,110.6884 2.48733,1.32537 m -4.11517,0.9332 2.96637,1.51934 m -4.46214,1.37472 2.75963,1.5105 m 1.90457,-6.58912 c 0.44464,0.20752 0.75285,0.63281 0.75285,1.18138 0,0.635 -1.651,3.1496 -2.0574,3.8862 -0.635,1.1176 -1.27,2.2606 -1.8542,3.4036 m 3.15875,-8.47118 c -0.19358,-0.0904 -0.41302,-0.13942 -0.64415,-0.13942 -0.4572,0 -0.8382,0.3048 -1.0922,0.6604 -1.1176,1.5748 -2.0066,3.302 -2.921,5.0038"
sodipodi:nodetypes="cccccccscccscc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 261.93038,116.28719 -4.28813,-5.60055"
id="path13467" />
<path
id="path2388"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 264.16468,127.51686 2.81734,-1.7282 m -7.40049,-7.06437 2.92261,-1.85001 m -5.68916,-4.94744 2.31763,-1.154 m -1.49036,-0.0862 c -0.45493,0.1999 -0.76647,0.64299 -0.76647,1.1809 0,0.254 0.0762,0.4826 0.1778,0.6858 l 3.3782,6.6548 1.4986,2.9718 2.9464,5.7658 c 0.2032,0.4064 0.6858,0.6604 1.143,0.6604 0.27537,0 0.52944,-0.0781 0.73966,-0.21571 m -9.11719,-17.70379 c 0.16804,-0.0738 0.35564,-0.1145 0.55433,-0.1145 0.4572,0 0.9398,0.254 1.143,0.6604 l 2.5908,5.0546 1.4986,2.9464 3.7338,7.366 c 0.127,0.2286 0.1778,0.4572 0.1778,0.6858 0,0.47713 -0.22905,0.8746 -0.58114,1.10509"
sodipodi:nodetypes="cccccccsccccsccsccccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer26"
inkscape:label="GlyphLayer-Y"
style="display:none">
<g
id="g16034"
transform="translate(-268.113,-77.4)">
<path
id="path2398"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 275.66304,128.55539 c 0.7112,0 1.3208,-0.635 1.3208,-1.3462 0,-0.381 -0.127,-0.8382 -0.1778,-1.2446 -0.2794,-2.2352 -0.3302,-4.3942 -0.3302,-6.6294 m -0.8128,9.2202 c -0.5842,0 -1.2192,-0.4064 -1.3462,-0.9906 -0.508,-2.3622 -0.5842,-4.9276 -0.5842,-7.3406 0,-0.2286 0,-0.508 -0.0254,-0.8128 m 3.21919,0.42948 -3.5552,0.0979 m 3.58595,2.95747 -3.5233,0.17329 m 3.86096,3.84061 -3.30761,0.64056"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 273.70725,119.41139 c -3.01154,-2.33457 -3.18536,-5.88305 -3.3782,-9.4234"
id="path14726"
sodipodi:nodetypes="cc" />
<path
id="path2396"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 277.75749,111.35591 3.11923,-0.0865 m -3.54156,4.34089 2.34582,2.07594 m -8.72037,0.92232 1.89219,-2.48849 m -4.35284,-5.18788 3.33147,-0.18613 m -1.50239,-0.75807 c 0.635,0 1.27,0.635 1.27,1.27 0,1.3208 0,4.1148 1.1684,5.0038 0.5588,0.4318 1.4224,0.5334 2.1082,0.5334 2.3368,0 3.2512,-1.016 3.2512,-3.302 0,-0.5842 -0.1016,-1.1684 -0.1016,-1.7272 0,-0.762 0.7112,-1.27 1.4224,-1.27 m -9.1186,-0.508 c -1.2446,0 -1.4478,0.9398 -1.4478,1.9558 0,3.7084 1.1176,6.9342 4.826,7.4676 l 2.7686,-0.0762 c 2.794,-0.5588 4.3434,-2.6162 4.3434,-5.842 0,-0.5842 -0.1016,-1.1684 -0.1016,-1.7272 0,-0.635 -0.635,-1.27 -1.27,-1.27"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer27"
inkscape:label="GlyphLayer-Z"
style="display:none">
<g
id="g15987"
transform="translate(-281.477,-77.4)">
<path
id="path2402"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 286.05215,122.33207 2.34193,2.43319 m 2.77448,-11.24585 3.17119,0.78579 m -3.06181,-0.88799 3.4245,-2.58621 m -3.90115,2.58803 -0.0609,-3.09225 m -7.00726,3.34869 0.0257,-3.43415 m -1.15404,1.67707 c 0,-0.762 0.635,-1.4224 1.4224,-1.4224 1.016,0 2.032,0.0762 3.048,0.0762 2.0828,0 4.1656,-0.254 6.2484,-0.254 h 0.127 c 0.6858,0 1.27,0.762 1.27,1.4224 0,0.127 0,0.254 -0.0254,0.381 -0.9652,4.8514 -3.7084,9.4742 -6.985,13.1572 -2.13958,-0.005 -4.82693,-0.1935 -4.826,1.4478 m -0.2794,-14.8082 c 0,1.3208 1.4986,1.4986 2.8448,1.524 0.635,0 1.2192,-0.0508 1.6256,-0.0508 1.4732,0 2.921,-0.0508 4.3942,-0.127 -1.3716,4.445 -3.9878,8.382 -7.2644,11.6332 -0.508,0.508 -1.3208,1.0414 -1.3208,1.8288"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2404"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 285.36945,124.93787 -0.0196,3.36292 m 4.7644,-3.25701 0.0514,3.20241 m 4.57076,-3.24874 0.11105,3.19463 m -11.96327,-1.46549 c 0,0.7874 0.635,1.4478 1.397,1.4478 3.0226,0 6.0452,-0.0508 9.0678,-0.0508 0.9906,0 2.1082,-0.2286 2.1082,-1.4732 m -12.573,0.0762 c 0,-1.65201 2.69639,-1.4478 4.826,-1.4478 1.905,0 3.81,0.0254 5.715,0.0254 0.9398,0 2.032,0.0254 2.032,1.3462"
sodipodi:nodetypes="cccccccsscccsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer87"
inkscape:label="GlyphLayer-["
style="display:none">
<path
id="path2528"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.8480581,51.800526 0.0732,-2.80318 m -3.11857,-0.38079 -3.13247004,-0.058 m 3.13247004,0.058 -0.058,3.13247 m 0.058,-16.33635 -3.13247004,0.058 m 3.13247004,-0.058 -0.058,-3.13247 m 3.02701,3.08148 0.0732,-2.80318 m 0.40155,1.19259 c -0.0508,0.7366 -0.5334,1.397 -1.3208,1.397 h -0.0762 c -0.381,-0.0254 -0.762,-0.0254 -1.143,-0.0254 -0.381,0 -0.762,0 -1.1684,0.0254 v 5.08 c 0,2.159 0.0254,4.3434 0.0254,6.5024 v 2.1336 c 0.7874,0.0254 1.6002,0.1016 2.3876,0.1524 0.381,0.0254 0.6858,0.1524 0.9906,0.4064 0.254,0.2286 0.4318,0.635 0.4064,0.9906 m -0.1016,-16.6624 c 0.0254,-0.3556 -0.1524,-0.762 -0.4064,-1.016 -0.254,-0.254 -0.635,-0.381 -0.9906,-0.4064 -0.4572,-0.0254 -0.9144,0 -1.3716,-0.0254 -0.762,0 -1.5494,0.0254 -2.3368,0.0762 -0.7874,0.0508 -1.39699999,0.5842 -1.39699999,1.397 0,1.2192 -0.0254,2.413 -0.0254,3.6068 v 12.9032 c 0,0.762 0.66039999,1.397 1.42239999,1.397 1.27,0 2.54,0.0508 3.81,0.1524 h 0.0762 c 0.762,0 1.27,-0.7112 1.3208,-1.4224"
sodipodi:nodetypes="cccccccccccccscscsscccccsccssssscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer88"
inkscape:label="GlyphLayer-\"
style="display:none">
<path
id="path2532"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.078897,42.402536 3.13883,-1.37431 m -4.69287,-6.75742 c -0.31755,0.14874 -0.58798996,0.40697 -0.69925996,0.72489 -0.127,0.3556 -0.127,0.7112 0,1.0922 0.63499996,1.6764 4.01319996,9.652 4.74979996,11.3284 0.2032,0.4572 0.4064,0.9398 0.6096,1.397 0.2286,0.5334 0.7366,0.8382 1.2954,0.8636 0.2032,0 0.4064,-0.0508 0.5588,-0.127 m -6.51434,-15.27909 c 0.18986,-0.0889 0.39656,-0.13871 0.59614,-0.13871 0.1778,0 0.381,0.0254 0.5334,0.0762 0.3302,0.127 0.635,0.4318 0.762,0.762 0.1778,0.4826 0.381,0.9652 0.5588,1.4478 0.635,1.7018 4.0386,9.652 4.8006,11.303 0.1524,0.3302 0.1524,0.7112 0.0254,1.0668 -0.127,0.3556 -0.4318,0.6096 -0.762,0.762"
sodipodi:nodetypes="ccccccccccscccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer89"
inkscape:label="GlyphLayer-]"
style="display:none">
<path
id="path2530"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.3590306,48.677506 -0.0893,3.12636 m 0.0893,-3.12636 3.57483,0.0234 m -6.5209804,3.13237 0.0303,-2.92167 m 2.9158404,-13.49893 -0.0893,-3.12636 m 0.0893,3.12636 3.57483,-0.0234 m -6.5209804,-3.13237 0.0303,2.92167 m -0.52797949,-1.42748 c 0,0.8128 0.63499949,1.397 1.42239989,1.397 0.381,0 0.762,-0.0254 1.143,-0.0254 0.381,0 0.762,0 1.143,0.0254 0.0254,1.7018 0.0254,3.3782 0,5.08 v 6.5024 2.1336 c -0.8128,0.0254 -1.6002,0.0762 -2.3876,0.1524 -0.381,0.0254 -0.7366004,0.127 -1.0159999,0.4064 -0.22859999,0.2286 -0.43179999,0.635 -0.40639999,0.9906 m 0.1016,-16.6624 c 0,-0.8128 0.60959949,-1.4224 1.42239989,-1.4224 h 0.9906 c 0.889,-0.0254 1.8034,0 2.6924,0.0508 0.762,0.0508 1.4224,0.5842 1.4224,1.397 v 10.1092 6.4008 c 0,0.762 -0.635,1.397 -1.397,1.397 -1.27,0 -2.54,0.1524 -3.81,0.1524 -0.8128004,0 -1.37159989,-0.635 -1.42239989,-1.4224"
sodipodi:nodetypes="cccccccccccccsscccccsccsccscsssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer90"
inkscape:label="GlyphLayer-^"
style="display:none">
<path
id="path2599"
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;-inkscape-stroke:none;stop-color:#000000;stop-opacity:1"
d="m 8.2681217,36.370946 -0.0519,-3.74956 m 0.18306,3.9637 2.2084503,-2.05043 m -2.5276703,2.11979 -2.12361,-2.42056 m 7.1286503,6.85475 1.91,-2.32182 m -13.8852503,-0.10711 1.93908,2.38964 m -2.10197001,-0.30308 c 0.26236001,0.3631 0.68942001,0.59943 1.15429001,0.59943 0.3556,0 0.7112,-0.1524 0.9906,-0.4318 0.7366,-0.7366 5.0038,-4.6228 5.1562,-4.6228 0.127,0 3.2004003,3.048 3.7592003,3.6068 0.3556,0.3556 0.7112,0.7366 1.0922,1.0668 0.2794,0.254 0.635,0.4318 0.9906,0.4318 0.3556,0 0.762,-0.1778 1.016,-0.4318 M 0.94696169,40.746266 c -0.1677,-0.23207 -0.26811,-0.51594 -0.26811,-0.82297 0,-0.3556 0.1524,-0.762 0.40640001,-0.9906 0.381,-0.3556 0.7366,-0.6858 1.1176,-1.0668 0.5842,-0.5842 5.8166,-5.08 6.0452,-5.08 0.254,0 6.1468003,5.5626 6.8580003,6.1976 0.2794,0.254 0.381,0.635 0.4064,0.9906 0.0254,0.381 -0.1524,0.7366 -0.4064,0.9906"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer91"
inkscape:label="GlyphLayer-_"
style="display:none">
<path
id="path2624"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.2205891,51.381036 -0.031,3.68284 m -5.45469,-1.65318 c 0.0508,0.7366 0.5588,1.397 1.3462,1.397 h 0.0762 c 0.9652,0 1.1176,-0.0508 2.0574,-0.0254 0.4826,0 1.143,0 2.2098,0.0254 0.9144,0.0254 3.0988,0.0254 3.9877999,0.0254 0.381,0 0.762,-0.1524 1.016,-0.4064 0.254,-0.254 0.4318,-0.7112 0.4064,-1.0668 m -11.0997999,0.0508 c -0.0254,-0.3556 0.1778,-0.762 0.4064,-0.9906 0.2794,-0.2794 0.635,-0.4064 1.016,-0.4318 0.3302,-0.0254 0.9144,-0.0254 1.5494,-0.0254 h 2.0828 0.8636 0.4826 c 1.0414,0 2.413,0.0508 3.2765999,0.0508 0.8636,0 1.3716,0.4826 1.4224,1.3462"
sodipodi:nodetypes="cccssccssccscsccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer92"
inkscape:label="GlyphLayer-`"
style="display:none">
<path
id="path2520"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.0866493,33.946666 2.49364,-1.67074 m -2.45641,-1.47123 c 0.1778,-0.1016 0.4064,-0.1524 0.6096,-0.1524 0.4826,-0.0254 0.9652,0.254 1.2192,0.6604 0.2286,0.381 0.4826,1.1176 0.762,1.4986 0.3556,0.4572 0.8382,0.7112 1.0922,1.1938 0.29068,0.53665 0.34515,1.21109 -0.11386,1.62476 m -3.56914,-4.82516 c -0.9652,0.5588 -0.889,1.4478 -0.4064,2.286 0.5334,0.9398 1.8288,2.8956 3.0988,2.8702 0.2286,0 0.4318,-0.0508 0.6604,-0.1778 0.0821,-0.0456 0.15395,-0.097 0.21634,-0.15324"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer28"
inkscape:label="GlyphLayer-a"
style="display:none">
<g
id="g16040"
style="stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path2186"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path2184"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer29"
inkscape:label="GlyphLayer-b"
style="display:none">
<g
id="g16046"
style="stroke:#260605"
transform="translate(57.0667,-107.06)"
>
<path
id="path2190"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -55.766415,154.34845 3.547189,-0.80618 m -4.380611,-7.74809 3.514209,-0.34549 m -3.136654,-6.2881 3.440001,-0.11278 m -1.861323,-0.65793 c 0.6604,0 1.397,0.5334 1.397,1.1938 0,0.9398 -0.127,1.905 -0.127,2.8448 0,1.1684 0,2.3368 0.0508,3.5052 l 0.1524,3.2766 c 0.127,1.6002 0.254,3.175 0.508,4.7244 0.0254,0.1524 0.0762,0.381 0.1524,0.6604 m -2.1336,-16.2052 c -1.8796,0 -1.5494,2.8702 -1.5494,4.0386 0,3.175 0.1524,9.2456 0.9652,12.8778"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2192"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -49.705949,149.57361 1.267463,-3.87341 m 0.686408,6.00082 3.455159,-0.32829 m -4.993028,2.40032 1.458838,3.56531 m -6.857957,-3.05807 -0.09503,3.32778 m -0.621508,-1.61599 c 0,-0.2286 0.0508,-0.4572 0.1778,-0.6858 0.428781,-0.73767 1.665521,-0.72537 2.7178,-0.7112 h 0.3048 c 1.8034,0 4.826,0 4.826,-2.7432 0,-2.2352 -2.1844,-3.0226 -3.8354,-3.0226 -0.7112,0 -1.3716,0.1778 -1.9558,0.381 m -2.2352,6.7818 c 0,1.143 0.6858,1.5494 1.4986,1.6764 0.2286,0.0762 0.4064,0.0762 0.635,0.0762 h 1.0414 c 3.556,-0.0254 7.6708,-0.9398 7.6708,-5.842 0,-4.064 -3.3274,-6.223 -6.6294,-6.223 -0.4826,0 -1.3208,0.0508 -2.1336,0.254"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer30"
inkscape:label="GlyphLayer-c"
style="display:none">
<path
id="path2196"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 8.8198617,44.952767 2.7544303,0.5252 m -3.7446403,1.58367 3.0094803,1.7892 m -6.4764603,-2.1458 -2.51753,2.39042 m 2.43975,-6.00366 -3.01848,-1.80737 m 6.6201,0.6837 2.3911703,-2.6341 m 0.186,2.93691 c 0.27368,-0.25901 0.44405,-0.62598 0.44405,-1.03383 0,-1.8288 -2.5654003,-2.8956 -4.1148003,-2.8956 -3.429,0 -6.12139999,3.0988 -6.12139999,6.4516 0,3.175 2.53999999,6.1468 5.81659999,6.1468 2.4892,0 4.9530003,-2.1082 4.9530003,-4.699 0,-0.57765 -0.43567,-1.12179 -0.96675,-1.30578 m -0.0107,-2.66419 c -0.25467,0.24103 -0.5988103,0.38857 -0.9783503,0.38857 -1.4732,0 -0.8636,-1.4986 -2.6924,-1.4986 -1.8542,0 -3.302,1.8288 -3.302,3.5814 0,1.651 1.2192,3.3528 2.9972,3.3528 0.4826,0 0.9398,-0.1524 1.3462,-0.4572 1.1938,-0.889 0.4572,-2.7686 2.2606003,-2.7686 0.12878,0 0.25666,0.0233 0.37945,0.0658"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccsssssccsssscsc"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer31"
inkscape:label="GlyphLayer-d"
style="display:none">
<g
id="g16686"
style="stroke:#260605"
transform="translate(31.52,-107.06)"
>
<path
id="path2198"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -22.1424,157.515 -2.0535,-2.812 m -4.7086,2.536 2.1129,-2.87 m -2.4792,-6.339 2.5453,2.702 m 3.2293,-4.517 -0.5611,3.604 m 0.9832,-0.025 c -0.381,-0.203 -0.6604,-0.533 -1.3462,-0.533 -1.5748,0 -3.4798,1.651 -3.4798,3.277 0,1.473 1.0668,2.768 2.6162,2.768 1.4986,0 1.9812,-0.863 2.5654,-1.397 m -0.4064,-7.29 c -0.4572,-0.127 -0.9144,-0.177 -1.2954,-0.177 -3.1242,-0.026 -6.2992,2.921 -6.2992,6.096 0,3.022 2.3368,5.588 5.4356,5.588 0.8636,0 2.1844,-0.381 3.2258,-0.991"
sodipodi:nodetypes="ccccccccccssccsssc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2200"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -22.733936,138.93546 3.298256,0.37226 m -4.228925,5.69907 3.808215,0.28805 m -3.437256,6.45228 3.588606,-0.27829 m -2.503174,5.89061 3.330704,-0.70633 m -1.78359,1.44717 c -0.660397,0 -1.219197,-0.381 -1.396997,-0.9652 l -0.6604,-3.2258 c -0.1778,-1.3462 -0.2794,-2.7686 -0.3556,-4.1148 l -0.0508,-3.175 c 0,-2.286 0.254,-4.953 0.635,-7.1882 0.1016,-0.5842 0.762,-0.9906 1.3208,-0.9906 m 0.507997,19.6596 c 0.762,0 1.3716,-0.635 1.3716,-1.3462 0,-0.635 -0.4572,-2.1336 -0.5588,-2.8956 -0.3048,-2.3622 -0.4572,-4.7498 -0.4572,-7.112 0,-1.7018 0.0762,-3.7338 0.3302,-5.4102 0.0762,-0.4826 0.254,-1.0414 0.254,-1.524 0,-0.762 -0.6096,-1.3716 -1.447797,-1.3716"
sodipodi:nodetypes="ccccccccccccccccscscsc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer32"
inkscape:label="GlyphLayer-e"
style="display:none">
<path
id="path2206"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 9.5343822,46.450607 2.7701138,-0.14852 m -2.9133508,0.85764 2.1710778,2.15794 m -3.0761568,-1.68127 1.338162,2.87836 m -4.871474,-3.09987 -2.088502,2.44225 m 1.120162,-5.88141 -3.36349503,-0.20098 m 4.90224503,-2.23949 -2.354456,-2.49515 m 5.568122,2.05197 1.8109358,-2.75883 m -1.4512878,3.90747 2.6476538,1.89473 m -6.8684088,-1.50068 -0.381071,2.95848 m -0.593405,-2.75688 h 0.5334 c 0.7874,0 1.5494,0.0508 2.3368,0.0508 0.254,0 0.4826,0.0254 0.7112,0.0254 0.3302,-0.0254 0.6858,-0.0254 1.016,-0.0508 0.2794,-0.0254 0.9144,-0.254 1.016,-0.5588 0.0254,-0.0762 0.0508,-0.1778 0.0762,-0.254 0.0254,-0.1016 -0.0254,-0.2032 0,-0.3048 0,-0.7112 -0.9652,-1.143 -1.5494,-1.2446 -0.127,-0.0254 -0.254,-0.0254 -0.381,-0.0254 -1.524,0.0508 -3.048,1.016 -3.7592,2.3622 l -0.4826,2.54 c 0.3302,1.778 1.7018,3.048 3.5306,3.048 0.5588,0 2.7432,-0.5334 2.7432,-1.2446 0,-0.6858 0.5841998,-1.2446 1.2699998,-1.2446 m -7.5437998,-0.5588 c 1.4224,0.0508 2.8448,0.1016 4.2418,0.1016 2.2352,0 4.4957998,-0.9144 4.4957998,-3.5306 0,-2.4638 -2.1589998,-4.0386 -4.4957998,-4.0386 -3.5814,0 -6.85800003,3.2512 -6.85800003,6.8326 0,3.4798 2.64160003,6.2484 6.17220003,6.2484 2.032,0 5.2831998,-1.3716 5.2831998,-3.7592 0,-0.7112 -0.5842,-1.2954 -1.2954,-1.2954"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer33"
inkscape:label="GlyphLayer-f"
style="display:none">
<g
id="g17342"
style="stroke:#260605"
transform="translate(5.64096,-107.06)"
>
<path
id="path2412"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -2.0485586,151.34455 3.1902487,-0.6352 m -2.8728439,3.5114 3.5172103,-0.98643 m -2.34742398,4.59476 3.04697858,-0.8515 m -1.1119843,0.90531 c -0.1496317,0.0582 -0.3120294,0.0905 -0.48278914,0.0905 -0.254,0 -0.50799999,-0.0762 -0.73659999,-0.2032 -1.04139998,-0.5842 -1.70179997,-4.5974 -2.00659997,-7.6454 m 3.2259891,7.7581 c 0.5403432,-0.2105 0.9142108,-0.76051 0.9142108,-1.35726 0,-0.127 -0.0254,-0.2286 -0.0508,-0.3556 -0.3556,-1.7526 -0.9397999,-3.429 -1.2191999,-5.2324 -0.0508,-0.3302 -0.10160004,-0.6858 -0.12700004,-1.0414"
sodipodi:nodetypes="cccccccscccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 0.89083765,149.89623 c -1.87044266,-2.24359 -0.89389479,-9.491 2.84620875,-9.84608 2.0270852,-0.19245 3.4994408,1.90299 3.3005912,4.68988"
id="path16688"
sodipodi:nodetypes="csc" />
<path
id="path2414"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.3885189,143.8987 3.1826171,0.23882 m -4.6208302,-2.57276 0.06744,-3.15021 m -6.2485695,7.35244 3.3283295,-0.1006 m 5.9401318,-0.92636 c -0.8128,0 -1.4478,-0.6096 -1.4224,-1.397 0,-0.254 0.0762,-0.508 0.0254,-0.762 -0.1524,-0.8128 -0.889,-1.1938 -1.651,-1.1938 -2.6669999,0 -3.20039994,3.6322 -3.22579994,5.6388 m 6.27379994,-2.286 c 1.143,0 1.4223999,-1.0414 1.4223999,-1.9812 0,-2.5146 -2.0827999,-4.2164 -4.4957999,-4.2164 -1.3716,0 -2.5907999,0.5842 -3.58139993,1.4986 -2.00659997,1.8542 -2.43839997,4.6482 -2.43839997,7.239"
sodipodi:nodetypes="cccccccccsccsscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m -2.0555623,147.28003 -2.7177998,1.5494"
id="path16696" />
<path
id="path2410"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.5053853,146.6714 0.036901,2.94613 m -4.84836357,-3.11062 0.19888798,4.04148 m -3.50932801,-3.52769 -0.047498,3.63776 m -1.109347,-1.82903 c 0,-0.5842 0.3302,-1.0668 0.8636,-1.2954 0.1778,-0.0762 0.9144,-0.1524 1.8542,-0.254 l 2.81939996,-0.254 c 1.29539994,-0.1016 2.46379994,-0.1778 2.94639994,-0.1778 0.7874,0 1.4478,0.6096 1.4478,1.397 m -9.9313999,0.5842 c 0,0.6858 0.5842,1.4224 1.2954,1.4224 l 1.6256,-0.127 2.74319996,-0.2286 c 0.96519994,-0.0762 1.90499994,-0.127 2.84479994,-0.2286 0.7874,-0.0762 1.4224,-0.5842 1.4224,-1.4224"
sodipodi:nodetypes="cccccccsccsccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer34"
inkscape:label="GlyphLayer-g"
style="display:none">
<g
id="g18625"
style="stroke:#260605"
transform="translate(-6.64224,-107.06)"
>
<path
id="path2418"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 14.8991,149.555 3.4631,-0.292 m -3.3388,1.247 3.4438,-0.101 m -5.126,-2.202 -0.0239,-2.987 m -1.9359,5.318 -3.35087,0.166 m 5.25707,1.914 0.021,3.46 m 1.9705,-6.029 c 0,-0.686 -0.3048,-1.982 -1.5494,-1.982 -1.8542,0 -2.6162,1.118 -2.6924,2.845 -0.0254,0.051 0,0.28 0,0.356 0,0.99 1.0414,1.752 2.0066,1.752 1.6764,0 2.2606,-1.549 2.2352,-2.971 m 2.9312,-0.132 c -0.1182,-1.375 -0.8148,-2.717 -1.966,-4.034 -0.5588,-0.406 -1.2446,-0.635 -2.0828,-0.635 -1.1176,0 -2.8194,0.457 -3.6576,1.143 -1.47316,1.219 -2.13356,3.404 -2.13356,4.801 0,2.54 2.18436,4.648 4.67356,4.648 1.3462,0 2.4384,-0.483 3.2512,-1.219 1.4646,-1.614 2.0464,-3.179 1.9152,-4.704"
sodipodi:nodetypes="ccccccccccccscsscccscssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 18.2103,149.917 c 0.283854,-1.17829 0.144549,-2.69306 -0.670559,-4.74521"
id="path17979"
sodipodi:nodetypes="cc" />
<path
id="path2416"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10.63674,157.62017 -3.2005985,0.11342 m 4.1580875,2.50805 -2.3881462,2.70352 m 6.1049332,-3.64636 2.873292,1.83953 m -2.13397,-7.17302 3.23435,-0.10193 m -0.20311,-7.2748 -3.084667,-0.0331 m 1.54283,-1.38369 c 0.7112,0 1.3208,0.7112 1.3208,1.4224 0,2.2098 0.0254,4.4196 0.1524,6.6294 0.0508,0.8636 0.127,1.7018 0.127,2.5654 0,3.7084 -1.7526,7.9502 -6.0706,7.9756 -3.6068001,0.0254 -5.4102001,-2.9972 -5.3340001,-5.7404 v -0.3556 c 0,-0.762 0.5842,-1.4224 1.3716,-1.4224 m 8.4328001,-11.0744 c -0.7112,0 -1.0922,0.2794 -1.2954,0.7112 2.642243,3.13021 2.391877,6.00083 0.0508,8.7376 0.0254,0.381 0.0254,0.762 0.0254,1.143 0,2.0574 -0.635,5.1816 -3.2258,5.1816 -2.5908,0 -2.5908,-2.286 -2.5908,-3.6576 0,-0.635 -0.7620001,-1.0414 -1.3970001,-1.0414"
sodipodi:nodetypes="cccccccccccscsccsccccsssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer35"
inkscape:label="GlyphLayer-h"
style="display:none">
<g
id="g69228">
<path
id="path18629"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 2.5927037,31.330167 c 0.7112,0 1.4224,0.6096 1.4224,1.3208 0,0.8128 -0.1524,1.651 -0.2032,2.4638 -0.1016,1.6764 -0.1778,2.667 -0.2032,4.3434 -0.0462,2.70123 0.0986,5.39464 0.508,8.0772 m -1.524,-16.2052 c -0.508,0 -0.9144,0.254 -1.1938,0.7112 -0.40639997,0.6858 -0.60959997,6.5024 -0.60959997,7.8232 0,2.67622 0,5.44808 0.44198997,8.11353 m 2.92051,-15.82501 -3.00917,-0.13591 m 2.90172,8.65878 -3.56070997,0.15659"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 1.2312937,47.978097 1.84401,3.11327"
id="path19920" />
<path
id="path2420"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 1.3563937,49.996327 3.40191,-0.74612 m -1.683,1.84116 c -0.635,0 -1.2192,-0.4064 -1.397,-1.0414 -0.18473,-0.68087 -0.33108,-1.37271 -0.44701,-2.07187 m 1.84401,3.11327 c 0.762,0 1.3716,-0.6604 1.3716,-1.4224 0,-0.6604 -0.254,-1.4478 -0.3302,-2.1336"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
id="path2422"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.1167037,47.535367 c -0.72478,-3.08871 -0.60569,-5.57532 -0.508,-8.0772 0.9398,-0.8636 2.0574,-1.397 3.3274,-1.397 1.9558,0 3.5306003,0.9652 4.2418003,2.794 0.3302,0.8382 0.3556,1.905 0.4318,2.8194 0.1524,1.7526 0.457195,3.9624 0.482595,5.6896 0,0.7366 -0.736595,1.3208 -1.422395,1.3208 m -6.5532003,-3.1496 c -0.0508,-0.3556 -0.1016,-1.1684 -0.0762,-1.6002 v -0.6858 c -0.0254,-1.7018 0.8382,-4.3688 2.9718,-4.3688 0.4826,0 1.016,0.1524 1.3208,0.5334 0.508,0.635 0.762,5.8928 0.7874,6.2738 0.0762,1.0922 -0.0762,2.9972 1.5494003,2.9972 m -7.8268103,-8.56554 2.17783,0.9255 m 2.0438,-5.50848 0.002,4.20561 m 4.6679403,0.77702 -3.6259603,0.42945 m 4.2676853,5.90732 -3.3928153,0.5331"
sodipodi:nodetypes="ccscccccccsscccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer36"
inkscape:label="GlyphLayer-i"
style="display:none">
<g
id="g69232"
transform="translate(-12.96)">
<path
id="path2208"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.770629,39.427597 2.76101,0.0608 m -3.27598,5.1277 3.6664,-0.14982 m -3.49637,5.43509 3.88103,-0.82551 m -1.7636,1.50736 c 0.7874,0 1.3716,-0.6604 1.3716,-1.4224 0,-0.5588 -0.2286,-1.1938 -0.3048,-1.7526 -0.127,-0.889 -0.1524,-1.8034 -0.1524,-2.6924 0,-1.4224 0.2032,-2.8702 0.2032,-4.2926 0,-0.7366 -0.7112,-1.3208 -1.397,-1.3208 m 0.2794,11.4808 c -0.635,0 -1.2192,-0.4318 -1.397,-1.0414 -0.4064,-1.5494 -0.508,-3.2258 -0.508,-4.826 0,-0.762 0.0762,-4.4704 0.4064,-4.9276 0.3048,-0.4318 0.6604,-0.6858 1.2192,-0.6858"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path2210"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.583579,35.763247 3.75515,-0.055 m -1.94801,1.56545 c 0.7366,0 1.4224,-0.6096 1.4224,-1.3716 0,-0.8636 -0.635,-1.4478 -1.4732,-1.4478 m 0.0508,2.8194 c -0.8382,0 -1.4732,-0.5842 -1.4732,-1.4478 0,-0.762 0.6858,-1.3716 1.4224,-1.3716"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer37"
inkscape:label="GlyphLayer-j"
style="display:none">
<g
id="g20570"
style="stroke:#260605"
transform="translate(-37.4823,-107.06)"
>
<path
id="path2424"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 42.952918,142.73104 3.063428,-0.17284 m -1.532358,1.62299 c 0.7112,0 1.4224,-0.6096 1.4224,-1.3462 0,-0.8128 -0.5842,-1.4732 -1.4224,-1.4732 m 0,2.8194 c -0.8382,0 -1.397,-0.6604 -1.397,-1.4732 0,-0.7366 0.6858,-1.3462 1.397,-1.3462"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2426"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 38.018177,157.28492 2.968125,-0.90575 m 0.828088,2.75907 -3.292322,1.27824 m 3.98975,-0.96627 0.09703,3.46793 m 1.216031,-4.79137 2.86153,1.38716 m -3.139821,-11.61345 3.262,-0.58646 m -7.384203,8.91027 c -0.583915,0.15443 -1.087197,0.62658 -1.087197,1.2665 0,2.3876 1.143,5.3594 3.937,5.3594 3.8862,0 5.0292,-5.0038 5.0292,-8.0518 0,-2.5908 -0.381,-5.334 -0.8128,-7.8994 -0.1016,-0.6096 -0.7874,-1.0414 -1.397,-1.0414 m -5.669203,10.3667 c 0.134576,-0.0356 0.273435,-0.0543 0.411403,-0.0543 1.778,0 1.2192,2.413 1.8796,3.5052 0.0762,0.127 0.3302,0.3556 0.508,0.3556 1.8542,0 2.2606,-3.8608 2.2606,-5.1562 0,-1.8796 -0.254,-3.7592 -0.4826,-5.6134 -0.0762,-0.635 -0.2794,-1.3716 -0.2794,-1.9812 0,-0.762 0.6096,-1.4224 1.3716,-1.4224"
sodipodi:nodetypes="cccccccccccssscccscsscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer38"
inkscape:label="GlyphLayer-k"
style="display:none">
<g
id="g21257"
style="stroke:#260605"
transform="translate(-47.98,-107.06)"
>
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 52.690963,148.34679 6.446319,9.88695"
id="path20572" />
<path
id="path2432"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 57.137167,158.07995 2.903096,-1.12017 m -4.540401,-2.47547 2.434444,-1.81555 m -4.406265,-0.20507 2.604493,-2.21336 m 3.004747,7.98341 c -0.201971,0.10909 -0.433761,0.17145 -0.680518,0.17145 -0.4572,0 -0.9906,-0.254 -1.1938,-0.6858 -0.762,-1.6002 -1.4986,-3.1242 -2.6162,-4.5212 -0.4064,-0.508 -0.8636,-0.9906 -1.2954,-1.4732 m 5.785918,6.50875 c 0.442515,-0.23902 0.741882,-0.70235 0.741882,-1.22555 0,-1.0922 -2.3368,-4.9276 -4.3688,-7.1628"
sodipodi:nodetypes="cccccccscsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 55.510363,149.84539 3.9535,-4.94818"
id="path20580" />
<path
id="path2430"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 52.42638,148.08221 2.308344,2.80025 m 0.309221,-4.96974 2.398755,2.7421 m 0.158305,-4.33989 2.091844,2.4696 m -0.228986,-1.88732 c 0.19795,0.23923 0.3137,0.5439 0.3137,0.88418 0,0.9398 -1.0668,1.4224 -1.778,1.9304 -0.889,0.6604 -1.6764,1.3716 -2.4892,2.1336 l -2.159,1.8796 c -0.254,0.1778 -0.4826,0.3302 -0.6858,0.4826 m 6.7983,-7.31038 c -0.274875,-0.3322 -0.70825,-0.53822 -1.2103,-0.53822 -1.0414,0 -3.5052,2.2352 -5.334,3.9116 -0.1016,0.0254 -0.1778,0.0508 -0.2286,0.0762 l -0.0254,3.8608"
sodipodi:nodetypes="cccccccscccccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="M 52.665563,152.20759 49.855969,138.45685"
id="path20588" />
<path
id="path2428"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 49.13794,156.0367 3.458228,0.35605 m -2.951334,-8.32054 3.156572,-0.39871 m -4.330087,-7.71525 3.280916,-0.64409 m -1.896266,-0.85731 c -0.605539,0.15951 -1.051206,0.75849 -1.051206,1.43174 0,0.6604 0.5588,3.1496 0.7112,4.2164 0.254,1.9558 0.381,3.9116 0.381,5.8928 0,1.9304 -0.0254,3.8862 -0.3556,5.7912 -0.0508,0.2794 -0.127,0.6096 -0.127,0.889 0,0.7434 0.459524,1.34694 1.148217,1.47395 m -0.706611,-19.69509 c 0.102667,-0.0271 0.209929,-0.0415 0.320394,-0.0415 0.635,0 1.2192,0.4318 1.397,1.0668 0.762,2.794 1.016,5.9182 1.1176,8.8646 l -0.0254,3.8608 c -0.0762,1.651 -0.2286,3.302 -0.4826,4.9022 -0.1016,0.6096 -0.7874,1.0668 -1.3462,1.0668 -0.0948,0 -0.186356,-0.008 -0.274183,-0.0247"
sodipodi:nodetypes="cccccccscscsccsccccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer39"
inkscape:label="GlyphLayer-l"
style="display:none">
<path
id="path2214"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.5471622,47.885007 0.0656,3.32131 m 0.0716,-3.7111 3.1689,1.56015 m -6.37481,1.11676 2.59271,-2.58291 m -3.68404998,-6.24363 3.72695998,-0.18506 m -3.07452,-8.50435 3.87457,0.0681 m -1.97763,-0.97322 c -0.5588,0 -0.9144,0.2794 -1.2192,0.7112 -0.5334,0.7366 -0.91439998,10.3124 -0.91439998,12.3698 0,1.8796 0.0508,4.064 1.60019998,5.3594 0.6096,0.508 1.2954,0.8636 2.1082,0.8636 1.2192,0 2.8702,-0.8382 2.8702,-2.2606 0,-0.40783 -0.16627,-0.7709 -0.42821,-1.03145 m -4.01679,-16.01195 c 0.6858,0 1.4224,0.6096 1.4224,1.3462 0,1.016 -0.2286,2.1082 -0.3302,3.1242 -0.3048,3.048 -0.4064,6.096 -0.4064,9.144 0,0.5588 0.0508,2.794 0.889,2.794 0.4572,0 0.4826,-0.8128 1.4478,-0.8128 0.37966,0 0.73409,0.15764 0.99419,0.41635"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="ccccccccccccscssccsssssc"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer40"
inkscape:label="GlyphLayer-m"
style="display:none">
<g
id="g23254"
style="stroke:#260605"
transform="translate(-68.7473,-107.06)"
>
<path
id="path21264"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 71.015872,143.80008 c 0.7366,0 1.3208,0.7112 1.3208,1.4224 v 1.0414 l -0.01608,6.46351 m -1.30473,-8.92731 c -0.8128,0 -1.4986,0.5842 -1.4986,1.4224 0,2.61156 -0.01179,5.10535 -0.01929,7.64175 m -0.280417,-8.11764 3.280084,-0.0607"
sodipodi:nodetypes="cscccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 69.497971,152.86423 1.340101,5.03285"
id="path22592" />
<path
id="path2220"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 70.838092,157.89708 c 0.8128,0 1.4732,-0.5842 1.4732,-1.4224 l 0.0093,-3.74729 m -1.48252,5.16969 c -0.7366,0 -1.3462,-0.7112 -1.3462,-1.4224 0,-1.22384 0.0026,-2.42183 0.0061,-3.61045 m 3.192318,1.65646 -3.436781,0.17349"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path21286"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 72.297445,152.82194 0.03925,-6.55806 c 0.9652,-1.016 2.3114,-1.8542 3.7592,-1.8542 1.27,0 2.6162,0.6858 3.175,1.8796 0.682564,0.74172 0.79512,4.8831 0.8128,6.731 m -7.786246,-0.19834 c 0.242059,-1.97375 1.029414,-3.86834 2.604647,-5.08486 0.3302,-0.254 0.7874,-0.508 1.1938,-0.508 0.1778,0 0.4826,0.0508 0.5842,0.2286 0.390359,0.69586 0.531226,3.39902 0.581726,5.6467 m -4.180642,-2.20953 -1.412766,-1.64101 m 2.920359,-0.7194 -2.156203,-2.92751 m 3.769082,1.86095 0.135686,-3.30069 m 0.318321,4.11346 3.44566,-0.62595 m -3.547795,5.27342 4.021587,-0.17315"
sodipodi:nodetypes="ccsccccscccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 77.261822,153.10438 1.374071,4.6149"
id="path22594" />
<path
id="path2218"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 78.635895,157.71928 c 0.6096,0 0.9398,-0.2286 1.27,-0.7112 0.3302,-0.4826 0.127,-3.2766 0.1778,-3.9878 m -1.447803,4.699 c -1.1176,0 -1.3462,-1.0414 -1.3462,-1.905 0,-0.58995 -0.0028,-1.59377 -0.02787,-2.7099 m 3.373239,3.34429 -3.788559,0.19646"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2216"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 80.083692,153.02024 c -0.270933,-2.24367 0.107954,-4.98932 -0.8128,-6.731 0.889,-1.1176 2.2352,-1.8542 3.683,-1.8542 3.1496,0 4.318,2.5654 4.318,5.3086 0,2.286 -0.0762,4.5974 -0.2286,6.8834 -0.0508,0.7874 -0.5588,1.397 -1.3716,1.397 m -5.588,-5.0038 c 0.0762,-1.0668 0.2032,-3.9624 0.8382,-4.8768 0.4572,-0.6604 1.2446,-0.889 2.032,-0.889 1.4224,0 1.4732,1.3462 1.4732,2.413 0,2.3368 -0.2032,4.699 -0.2032,7.0358 0,0.762 0.7366,1.3208 1.4478,1.3208 m -6.450159,-12.35385 2.393067,2.4737 m -2.730691,2.21498 1.617747,1.28078 m 3.647102,-7.70791 -0.823505,3.56076 m 4.19772,1.92806 -3.486833,0.15292 m 3.433795,6.86268 -3.603006,-0.0713"
sodipodi:nodetypes="ccssccccsssccccccccccc"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:pull_compensation_mm="0.1"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer41"
inkscape:label="GlyphLayer-n"
style="display:none">
<g
id="g25226"
style="stroke:#260605"
transform="translate(-87.9628,-107.06)"
>
<path
id="path23260"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 91.729728,145.26641 -3.269557,0.0788 m 1.802953,-0.96082 c -0.8128,0 -1.4732,0.5334 -1.4732,1.2954 0,1.32299 0.0057,2.64028 0.01169,3.95727 m 1.461494,-5.25267 c 0.7366,0 1.3462,0.635 1.3462,1.2954 v 0.3302 c -1.024488,0.70369 -1.802231,1.661 -1.802231,2.41791 0,0.66761 0.170555,1.0265 0.460847,1.21934"
sodipodi:nodetypes="cccsccscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 90.267924,149.64724 -0.1064,8.04675"
id="path24566" />
<path
id="path2434"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 88.570359,156.89532 3.269557,-0.0788 m -3.306265,-5.75998 3.269557,-0.0788 m -1.641684,6.71625 c -0.7366,0 -1.3462,-0.635 -1.3462,-1.2954 v -2.3622 c 0,-1.47101 -0.007,-2.93498 -0.01371,-4.39933 m 1.35991,8.05693 c 0.8128,0 1.4732,-0.5334 1.4732,-1.2954 0,-2.1844 -0.0254,-4.3434 -0.0254,-6.5278 -0.548478,0 -1.018842,-0.009 -1.341384,-0.22355"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2436"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 101.68193,156.57544 -3.16171,0.0533 m 1.213516,-11.18706 -2.010161,2.29392 m -5.993847,-2.46919 1.937359,3.12933 m -3.575732,1.33315 c -0.531856,-0.5546 -0.854648,-2.18814 1.517969,-3.7189 1.3208,-0.8636 2.895599,-1.3462 4.470399,-1.3462 4.394197,0 5.435597,2.667 5.435597,6.1468 v 5.461 c 0,0.762 -0.6604,1.2954 -1.4732,1.2954 m -9.950765,-7.8381 c 0.761271,0.64983 1.221309,0.50965 1.517969,0.1419 0.0762,-0.0762 0.127,-0.127 0.1524,-0.2032 0.5334,-1.6002 2.514599,-2.413 4.343399,-2.413 2.9464,0 2.5654,2.1844 2.5654,4.191 l 0.0254,3.0988 c 0,0.9144 -0.3556,3.0226 1.346197,3.0226"
sodipodi:nodetypes="ccccccccssscccssccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer42"
inkscape:label="GlyphLayer-o"
style="display:none">
<path
id="path2224"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 0.39120953,43.340917 3.54522997,0.34264 m -0.0604,0.85296 -3.42096997,0.52641 m 4.90282697,2.15465 -2.099177,2.76773 m 7.5230575,-4.75752 3.3334,1.2224 m -5.2245305,-5.91286 1.3931905,-3.06623 m -8.4579275,2.26245 2.815157,2.07748 m -3.90796697,2.32072 c 0,-1.778 1.19379997,-4.5466 2.92099997,-5.6134 1.320797,-0.8128 2.870197,-1.1684 4.419597,-1.1684 3.7846005,0 5.9944005,3.556 5.9944005,7.0612 0,3.7846 -3.3528,6.477 -6.9850005,6.477 -3.733797,0 -6.34999697,-3.1496 -6.34999697,-6.7564 m 2.81939997,0.0508 c 0,-2.4892 2.108197,-4.0132 4.521207,-4.0132 2.1844005,0 3.1750005,2.3622 3.1750005,4.2418 0,2.2352 -2.1082005,3.6576 -4.1656005,3.6576 -2.1336,0 -3.530607,-1.8542 -3.530607,-3.8862"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer43"
inkscape:label="GlyphLayer-p"
style="display:none">
<g
id="g29820"
transform="translate(-117.152,-107.06)">
<path
id="path2230"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 123.24,160.066 -3.692,0.204 m 1.893,3.799 c 0.737,0 1.473,-0.533 1.473,-1.295 0,-1.6 -0.127,-3.226 -0.228,-4.826 m -1.245,6.121 c -0.787,0 -1.321,-0.66 -1.346,-1.371 l -0.279,-5.334"
inkstitch:satin_column="True"
sodipodi:nodetypes="ccccccsc"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="M 119.81566,157.36368 119.689,154.493"
id="path26529" />
<path
id="path2228"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 122.74,151.465 -3.557,0.29 m 3.35,3.475 -0.304,-6.604 m -2.54,5.867 -0.077,-1.574 c -0.076,-1.321 -0.177,-2.693 -0.254,-4.039"
inkstitch:satin_column="True"
sodipodi:nodetypes="ccccccc"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 119.358,148.88 0.078,-2.252"
id="path28494" />
<path
id="path26543"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 119.099,146.409 3.179,-0.24 m -3.179,-0.29 3.179,-0.24 m -1.548,-0.315 c 0.483,0 0.864,0.203 1.143,0.61 l 0.068,0.506 m -1.211,-1.116 c -0.584,0 -1.092,0.33 -1.321,0.813 l 0.027,0.491"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 119.436,146.628 -1.52534,0.93128"
id="path28502" />
<path
id="path2232"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 120.01221,154.1282 -1.20437,3.15804 m 5.21336,-2.3567 0.52683,3.08811 m 1.79103,-6.4566 3.68381,-0.28485 m -6.94708,-2.26355 0.11697,-3.28861 m -4.46888,0.29159 0.18329,3.31538 m -0.99651,-1.77173 c 0,-0.8128 0.6604,-1.2192 1.4986,-1.4224 l 2.4638,-0.2032 c 4.1148,0.0254 7.9248,1.3462 7.9248,6.4262 0,3.2258 -3.0988,5.6134 -6.6548,5.588 h -0.4572 c -0.93226,-0.039 -1.89284,-0.25826 -2.8702,-0.5842 -0.8636,-0.3302 -1.524,-0.8128 -1.524,-1.524 0,-0.20774 0.0559,-0.40848 0.1558,-0.58882 m -0.5368,-7.69158 c 0,0.7112 0.6604,1.2954 1.4478,1.3208 l 2.8702,-0.254 c 2.3114,0.0254 4.5212,0.4318 4.5212,3.7846 0,1.7526 -1.778,2.8448 -3.6576,2.8448 -0.1778,0 -0.381,0 -0.5588,-0.0254 -0.8427,-0.0211 -1.94274,-0.75932 -2.8448,-0.7366 -0.54889,0.0354 -1.01138,0.34236 -1.2412,0.75738"
inkstitch:satin_column="True"
sodipodi:nodetypes="cccccccccccccscccsccccssccc"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer44"
inkscape:label="GlyphLayer-q"
style="display:none">
<g
id="g31810"
transform="translate(-130.524,-107.06)">
<path
id="path2438"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 139.23916,150.21703 3.72833,-0.30228 m -3.86553,1.59811 3.94605,0.36768 m -7.48241,2.08165 -1.55057,3.06588 m 3.507,-8.77472 0.33756,-2.96668 m -3.86038,5.63145 -3.12077,-0.24975 m 8.78331,0.24382 c 0,1.778 -1.4986,3.5306 -3.302,3.5306 -1.4478,0 -2.6162,-1.6002 -2.6162,-2.8702 0,-2.4384 1.143,-3.4544 3.3782,-3.4544 1.4732,0 2.54,1.2954 2.54,2.794 m 2.83294,0.12442 c -0.0542,2.46296 -1.26047,3.82578 -2.60434,5.05718 -1.016,0.7366 -2.2606,1.1684 -3.5306,1.1684 -2.5146,0 -4.4958,-2.032 -4.9276,-4.4196 -0.127,-0.7366 -0.127,-1.27 -0.127,-1.8288 0,-3.1496 2.9464,-5.6134 5.9182,-5.6134 1.5748,0 2.9972,0.6604 3.9878,1.7272 1.20739,1.58927 1.3123,2.60257 1.28354,3.90902"
sodipodi:nodetypes="cccccccccccssscccscsscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 142.49469,151.03661 c 0.4728,-1.12186 0.80684,-2.85966 -0.80092,-4.01062"
id="path31144"
sodipodi:nodetypes="cc" />
<path
id="path2440"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 143.30153,148.17695 -3.30498,-0.36312 m 1.6972,-0.78784 c -0.1778,0 -0.3302,0.0508 -0.4826,0.1016 0.99495,1.46423 1.33082,2.72159 1.21738,3.93188 m -0.73476,-4.03348 c 0.6604,0 1.4224,0.6604 1.4224,1.4224 0,0.85503 -0.13702,1.76142 -0.21412,2.63483"
sodipodi:nodetypes="ccccccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path29824"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 142.90205,151.08322 c -0.0168,0.19038 -0.0309,0.3792 -0.0399,0.56557 -0.0762,1.4478 -0.1524,2.8956 -0.1524,4.3434 0,2.2098 0.3048,4.3942 0.3048,6.5786 v 0.1524 c 0,0.7874 -0.762,1.4224 -1.397,1.4224 m 0.81098,-13.08612 c -0.15911,1.69753 -1.13462,3.83149 -2.53818,5.03432 0,1.3208 0.127,6.2738 0.4318,7.0866 0.2286,0.5842 0.7112,0.9652 1.2954,0.9652 m 1.62804,-1.31983 -3.2845,0.29741 m 2.88193,-8.30844 -3.30538,-0.11676"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer45"
inkscape:label="GlyphLayer-r"
style="display:none">
<g
id="g33154"
transform="translate(-143.932,-107.06)">
<path
id="path2442"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 145.03606,157.37829 3.2037,-0.22683 m -3.75176,-5.96124 3.25913,-0.25141 m -1.19205,7.13621 c 0.7874,0 1.4224,-0.635 1.4224,-1.4224 0,-0.889 -0.1524,-1.8288 -0.2032,-2.7178 -0.1016,-1.7018 -0.2032,-3.4036 -0.254,-5.1308 l -1.40128,-0.0985 m 0.43608,9.36947 c -0.8382,0 -1.3462,-0.635 -1.397,-1.4224 -0.18297,-2.57987 -0.36594,-5.19929 -0.45396,-7.81077"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 146.119,148.70552 c -1.46462,-1.52959 -0.13564,-2.8872 -0.0465,-4.32113"
id="path31828"
sodipodi:nodetypes="cc" />
<path
id="path31816"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 146.07252,144.38439 c -0.7874,0 -1.4224,0.635 -1.4224,1.4224 0,1.00863 0.0198,2.02123 0.054,3.03503 m 1.36836,-4.45743 c 0.4318,0 0.8382,0.2286 1.0922,0.5334 -0.73414,0.44004 -2.2121,2.73091 -1.04568,3.78773 m 1.30988,-3.59585 -2.82767,0.16438"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2444"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 151.31907,148.82033 2.66623,-1.28373 m -4.68608,-0.2845 -0.13706,-3.1304 m -3.71429,3.26222 2.5704,0.97448 m -1.89927,0.61173 c 0.42976,0.21983 1.24213,0.22268 1.40128,-0.16612 0.31092,-0.75955 0.4572,-1.70182 1.8034,-1.70182 1.8034,0 1.3716,1.9558 2.9464,1.9558 0.26392,0 0.5126,-0.0792 0.72494,-0.21444 m -6.87602,0.12658 c -1.18685,-0.60708 -0.0559,-3.4488 1.04568,-4.05234 0.66864,-0.36634 1.4224,-0.6096 2.1082,-0.6096 1.5748,0 2.8194,0.7112 3.7846,1.9304 0.2794,0.3556 0.6096,0.9652 0.6096,1.397 0,0.49808 -0.27131,0.95276 -0.67206,1.20796"
sodipodi:nodetypes="cccccccsssccsscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer46"
inkscape:label="GlyphLayer-s"
style="display:none">
<path
id="path2446"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 3.9117567,46.962137 -2.46479,1.33697 m 6.203525,-0.77307 1.03417,2.93013 m -0.13227,-4.67106 2.8373903,-2.02494 m -5.1715153,-1.01615 0.424075,3.03526 m -2.805235,-3.48967 -3.29676997,0.34512 m 5.02536997,-1.82937 -0.96209,-2.72918 m 4.085325,3.01653 1.21732,-2.97149 m -7.467955,8.80165 c -0.45941,0.20992 -0.80436,0.72642 -0.80436,1.27292 0,1.778 1.6764,2.7432 3.2766,2.7432 3.175005,0 6.8072053,-1.2954 6.8072053,-5.08 0,-2.2606 -1.4224,-3.2004 -3.5306003,-3.2004 -1.0922,0 -2.133605,0.3556 -3.225805,0.3556 -0.3302,0 -1.2954,-0.127 -1.2954,-0.6096 0,-0.381 -0.0254,-0.508 0.2032,-0.8128 0.7112,-0.9652 2.032,-1.016 3.175005,-1.016 0.8636,0 1.5494,0.4572 2.2606,0.4572 0.6392,0 1.1711603,-0.48257 1.3260203,-1.07289 m -8.1924653,6.96277 c 0.13846,-0.0633 0.2873,-0.0987 0.44024,-0.0987 0.0762,0 0.1524,0 0.2286,0.0254 0.7874,0.1778 0.635,1.0668 1.3208,1.1938 0.2032,0.0508 0.4572,0.0762 0.5588,0.0762 1.549405,0 3.937005,-0.1016 3.937005,-2.0574 0,-0.127 0,-0.254 -0.1016,-0.4826 -0.1524,-0.1016 -0.3048,-0.1016 -0.4826,-0.127 -1.143,0 -2.235205,0.381 -3.352805,0.381 -1.9812,0 -4.14019997,-1.1938 -4.14019997,-3.4036 l 2e-5,2e-5 c 0,-2.8956 3.70839997,-4.6736 6.17220497,-4.6736 1.143,0 3.6576003,0.3048 3.6576003,1.8542 0,0.11871 -0.0158,0.2361 -0.0456,0.34951"
sodipodi:nodetypes="cccccccccccccccsssssscssccsccssccsssssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer47"
inkscape:label="GlyphLayer-t"
style="display:none">
<g
id="g36481"
transform="translate(-166.731,-107.06)"
style="display:inline">
<path
id="path33820"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 170.38383,141.11538 3.59583,-0.61464 m -3.70921,2.04158 3.59583,-0.61464 m -1.64848,-1.98829 c 0.8128,0 1.4224,0.6096 1.4224,1.4478 0,0.3556 -0.0508,0.7874 -0.127,1.1938 m -1.2954,-2.6416 c -0.5842,0 -1.2446,0.4318 -1.3462,1.016 -0.127,0.762 -0.2286,1.524 -0.3556,2.286"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 170.516,143.24139 c 0.4555,13.39476 4.73944,16.14683 6.80715,8.9916"
id="path34481"
sodipodi:nodetypes="cc" />
<path
id="path2450"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 175.768,152.981 3.19,0.41 m -4.32,1.373 -0.059,3.136 m -4.495,-3.817 3.441,-1.209 m -3.73,-5.468 3.596,-0.614 m 3.932,5.441 c -2.286,0 -0.762,2.743 -2.692,2.743 -1.905,0 -1.778,-4.064 -1.778,-5.385 0,-1.32 0.076,-2.667 0.228,-3.987 m 4.242,6.629 c 0.788,0 1.321,0.762 1.321,1.499 0,2.209 -1.803,4.064 -4.039,4.064 -4.318,0 -4.597,-5.03 -4.597,-8.205 0,-1.092 0.076,-2.209 0.152,-3.302"
sodipodi:nodetypes="cccccccccsssccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 170.16,146.289 -2.5904,-1.19341"
id="path35808" />
<path
id="path2452"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 171.83427,142.60897 0.6032,3.42308 m 2.35834,-3.95459 0.51991,3.50898 m -6.34646,-2.32787 0.51166,3.44858 m -1.91132,-1.61156 c 0,-0.635 0.4064,-1.2192 1.0414,-1.3716 0.508,-0.127 1.1684,-0.3048 1.905,-0.4826 l 2.9972,-0.6604 c 0.8128,-0.1524 1.5494,-0.2794 2.1336,-0.2794 0.7874,0 1.4732,0.5842 1.4732,1.397 m -9.5504,1.397 c 0,0.7874 0.6604,1.397 1.4224,1.397 0.2032,0 0.635,-0.0762 1.1684,-0.2032 l 2.921,-0.6858 c 0.4572,-0.1016 0.8636,-0.2032 1.143,-0.254 0.6096,-0.1016 1.4732,-0.127 2.032,-0.3556 0.508,-0.2032 0.8636,-0.7112 0.8636,-1.2954"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer48"
inkscape:label="GlyphLayer-u"
style="display:none">
<g
id="g37156"
transform="translate(-179.41,-107.06)"
style="display:inline">
<path
id="path2454"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 189.77306,150.65536 -1.85561,-0.39868 m 1.30987,5.86556 -2.3839,-2.45751 m -5.40196,2.58564 2.81224,-2.18159 m -4.10093,-7.8723 3.36771,0.22011 m -1.69909,-1.3464 c 0.6604,0 1.3208,0.635 1.3208,1.27 0,1.1684 -0.1524,2.3622 -0.1524,3.5306 0,1.4478 0.0508,5.1054 2.3114,5.1054 3.1496,0 3.3782,-6.4008 3.4036,-8.4074 m -6.8834,-1.4986 c -0.6096,0 -0.9398,0.2032 -1.2954,0.6604 -0.3302,0.4318 -0.3556,3.302 -0.3556,3.9624 0,2.3622 0.127,5.1816 2.1844,6.858 0.8382,0.6858 1.8288,1.1176 2.9464,1.1176 1.6256,0 3.0988,-0.8636 4.064,-2.032 l -0.6604,-9.0678"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 188.70479,146.56879 1.4732,-1.4732"
id="path36483" />
<path
id="path2456"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 189.23499,157.15055 3.41037,-0.51964 m -3.90646,-5.14778 3.21528,-0.16377 m -3.46325,-5.17349 3.2319,-0.10728 m -1.54484,-0.943 c -0.9398,0 -1.4732,0.5842 -1.4732,1.4732 l 0.6604,9.0678 c 0.127,0.9652 0.1524,2.159 1.5494,2.159 m -0.7366,-12.7 c 0.7366,0 1.3462,0.6604 1.3462,1.3208 0,2.8956 0.254,5.7912 0.5842,8.6614 0.0508,0.4318 0.2032,0.9398 0.2032,1.3716 0,0.7112 -0.635,1.3462 -1.397,1.3462"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer49"
inkscape:label="GlyphLayer-v"
style="display:none">
<path
id="path2458"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10.972014,38.396917 2.75584,-0.10045 m -4.1092103,5.413 2.8251003,1.60584 m -5.8894843,2.10713 2.19752,2.57053 m -4.34044,-0.15437 2.14292,-2.41616 m -4.79816,-1.95021 2.96146,-1.40301 m -4.19097005,-5.18906 3.33129005,-0.19192 m -1.57018,-0.90647 c -1.2192,0 -1.44780005,1.0922 -1.44780005,2.0574 0,2.8194 1.70180005,8.0772 3.88620005,9.9314 0.5334,0.4318 1.27,1.0414 1.9812,1.0414 0.762,0 2.2352,-1.3462 2.794004,-1.905 2.4638003,-2.4638 4.2926003,-6.223 4.2926003,-9.779 0,-0.762 -0.635,-1.397 -1.4224,-1.397 m -10.0838043,0.0508 c 0.6604,0 1.397,0.6096 1.397,1.3208 0,0.5334 -0.0508,1.016 0.0254,1.5494 0.2794,2.0574 1.3462,5.6388 2.921,7.0612 2.6416,-2.159 4.3434043,-5.1816 4.3434043,-8.5852 0,-0.7874 0.6096,-1.397 1.397,-1.397"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer50"
inkscape:label="GlyphLayer-w"
style="display:none">
<path
id="path2460"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 19.251421,39.086307 -3.22083,-0.40727 m -0.32885,10.3354 -2.53907,-2.02305 m -2.53907,2.02305 2.53907,-2.02305 m -3.6321969,-0.81704 2.5390669,-2.02305 m -2.5390669,2.02305 -2.53907,-2.02305 m -1.22554,2.26577 2.68719,1.6364 m -2.68719,-1.6364 -2.63093,1.67967 m -2.66062009,-9.09906 3.39458009,-0.44599 m -1.67902,-0.97312 c -0.6858002,0 -1.42240019,0.5842 -1.42240019,1.2954 0,2.8448 1.19379999,6.4262 2.46380019,8.9662 0.381,0.7874 1.1684,2.4892 2.032,2.7432 0.1778,0.0508 0.4572,0.0762 0.635,0.0762 0.254,0 0.4826,-0.1016 0.6858,-0.2032 0.6096,-0.3048 2.54,-3.7592 2.9464,-4.5466 0.431797,1.1684 1.7779969,4.572 2.9971969,4.953 0.1524,0.0508 0.3048,0.0762 0.4572,0.0762 1.0668,-0.0254 1.7018,-1.0414 2.286,-1.8034 1.9304,-2.5146 3.7338,-6.6802 3.7338,-9.8806 0,-0.7112 -0.7366,-1.2954 -1.4224,-1.2954 m -15.3923969,-0.381 c 0.3556,0 0.7366,0.127 0.9906,0.4064 0.508,0.5334 0.4318,1.397 0.508,2.0574 0.2794,2.3368 1.0668,4.6482 2.1336,6.7056 0.9652,-1.6002 1.8288,-3.2512 2.4892,-4.9784 0.2286,-0.5842 0.7112,-1.0414 1.371597,-1.0414 0.6349999,0 1.1429999,0.4572 1.3461999,1.0414 0.6604,1.8542 1.2446,3.7338 2.1336,5.4864 1.7272,-2.413 2.6924,-4.953 3.0226,-7.8994 0.0762,-0.7874 0.508,-1.397 1.397,-1.397"
sodipodi:nodetypes="cccccccccccccccccsccssccccsccccccscccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer51"
inkscape:label="GlyphLayer-x"
style="display:none">
<g
id="g38507"
transform="translate(-227.209,-107.06)"
style="display:inline">
<path
id="path2464"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 229.553,153.70188 2.56641,1.90049 m -1.5669,-3.36061 2.55798,2.14509 m -4.83414,1.16839 2.82821,1.65781 m -2.14216,0.19482 c -0.24201,-0.17451 -0.42428,-0.42731 -0.51258,-0.75528 -0.1016,-0.3556 -0.0508,-0.762 0.127,-1.0668 0.9398,-1.6256 2.2606,-3.2004 3.4798,-4.6228 m -3.09422,6.44488 c 0.24531,0.17688 0.55199,0.27333 0.88442,0.28612 0.1016,0 0.2286,-0.0254 0.3302,-0.0508 0.3556,-0.1016 0.6604,-0.3302 0.8382,-0.635 0.762,-1.3208 1.7272,-2.4638 2.6924,-3.6322"
sodipodi:nodetypes="ccccccccccccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 232.05662,150.96299 6.75432,-6.2422"
id="path37821" />
<path
id="path2466"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 237.11973,144.61952 2.44047,1.79687 m -3.97766,-0.13279 2.35007,2.08144 m -3.84313,-0.26775 2.395,2.26751 m 2.32646,-5.64401 c 0.36536,0.25726 0.61168,0.68131 0.61168,1.1622 0,0.1778 -0.0254,0.381 -0.127,0.5334 -0.0508,0.1778 -0.1524,0.3302 -0.2794,0.4572 -0.5334,0.635 -1.0414,1.2954 -1.5748,1.9304 -0.635,0.762 -1.2446,1.524 -1.8796,2.3114 m 3.24912,-6.3946 c -0.23287,-0.16398 -0.5141,-0.2602 -0.81072,-0.2602 -0.3302,0 -0.762,0.127 -0.9906,0.4318 -0.9652,1.2954 -2.0574,2.54 -3.0988,3.81"
sodipodi:nodetypes="cccccccscccccscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000;stop-opacity:1"
d="m 233.91082,148.70239 -5.461,-4.1656"
id="path37829" />
<path
id="path2462"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 237.20022,158.05969 2.21373,-2.31985 m -5.6779,-1.72829 2.38981,-2.70002 m -4.76595,-0.81966 2.33425,-2.56065 m -5.79472,-1.71198 2.20903,-2.1223 m -1.65865,0.43985 c 0.2286,-0.2794 0.6604,-0.4064 1.016,-0.4064 0.3556,0 0.7112,0.1524 0.9906,0.4064 1.2954,1.2446 2.413,2.7178 3.4544,4.1656 l 1.651,2.413 c 1.1176,1.651 2.0574,3.175 3.4798,4.5974 0.2794,0.2794 0.4064,0.6096 0.4318,0.9906 0.0254,0.381 -0.1778,0.7366 -0.4318,0.9906 m -10.5918,-13.1572 c -0.2286,0.2794 -0.4318,0.6096 -0.4064,0.9906 0.0254,0.381 0.1524,0.7366 0.4064,0.9906 1.4224,1.4224 2.4892,2.794 3.6068,4.445 l 1.651,2.413 c 1.0414,1.524 2.159,2.921 3.3528,4.318 0.2286,0.2794 0.635,0.4318 0.9906,0.4318 0.3556,0 0.7366,-0.1778 0.9906,-0.4318"
sodipodi:nodetypes="cccccccccscccssccsscccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer52"
inkscape:label="GlyphLayer-y"
style="display:none">
<g
id="g79173"
transform="translate(-13.8885)">
<path
id="path2468"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 24.876928,43.047627 -2.23067,-0.0834 m 0.32823,5.90781 -1.58505,-2.79445 m -3.37034,-0.75648 -2.505445,2.02158 m 2.284325,-8.20184 -3.209505,0.0412 m 1.71385,-1.04468 c 0.6604,0 1.3208,0.6858 1.3208,1.3462 0,0.7366 -0.0508,1.4732 -0.0508,2.2098 0,1.9558 -0.2794,5.0038 2.489205,5.0038 2.2098,0 3.6576,-2.667 3.6576,-4.6228 m -7.416805,-3.937 c -1.8542,0 -1.5494,2.3114 -1.5494,3.556 0,2.7178 -0.0254,5.842 2.794,7.2136 0.787405,0.381 1.651005,0.6096 2.514605,0.6096 1.3716,0 2.7432,-0.5842 3.7846,-1.4732 l -0.127,-5.969"
sodipodi:nodetypes="cccccccccsssccscscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="font-variation-settings:normal;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m 23.719128,42.074367 1.4478,-3.3528"
id="path38535"
sodipodi:nodetypes="cc" />
<path
id="path2470"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 16.974373,52.700777 -1.15939,3.12988 m 7.114085,-3.82345 2.85269,1.89279 m -2.47302,-8.23065 3.72599,-0.17205 m -3.54369,-6.1261 3.07486,-0.027 m -1.39897,-0.62263 c 1.4224,0 1.397,1.651 1.397,2.6416 0,0.18194 6.4e-4,0.36376 0.002,0.54546 0.0155,2.38035 0.12517,4.74188 0.12517,7.12534 0,3.8608 -2.032,7.5692 -6.35,7.5692 -0.9144,0 -4.241805,-0.7112 -4.826005,-1.3462 -0.2794,-0.3048 -0.4064,-0.5334 -0.4064,-0.9652 0,-0.22269 0.0457,-0.43013 0.12892,-0.61396 m 9.929485,-14.95624 c -1.905,0 -1.4478,2.1082 -1.4478,3.3528 l 0.12683,5.969 0.0254,0.9652 c 0,2.2352 -0.7874,4.7752 -3.5052,4.7752 -1.4224,0 -3.073405,-0.9144 -3.835405,-0.9144 -0.59011,0 -1.07311,0.32132 -1.29348,0.80844"
sodipodi:nodetypes="cccccccccscsscscccccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer53"
inkscape:label="GlyphLayer-z"
style="display:none">
<path
id="path2472"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.160295,47.635637 -0.464948,2.83319 m -7.2900099,-3.24139 -2.42823,-1.91029 m 2.42824,1.9103 0.0976,3.03435 m 3.45806,-7.37971 -2.42823,-1.91029 m -0.0976,-3.03435 0.0976,3.03435 m -5.42856,-2.06343 0.59224,2.79164 m -0.89597998,-1.07895 c 0.17589,0.59752 0.75837998,1.02151 1.39387998,1.02151 0.4572,0 2.0066,-0.5334 2.6924,-0.635 0.6096,-0.1016 1.2446,-0.1016 1.8542,-0.127 -1.3462,1.4732 -5.7404,6.6294 -5.7404,8.5598 0,0.7874 0.6604,1.4224 1.4224,1.4224 0.4064,0 2.3622,-0.6604 3.1242,-0.762 0.7366,-0.1016 1.4986,-0.127 2.2352,-0.127 0.9652,0 1.9304,0.0508 2.8701999,0.1778 0.5334,0.0762 1.143,0.254 1.6764,0.254 0.787398,0 1.371598,-0.635 1.371598,-1.4224 M 0.80045712,40.621057 c -0.035,-0.11895 -0.0539,-0.24477 -0.0539,-0.37549 0,-0.254 0.0762,-0.508 0.2032,-0.7366 0.73659998,-1.3208 5.33399998,-1.4478 6.98499998,-1.4478 1.397,0 3.4797999,0.127 3.4797999,1.5494 0,0.3556 -0.1524,0.8128 -0.4064,1.0414 -2.1843999,1.9812 -4.1909999,4.2672 -5.8673999,6.6802 0.889,-0.1016 1.8034,-0.1778 2.6924,-0.1778 1.6002,0 3.2765999,0.1778 4.8513999,0.508 0.584198,0.127 1.015998,0.7366 1.015998,1.3208"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
sodipodi:nodetypes="cccccccccccccsccsscscsccscssccscc"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer93"
inkscape:label="GlyphLayer-{"
style="display:none">
<path
id="path2632"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.4760921,48.631186 0.90654,-3.80018 m -0.90654,3.80018 3.58391,0.14596 m -0.075,3.88498 -3.84495,0.11353 m 3.77595,3.22865 0.069,-3.34218 m 1.643588,3.45155 0.0771,-3.534 m -5.864938,-8.05836 -4.36331002,0.0421 m 4.99861002,-4.15197 0.90654,3.80018 m -0.90654,-3.80018 3.58391,-0.14596 m 0.26146,-4.95122 -3.84495,-0.11353 m 3.77595,-3.22865 0.069,3.34218 m 1.643588,-3.45155 0.0771,3.534 m 1.74124,-1.72182 c 0,0.7112 -0.7112,1.3716 -1.4224,1.3462 -0.4825989,-0.0254 -0.5841989,0 -1.6509969,-0.0254 -1.0668,-0.0254 -1.0922,0.9906 -1.0922,1.7526 v 4.0132 c 0,0.4318 -0.0762,1.7018 -0.5588,2.3622 -0.5588,0.7366 -1.3208,0.5334 -2.921,0.9144 -0.635,0.1524 -0.7112,0.3302 -0.6858,0.508 0.0254,0.2032 0.0254,0.381 0.8636,0.5588 1.778,0.381 2.2352,0.2032 2.8448,0.8128 0.6858,0.7112 0.4826,1.5494 0.4826,2.1336 0,1.6256 -0.381,4.953 0.127,4.953 h 1.3716 1.4223969 c 0.7366,0 1.397,0.635 1.397,1.397 m -0.1778,-20.7264 c 0,-0.8382 -0.5588,-1.4732 -1.4224,-1.4732 l -2.3113969,0.0254 c -1.2446,0 -1.8542,0.1778 -2.5146,0.7366 -0.6604,0.5588 -0.6858,2.5654 -0.6858,4.699 0,1.7018 0.0254,0.1016 0.0254,3.0988 -0.0254,0.6604 -1.2446,0.635 -2.921,1.4732 -1.06680002,0.5334 -1.39700002,2.0066 -1.39700002,2.3114 0.0254,0.381 0.2286,1.4732 1.21920002,2.159 1.8288,1.27 2.9464,0.3556 2.9464,1.3462 0,0.6604 -0.2286,6.5786 0.3048,7.2136 0.4064,0.508 1.0414,0.5842 1.6002,0.5842 0.2794,0 0.5588,-0.0254 0.762,-0.0254 h 1.7272 0.152398 c 0.2794,0 0.5842,0 0.8889989,0.0254 0.9398,0 1.8034,-0.1524 1.8034,-1.4478"
sodipodi:nodetypes="ccccccccccccccccccccccccssscccccsscsccccsscsccscsscscc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer94"
inkscape:label="GlyphLayer-|"
style="display:none">
<path
id="path2636"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.2076201,44.065876 3.4897,0.0764 m -1.65402,-12.39778 c 0.6858,0 1.3462,0.7112 1.3208,1.4224 -0.1016,2.9972 0.1778,16.9672 0.1524,19.9644 v 2.3368 c 0,0.7366 -0.635,1.397 -1.397,1.397 m -0.0762,-25.1206 c -0.8636,0 -1.4986,0.5588 -1.4986,1.4224 l 0.0508,4.4958 c 0.0254,1.4986 0.1016,13.9446 0.1016,15.4432 0,1.2446 -0.3302,3.7592 1.4224,3.7592"
sodipodi:nodetypes="cccccsccccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer95"
inkscape:label="GlyphLayer-}"
style="display:none">
<path
id="path2634"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 8.2970049,48.631186 -0.90654,-3.80018 m 0.90654,3.80018 -3.58391,0.14596 m 0.075,3.88498 3.84495,0.11353 m -3.77595,3.22865 -0.069,-3.34218 m -1.64359,3.45155 -0.0771,-3.534 m 5.86494,-8.05836 4.3633101,0.0421 m -4.9986101,-4.15197 -0.90654,3.80018 m 0.90654,-3.80018 -3.58391,-0.14596 m -0.26146,-4.95122 3.84495,-0.11353 m -3.77595,-3.22865 -0.069,3.34218 m -1.64359,-3.45155 -0.0771,3.534 m -1.77691996,-1.72182 c 0,-0.8382 0.55879996,-1.4732 1.39699996,-1.4732 l 2.3368,0.0254 c 1.2446,0 1.8288,0.1778 2.4892,0.7366 0.6858,0.5842 0.6858,2.5654 0.6858,4.699 v 3.0988 c 0,0.6604 1.2192,0.635 2.8956001,1.4732 1.0668,0.5334 1.397,2.0066 1.397,2.3114 0,0.381 -0.2286,1.4986 -1.1938,2.159 -1.8542001,1.27 -2.9718001,0.3556 -2.9464001,1.3462 0,0.6604 0.2286,6.5786 -0.3048,7.2136 -0.4318,0.508 -1.0922,0.5842 -1.6764,0.5842 -0.8128,-0.0254 -1.6256,-0.0254 -2.4384,-0.0254 -0.3302,0 -0.6858,0.0254 -1.0414,0.0254 -0.9398,0 -1.80340001,-0.1778 -1.80340001,-1.4478 m 0.20320005,-20.7264 c 0,0.7112 0.71119996,1.3716 1.39699996,1.3462 0.254,0 0.4064,0 0.635,-0.0254 h 1.0414 c 1.0668,0 1.0922,0.9906 1.0922,1.7526 0,0.9906 0,3.81 -0.0254,4.0132 0,0.4318 0.0762,1.7272 0.5588,2.3622 0.5588,0.7366 1.3208,0.5334 2.921,0.9144 0.6604,0.1524 0.7112,0.3302 0.6858,0.508 -0.0254,0.2032 0,0.381 -0.8636,0.5588 -1.778,0.3556 -2.2352,0.1778 -2.8194,0.8128 -0.6604,0.7366 -0.508,1.5494 -0.508,2.1336 0,1.651 0.4064,4.953 -0.1016,4.953 h -1.397 -1.397 c -0.762,0 -1.42240001,0.635 -1.42240001,1.397"
sodipodi:nodetypes="ccccccccccccccccccccccccccssssccccssccccssccccccsscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer96"
inkscape:label="GlyphLayer-~"
style="display:none">
<path
id="path2546"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.09045,32.637776 1.93749,1.55148 m -3.4887396,-0.35927 0.24776,2.81164 m -3.345591,-1.13844 1.39022,-2.41958 m -2.40039,2.07995 0.0476,-2.97132 m -3.83969,1.30189 1.57279,2.6487 m -1.76741,-0.59167 c 0.24519,0.3821 0.65159,0.66374 1.11729,0.66374 0.1016,0 0.2286,-0.0254 0.3556,-0.0762 1.1176,-0.4572 1.5748,-1.1176 2.4892,-1.1176 0.0762,0 0.1778,0 0.2794,0.0254 1.016,0.254 2.5908,1.4478 4.064001,1.4224 1.4477896,-0.0254 2.2351896,-1.0414 2.6415896,-1.4224 0.254,-0.2286 0.4064,-0.635 0.4064,-0.9906 0,-0.3556 -0.1778,-0.7874 -0.4064,-1.0414 m -10.9470806,2.53666 c -0.0758,-0.11808 -0.13614,-0.24575 -0.17811,-0.37766 -0.1016,-0.3302 -0.0254,-0.7874 0.127,-1.0668 0.4826,-0.889 3.1496,-1.7018 4.0132,-1.7018 1.778,0 2.8448,1.5748 4.064001,1.524 0.7873896,-0.0254 0.8889896,-0.508 1.2953896,-0.8636 0.254,-0.2286 0.5334,-0.3302 0.8382,-0.3302 h 0.1016 c 0.3556,0.0254 0.4572,0.0254 0.6858,0.2794"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
inkscape:groupmode="layer"
id="layer97"
inkscape:label="GlyphLayer-À"
style="display:none">
<g
id="g139330">
<path
id="path2668"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 6.0956523,29.28099 3.095748,-1.91 m -0.122357,3.5425 c 0.210376,0 0.450807,-0.0604 0.661183,-0.18113 m -3.396073,-5.13209 c 0.180323,-0.12076 0.390699,-0.15095 0.631129,-0.15095 0.48086,-0.0302 0.991774,0.24151 1.232201,0.66416 0.240431,0.42264 0.480861,1.17736 0.751345,1.56982 0.360645,0.48301 0.841505,0.72452 1.1119897,1.23773 0.330591,0.63397 0.360645,1.41888 -0.3305917,1.81133 m -3.396073,-5.13209 c -0.931667,0.60377 -0.901613,1.47925 -0.390699,2.35472 0.540968,0.96604 1.803226,2.9585 3.125589,2.9585"
sodipodi:nodetypes="ccccccscccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g139323"
transform="translate(96.0981,-77.4)"
style="display:inline">
<path
id="path139317"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path139319"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path139321"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer98"
inkscape:label="GlyphLayer-Á"
style="display:none">
<g
id="g141224">
<path
id="path2670"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.9413031,27.86201 3.1800899,1.88292 m -3.2993199,1.34131 c -0.49753,-0.2504 -0.67166,-0.87639 -0.47265,-1.42727 0.12439,-0.35055 0.82092,-0.97655 1.11943,-1.4523 0.24876,-0.3756 0.4229,-1.07671 0.62191,-1.47734 0.24876,-0.5008 0.74629,-0.87639 1.2438099,-0.87639 0.14925,0 0.27364,0.025 0.39802,0.0751 m -2.9105199,5.15819 c 0.0995,0.0501 0.22388,0.0752 0.34827,0.0752 1.01992,0 2.5124899,-1.62757 3.0100099,-2.62917 0.4229,-0.85135 0.54729,-2.12838 -0.44776,-2.60413"
sodipodi:nodetypes="cccccssccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g141217"
transform="translate(96.0981,-77.4)"
style="display:inline">
<path
id="path141211"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path141213"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path141215"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer99"
inkscape:label="GlyphLayer-Â"
style="display:none">
<g
id="g142682">
<path
id="path2676"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 13.949476,28.87302 -2.56896,2.61789 m -8.0623404,-2.65408 2.54163,3.11769 m 5.4641204,-5.37017 -2.5689404,2.61788 m -2.54163,-3.11769 2.54163,3.11769 m -5.61403,2.48491 c 0.2603,0.29373 0.64071,0.47959 1.06546,0.46589 0.381,0 0.71121,-0.1524 0.9906,-0.4064 0.762,-0.6858 3.47981,-3.0988 3.63221,-3.0988 0.1524,0 2.8194004,2.6416 3.3273904,3.1496 0.27941,0.2794 0.635,0.4064 1.016,0.4064 0.3556,0 0.762,-0.1016 0.9906,-0.4064 M 3.1409556,31.68714 c -0.22225,-0.25077 -0.35694,-0.58016 -0.35694,-0.93111 0,-0.3556 0.1524,-0.762 0.40641,-0.9906 l 1.143,-1.0668 c 0.6096,-0.5588 4.2672,-3.556 4.52119,-3.556 0.2286,0 4.5974004,4.0132 5.3086004,4.6736 0.2794,0.254 0.381,0.6096 0.4064,0.9906 0.0254,0.381 -0.1778,0.7112 -0.4064,0.9906"
sodipodi:nodetypes="cccccccccccsssccsccscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g142675"
transform="translate(96.0981,-77.4)"
style="display:inline">
<path
id="path142669"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path142671"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path142673"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer100"
inkscape:label="GlyphLayer-Ã"
style="display:none">
<g
id="g145313">
<path
id="path2672"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 11.685525,26.89937 2.58032,2.10717 m -3.82987,-1.28857 -1.1529393,2.93539 m -2.22729,-4.48541 0.0442,3.57164 m -4.36046,-1.93913 1.95323,2.77421 m -1.57623,-0.5321 c -0.14359,-0.16857 -0.25275,-0.37401 -0.31927,-0.59656 -0.0864,-0.31832 -0.0577,-0.7524 0.11534,-1.0418 0.4902,-0.86816 3.11423,-1.67845 3.95045,-1.67845 1.70129,-0.029 2.73936,1.50482 3.9216093,1.50482 h 0.0577 c 0.77856,0 0.83623,-0.5209 1.23992,-0.83923 0.25952,-0.20256 0.51904,-0.31832 0.83623,-0.31832 h 0.11534 c 0.34602,0.0289 0.43253,0.0289 0.66321,0.26044 m -10.5804993,2.7091 c 0.22986,0.26984 0.54794,0.44526 0.92066,0.44526 0.14417,0 0.25952,-0.0289 0.37486,-0.0868 1.03806,-0.5209 1.5571,-1.07074 2.42216,-1.09968 0.0864,0 0.20185,0.029 0.28836,0.029 1.03807,0 2.53752,1.41802 3.9792893,1.38907 1.44176,-0.029 2.19148,-1.01287 2.59517,-1.38907 0.23068,-0.23151 0.40369,-0.60771 0.40369,-0.95498 0,-0.34728 -0.17301,-0.78136 -0.40369,-1.04181"
sodipodi:nodetypes="ccccccccccccsscscccsscsscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g145306"
transform="translate(96.0981,-77.4)"
style="display:inline">
<path
id="path145300"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path145302"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path145304"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer101"
inkscape:label="GlyphLayer-Ä"
style="display:none">
<g
id="g147035">
<g
id="g20701"
transform="translate(-145.699,-157.799)">
<path
id="path2674"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 150.69748,184.91657 0.0495,3.28768 m -1.49716,-1.61278 c 0,0.84803 0.62141,1.42171 1.46652,1.42171 0.72083,0 1.3671,-0.59862 1.3671,-1.34688 m -2.83362,-0.0749 c 0,-0.74826 0.67112,-1.34688 1.39195,-1.34688 0.82027,0 1.44167,0.57367 1.44167,1.42171"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2678"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 155.81385,184.91657 0.0495,3.28768 m -1.36881,-1.61278 c 0,0.84803 0.62141,1.42171 1.44167,1.42171 0.72083,0 1.36709,-0.59862 1.36709,-1.34688 m -2.80876,-0.0749 c 0,-0.74826 0.64627,-1.34688 1.3671,-1.34688 0.82026,0 1.44166,0.57367 1.44166,1.42171"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
id="g147026"
transform="translate(96.0981,-77.4)"
style="display:inline">
<path
id="path147020"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path147022"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path147024"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer102"
inkscape:label="GlyphLayer-Å"
style="display:none">
<path
id="path2680"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 7.8213596,28.48269 -1.94911,0.3325 m 2.89007,0.23632 0.52688,1.87459 m 0.16696,-2.91386 1.9195404,-0.27826 m -3.3624104,0.15746 -2.22444,-0.61583 m 0.11869,0.98293 c 0,-1.74992 1.3578,-2.72782 2.97179,-2.72782 1.1784704,0 2.4337804,1.56979 2.4337804,2.83075 0,1.31245 -1.4858904,2.62489 -2.8180604,2.62489 -1.30657,0 -2.58751,-1.44111 -2.58751,-2.72782 m 1.71647,0 c 0,-0.61762 0.61485,-1.02937 1.17846,-1.02937 0.56362,0 0.8198,0.61762 0.8198,1.10657 0,0.56615 -0.56362,0.92643 -1.07599,0.92643 -0.56362,0 -0.92227,-0.46322 -0.92227,-1.00363"
sodipodi:nodetypes="cccccccccsssccsssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g138503"
transform="translate(96.0981,-77.4)"
style="display:inline">
<path
id="path138497"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.4px;line-height:1.25;font-family:Dinomouse;-inkscape-font-specification:'Dinomouse, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;font-variation-settings:normal;letter-spacing:0px;word-spacing:0px;display:inline;vector-effect:none;fill:none;fill-opacity:1;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stop-color:#000000"
d="m -84.915933,122.03597 c -2.31596,0.0926 -4.11848,0.19478 -6.604,0.4572 m 5.8166,-3.2512 c -1.6256,0.0254 -3.2766,0.1778 -4.9022,0.3556"
sodipodi:nodetypes="cccc"
inkstitch:satin_column="True"
inkstitch:pull_compensation_mm="0"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
style="fill:none;stroke:#260605;stroke-width:0.254;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.0254, 0.0254;stroke-dashoffset:0;stroke-opacity:1"
d="m -90.605532,119.59757 -3.4798,8.636"
id="path138499"
inkstitch:running_stitch_length_mm="2.5" />
<path
id="path138501"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -87.769983,114.77233 0.41695,-4.94976 m 2.67709,16.81207 3.64402,-0.7507 m -6.57511,-11.15124 3.15963,-1.02951 m -6.65192,-0.47173 3.00231,1.54359 m -7.45787,10.12235 3.72773,0.49251 m -2.25818,2.84366 c -0.6858,0 -1.3462,-0.635 -1.3462,-1.397 0,-0.127 0.0254,-0.2794 0.0508,-0.4064 l 0.8382,-3.5814 c 1.1176,-4.3688 2.8702,-8.9916 6.0452,-12.319 0.2794,-0.3302 0.7112,-0.4826 1.1176,-0.4826 0.4572,0 0.9906,0.254 1.1938,0.6858 2.54,5.1054 4.1656,10.4648 4.9784,16.1036 0.0508,0.3556 -0.1778,0.7112 -0.381,0.9398 -0.2794,0.3048 -0.6604,0.4572 -0.9398,0.4572 m -11.557,0 c 0.6096,0 1.2954,-0.4826 1.4224,-1.0414 0.3556,-1.5748 0.7112,-3.1496 1.143,-4.699 l 0.9144,-2.8956 0.635,-1.6764 c 0.508,-1.143 1.0922,-2.286 1.8288,-3.3528 l 0.4064,-0.5842 c 0.1778,0.381 0.3302,0.7874 0.508,1.143 l 0.0254,0.0508 c 0.635,1.2954 1.0668,2.667 1.4986,4.064 l 0.7874,2.794 c 0.1778,0.6858 0.3302,1.3716 0.4572,2.0828 l 0.4318,2.7686 v -0.0508 c 0,0.8128 0.7112,1.397 1.4986,1.397"
inkstitch:satin_column="True"
inkstitch:contour_underlay="True"
inkstitch:center_walk_underlay="False"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0"
sodipodi:nodetypes="cccccccccccscccscccccccccccsccccccc"
inkstitch:reverse_rails="none" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer103"
inkscape:label="GlyphLayer-à"
style="display:none">
<g
id="g158901">
<path
id="path2654"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.0559316,34.56409 2.616376,-1.60702 m -0.103406,2.98056 c 0.1778,0 0.381,-0.0508 0.5588,-0.1524 m -2.8702,-4.318 c 0.1524,-0.1016 0.3302,-0.127 0.5334,-0.127 0.4064,-0.0254 0.8382,0.2032 1.0414,0.5588 0.2032,0.3556 0.4064,0.9906 0.635,1.3208 0.3048,0.4064 0.7112,0.6096 0.9398,1.0414 0.2794,0.5334 0.3048,1.1938 -0.2794,1.524 m -2.8702,-4.318 c -0.7874,0.508 -0.762,1.2446 -0.3302,1.9812 0.4572,0.8128 1.524,2.4892 2.6416,2.4892"
sodipodi:nodetypes="ccccccscccccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g158895"
style="display:inline;stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path158891"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path158893"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer104"
inkscape:label="GlyphLayer-á"
style="display:none">
<g
id="g161135">
<path
id="path2656"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4.9918599,32.94641 3.247051,1.91001 m -3.368789,1.36061 c -0.508,-0.254 -0.6858,-0.889 -0.4826,-1.4478 0.127,-0.3556 0.8382,-0.9906 1.143,-1.4732 0.254,-0.381 0.4318,-1.0922 0.635,-1.4986 0.254,-0.508 0.762,-0.889 1.27,-0.889 0.1524,0 0.2794,0.0254 0.4064,0.0762 m -2.9718,5.2324 c 0.1016,0.0508 0.2286,0.0762 0.3556,0.0762 1.0414,0 2.5654,-1.651 3.0734,-2.667 0.4318,-0.8636 0.5588,-2.159 -0.4572,-2.6416"
sodipodi:nodetypes="cccccssccssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g161129"
style="display:inline;stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path161125"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path161127"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer105"
inkscape:label="GlyphLayer-â"
style="display:none">
<g
id="g162927">
<path
id="path2658"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 10.158761,34.70523 -2.1711496,2.20262 m -6.813906,-2.23307 2.148059,2.62314 m 4.618019,-4.51832 -2.17115,2.20262 m -2.148059,-2.62314 2.148059,2.62314 m -4.297384,1.73738 c 0.256233,0.22429 0.595482,0.36103 0.934731,0.36103 0.381,0 0.7112,-0.1524 0.9906,-0.4318 0.7366,-0.7366 2.2098,-2.0828 2.3622,-2.0828 0.1524,0 0.635,0.5334 1.2192,1.0668 0.381,0.3556 0.7366,0.7112 1.1176,1.0668 0.2794,0.254 0.6096,0.4318 0.9906,0.4318 0.348216,0 0.717617,-0.15536 0.9853256,-0.4065 m -8.6002566,-0.005 c -0.261749,-0.22911 -0.436869,-0.54958 -0.436869,-0.90897 0,-0.3556 0.127,-0.6858 0.381,-0.9398 0.381,-0.3556 0.7366,-0.7112 1.1176,-1.0668 0.6096,-0.5588 3.0226,-2.54 3.2512,-2.54 0.2286,0 3.6068,3.0226 4.2925996,3.6576 0.2794,0.254 0.381,0.5842 0.381,0.9398 0.01201,0.3362 -0.146266,0.63834 -0.386274,0.8635"
sodipodi:nodetypes="cccccccccsssccsccsccsccc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g162921"
style="display:inline;stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path162917"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path162919"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer106"
inkscape:label="GlyphLayer-ã"
style="display:none">
<g
id="g167076">
<path
id="path2660"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 8.9598446,32.73721 2.2729034,1.84948 m -3.3735884,-1.13098 -1.01559,2.57642 m -1.961931,-3.9369 0.03903,3.13487 m -3.84097,-1.70199 1.720514,2.43494 m -1.388425,-0.46702 c -0.126486,-0.14796 -0.222639,-0.32827 -0.281238,-0.5236 -0.0762,-0.2794 -0.0508,-0.6604 0.1016,-0.9144 0.4318,-0.762 2.7432,-1.4732 3.4798,-1.4732 1.4986,-0.0254 2.413,1.3208 3.4544,1.3208 h 0.0508 c 0.6858,0 0.7366,-0.4572 1.0922,-0.7366 0.2286,-0.1778 0.4572,-0.2794 0.7366004,-0.2794 h 0.1016 c 0.3048,0.0254 0.381,0.0254 0.5842,0.2286 m -9.3199624,2.3778 c 0.202468,0.23684 0.48266,0.3908 0.810962,0.3908 0.127,0 0.2286,-0.0254 0.3302,-0.0762 0.9144,-0.4572 1.3716,-0.9398 2.1336,-0.9652 0.0762,0 0.1778,0.0254 0.254,0.0254 0.9144,0 2.2352,1.2446 3.5052,1.2192 1.27,-0.0254 1.9304004,-0.889 2.2860004,-1.2192 0.2032,-0.2032 0.3556,-0.5334 0.3556,-0.8382 0,-0.3048 -0.1524,-0.6858 -0.3556,-0.9144"
sodipodi:nodetypes="ccccccccccccsscscccsscsscsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g167070"
style="display:inline;stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path167066"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path167068"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer107"
inkscape:label="GlyphLayer-ä"
style="display:none">
<g
id="g169026">
<g
id="g20697"
transform="translate(-60.3236,-157.799)"
style="display:inline">
<path
id="path2662"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 63.167354,190.37995 0.05047,3.34802 m -1.529861,-1.64238 c 0,0.8636 0.635,1.4478 1.4986,1.4478 0.7366,0 1.397,-0.6096 1.397,-1.3716 m -2.8956,-0.0762 c 0,-0.762 0.6858,-1.3716 1.4224,-1.3716 0.8382,0 1.4732,0.5842 1.4732,1.4478"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<path
id="path2664"
style="fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 68.395647,190.37995 0.05047,3.34802 m -1.398754,-1.64238 c 0,0.8636 0.635,1.4478 1.4732,1.4478 0.7366,0 1.397,-0.6096 1.397,-1.3716 m -2.8702,-0.0762 c 0,-0.762 0.6604,-1.3716 1.397,-1.3716 0.8382,0 1.4732,0.5842 1.4732,1.4478"
sodipodi:nodetypes="cccsccsc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
</g>
<g
id="g169018"
style="display:inline;stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path169014"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path169016"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer108"
inkscape:label="GlyphLayer-å"
style="display:none">
<path
id="path2666"
style="display:inline;fill:none;stroke:#260605;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 5.1343786,34.35547 -1.932464,0.32819 m 2.865385,0.23324 0.522369,1.85025 m 0.165529,-2.87602 1.903158,-0.27464 m -3.333694,0.15541 -2.20544,-0.60784 m 0.117695,0.97017 c 0,-1.7272 1.3462,-2.6924 2.9464,-2.6924 1.1684,0 2.413,1.5494 2.413,2.794 0,1.2954 -1.4732,2.5908 -2.794,2.5908 -1.2954,0 -2.5654,-1.4224 -2.5654,-2.6924 m 1.7018,0 c 0,-0.6096 0.6096,-1.016 1.1684,-1.016 0.5588,0 0.8128,0.6096 0.8128,1.0922 0,0.5588 -0.5588,0.9144 -1.0668,0.9144 -0.5588,0 -0.9144,-0.4572 -0.9144,-0.9906"
sodipodi:nodetypes="cccccccccsssccsssc"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:reverse_rails="none" />
<g
id="g154638"
style="display:inline;stroke:#260605"
transform="translate(68.2213,-107.06)"
>
<path
id="path154634"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -61.796702,155.44502 0.53003,2.41481 m -6.56893,-3.52067 3.3904,-0.36452 m 2.92532,-4.26108 -0.16551,2.99906 m 1.41868,-2.63864 c -0.6096,-0.0508 -1.1938,-0.127 -1.8034,-0.127 -2.5654,0 -5.3594,1.3716 -5.3594,4.2672 0,2.6162 2.8194,3.6068 5.0292,3.6068 0.5334,0 1.397,-0.1524 2.2098,-0.4318 m -0.0762,-4.8514 c -0.508,-0.1016 -1.016,-0.2032 -1.6002,-0.2032 -1.27,0 -2.8448,0.254 -2.8448,1.8796 0,1.1176 1.4986,1.4224 2.413,1.4224 0.635,0 1.2192,-0.0762 1.778,-0.4318"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
inkstitch:reverse_rails="none" />
<path
id="path154636"
style="fill:none;stroke:#260605;stroke-width:0.264584px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m -60.986842,156.07926 3.09794,0.31005 m -2.69588,-7.00701 2.94331,-0.63957 m -5.05987,-1.21146 0.16025,-2.60064 m -4.41145,2.02798 2.28226,1.41838 m 5.34337,9.29159 c 0.6604,0 1.016,-0.4318 1.0922,-1.0668 l 0.2286,-2.1336 c 0.1016,-0.8636 0.2032,-1.7272 0.2032,-2.6162 0,-0.8636 0.127,-1.7018 -0.0254,-2.5654 -0.4318,-2.4384 -1.8288,-4.191 -5.0292,-4.191 -1.6764,0 -3.5052,0.9652 -4.2164,2.5146 -0.1016,0.254 -0.254,0.5588 -0.254,0.8382 0,0.38879 0.18597,0.72591 0.48542,0.91914 m 7.51558,8.30106 c -0.3048,0 -0.6096,-0.1016 -0.8636,-0.2794 -0.63355,-0.25557 -0.43854,-1.47051 -0.3302,-2.1844 0.1016,-0.889 0.2032,-1.778 0.254,-2.667 v -2.4638 c -0.127,-1.4224 -0.6096,-2.794 -2.6162,-2.8194 -2.3876,-0.0254 -2.0828,2.286 -3.3528,2.286 -0.23001,0 -0.4367,-0.0633 -0.60678,-0.17306"
inkstitch:satin_column="True"
inkstitch:center_walk_underlay="False"
inkstitch:contour_underlay="True"
inkstitch:zigzag_underlay="False"
inkstitch:pull_compensation_mm="0.1"
sodipodi:nodetypes="cccccccccccscscscccccccsc"
inkstitch:reverse_rails="none" />
</g>
</g>
</svg>
|