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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="93.909767mm"
height="146.36983mm"
viewBox="0 0 93.909767 146.36983"
version="1.1"
id="svg11577"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="stabIterative.svg">
<defs
id="defs11571">
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-1"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-7"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-5"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-71"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-1-2"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-7-3"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-1-1-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-7-4-6"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-1-1"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-7-4"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-3"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-9"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-7"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-5"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-0"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-00"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-1"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-8"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-2"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-80"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-10"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-82"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-06"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-03"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-19"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-29"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-58"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-6"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-05"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-99"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-1-3"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-7-2"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-1-3-1"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-7-2-7"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="TriangleOutM-72-8-58-2"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="TriangleOutM">
<path
transform="scale(0.4)"
style="fill:#808080;fill-opacity:1;fill-rule:evenodd;stroke:#808080;stroke-width:1pt;stroke-opacity:1"
d="M 5.77,0 -2.88,5 V -5 Z"
id="path9253-4-8-6-2"
inkscape:connector-curvature="0" />
</marker>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.99999999"
inkscape:cx="297.94793"
inkscape:cy="273.13017"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1600"
inkscape:window-height="837"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata11574">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-65.520547,-60.618659)">
<path
d="m 75.07737,68.895375 h 26.78418 c 1.64901,0 2.97656,1.327547 2.97656,2.976562 0,1.649016 -1.32755,2.976563 -2.97656,2.976563 H 75.07737 c -1.649016,0 -2.976563,-1.327547 -2.976563,-2.976563 0,-1.649015 1.327547,-2.976562 2.976563,-2.976562 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-3-8" />
<path
d="m 75.343645,72.862057 v 0.07648 h -1.200959 v -0.07648 h 0.09922 q 0.173633,0 0.252181,-0.101286 0.04961,-0.06615 0.04961,-0.318326 v -1.810741 q 0,-0.212907 -0.02687,-0.28112 -0.02067,-0.05168 -0.08475,-0.08888 -0.09095,-0.04961 -0.190169,-0.04961 h -0.09922 v -0.07648 h 1.200959 v 0.07648 h -0.101286 q -0.171565,0 -0.250113,0.101285 -0.05168,0.06615 -0.05168,0.318327 v 1.810741 q 0,0.212906 0.02687,0.281119 0.02067,0.05168 0.08682,0.08888 0.08888,0.04961 0.188102,0.04961 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14025" />
<path
d="m 76.135327,71.390313 q 0.332796,-0.401008 0.634586,-0.401008 0.155029,0 0.26665,0.07855 0.111621,0.07648 0.177767,0.254247 0.04547,0.124024 0.04547,0.380339 v 0.808218 q 0,0.179834 0.02894,0.243913 0.02274,0.05168 0.07235,0.08062 0.05168,0.02894 0.188102,0.02894 v 0.07441 h -0.936376 v -0.07441 h 0.03927 q 0.132292,0 0.183968,-0.03927 0.05374,-0.04134 0.07441,-0.119889 0.0083,-0.03101 0.0083,-0.194304 v -0.775145 q 0,-0.258382 -0.06821,-0.374137 -0.06614,-0.117823 -0.225309,-0.117823 -0.245979,0 -0.489892,0.268718 v 0.998387 q 0,0.192237 0.02274,0.237712 0.02894,0.05994 0.07855,0.08888 0.05168,0.02687 0.206706,0.02687 v 0.07441 h -0.936377 v -0.07441 h 0.04134 q 0.144694,0 0.194304,-0.07235 0.05168,-0.07441 0.05168,-0.28112 v -0.702798 q 0,-0.341065 -0.01654,-0.415479 -0.01447,-0.07441 -0.04754,-0.101285 -0.03101,-0.02687 -0.08475,-0.02687 -0.05788,0 -0.138493,0.03101 l -0.03101,-0.07441 0.570507,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14027" />
<path
d="m 78.351211,70.989305 v 1.521352 q 0,0.177767 0.02687,0.237712 0.02687,0.05788 0.07648,0.08682 0.05168,0.02894 0.186035,0.02894 v 0.07441 h -0.91984 v -0.07441 q 0.138493,0 0.186035,-0.02687 0.04754,-0.02687 0.07441,-0.08888 0.02894,-0.06201 0.02894,-0.237712 v -0.72967 q 0,-0.307991 -0.0186,-0.398942 -0.01447,-0.06615 -0.04547,-0.09095 -0.03101,-0.02687 -0.08475,-0.02687 -0.05788,0 -0.14056,0.03101 l -0.02894,-0.07441 0.570507,-0.23151 z m 0.245979,-0.923974 -0.609781,0.713134 h -0.07028 l 0.217041,-0.713134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14029" />
<path
d="m 80.482345,72.219203 q -0.07648,0.374137 -0.299723,0.576708 -0.223242,0.200504 -0.494026,0.200504 -0.322461,0 -0.562239,-0.270784 -0.239779,-0.270784 -0.239779,-0.731737 0,-0.446484 0.264583,-0.725537 0.26665,-0.279052 0.63872,-0.279052 0.279053,0 0.458887,0.148828 0.179834,0.14676 0.179834,0.305924 0,0.07855 -0.05168,0.128157 -0.04961,0.04754 -0.14056,0.04754 -0.121956,0 -0.183967,-0.07855 -0.03514,-0.04341 -0.04754,-0.165364 -0.01033,-0.121956 -0.08268,-0.186035 -0.07235,-0.06201 -0.200504,-0.06201 -0.206706,0 -0.332796,0.152962 -0.167432,0.202572 -0.167432,0.535368 0,0.338997 0.165365,0.599446 0.167431,0.258382 0.450618,0.258382 0.202571,0 0.363802,-0.138493 0.113688,-0.09508 0.221174,-0.345198 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14031" />
<path
d="m 81.232686,69.999185 q 0.08682,0 0.146761,0.06201 0.06201,0.05994 0.06201,0.146761 0,0.08682 -0.06201,0.148828 -0.05995,0.06201 -0.146761,0.06201 -0.08682,0 -0.148828,-0.06201 -0.06201,-0.06201 -0.06201,-0.148828 0,-0.08682 0.05994,-0.146761 0.06201,-0.06201 0.150895,-0.06201 z m 0.171566,0.99012 v 1.521352 q 0,0.177767 0.0248,0.237712 0.02687,0.05788 0.07648,0.08682 0.05168,0.02894 0.186035,0.02894 v 0.07441 h -0.919839 v -0.07441 q 0.138492,0 0.186035,-0.02687 0.04754,-0.02687 0.07441,-0.08888 0.02894,-0.06201 0.02894,-0.237712 v -0.72967 q 0,-0.307991 -0.0186,-0.398942 -0.01447,-0.06615 -0.04548,-0.09095 -0.03101,-0.02687 -0.08475,-0.02687 -0.05788,0 -0.14056,0.03101 l -0.02894,-0.07441 0.570507,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14033" />
<path
d="m 82.851191,70.989305 q 0.429947,0 0.690396,0.326594 0.221175,0.279053 0.221175,0.640788 0,0.254247 -0.121956,0.514696 -0.121956,0.260449 -0.33693,0.392741 -0.212907,0.132291 -0.475423,0.132291 -0.42788,0 -0.680061,-0.341064 -0.212907,-0.28732 -0.212907,-0.644921 0,-0.260449 0.128157,-0.516764 0.130225,-0.258382 0.341065,-0.380338 0.210839,-0.124023 0.446484,-0.124023 z m -0.06408,0.134358 q -0.109554,0 -0.221175,0.06615 -0.109554,0.06408 -0.177767,0.227376 -0.06821,0.163297 -0.06821,0.419612 0,0.413411 0.163298,0.713134 0.165364,0.299724 0.434081,0.299724 0.200505,0 0.330729,-0.165365 0.130225,-0.165364 0.130225,-0.56844 0,-0.504362 -0.217041,-0.79375 -0.146761,-0.198437 -0.374137,-0.198437 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14035" />
<path
d="m 86.437532,72.725631 q -0.138493,0.144694 -0.270784,0.208773 -0.132292,0.06201 -0.285254,0.06201 -0.310058,0 -0.541568,-0.258381 -0.231511,-0.260449 -0.231511,-0.667659 0,-0.40721 0.256315,-0.74414 0.256315,-0.338998 0.659391,-0.338998 0.250114,0 0.413411,0.159164 v -0.349333 q 0,-0.324527 -0.01654,-0.398941 -0.01447,-0.07441 -0.04754,-0.101286 -0.03307,-0.02687 -0.08268,-0.02687 -0.05374,0 -0.142627,0.03307 l -0.02687,-0.07235 0.564306,-0.23151 h 0.09302 v 2.189012 q 0,0.332796 0.01447,0.40721 0.01654,0.07235 0.04961,0.101285 0.03514,0.02894 0.08062,0.02894 0.05581,0 0.148828,-0.03514 l 0.02274,0.07235 -0.562239,0.233577 h -0.09508 z m 0,-0.144694 v -0.97565 q -0.0124,-0.14056 -0.07441,-0.256315 -0.06201,-0.115755 -0.165364,-0.173632 -0.101286,-0.05994 -0.198438,-0.05994 -0.181901,0 -0.324527,0.163297 -0.188103,0.214974 -0.188103,0.628385 0,0.417545 0.181901,0.640787 0.181901,0.221175 0.405143,0.221175 0.188102,0 0.363802,-0.188102 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14037" />
<path
d="m 88.289614,72.665687 q -0.291455,0.225309 -0.365869,0.260449 -0.111621,0.05168 -0.237711,0.05168 -0.196371,0 -0.324528,-0.134359 -0.126091,-0.134358 -0.126091,-0.353466 0,-0.138493 0.06201,-0.239779 0.08475,-0.140559 0.293522,-0.264583 0.21084,-0.124023 0.698665,-0.30179 v -0.07441 q 0,-0.283186 -0.09095,-0.388606 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.07028 -0.07855,0.07028 -0.07855,0.16123 l 0.0041,0.119889 q 0,0.09508 -0.04961,0.146761 -0.04754,0.05168 -0.12609,0.05168 -0.07648,0 -0.12609,-0.05374 -0.04754,-0.05374 -0.04754,-0.146761 0,-0.177766 0.181901,-0.326594 0.181901,-0.148828 0.510563,-0.148828 0.252181,0 0.413411,0.08475 0.121956,0.06408 0.179834,0.200504 0.03721,0.08888 0.03721,0.363802 v 0.642854 q 0,0.270785 0.01033,0.332796 0.01034,0.05994 0.03307,0.08062 0.02481,0.02067 0.05581,0.02067 0.03307,0 0.05788,-0.01447 0.04341,-0.02687 0.167432,-0.150896 v 0.115756 q -0.231511,0.310058 -0.44235,0.310058 -0.101286,0 -0.161231,-0.07028 -0.05994,-0.07028 -0.06201,-0.239778 z m 0,-0.134359 v -0.721402 q -0.312126,0.124023 -0.403076,0.175699 -0.163297,0.09095 -0.233577,0.190169 -0.07028,0.09922 -0.07028,0.217041 0,0.148828 0.08888,0.248047 0.08888,0.09715 0.204639,0.09715 0.157096,0 0.413411,-0.206706 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14039" />
<path
d="m 91.375728,70.989305 v 0.644921 h -0.06821 q -0.07855,-0.303857 -0.202572,-0.413411 -0.121956,-0.109554 -0.312125,-0.109554 -0.144694,0 -0.233577,0.07648 -0.08888,0.07648 -0.08888,0.169498 0,0.115756 0.06615,0.198438 0.06408,0.08475 0.260449,0.179834 l 0.30179,0.146761 q 0.419612,0.204638 0.419612,0.539501 0,0.258382 -0.19637,0.417545 -0.194303,0.157096 -0.436149,0.157096 -0.173632,0 -0.396874,-0.06201 -0.06821,-0.02067 -0.111621,-0.02067 -0.04754,0 -0.07441,0.05374 h -0.06821 v -0.675927 h 0.06821 q 0.05788,0.289387 0.221175,0.436148 0.163297,0.146761 0.365869,0.146761 0.142626,0 0.23151,-0.08268 0.09095,-0.08475 0.09095,-0.202571 0,-0.142627 -0.101285,-0.239779 -0.09922,-0.09715 -0.398942,-0.24598 -0.299723,-0.148828 -0.392741,-0.268717 -0.09302,-0.117822 -0.09302,-0.297656 0,-0.233577 0.159163,-0.390673 0.16123,-0.157096 0.415478,-0.157096 0.111621,0 0.270784,0.04754 0.10542,0.03101 0.14056,0.03101 0.03307,0 0.05168,-0.01447 0.0186,-0.01447 0.04341,-0.06408 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14041" />
<path
d="m 92.723448,70.989305 q 0.429947,0 0.690396,0.326594 0.221175,0.279053 0.221175,0.640788 0,0.254247 -0.121956,0.514696 -0.121956,0.260449 -0.33693,0.392741 -0.212907,0.132291 -0.475423,0.132291 -0.42788,0 -0.680061,-0.341064 -0.212907,-0.28732 -0.212907,-0.644921 0,-0.260449 0.128158,-0.516764 0.130224,-0.258382 0.341064,-0.380338 0.21084,-0.124023 0.446484,-0.124023 z m -0.06408,0.134358 q -0.109554,0 -0.221175,0.06615 -0.109554,0.06408 -0.177767,0.227376 -0.06821,0.163297 -0.06821,0.419612 0,0.413411 0.163297,0.713134 0.165364,0.299724 0.434082,0.299724 0.200504,0 0.330729,-0.165365 0.130224,-0.165364 0.130224,-0.56844 0,-0.504362 -0.217041,-0.79375 -0.146761,-0.198437 -0.374137,-0.198437 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14043" />
<path
d="m 94.565194,69.999185 v 2.511472 q 0,0.177767 0.02481,0.235645 0.02687,0.05788 0.08061,0.08888 0.05374,0.02894 0.200505,0.02894 v 0.07441 h -0.928108 v -0.07441 q 0.130224,0 0.177766,-0.02687 0.04754,-0.02687 0.07441,-0.08888 0.02687,-0.06201 0.02687,-0.237712 v -1.71979 q 0,-0.320393 -0.01447,-0.39274 -0.01447,-0.07441 -0.04754,-0.101286 -0.031,-0.02687 -0.08061,-0.02687 -0.05374,0 -0.136425,0.03307 l -0.03514,-0.07235 0.564306,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14045" />
<path
d="m 96.748005,71.045115 v 1.147216 q 0,0.328662 0.01447,0.403076 0.01654,0.07235 0.04961,0.101285 0.03514,0.02894 0.08062,0.02894 0.06408,0 0.144694,-0.03514 l 0.02894,0.07235 -0.566374,0.233577 h -0.09302 v -0.401008 q -0.243913,0.264583 -0.37207,0.332796 -0.128158,0.06821 -0.270784,0.06821 -0.159164,0 -0.276986,-0.09095 -0.115755,-0.09302 -0.16123,-0.237711 -0.04548,-0.144694 -0.04548,-0.409277 v -0.845426 q 0,-0.134359 -0.02894,-0.186035 -0.02894,-0.05168 -0.08682,-0.07855 -0.05581,-0.02894 -0.204638,-0.02687 v -0.07648 h 0.663525 v 1.267105 q 0,0.264583 0.09095,0.347265 0.09302,0.08268 0.223242,0.08268 0.08888,0 0.200505,-0.05581 0.113688,-0.05581 0.268717,-0.212907 V 71.40065 q 0,-0.161231 -0.05994,-0.217041 -0.05788,-0.05788 -0.243912,-0.06201 v -0.07648 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14047" />
<path
d="m 98.812993,72.219203 q -0.07648,0.374137 -0.299723,0.576708 -0.223242,0.200504 -0.494026,0.200504 -0.322461,0 -0.562239,-0.270784 -0.239778,-0.270784 -0.239778,-0.731737 0,-0.446484 0.264583,-0.725537 0.26665,-0.279052 0.63872,-0.279052 0.279052,0 0.458886,0.148828 0.179834,0.14676 0.179834,0.305924 0,0.07855 -0.05168,0.128157 -0.04961,0.04754 -0.14056,0.04754 -0.121956,0 -0.183968,-0.07855 -0.03514,-0.04341 -0.04754,-0.165364 -0.01034,-0.121956 -0.08268,-0.186035 -0.07235,-0.06201 -0.200504,-0.06201 -0.206706,0 -0.332796,0.152962 -0.167431,0.202572 -0.167431,0.535368 0,0.338997 0.165364,0.599446 0.167432,0.258382 0.450618,0.258382 0.202572,0 0.363802,-0.138493 0.113688,-0.09508 0.221175,-0.345198 z m -0.768944,0.686262 h 0.124023 l -0.103353,0.163297 q 0.130225,0.03307 0.194304,0.111621 0.06408,0.07855 0.06408,0.19017 0,0.148828 -0.124023,0.260449 -0.124023,0.113688 -0.320394,0.113688 -0.07648,0 -0.194303,-0.01447 v -0.08888 q 0.05788,0.0083 0.09922,0.0083 0.10542,0 0.177767,-0.07028 0.07235,-0.06821 0.07235,-0.157096 0,-0.06201 -0.04754,-0.107487 -0.04754,-0.04548 -0.117822,-0.04548 -0.02067,0 -0.05374,0.0041 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14049" />
<path
d="m 100.15451,72.665687 q -0.291452,0.225309 -0.365866,0.260449 -0.111621,0.05168 -0.237712,0.05168 -0.19637,0 -0.324527,-0.134359 -0.126091,-0.134358 -0.126091,-0.353466 0,-0.138493 0.06201,-0.239779 0.08475,-0.140559 0.293522,-0.264583 0.210839,-0.124023 0.698664,-0.30179 v -0.07441 q 0,-0.283186 -0.091,-0.388606 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206706,0.07028 -0.07855,0.07028 -0.07855,0.16123 l 0.0041,0.119889 q 0,0.09508 -0.04961,0.146761 -0.04754,0.05168 -0.12609,0.05168 -0.07648,0 -0.126091,-0.05374 -0.04754,-0.05374 -0.04754,-0.146761 0,-0.177766 0.181901,-0.326594 0.181901,-0.148828 0.510563,-0.148828 0.252182,0 0.413412,0.08475 0.12195,0.06408 0.17983,0.200504 0.0372,0.08888 0.0372,0.363802 v 0.642854 q 0,0.270785 0.0103,0.332796 0.0103,0.05994 0.0331,0.08062 0.0248,0.02067 0.0558,0.02067 0.0331,0 0.0579,-0.01447 0.0434,-0.02687 0.16743,-0.150896 v 0.115756 q -0.23151,0.310058 -0.44235,0.310058 -0.10128,0 -0.16123,-0.07028 -0.0599,-0.07028 -0.062,-0.239778 z m 0,-0.134359 v -0.721402 q -0.312123,0.124023 -0.403073,0.175699 -0.163298,0.09095 -0.233578,0.190169 -0.07028,0.09922 -0.07028,0.217041 0,0.148828 0.08888,0.248047 0.08888,0.09715 0.204638,0.09715 0.157097,0 0.413413,-0.206706 z m -0.851624,-1.86035 h -0.06615 q 0.0083,-0.283187 0.117822,-0.409277 0.109554,-0.12609 0.270784,-0.12609 0.08475,0 0.155029,0.02687 0.09302,0.03514 0.262519,0.148828 0.17156,0.111621 0.25425,0.111621 0.0662,0 0.11575,-0.05581 0.0517,-0.05581 0.0806,-0.23151 h 0.0641 q 0.002,0.192236 -0.0517,0.305924 -0.0517,0.111621 -0.14883,0.1757 -0.0951,0.06201 -0.19223,0.06201 -0.1633,0 -0.405147,-0.165364 -0.130225,-0.08888 -0.1757,-0.107487 -0.04547,-0.0186 -0.08888,-0.0186 -0.08475,0 -0.134359,0.07441 -0.02274,0.03514 -0.05788,0.208773 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14051" />
<path
d="m 101.88464,70.989305 q 0.42995,0 0.69039,0.326594 0.22118,0.279053 0.22118,0.640788 0,0.254247 -0.12196,0.514696 -0.12195,0.260449 -0.33693,0.392741 -0.2129,0.132291 -0.47542,0.132291 -0.42788,0 -0.68006,-0.341064 -0.21291,-0.28732 -0.21291,-0.644921 0,-0.260449 0.12816,-0.516764 0.13022,-0.258382 0.34106,-0.380338 0.21084,-0.124023 0.44649,-0.124023 z m -0.0641,0.134358 q -0.10956,0 -0.22118,0.06615 -0.10955,0.06408 -0.17776,0.227376 -0.0682,0.163297 -0.0682,0.419612 0,0.413411 0.16329,0.713134 0.16537,0.299724 0.43409,0.299724 0.2005,0 0.33072,-0.165365 0.13023,-0.165364 0.13023,-0.56844 0,-0.504362 -0.21704,-0.79375 -0.14676,-0.198437 -0.37414,-0.198437 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14053" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1"
d="m 88.469459,74.831458 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8)" />
<path
d="m 68.534204,78.919374 h 39.870506 v 9.389302 H 68.534204 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4" />
<path
d="m 71.708155,79.627712 0.06408,0.952913 h -0.06408 q -0.128157,-0.427881 -0.365869,-0.615983 -0.237711,-0.188102 -0.570507,-0.188102 -0.279053,0 -0.504362,0.142627 -0.225309,0.14056 -0.355533,0.450618 -0.128158,0.310059 -0.128158,0.771012 0,0.380338 0.121957,0.659391 0.121956,0.279052 0.365868,0.42788 0.24598,0.148828 0.560172,0.148828 0.272852,0 0.481624,-0.115755 0.208773,-0.117822 0.458887,-0.465087 l 0.06408,0.04134 q -0.210839,0.374137 -0.491959,0.547769 -0.281119,0.173633 -0.667659,0.173633 -0.696597,0 -1.079003,-0.516764 -0.285253,-0.384472 -0.285253,-0.90537 0,-0.419612 0.188102,-0.771012 0.188102,-0.351399 0.516764,-0.543635 0.330728,-0.194304 0.721402,-0.194304 0.303857,0 0.599446,0.148828 0.08682,0.04548 0.124023,0.04548 0.05581,0 0.09715,-0.03927 0.05374,-0.05581 0.07648,-0.155029 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14057" />
<path
d="m 73.192301,82.221867 q -0.291455,0.225309 -0.365869,0.260449 -0.111621,0.05168 -0.237711,0.05168 -0.19637,0 -0.324528,-0.134358 -0.12609,-0.134359 -0.12609,-0.353467 0,-0.138492 0.06201,-0.239778 0.08475,-0.14056 0.293522,-0.264583 0.21084,-0.124024 0.698665,-0.30179 v -0.07441 q 0,-0.283187 -0.09095,-0.388607 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.07028 -0.07855,0.07028 -0.07855,0.161231 l 0.0041,0.119889 q 0,0.09508 -0.04961,0.146761 -0.04754,0.05168 -0.126091,0.05168 -0.07648,0 -0.12609,-0.05374 -0.04754,-0.05374 -0.04754,-0.146761 0,-0.177767 0.181901,-0.326595 0.1819,-0.148828 0.510562,-0.148828 0.252181,0 0.413411,0.08475 0.121957,0.06408 0.179834,0.200505 0.03721,0.08888 0.03721,0.363801 v 0.642855 q 0,0.270784 0.01033,0.332796 0.01034,0.05994 0.03307,0.08061 0.02481,0.02067 0.05581,0.02067 0.03307,0 0.05788,-0.01447 0.04341,-0.02687 0.167432,-0.150895 v 0.115755 q -0.23151,0.310058 -0.44235,0.310058 -0.101286,0 -0.16123,-0.07028 -0.05994,-0.07028 -0.06201,-0.239778 z m 0,-0.134359 v -0.721402 q -0.312125,0.124023 -0.403076,0.1757 -0.163297,0.09095 -0.233577,0.190169 -0.07028,0.09922 -0.07028,0.217041 0,0.148828 0.08888,0.248046 0.08888,0.09715 0.204639,0.09715 0.157096,0 0.413411,-0.206706 z m 0.204639,-2.465997 -0.609782,0.713134 h -0.07028 l 0.217041,-0.713134 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14059" />
<path
d="m 74.647508,79.555365 v 2.511473 q 0,0.177767 0.02481,0.235644 0.02687,0.05788 0.08061,0.08888 0.05374,0.02894 0.200504,0.02894 v 0.07441 h -0.928108 v -0.07441 q 0.130225,0 0.177767,-0.02687 0.04754,-0.02687 0.07441,-0.08888 0.02687,-0.06201 0.02687,-0.237711 v -1.71979 q 0,-0.320394 -0.01447,-0.392741 -0.01447,-0.07441 -0.04754,-0.101286 -0.03101,-0.02687 -0.08061,-0.02687 -0.05374,0 -0.136426,0.03307 l -0.03514,-0.07235 0.564307,-0.231511 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14061" />
<path
d="m 76.778642,81.775383 q -0.07648,0.374137 -0.299723,0.576709 -0.223242,0.200504 -0.494026,0.200504 -0.322461,0 -0.562239,-0.270784 -0.239779,-0.270785 -0.239779,-0.731738 0,-0.446484 0.264584,-0.725537 0.26665,-0.279052 0.63872,-0.279052 0.279052,0 0.458886,0.148828 0.179834,0.146761 0.179834,0.305924 0,0.07855 -0.05168,0.128158 -0.04961,0.04754 -0.140559,0.04754 -0.121957,0 -0.183968,-0.07855 -0.03514,-0.04341 -0.04754,-0.165365 -0.01033,-0.121956 -0.08268,-0.186035 -0.07235,-0.06201 -0.200504,-0.06201 -0.206706,0 -0.332796,0.152962 -0.167432,0.202571 -0.167432,0.535367 0,0.338997 0.165365,0.599446 0.167431,0.258382 0.450618,0.258382 0.202571,0 0.363802,-0.138492 0.113688,-0.09508 0.221175,-0.345199 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14063" />
<path
d="m 78.707205,80.601295 v 1.147216 q 0,0.328662 0.01447,0.403076 0.01654,0.07235 0.04961,0.101286 0.03514,0.02894 0.08062,0.02894 0.06408,0 0.144694,-0.03514 l 0.02894,0.07235 -0.566374,0.233577 h -0.09302 v -0.401009 q -0.243913,0.264583 -0.37207,0.332796 -0.128158,0.06821 -0.270784,0.06821 -0.159164,0 -0.276986,-0.09095 -0.115755,-0.09302 -0.16123,-0.237711 -0.04548,-0.144694 -0.04548,-0.409277 v -0.845426 q 0,-0.134358 -0.02894,-0.186035 -0.02894,-0.05168 -0.08682,-0.07855 -0.05581,-0.02894 -0.204639,-0.02687 v -0.07648 h 0.663525 v 1.267106 q 0,0.264583 0.09095,0.347265 0.09302,0.08268 0.223242,0.08268 0.08888,0 0.200505,-0.05581 0.113688,-0.05581 0.268717,-0.212907 V 80.95683 q 0,-0.16123 -0.05994,-0.217041 -0.05788,-0.05788 -0.243912,-0.06201 v -0.07648 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14065" />
<path
d="m 79.815147,79.555365 v 2.511473 q 0,0.177767 0.02481,0.235644 0.02687,0.05788 0.08062,0.08888 0.05374,0.02894 0.200504,0.02894 v 0.07441 h -0.928108 v -0.07441 q 0.130225,0 0.177767,-0.02687 0.04754,-0.02687 0.07441,-0.08888 0.02687,-0.06201 0.02687,-0.237711 v -1.71979 q 0,-0.320394 -0.01447,-0.392741 -0.01447,-0.07441 -0.04754,-0.101286 -0.03101,-0.02687 -0.08062,-0.02687 -0.05374,0 -0.136426,0.03307 l -0.03514,-0.07235 0.564306,-0.231511 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14067" />
<path
d="m 81.264153,80.545485 q 0.429947,0 0.690396,0.326595 0.221175,0.279052 0.221175,0.640787 0,0.254248 -0.121956,0.514697 -0.121956,0.260449 -0.33693,0.39274 -0.212907,0.132292 -0.475423,0.132292 -0.42788,0 -0.680061,-0.341064 -0.212907,-0.287321 -0.212907,-0.644922 0,-0.260449 0.128158,-0.516763 0.130224,-0.258382 0.341064,-0.380339 0.210839,-0.124023 0.446484,-0.124023 z m -0.06408,0.134359 q -0.109554,0 -0.221175,0.06614 -0.109554,0.06408 -0.177767,0.227376 -0.06821,0.163298 -0.06821,0.419613 0,0.413411 0.163298,0.713134 0.165364,0.299723 0.434082,0.299723 0.200504,0 0.330728,-0.165364 0.130225,-0.165365 0.130225,-0.568441 0,-0.504361 -0.217041,-0.793749 -0.146761,-0.198437 -0.374137,-0.198437 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14069" />
<path
d="m 84.850494,82.281812 q -0.138493,0.144694 -0.270784,0.208772 -0.132292,0.06201 -0.285254,0.06201 -0.310058,0 -0.541568,-0.258382 -0.231511,-0.260449 -0.231511,-0.667659 0,-0.40721 0.256315,-0.74414 0.256315,-0.338997 0.659391,-0.338997 0.250114,0 0.413411,0.159163 v -0.349332 q 0,-0.324528 -0.01654,-0.398942 -0.01447,-0.07441 -0.04754,-0.101286 -0.03307,-0.02687 -0.08268,-0.02687 -0.05374,0 -0.142627,0.03307 l -0.02687,-0.07235 0.564306,-0.231511 h 0.09302 v 2.189012 q 0,0.332796 0.01447,0.40721 0.01654,0.07235 0.04961,0.101286 0.03514,0.02894 0.08062,0.02894 0.05581,0 0.148828,-0.03514 l 0.02274,0.07235 -0.562239,0.233577 h -0.09508 z m 0,-0.144694 v -0.97565 q -0.0124,-0.14056 -0.07441,-0.256315 -0.06201,-0.115755 -0.165364,-0.173633 -0.101286,-0.05994 -0.198438,-0.05994 -0.181901,0 -0.324527,0.163298 -0.188102,0.214974 -0.188102,0.628385 0,0.417545 0.1819,0.640787 0.181901,0.221175 0.405143,0.221175 0.188102,0 0.363802,-0.188102 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14071" />
<path
d="m 86.702576,82.221867 q -0.291455,0.225309 -0.365869,0.260449 -0.111621,0.05168 -0.237711,0.05168 -0.196371,0 -0.324528,-0.134358 -0.12609,-0.134359 -0.12609,-0.353467 0,-0.138492 0.06201,-0.239778 0.08475,-0.14056 0.293522,-0.264583 0.21084,-0.124024 0.698665,-0.30179 v -0.07441 q 0,-0.283187 -0.09095,-0.388607 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.07028 -0.07855,0.07028 -0.07855,0.161231 l 0.0041,0.119889 q 0,0.09508 -0.04961,0.146761 -0.04754,0.05168 -0.126091,0.05168 -0.07648,0 -0.12609,-0.05374 -0.04754,-0.05374 -0.04754,-0.146761 0,-0.177767 0.1819,-0.326595 0.181901,-0.148828 0.510563,-0.148828 0.252181,0 0.413411,0.08475 0.121957,0.06408 0.179834,0.200505 0.03721,0.08888 0.03721,0.363801 v 0.642855 q 0,0.270784 0.01033,0.332796 0.01034,0.05994 0.03307,0.08061 0.02481,0.02067 0.05581,0.02067 0.03307,0 0.05788,-0.01447 0.04341,-0.02687 0.167432,-0.150895 v 0.115755 q -0.23151,0.310058 -0.44235,0.310058 -0.101286,0 -0.16123,-0.07028 -0.05994,-0.07028 -0.06201,-0.239778 z m 0,-0.134359 v -0.721402 q -0.312125,0.124023 -0.403076,0.1757 -0.163297,0.09095 -0.233577,0.190169 -0.07028,0.09922 -0.07028,0.217041 0,0.148828 0.08888,0.248046 0.08888,0.09715 0.204639,0.09715 0.157096,0 0.413411,-0.206706 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14073" />
<path
d="m 88.730361,80.545485 v 0.644921 h -0.0682 q -0.0785,-0.303857 -0.202568,-0.413411 -0.121956,-0.109554 -0.312125,-0.109554 -0.144694,0 -0.233578,0.07648 -0.08888,0.07648 -0.08888,0.169499 0,0.115755 0.06615,0.198437 0.06408,0.08475 0.260449,0.179834 l 0.30179,0.146761 q 0.419612,0.204638 0.419612,0.539501 0,0.258382 -0.19637,0.417546 -0.194303,0.157096 -0.436149,0.157096 -0.173632,0 -0.396874,-0.06201 -0.06821,-0.02067 -0.111621,-0.02067 -0.04754,0 -0.07441,0.05374 h -0.06821 v -0.675927 h 0.06821 q 0.05788,0.289388 0.221174,0.436149 0.163298,0.146761 0.365869,0.146761 0.142627,0 0.231511,-0.08268 0.09095,-0.08475 0.09095,-0.202571 0,-0.142627 -0.101287,-0.239778 -0.09922,-0.09715 -0.398941,-0.24598 -0.299724,-0.148828 -0.392741,-0.268717 -0.09302,-0.117822 -0.09302,-0.297656 0,-0.233578 0.159164,-0.390674 0.16123,-0.157096 0.415478,-0.157096 0.111621,0 0.270784,0.04754 0.10542,0.03101 0.140563,0.03101 0.0331,0 0.0517,-0.01447 0.0186,-0.01447 0.0434,-0.06408 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14075" />
<path
d="m 91.818541,81.775383 q -0.0765,0.374137 -0.29973,0.576709 -0.22324,0.200504 -0.49402,0.200504 -0.32246,0 -0.56224,-0.270784 -0.23978,-0.270785 -0.23978,-0.731738 0,-0.446484 0.26458,-0.725537 0.26665,-0.279052 0.63872,-0.279052 0.27906,0 0.45889,0.148828 0.17983,0.146761 0.17983,0.305924 0,0.07855 -0.0517,0.128158 -0.0496,0.04754 -0.14056,0.04754 -0.12196,0 -0.18397,-0.07855 -0.0351,-0.04341 -0.0475,-0.165365 -0.0103,-0.121956 -0.0827,-0.186035 -0.0724,-0.06201 -0.20051,-0.06201 -0.2067,0 -0.3328,0.152962 -0.16743,0.202571 -0.16743,0.535367 0,0.338997 0.16537,0.599446 0.16743,0.258382 0.45062,0.258382 0.20257,0 0.3638,-0.138492 0.11369,-0.09508 0.22117,-0.345199 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14077" />
<path
d="m 93.013301,80.545485 q 0.42994,0 0.69039,0.326595 0.22118,0.279052 0.22118,0.640787 0,0.254248 -0.12196,0.514697 -0.12196,0.260449 -0.33693,0.39274 -0.21291,0.132292 -0.47542,0.132292 -0.42788,0 -0.68006,-0.341064 -0.21291,-0.287321 -0.21291,-0.644922 0,-0.260449 0.12816,-0.516763 0.13022,-0.258382 0.34106,-0.380339 0.21084,-0.124023 0.44649,-0.124023 z m -0.0641,0.134359 q -0.10956,0 -0.22118,0.06614 -0.10955,0.06408 -0.17777,0.227376 -0.0682,0.163298 -0.0682,0.419613 0,0.413411 0.1633,0.713134 0.16536,0.299723 0.43408,0.299723 0.20051,0 0.33073,-0.165364 0.13022,-0.165365 0.13022,-0.568441 0,-0.504361 -0.21704,-0.793749 -0.14676,-0.198437 -0.37413,-0.198437 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14079" />
<path
d="m 94.755821,80.946494 q 0.3328,-0.401009 0.63459,-0.401009 0.15503,0 0.26665,0.07855 0.11162,0.07648 0.17777,0.254248 0.0455,0.124023 0.0455,0.380338 v 0.808219 q 0,0.179834 0.0289,0.243912 0.0227,0.05168 0.0724,0.08062 0.0517,0.02894 0.1881,0.02894 v 0.07441 h -0.93638 v -0.07441 h 0.0393 q 0.13229,0 0.18397,-0.03927 0.0537,-0.04134 0.0744,-0.119889 0.008,-0.03101 0.008,-0.194303 v -0.775146 q 0,-0.258382 -0.0682,-0.374137 -0.0661,-0.117822 -0.2253,-0.117822 -0.24598,0 -0.4899,0.268717 v 0.998388 q 0,0.192236 0.0227,0.237711 0.0289,0.05994 0.0786,0.08888 0.0517,0.02687 0.2067,0.02687 v 0.07441 h -0.93637 v -0.07441 h 0.0413 q 0.14469,0 0.1943,-0.07235 0.0517,-0.07441 0.0517,-0.281119 v -0.702799 q 0,-0.341064 -0.0165,-0.415478 -0.0145,-0.07441 -0.0475,-0.101286 -0.031,-0.02687 -0.0847,-0.02687 -0.0579,0 -0.13849,0.03101 l -0.031,-0.07441 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14081" />
<path
d="m 97.544281,80.545485 v 0.644921 h -0.0682 q -0.0786,-0.303857 -0.20257,-0.413411 -0.12196,-0.109554 -0.31213,-0.109554 -0.14469,0 -0.23358,0.07648 -0.0889,0.07648 -0.0889,0.169499 0,0.115755 0.0662,0.198437 0.0641,0.08475 0.26045,0.179834 l 0.30179,0.146761 q 0.41961,0.204638 0.41961,0.539501 0,0.258382 -0.19637,0.417546 -0.19431,0.157096 -0.43615,0.157096 -0.17363,0 -0.39688,-0.06201 -0.0682,-0.02067 -0.11162,-0.02067 -0.0475,0 -0.0744,0.05374 h -0.0682 v -0.675927 h 0.0682 q 0.0579,0.289388 0.22117,0.436149 0.1633,0.146761 0.36587,0.146761 0.14263,0 0.23151,-0.08268 0.091,-0.08475 0.091,-0.202571 0,-0.142627 -0.10128,-0.239778 -0.0992,-0.09715 -0.39894,-0.24598 -0.29973,-0.148828 -0.39274,-0.268717 -0.093,-0.117822 -0.093,-0.297656 0,-0.233578 0.15916,-0.390674 0.16123,-0.157096 0.41548,-0.157096 0.11162,0 0.27078,0.04754 0.10542,0.03101 0.14056,0.03101 0.0331,0 0.0517,-0.01447 0.0186,-0.01447 0.0434,-0.06408 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14083" />
<path
d="m 98.515801,79.979112 v 0.622183 h 0.44235 v 0.144694 h -0.44235 v 1.227831 q 0,0.183968 0.0517,0.248047 0.0538,0.06408 0.13643,0.06408 0.0682,0 0.13229,-0.04134 0.0641,-0.04341 0.0992,-0.126091 h 0.0806 q -0.0723,0.202572 -0.20463,0.305924 -0.1323,0.101286 -0.27286,0.101286 -0.0951,0 -0.18603,-0.05168 -0.091,-0.05374 -0.13436,-0.150895 -0.0434,-0.09922 -0.0434,-0.303857 v -1.273307 h -0.29972 v -0.06821 q 0.11369,-0.04548 0.23151,-0.152963 0.11989,-0.109554 0.21291,-0.258382 0.0475,-0.07855 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14085" />
<path
d="m 100.21285,82.221867 q -0.291459,0.225309 -0.365869,0.260449 -0.11162,0.05168 -0.23771,0.05168 -0.19637,0 -0.32453,-0.134358 -0.12609,-0.134359 -0.12609,-0.353467 0,-0.138492 0.062,-0.239778 0.0847,-0.14056 0.29353,-0.264583 0.21083,-0.124024 0.698659,-0.30179 v -0.07441 q 0,-0.283187 -0.091,-0.388607 -0.0889,-0.10542 -0.260449,-0.10542 -0.13022,0 -0.20671,0.07028 -0.0785,0.07028 -0.0785,0.161231 l 0.004,0.119889 q 0,0.09508 -0.0496,0.146761 -0.0475,0.05168 -0.12609,0.05168 -0.0765,0 -0.12609,-0.05374 -0.0475,-0.05374 -0.0475,-0.146761 0,-0.177767 0.1819,-0.326595 0.1819,-0.148828 0.51056,-0.148828 0.252179,0 0.413409,0.08475 0.12196,0.06408 0.17984,0.200505 0.0372,0.08888 0.0372,0.363801 v 0.642855 q 0,0.270784 0.0103,0.332796 0.0103,0.05994 0.0331,0.08061 0.0248,0.02067 0.0558,0.02067 0.0331,0 0.0579,-0.01447 0.0434,-0.02687 0.16743,-0.150895 v 0.115755 q -0.23151,0.310058 -0.44235,0.310058 -0.10128,0 -0.16123,-0.07028 -0.0599,-0.07028 -0.062,-0.239778 z m 0,-0.134359 v -0.721402 q -0.312129,0.124023 -0.403079,0.1757 -0.16329,0.09095 -0.23357,0.190169 -0.0703,0.09922 -0.0703,0.217041 0,0.148828 0.0889,0.248046 0.0889,0.09715 0.20464,0.09715 0.15709,0 0.413409,-0.206706 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14087" />
<path
d="m 101.56884,80.946494 q 0.33279,-0.401009 0.63458,-0.401009 0.15503,0 0.26665,0.07855 0.11163,0.07648 0.17777,0.254248 0.0455,0.124023 0.0455,0.380338 v 0.808219 q 0,0.179834 0.0289,0.243912 0.0227,0.05168 0.0723,0.08062 0.0517,0.02894 0.1881,0.02894 v 0.07441 h -0.93637 v -0.07441 h 0.0393 q 0.13229,0 0.18397,-0.03927 0.0537,-0.04134 0.0744,-0.119889 0.008,-0.03101 0.008,-0.194303 v -0.775146 q 0,-0.258382 -0.0682,-0.374137 -0.0662,-0.117822 -0.22531,-0.117822 -0.24598,0 -0.48989,0.268717 v 0.998388 q 0,0.192236 0.0227,0.237711 0.0289,0.05994 0.0785,0.08888 0.0517,0.02687 0.20671,0.02687 v 0.07441 h -0.93638 v -0.07441 h 0.0413 q 0.1447,0 0.19431,-0.07235 0.0517,-0.07441 0.0517,-0.281119 v -0.702799 q 0,-0.341064 -0.0165,-0.415478 -0.0145,-0.07441 -0.0475,-0.101286 -0.031,-0.02687 -0.0847,-0.02687 -0.0579,0 -0.1385,0.03101 l -0.031,-0.07441 0.5705,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14089" />
<path
d="m 103.68344,79.979112 v 0.622183 h 0.44235 v 0.144694 h -0.44235 v 1.227831 q 0,0.183968 0.0517,0.248047 0.0537,0.06408 0.13643,0.06408 0.0682,0 0.13229,-0.04134 0.0641,-0.04341 0.0992,-0.126091 h 0.0806 q -0.0724,0.202572 -0.20464,0.305924 -0.13229,0.101286 -0.27285,0.101286 -0.0951,0 -0.18604,-0.05168 -0.0909,-0.05374 -0.13436,-0.150895 -0.0434,-0.09922 -0.0434,-0.303857 v -1.273307 h -0.29972 v -0.06821 q 0.11369,-0.04548 0.23151,-0.152963 0.11989,-0.109554 0.21291,-0.258382 0.0475,-0.07855 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14091" />
<path
d="m 104.62602,81.31443 q -0.002,0.421679 0.20463,0.661457 0.20671,0.239779 0.48576,0.239779 0.18604,0 0.32246,-0.101286 0.1385,-0.103353 0.23151,-0.351399 l 0.0641,0.04134 q -0.0434,0.283186 -0.25218,0.516764 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.264583 -0.24185,-0.26665 -0.24185,-0.715201 0,-0.485758 0.24805,-0.756543 0.25011,-0.272851 0.62632,-0.272851 0.31832,0 0.52296,0.21084 0.20464,0.208772 0.20464,0.560172 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.256314 -0.0517,-0.115756 -0.15503,-0.181901 -0.10129,-0.06615 -0.21291,-0.06615 -0.17156,0 -0.30799,0.134358 -0.13436,0.132292 -0.15709,0.370003 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14093" />
<path
d="m 107.40827,80.545485 v 0.644921 h -0.0682 q -0.0786,-0.303857 -0.20257,-0.413411 -0.12196,-0.109554 -0.31213,-0.109554 -0.14469,0 -0.23358,0.07648 -0.0889,0.07648 -0.0889,0.169499 0,0.115755 0.0662,0.198437 0.0641,0.08475 0.26044,0.179834 l 0.30179,0.146761 q 0.41962,0.204638 0.41962,0.539501 0,0.258382 -0.19637,0.417546 -0.19431,0.157096 -0.43615,0.157096 -0.17363,0 -0.39688,-0.06201 -0.0682,-0.02067 -0.11162,-0.02067 -0.0475,0 -0.0744,0.05374 h -0.0682 v -0.675927 h 0.0682 q 0.0579,0.289388 0.22117,0.436149 0.1633,0.146761 0.36587,0.146761 0.14263,0 0.23151,-0.08268 0.0909,-0.08475 0.0909,-0.202571 0,-0.142627 -0.10128,-0.239778 -0.0992,-0.09715 -0.39894,-0.24598 -0.29973,-0.148828 -0.39275,-0.268717 -0.093,-0.117822 -0.093,-0.297656 0,-0.233578 0.15916,-0.390674 0.16123,-0.157096 0.41548,-0.157096 0.11162,0 0.27078,0.04754 0.10542,0.03101 0.14056,0.03101 0.0331,0 0.0517,-0.01447 0.0186,-0.01447 0.0434,-0.06408 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14095" />
<path
d="m 78.562511,86.515141 q -0.138492,0.144694 -0.270784,0.208773 -0.132292,0.06201 -0.285254,0.06201 -0.310058,0 -0.541568,-0.258382 -0.23151,-0.260449 -0.23151,-0.667659 0,-0.40721 0.256314,-0.74414 0.256315,-0.338997 0.659391,-0.338997 0.250114,0 0.413411,0.159163 v -0.349332 q 0,-0.324528 -0.01654,-0.398942 -0.01447,-0.07441 -0.04754,-0.101286 -0.03307,-0.02687 -0.08268,-0.02687 -0.05374,0 -0.142627,0.03307 l -0.02687,-0.07235 0.564306,-0.23151 h 0.09302 v 2.189012 q 0,0.332796 0.01447,0.40721 0.01654,0.07235 0.04961,0.101286 0.03514,0.02894 0.08062,0.02894 0.05581,0 0.148828,-0.03514 l 0.02274,0.07235 -0.562239,0.233578 h -0.09508 z m 0,-0.144693 v -0.975651 q -0.0124,-0.140559 -0.07441,-0.256315 -0.06201,-0.115755 -0.165364,-0.173632 -0.101286,-0.05994 -0.198438,-0.05994 -0.1819,0 -0.324527,0.163298 -0.188102,0.214973 -0.188102,0.628384 0,0.417546 0.181901,0.640788 0.1819,0.221175 0.405142,0.221175 0.188103,0 0.363802,-0.188102 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14097" />
<path
d="m 79.660118,85.547759 q -0.0021,0.42168 0.204638,0.661458 0.206706,0.239779 0.485758,0.239779 0.186035,0 0.322461,-0.101286 0.138493,-0.103353 0.23151,-0.3514 l 0.06408,0.04134 q -0.04341,0.283186 -0.252181,0.516763 -0.208772,0.231511 -0.522965,0.231511 -0.341064,0 -0.584977,-0.264583 -0.241845,-0.266651 -0.241845,-0.715202 0,-0.485758 0.248047,-0.756542 0.250113,-0.272851 0.626317,-0.272851 0.318327,0 0.522965,0.210839 0.204639,0.208773 0.204639,0.560172 z m 0,-0.119889 h 0.876431 q -0.01033,-0.181901 -0.04341,-0.256315 -0.05168,-0.115755 -0.155029,-0.181901 -0.101286,-0.06614 -0.212907,-0.06614 -0.171565,0 -0.307991,0.134358 -0.134359,0.132292 -0.157096,0.370003 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14099" />
<path
d="m 82.758634,83.788695 q 0.08682,0 0.146761,0.06201 0.06201,0.05994 0.06201,0.146761 0,0.08682 -0.06201,0.148828 -0.05994,0.06201 -0.146761,0.06201 -0.08682,0 -0.148828,-0.06201 -0.06201,-0.06201 -0.06201,-0.148828 0,-0.08682 0.05994,-0.146761 0.06201,-0.06201 0.150895,-0.06201 z m 0.171566,0.99012 v 1.521353 q 0,0.177766 0.0248,0.237711 0.02687,0.05788 0.07648,0.08682 0.05168,0.02894 0.186035,0.02894 v 0.07441 h -0.919834 v -0.07441 q 0.138492,0 0.186035,-0.02687 0.04754,-0.02687 0.07441,-0.08888 0.02894,-0.06201 0.02894,-0.237711 v -0.729671 q 0,-0.307991 -0.0186,-0.398942 -0.01447,-0.06614 -0.04548,-0.09095 -0.03101,-0.02687 -0.08475,-0.02687 -0.05788,0 -0.140559,0.03101 l -0.02894,-0.07441 0.570507,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14101" />
<path
d="m 84.003001,85.179824 q 0.332796,-0.401009 0.634586,-0.401009 0.15503,0 0.266651,0.07855 0.111621,0.07648 0.177766,0.254248 0.04548,0.124023 0.04548,0.380338 v 0.808219 q 0,0.179833 0.02894,0.243912 0.02274,0.05168 0.07235,0.08062 0.05168,0.02894 0.188102,0.02894 v 0.07441 h -0.936385 v -0.07441 h 0.03927 q 0.132292,0 0.183968,-0.03927 0.05374,-0.04134 0.07441,-0.119889 0.0083,-0.03101 0.0083,-0.194303 v -0.775146 q 0,-0.258382 -0.06821,-0.374137 -0.06615,-0.117822 -0.225309,-0.117822 -0.24598,0 -0.489893,0.268717 v 0.998388 q 0,0.192236 0.02274,0.237711 0.02894,0.05995 0.07855,0.08888 0.05168,0.02687 0.206706,0.02687 v 0.07441 h -0.936377 v -0.07441 h 0.04134 q 0.144693,0 0.194303,-0.07235 0.05168,-0.07441 0.05168,-0.281119 v -0.702799 q 0,-0.341064 -0.01654,-0.415478 -0.01447,-0.07441 -0.04754,-0.101286 -0.03101,-0.02687 -0.08475,-0.02687 -0.05788,0 -0.138493,0.03101 l -0.03101,-0.07441 0.570507,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14103" />
<path
d="m 86.117599,84.212442 v 0.622183 h 0.44235 v 0.144694 h -0.44235 v 1.227831 q 0,0.183968 0.05168,0.248047 0.05374,0.06408 0.136425,0.06408 0.06821,0 0.132292,-0.04134 0.06408,-0.04341 0.09922,-0.12609 h 0.08062 q -0.07235,0.202571 -0.204639,0.305924 -0.132291,0.101286 -0.272851,0.101286 -0.09508,0 -0.186035,-0.05168 -0.09095,-0.05374 -0.134359,-0.150895 -0.04341,-0.09922 -0.04341,-0.303858 v -1.273306 h -0.299723 v -0.06821 q 0.113688,-0.04547 0.23151,-0.152962 0.119889,-0.109554 0.212907,-0.258382 0.04754,-0.07855 0.132291,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14105" />
<path
d="m 87.060177,85.547759 q -0.0021,0.42168 0.204638,0.661458 0.206706,0.239779 0.485758,0.239779 0.186035,0 0.322461,-0.101286 0.138492,-0.103353 0.23151,-0.3514 l 0.06408,0.04134 q -0.04341,0.283186 -0.252181,0.516763 -0.208773,0.231511 -0.522965,0.231511 -0.341064,0 -0.584977,-0.264583 -0.241845,-0.266651 -0.241845,-0.715202 0,-0.485758 0.248046,-0.756542 0.250114,-0.272851 0.626318,-0.272851 0.318327,0 0.522965,0.210839 0.204639,0.208773 0.204639,0.560172 z m 0,-0.119889 h 0.876431 q -0.01033,-0.181901 -0.04341,-0.256315 -0.05168,-0.115755 -0.155029,-0.181901 -0.101286,-0.06614 -0.212907,-0.06614 -0.171566,0 -0.307991,0.134358 -0.134359,0.132292 -0.157096,0.370003 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14107" />
<path
d="m 89.125161,86.037652 q -0.17363,-0.08475 -0.26665,-0.235645 -0.093,-0.152962 -0.093,-0.33693 0,-0.281119 0.21084,-0.483691 0.2129,-0.202571 0.54363,-0.202571 0.27079,0 0.46922,0.132291 h 0.40101 q 0.0889,0 0.10335,0.0062 0.0145,0.0041 0.0207,0.01654 0.0124,0.0186 0.0124,0.06615 0,0.05374 -0.0103,0.07441 -0.006,0.01033 -0.0227,0.01654 -0.0145,0.0062 -0.10335,0.0062 h -0.24598 q 0.11576,0.148828 0.11576,0.380339 0,0.264583 -0.20257,0.452685 -0.20258,0.188102 -0.54364,0.188102 -0.14056,0 -0.28732,-0.04134 -0.0909,0.07855 -0.12402,0.138492 -0.031,0.05788 -0.031,0.09922 0,0.03514 0.0331,0.06821 0.0351,0.03307 0.13436,0.04754 0.0579,0.0083 0.28939,0.01447 0.42581,0.01033 0.5519,0.02894 0.19224,0.02687 0.30593,0.142627 0.11575,0.115755 0.11575,0.285254 0,0.233577 -0.2191,0.438216 -0.32247,0.30179 -0.8413,0.30179 -0.39894,0 -0.67386,-0.179834 -0.15503,-0.103353 -0.15503,-0.214974 0,-0.04961 0.0227,-0.09922 0.0351,-0.07648 0.1447,-0.212906 0.0145,-0.0186 0.21084,-0.223242 -0.10749,-0.06408 -0.15297,-0.113688 -0.0434,-0.05168 -0.0434,-0.115755 0,-0.07235 0.0579,-0.169499 0.06,-0.09715 0.27285,-0.274918 z m 0.35967,-1.159619 q -0.15296,0 -0.25631,0.121957 -0.10336,0.121956 -0.10336,0.374137 0,0.326595 0.14056,0.506428 0.10749,0.136426 0.27286,0.136426 0.15709,0 0.25838,-0.117822 0.10128,-0.117822 0.10128,-0.370003 0,-0.328662 -0.14262,-0.514697 -0.10542,-0.136426 -0.27079,-0.136426 z m -0.38034,1.850015 q -0.0971,0.10542 -0.14676,0.19637 -0.0496,0.09095 -0.0496,0.167432 0,0.09922 0.11989,0.173633 0.20671,0.128157 0.59738,0.128157 0.37207,0 0.54777,-0.132292 0.17777,-0.130224 0.17777,-0.279052 0,-0.107487 -0.10542,-0.152962 -0.10749,-0.04548 -0.42582,-0.05374 -0.46508,-0.0124 -0.7152,-0.04754 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14109" />
<path
d="m 91.289371,84.778815 v 0.425813 q 0.23771,-0.425813 0.48783,-0.425813 0.11368,0 0.1881,0.07028 0.0744,0.06821 0.0744,0.159163 0,0.08062 -0.0537,0.136426 -0.0537,0.05581 -0.12816,0.05581 -0.0724,0 -0.1633,-0.07028 -0.0889,-0.07235 -0.13229,-0.07235 -0.0372,0 -0.0806,0.04134 -0.093,0.08475 -0.19224,0.279053 v 0.907437 q 0,0.157096 0.0393,0.237712 0.0269,0.05581 0.0951,0.09302 0.0682,0.03721 0.19637,0.03721 v 0.07441 h -0.96945 v -0.07441 q 0.14469,0 0.21497,-0.04547 0.0517,-0.03307 0.0724,-0.10542 0.0103,-0.03514 0.0103,-0.200504 v -0.733805 q 0,-0.330729 -0.0145,-0.392741 -0.0124,-0.06408 -0.0496,-0.09302 -0.0351,-0.02894 -0.0889,-0.02894 -0.0641,0 -0.14469,0.03101 l -0.0207,-0.07441 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14111" />
<path
d="m 93.222071,86.455197 q -0.29146,0.225309 -0.36587,0.260449 -0.11162,0.05168 -0.23771,0.05168 -0.19637,0 -0.32453,-0.134358 -0.12609,-0.134359 -0.12609,-0.353467 0,-0.138493 0.062,-0.239778 0.0848,-0.14056 0.29352,-0.264583 0.21084,-0.124024 0.69867,-0.301791 v -0.07441 q 0,-0.283186 -0.091,-0.388606 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.07028 -0.0786,0.07028 -0.0786,0.16123 l 0.004,0.11989 q 0,0.09508 -0.0496,0.146761 -0.0475,0.05168 -0.12609,0.05168 -0.0765,0 -0.12609,-0.05374 -0.0475,-0.05374 -0.0475,-0.14676 0,-0.177767 0.1819,-0.326595 0.1819,-0.148828 0.51056,-0.148828 0.25218,0 0.41341,0.08475 0.12196,0.06408 0.17984,0.200504 0.0372,0.08888 0.0372,0.363802 v 0.642837 q 0,0.270785 0.0103,0.332796 0.0103,0.05994 0.0331,0.08062 0.0248,0.02067 0.0558,0.02067 0.0331,0 0.0579,-0.01447 0.0434,-0.02687 0.16743,-0.150895 V 86.4552 q -0.23151,0.310058 -0.44235,0.310058 -0.10129,0 -0.16123,-0.07028 -0.0599,-0.07028 -0.062,-0.239778 z m 0,-0.134359 v -0.721402 q -0.31213,0.124023 -0.40308,0.1757 -0.1633,0.09095 -0.23358,0.190169 -0.0703,0.09922 -0.0703,0.21704 0,0.148828 0.0889,0.248047 0.0889,0.09715 0.20464,0.09715 0.15709,0 0.41341,-0.206706 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14113" />
<path
d="m 95.634321,86.008713 q -0.0765,0.374137 -0.29972,0.576708 -0.22324,0.200505 -0.49403,0.200505 -0.32246,0 -0.56224,-0.270785 -0.23978,-0.270784 -0.23978,-0.731737 0,-0.446484 0.26459,-0.725537 0.26665,-0.279052 0.63872,-0.279052 0.27905,0 0.45888,0.148828 0.17984,0.146761 0.17984,0.305924 0,0.07855 -0.0517,0.128157 -0.0496,0.04754 -0.14056,0.04754 -0.12195,0 -0.18397,-0.07855 -0.0351,-0.04341 -0.0475,-0.165365 -0.0103,-0.121956 -0.0827,-0.186035 -0.0724,-0.06201 -0.2005,-0.06201 -0.20671,0 -0.3328,0.152963 -0.16743,0.202571 -0.16743,0.535367 0,0.338997 0.16536,0.599446 0.16743,0.258382 0.45062,0.258382 0.20257,0 0.3638,-0.138493 0.11369,-0.09508 0.22118,-0.345198 z m -0.76894,0.686262 h 0.12402 l -0.10335,0.163298 q 0.13022,0.03307 0.1943,0.111621 0.0641,0.07855 0.0641,0.190169 0,0.148828 -0.12402,0.260449 -0.12403,0.113688 -0.3204,0.113688 -0.0765,0 -0.1943,-0.01447 v -0.08888 q 0.0579,0.0083 0.0992,0.0083 0.10542,0 0.17776,-0.07028 0.0724,-0.06821 0.0724,-0.157096 0,-0.06201 -0.0475,-0.107487 -0.0475,-0.04548 -0.11782,-0.04548 -0.0207,0 -0.0537,0.0041 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14115" />
<path
d="m 96.975841,86.455197 q -0.29145,0.225309 -0.36587,0.260449 -0.11162,0.05168 -0.23771,0.05168 -0.19637,0 -0.32453,-0.134358 -0.12609,-0.134359 -0.12609,-0.353467 0,-0.138493 0.062,-0.239778 0.0847,-0.14056 0.29353,-0.264583 0.21084,-0.124024 0.69866,-0.301791 v -0.07441 q 0,-0.283186 -0.091,-0.388606 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.07028 -0.0785,0.07028 -0.0785,0.16123 l 0.004,0.11989 q 0,0.09508 -0.0496,0.146761 -0.0475,0.05168 -0.12609,0.05168 -0.0765,0 -0.12609,-0.05374 -0.0475,-0.05374 -0.0475,-0.14676 0,-0.177767 0.1819,-0.326595 0.1819,-0.148828 0.51056,-0.148828 0.25218,0 0.41341,0.08475 0.12196,0.06408 0.17984,0.200504 0.0372,0.08888 0.0372,0.363802 v 0.642837 q 0,0.270785 0.0103,0.332796 0.0103,0.05994 0.0331,0.08062 0.0248,0.02067 0.0558,0.02067 0.0331,0 0.0579,-0.01447 0.0434,-0.02687 0.16743,-0.150895 V 86.4552 q -0.23151,0.310058 -0.44235,0.310058 -0.10128,0 -0.16123,-0.07028 -0.0599,-0.07028 -0.062,-0.239778 z m 0,-0.134359 v -0.721402 q -0.31212,0.124023 -0.40308,0.1757 -0.16329,0.09095 -0.23357,0.190169 -0.0703,0.09922 -0.0703,0.21704 0,0.148828 0.0889,0.248047 0.0889,0.09715 0.20464,0.09715 0.1571,0 0.41341,-0.206706 z m -0.85163,-1.86035 h -0.0661 q 0.008,-0.283186 0.11782,-0.409277 0.10955,-0.12609 0.27078,-0.12609 0.0847,0 0.15503,0.02687 0.093,0.03514 0.26252,0.148828 0.17157,0.111621 0.25425,0.111621 0.0661,0 0.11575,-0.05581 0.0517,-0.05581 0.0806,-0.23151 h 0.0641 q 0.002,0.192236 -0.0517,0.305924 -0.0517,0.111621 -0.14883,0.1757 -0.0951,0.06201 -0.19223,0.06201 -0.1633,0 -0.40515,-0.165364 -0.13022,-0.08888 -0.1757,-0.107487 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.07441 -0.0227,0.03514 -0.0579,0.208772 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14117" />
<path
d="m 98.705971,84.778815 q 0.42994,0 0.69039,0.326595 0.22118,0.279052 0.22118,0.640787 0,0.254248 -0.12196,0.514697 -0.12195,0.260449 -0.33693,0.39274 -0.21291,0.132292 -0.47542,0.132292 -0.42788,0 -0.68006,-0.341064 -0.21291,-0.287321 -0.21291,-0.644922 0,-0.260449 0.12816,-0.516764 0.13022,-0.258382 0.34106,-0.380338 0.21084,-0.124023 0.44649,-0.124023 z m -0.0641,0.134358 q -0.10956,0 -0.22118,0.06615 -0.10955,0.06408 -0.17776,0.227376 -0.0682,0.163298 -0.0682,0.419613 0,0.413411 0.1633,0.713134 0.16536,0.299723 0.43408,0.299723 0.20051,0 0.33073,-0.165365 0.13023,-0.165364 0.13023,-0.56844 0,-0.504362 -0.21705,-0.793749 -0.14676,-0.198438 -0.37413,-0.198438 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14119" />
<path
d="m 68.534204,105.65687 h 39.870506 v 9.38931 H 68.534204 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7" />
<path
d="m 69.924286,106.58225 v 1.10794 h 0.615983 q 0.239778,0 0.320393,-0.0724 0.107487,-0.0951 0.119889,-0.33486 h 0.07648 v 0.97565 h -0.07648 q -0.02894,-0.20464 -0.05788,-0.26251 -0.03721,-0.0724 -0.121956,-0.11369 -0.08475,-0.0413 -0.260449,-0.0413 h -0.615983 v 0.92397 q 0,0.18604 0.01654,0.22738 0.01654,0.0393 0.05788,0.0641 0.04134,0.0227 0.157096,0.0227 h 0.475423 q 0.237711,0 0.345198,-0.0331 0.107487,-0.0331 0.206706,-0.13023 0.128157,-0.12816 0.262516,-0.38654 h 0.08268 l -0.241845,0.7028 h -2.160073 v -0.0765 h 0.09922 q 0.09922,0 0.188102,-0.0475 0.06615,-0.0331 0.08888,-0.0992 0.0248,-0.0661 0.0248,-0.27078 v -1.82108 q 0,-0.26665 -0.05374,-0.32866 -0.07441,-0.0827 -0.248047,-0.0827 h -0.09922 v -0.0765 h 2.160073 l 0.03101,0.61392 h -0.08062 q -0.04341,-0.22118 -0.09715,-0.30386 -0.05168,-0.0827 -0.155029,-0.12609 -0.08268,-0.031 -0.291455,-0.031 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14123" />
<path
d="m 71.68335,107.33879 h 0.890901 v 0.0765 q -0.08475,0 -0.119889,0.0289 -0.03307,0.0289 -0.03307,0.0765 0,0.0496 0.07235,0.15297 0.02274,0.0331 0.06821,0.10335 l 0.134359,0.21497 0.155029,-0.21497 q 0.148828,-0.20464 0.148828,-0.25838 0,-0.0434 -0.03514,-0.0724 -0.03514,-0.031 -0.113688,-0.031 v -0.0765 h 0.640787 v 0.0765 q -0.101286,0.006 -0.1757,0.0558 -0.101285,0.0703 -0.276985,0.30592 l -0.258382,0.3452 0.471289,0.67799 q 0.173632,0.25012 0.248046,0.30179 0.07441,0.0496 0.192236,0.0558 v 0.0744 h -0.892968 v -0.0744 q 0.09302,0 0.144694,-0.0413 0.03927,-0.0289 0.03927,-0.0765 0,-0.0475 -0.132291,-0.23977 l -0.276985,-0.40514 -0.303857,0.40514 q -0.14056,0.1881 -0.14056,0.22324 0,0.0496 0.04548,0.091 0.04754,0.0393 0.140559,0.0434 v 0.0744 h -0.618049 v -0.0744 q 0.07441,-0.0103 0.130224,-0.0517 0.07855,-0.0599 0.264583,-0.30592 l 0.396875,-0.5271 -0.359668,-0.5209 q -0.152962,-0.22324 -0.237711,-0.27905 -0.08268,-0.0579 -0.208773,-0.0579 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14125" />
<path
d="m 74.426333,106.71661 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18397 0.05168,0.24805 0.05374,0.0641 0.136425,0.0641 0.06821,0 0.132292,-0.0413 0.06408,-0.0434 0.09922,-0.12609 h 0.08062 q -0.07235,0.20257 -0.204639,0.30592 -0.1323,0.10128 -0.27286,0.10128 -0.09509,0 -0.186035,-0.0517 -0.09095,-0.0537 -0.134359,-0.15089 -0.04341,-0.0992 -0.04341,-0.30386 v -1.27331 h -0.299723 v -0.0682 q 0.113688,-0.0455 0.23151,-0.15296 0.119889,-0.10955 0.212907,-0.25838 0.04754,-0.0785 0.132291,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14127" />
<path
d="m 75.604555,107.28298 v 0.42582 q 0.237711,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163297,-0.0703 -0.08888,-0.0724 -0.132292,-0.0724 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90744 q 0,0.1571 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.196371,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144693,0 0.214973,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.2005 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144693,0.031 l -0.02067,-0.0744 0.572574,-0.23152 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14129" />
<path
d="m 77.537252,108.95937 q -0.291455,0.22531 -0.365869,0.26044 -0.111621,0.0517 -0.237711,0.0517 -0.196371,0 -0.324528,-0.13435 -0.126091,-0.13436 -0.126091,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.21084,-0.12403 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.32659 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.3638 v 0.64286 q 0,0.27078 0.01033,0.3328 0.01033,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.1509 v 0.11576 q -0.231511,0.31005 -0.44235,0.31005 -0.101286,0 -0.161231,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312126,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14131" />
<path
d="m 78.204911,107.5269 0.582909,-0.23565 h 0.07855 v 0.44235 q 0.146761,-0.25011 0.293522,-0.34933 0.148828,-0.10129 0.312126,-0.10129 0.285253,0 0.475422,0.22325 0.233578,0.27285 0.233578,0.71106 0,0.48989 -0.28112,0.81029 -0.23151,0.26251 -0.582909,0.26251 -0.152963,0 -0.264584,-0.0434 -0.08268,-0.031 -0.186035,-0.12402 v 0.57671 q 0,0.1943 0.02274,0.24598 0.02481,0.0537 0.08268,0.0847 0.05994,0.031 0.214974,0.031 v 0.0765 h -0.992187 v -0.0765 h 0.05168 q 0.113688,0.002 0.194303,-0.0434 0.03927,-0.0227 0.05994,-0.0744 0.02274,-0.0496 0.02274,-0.25631 v -1.79007 q 0,-0.18397 -0.01654,-0.23358 -0.01654,-0.0496 -0.05374,-0.0744 -0.03514,-0.0248 -0.09715,-0.0248 -0.04961,0 -0.126091,0.0289 z m 0.661457,0.32866 v 0.70693 q 0,0.22944 0.0186,0.30179 0.02894,0.11989 0.14056,0.21084 0.113688,0.091 0.285253,0.091 0.206706,0 0.334863,-0.16123 0.167432,-0.21084 0.167432,-0.59325 0,-0.43408 -0.190169,-0.66765 -0.132292,-0.16123 -0.314193,-0.16123 -0.09922,0 -0.19637,0.0496 -0.07441,0.0372 -0.24598,0.22324 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14133" />
<path
d="m 81.384042,107.28298 q 0.429948,0 0.690397,0.3266 0.221175,0.27905 0.221175,0.64079 0,0.25424 -0.121957,0.51469 -0.121956,0.26045 -0.33693,0.39274 -0.212907,0.1323 -0.475423,0.1323 -0.42788,0 -0.680061,-0.34107 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128158,-0.51676 0.130224,-0.25839 0.341064,-0.38034 0.21084,-0.12403 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0661 -0.109554,0.0641 -0.177766,0.22738 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71314 0.165365,0.29972 0.434082,0.29972 0.200504,0 0.330729,-0.16537 0.130224,-0.16536 0.130224,-0.56844 0,-0.50436 -0.217041,-0.79374 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14135" />
<path
d="m 83.225789,106.29286 v 2.51148 q 0,0.17776 0.0248,0.23564 0.02687,0.0579 0.08062,0.0889 0.05374,0.0289 0.200505,0.0289 v 0.0744 h -0.928108 v -0.0744 q 0.130224,0 0.177767,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02687,-0.062 0.02687,-0.23771 v -1.71979 q 0,-0.32039 -0.01447,-0.39274 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08062,-0.0269 -0.05374,0 -0.136425,0.0331 l -0.03514,-0.0724 0.564306,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14137" />
<path
d="m 84.821555,108.95937 q -0.291454,0.22531 -0.365868,0.26044 -0.111621,0.0517 -0.237712,0.0517 -0.19637,0 -0.324528,-0.13435 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.210839,-0.12403 0.698664,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.126091,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.32659 0.181901,-0.14883 0.510563,-0.14883 0.25218,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.3638 v 0.64286 q 0,0.27078 0.01033,0.3328 0.01033,0.0599 0.03307,0.0806 0.0248,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.101285,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312125,0.12403 -0.403075,0.1757 -0.163298,0.0909 -0.233578,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204638,0.0971 0.157097,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14139" />
<path
d="m 86.179611,107.28298 v 0.42582 q 0.237711,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128158,0.0558 -0.07235,0 -0.163297,-0.0703 -0.08888,-0.0724 -0.132292,-0.0724 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90744 q 0,0.1571 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.196371,0.0372 v 0.0744 h -0.969445 v -0.0744 q 0.144694,0 0.214973,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.2005 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23152 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14141" />
<path
d="m 89.170641,108.95937 q -0.29146,0.22531 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.196371,0 -0.324529,-0.13435 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293521,-0.26458 0.210838,-0.12403 0.698668,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.20671,0.0703 -0.07854,0.0703 -0.07854,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.126091,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.233574,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14143" />
<path
d="m 91.198421,107.28298 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0847 0.091,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14145" />
<path
d="m 92.581281,107.33879 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17157 l 0.44028,1.04593 0.44235,-1.08521 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0723,0.062 -0.13022,0.2067 l -0.67179,1.62471 h -0.0847 l -0.67593,-1.59784 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.13849,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14147" />
<path
d="m 95.867901,108.95937 q -0.29146,0.22531 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13435 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14149" />
<path
d="m 97.225951,107.28298 v 0.42582 q 0.23772,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0723,0 -0.16329,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23152 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14151" />
<path
d="m 98.567471,106.29286 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14882,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0662 -0.0455,-0.091 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14153" />
<path
d="m 100.33274,108.95937 q -0.29146,0.22531 -0.365869,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13435 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.698669,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.260449,-0.10542 -0.13022,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.510559,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.403079,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.157089,0 0.413409,-0.2067 z m 0.20464,-2.466 -0.609779,0.71313 h -0.0703 l 0.217039,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14155" />
<path
d="m 101.03967,107.33879 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12403,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17157 l 0.44028,1.04593 0.44235,-1.08521 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10748,0.008 -0.14883,0.0434 -0.0723,0.062 -0.13022,0.2067 l -0.67179,1.62471 h -0.0847 l -0.67593,-1.59784 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.13849,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14157" />
<path
d="m 103.57182,108.05193 q -0.002,0.42168 0.20463,0.66146 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10129 0.1385,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.18191 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14159" />
<path
d="m 105.612,106.29286 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0662 -0.0455,-0.091 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14161" />
<path
d="m 107.52816,107.28298 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0847 0.091,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14163" />
<path
d="m 76.247409,111.91732 q 0.332796,-0.40101 0.634586,-0.40101 0.155029,0 0.26665,0.0785 0.111621,0.0765 0.177767,0.25425 0.04547,0.12402 0.04547,0.38034 v 0.80822 q 0,0.17983 0.02894,0.24391 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132291,0 0.183968,-0.0393 0.05374,-0.0413 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.1943 v -0.77515 q 0,-0.25838 -0.06821,-0.37413 -0.06615,-0.11783 -0.225309,-0.11783 -0.245979,0 -0.489892,0.26872 v 0.99839 q 0,0.19224 0.02274,0.23771 0.02894,0.06 0.07855,0.0889 0.05168,0.0269 0.206705,0.0269 v 0.0744 h -0.936376 v -0.0744 h 0.04134 q 0.144694,0 0.194303,-0.0723 0.05168,-0.0744 0.05168,-0.28112 v -0.7028 q 0,-0.34106 -0.01654,-0.41548 -0.01447,-0.0744 -0.04754,-0.10128 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.03101,-0.0744 0.570508,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14165" />
<path
d="m 78.884972,113.1927 q -0.291455,0.2253 -0.365869,0.26045 -0.111621,0.0517 -0.237711,0.0517 -0.196371,0 -0.324528,-0.13435 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.21084,-0.12403 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.126091,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17776 0.1819,-0.32659 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121957,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.36381 v 0.64283 q 0,0.27079 0.01034,0.3328 0.01034,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.101286,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.13436 v -0.72141 q -0.312125,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.2067 z m -0.851627,-1.86035 h -0.06615 q 0.0083,-0.28319 0.117822,-0.40928 0.109554,-0.12609 0.270785,-0.12609 0.08475,0 0.155029,0.0269 0.09302,0.0351 0.262516,0.14883 0.171566,0.11162 0.254248,0.11162 0.06615,0 0.115755,-0.0558 0.05168,-0.0558 0.08061,-0.23151 h 0.06408 q 0.0021,0.19224 -0.05168,0.30592 -0.05168,0.11162 -0.148828,0.1757 -0.09508,0.062 -0.192236,0.062 -0.163297,0 -0.405143,-0.16536 -0.130224,-0.0889 -0.175699,-0.10749 -0.04548,-0.0186 -0.08888,-0.0186 -0.08475,0 -0.134358,0.0744 -0.02274,0.0351 -0.05788,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14167" />
<path
d="m 80.615097,111.51631 q 0.429948,0 0.690397,0.3266 0.221175,0.27905 0.221175,0.64079 0,0.25424 -0.121956,0.51469 -0.121957,0.26045 -0.33693,0.39274 -0.212907,0.1323 -0.475423,0.1323 -0.427881,0 -0.680062,-0.34107 -0.212906,-0.28732 -0.212906,-0.64492 0,-0.26045 0.128157,-0.51677 0.130225,-0.25838 0.341064,-0.38033 0.21084,-0.12403 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0661 -0.109554,0.0641 -0.177767,0.22738 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71313 0.165365,0.29973 0.434082,0.29973 0.200505,0 0.330729,-0.16537 0.130225,-0.16536 0.130225,-0.56844 0,-0.50436 -0.217041,-0.79375 -0.146761,-0.19843 -0.374137,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14169" />
<path
d="m 83.345678,110.52619 q 0.08682,0 0.146761,0.062 0.06201,0.0599 0.06201,0.14676 0,0.0868 -0.06201,0.14883 -0.05994,0.062 -0.146761,0.062 -0.08682,0 -0.148828,-0.062 -0.06201,-0.062 -0.06201,-0.14883 0,-0.0868 0.05994,-0.14676 0.06201,-0.062 0.150895,-0.062 z m 0.171565,0.99012 v 1.52136 q 0,0.17776 0.02481,0.23771 0.02687,0.0579 0.07648,0.0868 0.05168,0.0289 0.186035,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.138493,0 0.186035,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02894,-0.062 0.02894,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.01447,-0.0661 -0.04548,-0.0909 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.14056,0.031 l -0.02894,-0.0744 0.570507,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14171" />
<path
d="m 84.590045,111.91732 q 0.332796,-0.40101 0.634586,-0.40101 0.155029,0 0.26665,0.0785 0.111621,0.0765 0.177767,0.25425 0.04547,0.12402 0.04547,0.38034 v 0.80822 q 0,0.17983 0.02894,0.24391 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132292,0 0.183968,-0.0393 0.05374,-0.0413 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.1943 v -0.77515 q 0,-0.25838 -0.06821,-0.37413 -0.06614,-0.11783 -0.225309,-0.11783 -0.245979,0 -0.489892,0.26872 v 0.99839 q 0,0.19224 0.02274,0.23771 0.02894,0.06 0.07855,0.0889 0.05168,0.0269 0.206705,0.0269 v 0.0744 H 83.96169 v -0.0744 h 0.04134 q 0.144694,0 0.194304,-0.0723 0.05168,-0.0744 0.05168,-0.28112 v -0.7028 q 0,-0.34106 -0.01654,-0.41548 -0.01447,-0.0744 -0.04754,-0.10128 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.03101,-0.0744 0.570508,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14173" />
<path
d="m 86.704643,110.94994 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18397 0.05168,0.24805 0.05374,0.0641 0.136426,0.0641 0.06821,0 0.132292,-0.0413 0.06408,-0.0434 0.09922,-0.12609 h 0.08061 q -0.07235,0.20257 -0.204638,0.30592 -0.132292,0.10129 -0.272851,0.10129 -0.09508,0 -0.186035,-0.0517 -0.09095,-0.0537 -0.134359,-0.1509 -0.04341,-0.0992 -0.04341,-0.30386 v -1.2733 h -0.299723 v -0.0682 q 0.113688,-0.0455 0.23151,-0.15296 0.119889,-0.10956 0.212907,-0.25839 0.04754,-0.0786 0.132291,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14175" />
<path
d="m 87.64722,112.28526 q -0.0021,0.42168 0.204639,0.66146 0.206705,0.23978 0.485758,0.23978 0.186035,0 0.322464,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25219,0.51676 -0.208768,0.23151 -0.52296,0.23151 -0.341065,0 -0.584977,-0.26458 -0.241846,-0.26665 -0.241846,-0.7152 0,-0.48576 0.248047,-0.75654 0.250114,-0.27286 0.626318,-0.27286 0.318328,0 0.522968,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.876432 q -0.01033,-0.1819 -0.04341,-0.25632 -0.05168,-0.11575 -0.155029,-0.1819 -0.101286,-0.0661 -0.212907,-0.0661 -0.171566,0 -0.307991,0.13436 -0.134359,0.13229 -0.157097,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14177" />
<path
d="m 89.712211,112.77515 q -0.17363,-0.0847 -0.26665,-0.23564 -0.093,-0.15297 -0.093,-0.33693 0,-0.28112 0.21084,-0.48369 0.21291,-0.20258 0.54364,-0.20258 0.27078,0 0.46922,0.1323 h 0.40101 q 0.0889,0 0.10335,0.006 0.0145,0.004 0.0207,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0538 -0.0103,0.0744 -0.006,0.0103 -0.0227,0.0166 -0.0145,0.006 -0.10335,0.006 h -0.24598 q 0.11575,0.14883 0.11575,0.38034 0,0.26459 -0.20257,0.45269 -0.20257,0.1881 -0.54364,0.1881 -0.14056,0 -0.28732,-0.0413 -0.091,0.0785 -0.12402,0.13849 -0.031,0.0579 -0.031,0.0992 0,0.0351 0.0331,0.0682 0.0351,0.0331 0.13436,0.0475 0.0579,0.008 0.28938,0.0145 0.42582,0.0103 0.55191,0.0289 0.19223,0.0269 0.30592,0.14263 0.11576,0.11575 0.11576,0.28525 0,0.23358 -0.21911,0.43822 -0.32246,0.30179 -0.84129,0.30179 -0.39894,0 -0.67386,-0.17983 -0.15503,-0.10336 -0.15503,-0.21498 0,-0.0496 0.0227,-0.0992 0.0351,-0.0765 0.14469,-0.2129 0.0145,-0.0186 0.21084,-0.22325 -0.10749,-0.0641 -0.15296,-0.11368 -0.0434,-0.0517 -0.0434,-0.11576 0,-0.0724 0.0579,-0.1695 0.0599,-0.0971 0.27285,-0.27492 z m 0.35967,-1.15962 q -0.15297,0 -0.25632,0.12196 -0.10335,0.12195 -0.10335,0.37414 0,0.32659 0.14056,0.50642 0.10748,0.13643 0.27285,0.13643 0.1571,0 0.25838,-0.11782 0.10129,-0.11782 0.10129,-0.37 0,-0.32867 -0.14263,-0.5147 -0.10542,-0.13643 -0.27078,-0.13643 z m -0.38034,1.85002 q -0.0971,0.10542 -0.14676,0.19637 -0.0496,0.091 -0.0496,0.16743 0,0.0992 0.11989,0.17363 0.2067,0.12816 0.59738,0.12816 0.37207,0 0.54776,-0.13229 0.17777,-0.13023 0.17777,-0.27905 0,-0.10749 -0.10542,-0.15297 -0.10749,-0.0455 -0.42581,-0.0537 -0.46509,-0.0124 -0.7152,-0.0475 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14179" />
<path
d="m 91.876411,111.51631 v 0.42582 q 0.23772,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0538,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10541 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23152 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14181" />
<path
d="m 93.809111,113.1927 q -0.29145,0.2253 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13435 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41342,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64283 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.72141 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z m 0.20464,-2.466 -0.60978,0.71313 h -0.0703 l 0.21704,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14183" />
<path
d="m 94.516041,111.57212 h 0.89091 v 0.0765 h -0.0579 q -0.0806,0 -0.12403,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17157 l 0.44028,1.04593 0.44235,-1.0852 q 0.0476,-0.11576 0.0476,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14262,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13023,0.2067 l -0.67179,1.62471 h -0.0847 l -0.67593,-1.59784 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.1385,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14185" />
<path
d="m 97.048191,112.28526 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32247,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27286 0.62632,-0.27286 0.31833,0 0.52297,0.21084 0.20463,0.20878 0.20463,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.308,0.13436 -0.13435,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14187" />
<path
d="m 99.088371,110.52619 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0476,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14189" />
<path
d="m 101.00453,111.51631 v 0.64493 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41342 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11163,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.221179,0.43614 0.16329,0.14677 0.36586,0.14677 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10128,-0.23977 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.392739,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.159159,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14191" />
<path
d="m 68.534204,119.11705 h 39.870506 v 13.9689 H 68.534204 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-79" />
<path
d="m 73.194368,122.69239 h -0.748274 l -0.948779,-1.31051 q -0.105419,0.004 -0.171565,0.004 -0.02687,0 -0.05788,0 -0.03101,-0.002 -0.06408,-0.004 v 0.81442 q 0,0.26458 0.05788,0.32866 0.07855,0.091 0.235644,0.091 h 0.109554 v 0.0765 h -1.200959 v -0.0765 h 0.10542 q 0.177767,0 0.254248,-0.11576 0.04341,-0.0641 0.04341,-0.30385 v -1.81075 q 0,-0.26458 -0.05788,-0.32866 -0.08062,-0.0909 -0.239778,-0.0909 h -0.10542 v -0.0765 h 1.021125 q 0.446484,0 0.657324,0.0661 0.212907,0.0641 0.359668,0.23978 0.148828,0.17364 0.148828,0.41548 0,0.25838 -0.169499,0.44855 -0.167431,0.19017 -0.520898,0.26872 l 0.578776,0.80408 q 0.198437,0.27699 0.341064,0.36794 0.142627,0.091 0.37207,0.11575 z m -1.990575,-1.44074 q 0.03927,0 0.06821,0.002 0.02894,0 0.04754,0 0.401008,0 0.60358,-0.17363 0.204638,-0.17363 0.204638,-0.44235 0,-0.26252 -0.165364,-0.42581 -0.163298,-0.16537 -0.434082,-0.16537 -0.119889,0 -0.324528,0.0393 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14195" />
<path
d="m 73.611913,121.5121 q -0.0021,0.42168 0.204639,0.66146 0.206705,0.23978 0.485758,0.23978 0.186035,0 0.322461,-0.10129 0.138492,-0.10335 0.23151,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.25218,0.51677 -0.208773,0.23151 -0.522965,0.23151 -0.341065,0 -0.584977,-0.26459 -0.241846,-0.26665 -0.241846,-0.7152 0,-0.48576 0.248047,-0.75654 0.250114,-0.27285 0.626318,-0.27285 0.318326,0 0.522965,0.21084 0.204638,0.20877 0.204638,0.56017 z m 0,-0.11989 h 0.876432 q -0.01033,-0.1819 -0.04341,-0.25631 -0.05168,-0.11576 -0.155029,-0.1819 -0.101286,-0.0661 -0.212907,-0.0661 -0.171566,0 -0.307991,0.13435 -0.134359,0.1323 -0.157097,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14197" />
<path
d="m 76.39417,120.74316 v 0.64492 h -0.06821 q -0.07855,-0.30386 -0.202571,-0.41341 -0.121957,-0.10956 -0.312126,-0.10956 -0.144694,0 -0.233577,0.0765 -0.08888,0.0765 -0.08888,0.1695 0,0.11576 0.06615,0.19844 0.06408,0.0847 0.260449,0.17983 l 0.301791,0.14676 q 0.419612,0.20464 0.419612,0.5395 0,0.25839 -0.19637,0.41755 -0.194304,0.1571 -0.436149,0.1571 -0.173633,0 -0.396875,-0.062 -0.06821,-0.0207 -0.111621,-0.0207 -0.04754,0 -0.07441,0.0537 h -0.06821 v -0.67593 h 0.06821 q 0.05788,0.28939 0.221175,0.43615 0.163298,0.14676 0.365869,0.14676 0.142627,0 0.23151,-0.0827 0.09095,-0.0847 0.09095,-0.20257 0,-0.14263 -0.101286,-0.23978 -0.09922,-0.0971 -0.398942,-0.24598 -0.299723,-0.14883 -0.39274,-0.26872 -0.09302,-0.11782 -0.09302,-0.29765 0,-0.23358 0.159163,-0.39068 0.161231,-0.15709 0.415479,-0.15709 0.111621,0 0.270784,0.0475 0.10542,0.031 0.14056,0.031 0.03307,0 0.05168,-0.0145 0.0186,-0.0145 0.04341,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14199" />
<path
d="m 77.74189,120.74316 q 0.429948,0 0.690397,0.32659 0.221175,0.27905 0.221175,0.64079 0,0.25425 -0.121957,0.51469 -0.121956,0.26045 -0.33693,0.39275 -0.212906,0.13229 -0.475422,0.13229 -0.427881,0 -0.680062,-0.34107 -0.212906,-0.28732 -0.212906,-0.64492 0,-0.26045 0.128157,-0.51676 0.130225,-0.25838 0.341064,-0.38034 0.21084,-0.12402 0.446484,-0.12402 z m -0.06408,0.13436 q -0.109553,0 -0.221174,0.0661 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71314 0.165365,0.29972 0.434082,0.29972 0.200504,0 0.330729,-0.16536 0.130224,-0.16537 0.130224,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.146763,-0.19843 -0.37414,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14201" />
<path
d="m 79.583637,119.75304 v 2.51147 q 0,0.17777 0.0248,0.23564 0.02687,0.0579 0.08062,0.0889 0.05374,0.0289 0.200504,0.0289 v 0.0744 h -0.928108 v -0.0744 q 0.130224,0 0.177767,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02687,-0.062 0.02687,-0.23771 v -1.71979 q 0,-0.32039 -0.01447,-0.39274 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08062,-0.0269 -0.05374,0 -0.136426,0.0331 l -0.03514,-0.0724 0.564306,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14203" />
<path
d="m 80.00945,120.79897 h 0.890901 v 0.0765 h -0.05788 q -0.08062,0 -0.124024,0.0393 -0.04134,0.0393 -0.04134,0.10541 0,0.0724 0.04341,0.17157 l 0.440283,1.04593 0.44235,-1.0852 q 0.04754,-0.11576 0.04754,-0.1757 0,-0.0289 -0.01654,-0.0475 -0.02274,-0.031 -0.05788,-0.0413 -0.03514,-0.0124 -0.142627,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.107487,0.008 -0.148828,0.0434 -0.07235,0.062 -0.130224,0.2067 l -0.671794,1.62471 h -0.08475 l -0.675927,-1.59784 q -0.04547,-0.11162 -0.08682,-0.15916 -0.04134,-0.0496 -0.10542,-0.0827 -0.03514,-0.0186 -0.138493,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14205" />
<path
d="m 82.541593,121.5121 q -0.0021,0.42168 0.204639,0.66146 0.206705,0.23978 0.485758,0.23978 0.186035,0 0.32246,-0.10129 0.138493,-0.10335 0.231511,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.25218,0.51677 -0.208773,0.23151 -0.522965,0.23151 -0.341065,0 -0.584977,-0.26459 -0.241846,-0.26665 -0.241846,-0.7152 0,-0.48576 0.248047,-0.75654 0.250114,-0.27285 0.626318,-0.27285 0.318326,0 0.522965,0.21084 0.204638,0.20877 0.204638,0.56017 z m 0,-0.11989 h 0.876432 q -0.01034,-0.1819 -0.04341,-0.25631 -0.05168,-0.11576 -0.15503,-0.1819 -0.101285,-0.0661 -0.212906,-0.0661 -0.171566,0 -0.307992,0.13435 -0.134358,0.1323 -0.157096,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14207" />
<path
d="m 84.654124,120.74316 v 0.42581 q 0.237711,-0.42581 0.487825,-0.42581 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15916 0,0.0806 -0.05374,0.13643 -0.05374,0.0558 -0.128158,0.0558 -0.07235,0 -0.163297,-0.0703 -0.08888,-0.0724 -0.132292,-0.0724 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90743 q 0,0.1571 0.03927,0.23772 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.196371,0.0372 v 0.0744 H 84.0154 v -0.0744 q 0.144694,0 0.214973,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572575,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14209" />
<path
d="m 87.645153,122.41954 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237711,0.0517 -0.19637,0 -0.324528,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.210839,-0.12402 0.698664,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.126091,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17776 0.181901,-0.32659 0.181901,-0.14883 0.510563,-0.14883 0.25218,0 0.413411,0.0847 0.121956,0.0641 0.179833,0.20051 0.03721,0.0889 0.03721,0.3638 v 0.64285 q 0,0.27079 0.01034,0.3328 0.01034,0.0599 0.03307,0.0806 0.0248,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.101285,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.13436 v -0.7214 q -0.312125,0.12402 -0.403076,0.1757 -0.163297,0.091 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14882 0.08888,0.24804 0.08888,0.0971 0.204638,0.0971 0.157096,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14211" />
<path
d="m 89.672931,120.74316 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25839 -0.19637,0.41755 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0476,0 -0.0744,0.0537 h -0.06821 v -0.67593 h 0.06821 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.091,-0.0847 0.091,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.09302,-0.11782 -0.09302,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14213" />
<path
d="m 91.471271,121.5121 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26459 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62631,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13435 -0.13436,0.1323 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14215" />
<path
d="m 94.706211,120.74316 v 2.43499 q 0,0.1819 0.0248,0.23357 0.0248,0.0517 0.0765,0.0806 0.0537,0.0289 0.20671,0.0289 v 0.0765 h -0.95498 v -0.0765 h 0.0393 q 0.11575,0 0.1757,-0.0331 0.0413,-0.0227 0.0661,-0.0827 0.0248,-0.0579 0.0248,-0.22737 v -0.81442 q -0.1881,0.22324 -0.32866,0.30592 -0.14056,0.0806 -0.29146,0.0806 -0.27492,0 -0.49196,-0.25011 -0.21497,-0.25012 -0.21497,-0.66973 0,-0.48162 0.28525,-0.78341 0.28526,-0.30386 0.68833,-0.30386 0.11783,0 0.21704,0.0331 0.0992,0.0331 0.17777,0.0992 0.11989,-0.0579 0.22944,-0.13229 z m -0.34106,1.49034 v -0.88883 q 0,-0.15503 -0.0413,-0.24391 -0.0393,-0.0889 -0.14263,-0.1509 -0.10335,-0.062 -0.23358,-0.062 -0.23151,0 -0.39687,0.19637 -0.16536,0.19637 -0.16536,0.59531 0,0.38241 0.16743,0.58085 0.1695,0.19843 0.40721,0.19843 0.12195,0 0.21704,-0.0517 0.0951,-0.0537 0.1881,-0.17363 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14217" />
<path
d="m 96.806341,120.79897 v 1.14721 q 0,0.32866 0.0145,0.40308 0.0165,0.0724 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0724 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26458 -0.37207,0.3328 -0.12816,0.0682 -0.27079,0.0682 -0.15916,0 -0.27698,-0.091 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.1447 -0.0455,-0.40928 v -0.84543 q 0,-0.13435 -0.0289,-0.18603 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66352 v 1.2671 q 0,0.26459 0.091,0.34727 0.093,0.0827 0.22325,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.21291 v -1.0728 q 0,-0.16123 -0.06,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14219" />
<path
d="m 98.335961,122.41954 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0476,0.0517 -0.1261,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.06,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.091 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14882 0.0889,0.24804 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14221" />
<path
d="m 100.74822,121.97305 q -0.0765,0.37414 -0.29973,0.57671 -0.22324,0.20051 -0.494019,0.20051 -0.32246,0 -0.56224,-0.27079 -0.23978,-0.27078 -0.23978,-0.73173 0,-0.44649 0.26458,-0.72554 0.26665,-0.27905 0.638719,-0.27905 0.27906,0 0.45889,0.14882 0.17983,0.14677 0.17983,0.30593 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0785 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12196 -0.0827,-0.18603 -0.0724,-0.062 -0.200509,-0.062 -0.2067,0 -0.3328,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.33899 0.16537,0.59944 0.16743,0.25838 0.450619,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22117,-0.3452 z m -0.768949,0.68627 h 0.124029 l -0.103359,0.16329 q 0.130229,0.0331 0.194309,0.11163 0.0641,0.0785 0.0641,0.19016 0,0.14883 -0.12403,0.26045 -0.12402,0.11369 -0.320389,0.11369 -0.0765,0 -0.19431,-0.0145 v -0.0889 q 0.0579,0.008 0.0992,0.008 0.10542,0 0.17777,-0.0703 0.0724,-0.0682 0.0724,-0.1571 0,-0.062 -0.0475,-0.10748 -0.0476,-0.0455 -0.11783,-0.0455 -0.0207,0 -0.0537,0.004 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14223" />
<path
d="m 101.94298,120.74316 q 0.42994,0 0.69039,0.32659 0.22118,0.27905 0.22118,0.64079 0,0.25425 -0.12196,0.51469 -0.12196,0.26045 -0.33693,0.39275 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34107 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0661 -0.10955,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z m -0.53124,-0.45269 h -0.0661 q 0.008,-0.28319 0.11782,-0.40928 0.10955,-0.12609 0.27078,-0.12609 0.0847,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0661,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19224 -0.0517,0.30593 -0.0517,0.11162 -0.14883,0.17569 -0.0951,0.062 -0.19223,0.062 -0.1633,0 -0.40515,-0.16537 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20878 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14225" />
<path
d="m 103.45193,121.5121 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32246,-0.10129 0.1385,-0.10335 0.23152,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26459 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.308,0.13435 -0.13435,0.1323 -0.15709,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14227" />
<path
d="m 106.23418,120.74316 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25839 -0.19637,0.41755 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11163,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36586,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0847 0.091,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14229" />
<path
d="m 75.858803,126.71281 q -0.138493,0.1447 -0.270785,0.20877 -0.132291,0.062 -0.285253,0.062 -0.310059,0 -0.541569,-0.25839 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.256315,-0.74414 0.256315,-0.33899 0.65939,-0.33899 0.250114,0 0.413412,0.15916 v -0.34933 q 0,-0.32453 -0.01654,-0.39894 -0.01447,-0.0744 -0.04754,-0.10129 -0.03307,-0.0269 -0.08268,-0.0269 -0.05374,0 -0.142627,0.0331 l -0.02687,-0.0724 0.564306,-0.23151 h 0.09302 v 2.18901 q 0,0.3328 0.01447,0.40721 0.01654,0.0724 0.04961,0.10129 0.03514,0.0289 0.08062,0.0289 0.05581,0 0.148828,-0.0351 l 0.02274,0.0724 -0.562239,0.23358 h -0.09508 z m 0,-0.14469 v -0.97565 q -0.0124,-0.14056 -0.07441,-0.25632 -0.06201,-0.11575 -0.165365,-0.17363 -0.101286,-0.0599 -0.198437,-0.0599 -0.181901,0 -0.324528,0.1633 -0.188102,0.21497 -0.188102,0.62838 0,0.41755 0.181901,0.64079 0.181901,0.22118 0.405143,0.22118 0.188102,0 0.363802,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14231" />
<path
d="m 77.119706,123.98637 q 0.08682,0 0.146761,0.062 0.06201,0.0599 0.06201,0.14676 0,0.0868 -0.06201,0.14882 -0.05994,0.062 -0.146761,0.062 -0.08682,0 -0.148828,-0.062 -0.06201,-0.062 -0.06201,-0.14882 0,-0.0868 0.05994,-0.14676 0.06201,-0.062 0.150895,-0.062 z m 0.171566,0.99012 v 1.52135 q 0,0.17776 0.02481,0.23771 0.02687,0.0579 0.07648,0.0868 0.05168,0.0289 0.186035,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.138493,0 0.186035,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02894,-0.062 0.02894,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.01447,-0.0661 -0.04547,-0.091 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.14056,0.031 l -0.02894,-0.0744 0.570508,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14233" />
<path
d="m 78.552176,125.18112 v 1.24437 q 0,0.26459 0.05788,0.33487 0.07648,0.0909 0.204638,0.0909 h 0.171566 v 0.0744 h -1.13068 v -0.0744 h 0.08475 q 0.08268,0 0.150895,-0.0413 0.06821,-0.0413 0.09302,-0.11163 0.02687,-0.0703 0.02687,-0.27285 v -1.24436 h -0.367936 v -0.14883 h 0.367936 v -0.12403 q 0,-0.28318 0.09095,-0.47955 0.09095,-0.19637 0.276986,-0.31626 0.188102,-0.12196 0.421679,-0.12196 0.217041,0 0.398942,0.14056 0.119889,0.093 0.119889,0.20877 0,0.062 -0.05374,0.11783 -0.05374,0.0537 -0.115756,0.0537 -0.04754,0 -0.101285,-0.0331 -0.05168,-0.0351 -0.128158,-0.14677 -0.07648,-0.11368 -0.14056,-0.15296 -0.06408,-0.0393 -0.142626,-0.0393 -0.09508,0 -0.161231,0.0517 -0.06614,0.0496 -0.09508,0.1571 -0.02894,0.10542 -0.02894,0.54777 v 0.13642 h 0.487825 v 0.14883 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14235" />
<path
d="m 79.544363,125.74543 q -0.0021,0.42168 0.204638,0.66146 0.206706,0.23978 0.485758,0.23978 0.186035,0 0.322461,-0.10129 0.138493,-0.10335 0.23151,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.252181,0.51676 -0.208773,0.23151 -0.522965,0.23151 -0.341064,0 -0.584977,-0.26458 -0.241845,-0.26665 -0.241845,-0.7152 0,-0.48576 0.248046,-0.75654 0.250114,-0.27285 0.626318,-0.27285 0.318327,0 0.522965,0.21084 0.204639,0.20877 0.204639,0.56017 z m 0,-0.11989 h 0.876431 q -0.01033,-0.1819 -0.04341,-0.25631 -0.05168,-0.11576 -0.155029,-0.18191 -0.101286,-0.0661 -0.212907,-0.0661 -0.171565,0 -0.307991,0.13436 -0.134359,0.13229 -0.157096,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14237" />
<path
d="m 81.656893,124.97649 v 0.42581 q 0.237712,-0.42581 0.487825,-0.42581 0.113689,0 0.188103,0.0703 0.07441,0.0682 0.07441,0.15916 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0724 -0.132291,-0.0724 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192237,0.27905 v 0.90743 q 0,0.1571 0.03927,0.23772 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.19637,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01033,-0.0351 0.01033,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14239" />
<path
d="m 82.835115,125.74543 q -0.0021,0.42168 0.204639,0.66146 0.206705,0.23978 0.485758,0.23978 0.186035,0 0.32246,-0.10129 0.138493,-0.10335 0.231511,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.252181,0.51676 -0.208772,0.23151 -0.522965,0.23151 -0.341064,0 -0.584976,-0.26458 -0.241846,-0.26665 -0.241846,-0.7152 0,-0.48576 0.248047,-0.75654 0.250114,-0.27285 0.626318,-0.27285 0.318326,0 0.522965,0.21084 0.204638,0.20877 0.204638,0.56017 z m 0,-0.11989 h 0.876432 q -0.01034,-0.1819 -0.04341,-0.25631 -0.05168,-0.11576 -0.155029,-0.18191 -0.101285,-0.0661 -0.212906,-0.0661 -0.171566,0 -0.307992,0.13436 -0.134358,0.13229 -0.157096,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14241" />
<path
d="m 84.945579,125.37749 q 0.332796,-0.401 0.634586,-0.401 0.155029,0 0.26665,0.0786 0.111621,0.0765 0.177767,0.25424 0.04548,0.12403 0.04548,0.38034 v 0.80822 q 0,0.17983 0.02894,0.24391 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132291,0 0.183968,-0.0393 0.05374,-0.0413 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.1943 v -0.77515 q 0,-0.25838 -0.06821,-0.37413 -0.06615,-0.11782 -0.225309,-0.11782 -0.24598,0 -0.489892,0.26871 v 0.99839 q 0,0.19224 0.02274,0.23771 0.02894,0.0599 0.07855,0.0889 0.05168,0.0269 0.206706,0.0269 v 0.0744 h -0.936376 v -0.0744 h 0.04134 q 0.144694,0 0.194303,-0.0724 0.05168,-0.0744 0.05168,-0.28112 v -0.7028 q 0,-0.34106 -0.01654,-0.41547 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.03101,-0.0744 0.570507,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14243" />
<path
d="m 88.118509,126.20638 q -0.07648,0.37414 -0.299723,0.57671 -0.223242,0.20051 -0.494026,0.20051 -0.322461,0 -0.562239,-0.27079 -0.239779,-0.27078 -0.239779,-0.73173 0,-0.44649 0.264583,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.279053,0 0.458887,0.14882 0.179834,0.14677 0.179834,0.30593 0,0.0785 -0.05168,0.12815 -0.04961,0.0475 -0.14056,0.0475 -0.121956,0 -0.183968,-0.0786 -0.03514,-0.0434 -0.04754,-0.16536 -0.01033,-0.12196 -0.08268,-0.18603 -0.07235,-0.062 -0.200504,-0.062 -0.206706,0 -0.332796,0.15297 -0.167432,0.20257 -0.167432,0.53536 0,0.339 0.165365,0.59945 0.167431,0.25838 0.450618,0.25838 0.202571,0 0.363801,-0.13849 0.113689,-0.0951 0.221175,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14245" />
<path
d="m 88.868851,123.98637 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.919844 v -0.0744 q 0.138494,0 0.186034,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.091 -0.031,-0.0269 -0.0847,-0.0269 -0.05788,0 -0.140564,0.031 l -0.02894,-0.0744 0.570504,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14247" />
<path
d="m 90.634111,126.65287 q -0.29145,0.22531 -0.36586,0.26045 -0.11163,0.0517 -0.23772,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26044,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0476,-0.0537 -0.0476,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64283 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.06,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.091 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14882 0.0889,0.24804 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14249" />
<path
d="m 91.919821,123.98637 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0476,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.091 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14251" />
<path
d="m 93.835981,124.97649 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25839 -0.19637,0.41755 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.091,-0.0847 0.091,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14253" />
<path
d="m 95.179571,125.2204 0.58291,-0.23565 h 0.0786 v 0.44235 q 0.14676,-0.25011 0.29352,-0.34933 0.14883,-0.10128 0.31212,-0.10128 0.28526,0 0.47543,0.22324 0.23357,0.27285 0.23357,0.71106 0,0.4899 -0.28111,0.81029 -0.23152,0.26252 -0.58291,0.26252 -0.15297,0 -0.26459,-0.0434 -0.0827,-0.031 -0.18603,-0.12403 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0847 0.0599,0.031 0.21497,0.031 v 0.0765 h -0.99219 v -0.0765 h 0.0517 q 0.11369,0.002 0.1943,-0.0434 0.0393,-0.0227 0.06,-0.0744 0.0227,-0.0496 0.0227,-0.25631 v -1.79007 q 0,-0.18397 -0.0165,-0.23358 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0972,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32866 v 0.70693 q 0,0.22945 0.0186,0.30179 0.0289,0.11989 0.14056,0.21084 0.11369,0.091 0.28525,0.091 0.20671,0 0.33487,-0.16123 0.16743,-0.21084 0.16743,-0.59324 0,-0.43408 -0.19017,-0.66766 -0.13229,-0.16123 -0.31419,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22324 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14255" />
<path
d="m 97.750991,125.74543 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32246,-0.10129 0.1385,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.18191 -0.10128,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14257" />
<path
d="m 99.960671,123.98637 v 2.51147 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.928099 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14259" />
<path
d="m 101.40967,124.97649 q 0.42995,0 0.6904,0.32659 0.22118,0.27905 0.22118,0.64079 0,0.25425 -0.12196,0.51469 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.1323 -0.47542,0.1323 -0.42788,0 -0.68006,-0.34107 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13435 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17777,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79374 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14261" />
<path
d="m 73.057942,131.15905 -1.083137,-2.35851 v 1.87275 q 0,0.25838 0.05581,0.32246 0.07648,0.0868 0.241845,0.0868 h 0.09922 v 0.0765 h -0.97565 v -0.0765 h 0.09922 q 0.177767,0 0.252181,-0.10749 0.04547,-0.0661 0.04547,-0.30179 v -1.83141 q 0,-0.18603 -0.04134,-0.26871 -0.02894,-0.0599 -0.107487,-0.0992 -0.07648,-0.0413 -0.248046,-0.0413 v -0.0765 h 0.793749 l 1.016991,2.19314 1.000455,-2.19314 h 0.79375 v 0.0765 h -0.09715 q -0.179834,0 -0.254248,0.10748 -0.04547,0.0661 -0.04547,0.30179 v 1.83141 q 0,0.25839 0.05788,0.32246 0.07648,0.0868 0.241846,0.0868 h 0.09715 v 0.0765 h -1.19063 v -0.0765 h 0.09922 q 0.179834,0 0.252181,-0.10748 0.04547,-0.0661 0.04547,-0.30179 v -1.87275 l -1.08107,2.35851 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14263" />
<path
d="m 75.538409,129.97876 q -0.0021,0.42168 0.204638,0.66146 0.206706,0.23978 0.485759,0.23978 0.186035,0 0.32246,-0.10129 0.138493,-0.10335 0.23151,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.252181,0.51677 -0.208772,0.2315 -0.522965,0.2315 -0.341064,0 -0.584976,-0.26458 -0.241846,-0.26665 -0.241846,-0.7152 0,-0.48576 0.248047,-0.75654 0.250113,-0.27285 0.626318,-0.27285 0.318326,0 0.522965,0.21084 0.204638,0.20877 0.204638,0.56017 z m 0,-0.11989 h 0.876432 q -0.01034,-0.1819 -0.04341,-0.25631 -0.05168,-0.11576 -0.155029,-0.18191 -0.101286,-0.0661 -0.212907,-0.0661 -0.171565,0 -0.307991,0.13436 -0.134358,0.1323 -0.157096,0.37001 z m 0.985985,-1.57303 -0.609781,0.71314 h -0.07028 l 0.217041,-0.71314 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14265" />
<path
d="m 77.646806,128.64344 v 0.62219 h 0.442349 v 0.14469 h -0.442349 v 1.22783 q 0,0.18397 0.05168,0.24805 0.05374,0.0641 0.136426,0.0641 0.06821,0 0.132291,-0.0413 0.06408,-0.0434 0.09922,-0.12609 h 0.08061 q -0.07235,0.20257 -0.204638,0.30592 -0.132292,0.10129 -0.272852,0.10129 -0.09508,0 -0.186035,-0.0517 -0.09095,-0.0537 -0.134358,-0.1509 -0.04341,-0.0992 -0.04341,-0.30385 v -1.27331 h -0.299723 v -0.0682 q 0.113688,-0.0455 0.231511,-0.15296 0.119889,-0.10956 0.212906,-0.25838 0.04754,-0.0786 0.132292,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14267" />
<path
d="m 79.197097,129.20982 q 0.429948,0 0.690397,0.32659 0.221175,0.27905 0.221175,0.64079 0,0.25424 -0.121957,0.51469 -0.121956,0.26045 -0.33693,0.39274 -0.212906,0.1323 -0.475422,0.1323 -0.427881,0 -0.680062,-0.34107 -0.212906,-0.28732 -0.212906,-0.64492 0,-0.26045 0.128157,-0.51676 0.130225,-0.25839 0.341064,-0.38034 0.21084,-0.12402 0.446484,-0.12402 z m -0.06408,0.13435 q -0.109553,0 -0.221174,0.0662 -0.109554,0.0641 -0.177767,0.22738 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71314 0.165365,0.29972 0.434082,0.29972 0.200504,0 0.330729,-0.16537 0.130224,-0.16536 0.130224,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.146761,-0.19843 -0.374138,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14269" />
<path
d="m 81.725106,130.94614 q -0.138493,0.1447 -0.270784,0.20878 -0.132292,0.062 -0.285254,0.062 -0.310058,0 -0.541568,-0.25838 -0.231511,-0.26045 -0.231511,-0.66766 0,-0.40721 0.256315,-0.74414 0.256315,-0.33899 0.659391,-0.33899 0.250114,0 0.413411,0.15916 v -0.34933 q 0,-0.32453 -0.01654,-0.39894 -0.01447,-0.0744 -0.04754,-0.10129 -0.03307,-0.0269 -0.08268,-0.0269 -0.05374,0 -0.142627,0.0331 l -0.02687,-0.0724 0.564306,-0.23151 h 0.09302 v 2.18901 q 0,0.3328 0.01447,0.40721 0.01654,0.0724 0.04961,0.10129 0.03514,0.0289 0.08062,0.0289 0.05581,0 0.148828,-0.0351 l 0.02274,0.0724 -0.562239,0.23357 h -0.09508 z m 0,-0.14469 v -0.97565 q -0.0124,-0.14056 -0.07441,-0.25632 -0.06201,-0.11575 -0.165364,-0.17363 -0.101286,-0.0599 -0.198438,-0.0599 -0.181901,0 -0.324527,0.1633 -0.188102,0.21497 -0.188102,0.62838 0,0.41755 0.1819,0.64079 0.181901,0.22117 0.405143,0.22117 0.188102,0 0.363802,-0.1881 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14271" />
<path
d="m 83.430427,129.20982 q 0.429948,0 0.690397,0.32659 0.221174,0.27905 0.221174,0.64079 0,0.25424 -0.121956,0.51469 -0.121956,0.26045 -0.33693,0.39274 -0.212907,0.1323 -0.475423,0.1323 -0.42788,0 -0.680061,-0.34107 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128158,-0.51676 0.130224,-0.25839 0.341064,-0.38034 0.21084,-0.12402 0.446484,-0.12402 z m -0.06408,0.13435 q -0.109554,0 -0.221175,0.0662 -0.109554,0.0641 -0.177766,0.22738 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71314 0.165365,0.29972 0.434082,0.29972 0.200504,0 0.330729,-0.16537 0.130224,-0.16536 0.130224,-0.56844 0,-0.50436 -0.217041,-0.79375 -0.146761,-0.19843 -0.374137,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14273" />
<path
d="m 87.922138,128.35612 0.03101,0.65732 h -0.07855 q -0.02274,-0.17363 -0.06201,-0.24804 -0.06408,-0.11989 -0.171565,-0.1757 -0.10542,-0.0579 -0.279053,-0.0579 h -0.394807 v 2.14147 q 0,0.25838 0.05581,0.32246 0.07855,0.0868 0.241846,0.0868 h 0.09715 v 0.0765 h -1.188557 v -0.0765 h 0.09922 q 0.177767,0 0.252181,-0.10749 0.04547,-0.0661 0.04547,-0.30179 v -2.14147 h -0.33693 q -0.19637,0 -0.279052,0.0289 -0.107487,0.0393 -0.183968,0.1509 -0.07648,0.11162 -0.09095,0.30179 h -0.07855 l 0.03307,-0.65733 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14275" />
<path
d="m 88.598071,129.20982 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27906 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.969445 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01033,-0.0351 0.01033,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572575,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14277" />
<path
d="m 90.530761,130.8862 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25219,0 0.41342,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19016 -0.0703,0.0992 -0.0703,0.21705 0,0.14882 0.0889,0.24804 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14279" />
<path
d="m 91.198421,129.45373 0.58291,-0.23565 h 0.0786 v 0.44235 q 0.14676,-0.25011 0.29352,-0.34933 0.14883,-0.10128 0.31213,-0.10128 0.28525,0 0.47542,0.22324 0.23358,0.27285 0.23358,0.71106 0,0.4899 -0.28112,0.81029 -0.23151,0.26252 -0.58291,0.26252 -0.15297,0 -0.26459,-0.0434 -0.0827,-0.031 -0.18603,-0.12403 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0848 0.0599,0.031 0.21497,0.031 v 0.0765 h -0.99218 v -0.0765 h 0.0517 q 0.11369,0.002 0.19431,-0.0434 0.0393,-0.0227 0.0599,-0.0744 0.0227,-0.0496 0.0227,-0.25631 v -1.79007 q 0,-0.18397 -0.0165,-0.23358 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0971,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32866 v 0.70693 q 0,0.22945 0.0186,0.30179 0.0289,0.11989 0.14056,0.21084 0.11369,0.0909 0.28526,0.0909 0.2067,0 0.33486,-0.16123 0.16743,-0.21084 0.16743,-0.59324 0,-0.43408 -0.19017,-0.66766 -0.13229,-0.16123 -0.31419,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22324 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14281" />
<path
d="m 93.769841,129.97876 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32247,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.2315 -0.52296,0.2315 -0.34107,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.18191 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.308,0.13436 -0.13435,0.1323 -0.15709,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14283" />
<path
d="m 96.973771,130.57821 -0.0227,0.58084 h -1.67018 v -0.0744 l 1.25677,-1.67432 h -0.62012 q -0.20051,0 -0.26252,0.0269 -0.062,0.0248 -0.10128,0.0971 -0.0558,0.10336 -0.0641,0.25632 h -0.0827 l 0.0124,-0.52503 h 1.5875 v 0.0765 l -1.26918,1.67845 h 0.6904 q 0.21704,0 0.29352,-0.0351 0.0785,-0.0372 0.12609,-0.12816 0.0331,-0.0661 0.0558,-0.27905 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14285" />
<path
d="m 98.131331,129.20982 q 0.42994,0 0.69039,0.32659 0.22118,0.27905 0.22118,0.64079 0,0.25424 -0.12196,0.51469 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.1323 -0.47542,0.1323 -0.42788,0 -0.68006,-0.34107 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25839 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13435 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17777,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19843 -0.37413,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14287" />
<path
d="m 99.803571,128.2197 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14882,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.919839 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0476,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14289" />
<path
d="m 101.83342,130.94614 q -0.13849,0.1447 -0.27078,0.20878 -0.13229,0.062 -0.28526,0.062 -0.31005,0 -0.54156,-0.25838 -0.23152,-0.26045 -0.23152,-0.66766 0,-0.40721 0.25632,-0.74414 0.25631,-0.33899 0.65939,-0.33899 0.25011,0 0.41341,0.15916 v -0.34933 q 0,-0.32453 -0.0165,-0.39894 -0.0145,-0.0744 -0.0476,-0.10129 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14263,0.0331 l -0.0269,-0.0724 0.56431,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14883,-0.0351 l 0.0227,0.0724 -0.56224,0.23357 h -0.0951 z m 0,-0.14469 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25632 -0.062,-0.11575 -0.16537,-0.17363 -0.10128,-0.0599 -0.19843,-0.0599 -0.18191,0 -0.32453,0.1633 -0.1881,0.21497 -0.1881,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22117 0.40514,0.22117 0.1881,0 0.3638,-0.1881 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14291" />
<path
d="m 103.6855,130.8862 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0476,0.0517 -0.1261,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19016 -0.0703,0.0992 -0.0703,0.21705 0,0.14882 0.0889,0.24804 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14293" />
<path
d="m 105.14071,128.2197 v 2.51147 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.9281 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0476,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14295" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="rect13740-3-3-6-0"
d="m 88.469457,146.32952 12.737863,5.96454 -12.737863,5.96451 -12.737861,-5.96451 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="m 81.135534,150.68277 q 0.128157,0 0.214973,0.0889 0.08888,0.0889 0.08888,0.21496 0,0.12609 -0.08888,0.21498 -0.08888,0.0889 -0.214973,0.0889 -0.124024,0 -0.212907,-0.0889 -0.08888,-0.0889 -0.08888,-0.21498 0,-0.12609 0.08682,-0.21496 0.08888,-0.0889 0.214974,-0.0889 z m 0.128157,0.95085 -0.423746,1.46967 q -0.03514,0.12609 -0.03514,0.16537 0,0.0227 0.0186,0.0434 0.0186,0.0186 0.03927,0.0186 0.03514,0 0.07028,-0.031 0.09302,-0.0765 0.223242,-0.27699 l 0.07028,0.0413 q -0.312125,0.54362 -0.663525,0.54362 -0.134358,0 -0.214974,-0.0744 -0.07855,-0.0765 -0.07855,-0.19225 0,-0.0765 0.03514,-0.1943 l 0.287321,-0.98804 q 0.04134,-0.14263 0.04134,-0.21498 0,-0.0455 -0.03927,-0.0806 -0.03927,-0.0351 -0.107487,-0.0351 -0.03101,0 -0.07441,0.002 l 0.02687,-0.0827 0.700732,-0.1137 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14298" />
<path
d="m 82.572137,151.12925 -0.165364,0.56224 h 0.270784 l -0.07235,0.23772 h -0.26665 l -0.345198,1.19889 q -0.03307,0.11163 -0.03307,0.16949 0,0.0269 0.0186,0.0475 0.0186,0.0186 0.04134,0.0186 0.03514,0 0.07235,-0.0289 0.09508,-0.0724 0.221175,-0.25218 l 0.07235,0.0455 q -0.142627,0.24805 -0.314192,0.36381 -0.171566,0.11575 -0.33693,0.11575 -0.14056,0 -0.219108,-0.0703 -0.07648,-0.0724 -0.07648,-0.1819 0,-0.11989 0.05374,-0.30799 l 0.326595,-1.11828 h -0.28112 l 0.04134,-0.15296 q 0.264583,-0.0971 0.446484,-0.22738 0.1819,-0.13022 0.438215,-0.41961 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14300" />
<path
d="m 85.860823,153.04129 -2.217951,-0.94259 v -0.17156 l 2.217951,-0.93845 v 0.21085 l -1.963703,0.81234 1.963703,0.81856 z m -2.220018,0.65318 h 2.224152 v 0.19223 h -2.224152 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14302" />
<path
d="m 87.923744,150.68277 q 0.128157,0 0.214974,0.0889 0.08888,0.0889 0.08888,0.21496 0,0.12609 -0.08888,0.21498 -0.08888,0.0889 -0.214974,0.0889 -0.124023,0 -0.212907,-0.0889 -0.08888,-0.0889 -0.08888,-0.21498 0,-0.12609 0.08682,-0.21496 0.08888,-0.0889 0.214974,-0.0889 z m 0.128157,0.95085 -0.423746,1.46967 q -0.03514,0.12609 -0.03514,0.16537 0,0.0227 0.0186,0.0434 0.0186,0.0186 0.03927,0.0186 0.03514,0 0.07028,-0.031 0.09302,-0.0765 0.223242,-0.27699 l 0.07028,0.0413 q -0.312125,0.54362 -0.663524,0.54362 -0.134359,0 -0.214974,-0.0744 -0.07855,-0.0765 -0.07855,-0.19225 0,-0.0765 0.03514,-0.1943 l 0.28732,-0.98804 q 0.04134,-0.14263 0.04134,-0.21498 0,-0.0455 -0.03927,-0.0806 -0.03927,-0.0351 -0.107486,-0.0351 -0.03101,0 -0.07441,0.002 l 0.02687,-0.0827 0.700732,-0.1137 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14304" />
<path
d="m 89.360348,151.12925 -0.165365,0.56224 h 0.270784 l -0.07235,0.23772 h -0.26665 l -0.345198,1.19889 q -0.03307,0.11163 -0.03307,0.16949 0,0.0269 0.0186,0.0475 0.0186,0.0186 0.04134,0.0186 0.03514,0 0.07235,-0.0289 0.09508,-0.0724 0.221175,-0.25218 l 0.07235,0.0455 q -0.142627,0.24805 -0.314193,0.36381 -0.171565,0.11575 -0.33693,0.11575 -0.14056,0 -0.219108,-0.0703 -0.07648,-0.0724 -0.07648,-0.1819 0,-0.11989 0.05374,-0.30799 l 0.326594,-1.11828 h -0.281119 l 0.04134,-0.15296 q 0.264583,-0.0971 0.446484,-0.22738 0.181901,-0.13022 0.438216,-0.41961 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14306" />
<path
d="m 90.164432,152.95932 -0.198437,0.66662 q 0.199988,-0.30695 0.291455,-0.41392 0.134875,-0.15658 0.221692,-0.20464 0.08837,-0.0481 0.176733,-0.0481 0.100769,0 0.145728,0.0605 0.04496,0.0605 0.04496,0.13331 0,0.076 -0.04186,0.22325 l -0.06976,0.24959 q 0.201538,-0.31005 0.289905,-0.41237 0.136426,-0.15813 0.237195,-0.21394 0.06976,-0.0403 0.148828,-0.0403 0.08217,0 0.136426,0.0558 0.05581,0.0543 0.05581,0.14263 0,0.0992 -0.04651,0.25734 l -0.172082,0.57826 q -0.03876,0.12869 -0.03876,0.16588 0,0.0124 0.0093,0.0233 0.01085,0.0108 0.02325,0.0108 0.01705,0 0.02945,-0.0108 0.05581,-0.045 0.117823,-0.13178 0.01395,-0.0186 0.04186,-0.0574 l 0.05271,0.0341 q -0.10697,0.19999 -0.235644,0.29301 -0.127124,0.093 -0.235645,0.093 -0.09457,0 -0.151928,-0.0512 -0.05736,-0.0527 -0.05736,-0.12247 0,-0.0667 0.03876,-0.20154 l 0.175183,-0.60461 q 0.03566,-0.12558 0.03566,-0.15658 0,-0.0109 -0.01085,-0.0202 -0.01085,-0.0108 -0.0217,-0.0108 -0.02015,0 -0.04031,0.009 -0.02945,0.0155 -0.09147,0.0806 -0.06046,0.0651 -0.175183,0.23409 -0.114722,0.16743 -0.15968,0.262 -0.04341,0.0946 -0.08682,0.24495 l -0.09457,0.31936 h -0.392224 l 0.289905,-1.01234 q 0.02325,-0.0822 0.02325,-0.11317 0,-0.0109 -0.01085,-0.0202 -0.0093,-0.009 -0.02015,-0.009 -0.05736,0 -0.181385,0.15039 -0.189135,0.23253 -0.344165,0.55965 l -0.125573,0.44493 h -0.395325 l 0.291455,-0.99684 q 0.04341,-0.14728 0.04341,-0.20929 0,-0.0248 -0.0124,-0.0419 -0.0124,-0.0186 -0.04031,-0.0279 -0.02791,-0.0108 -0.10697,-0.0108 l 0.0155,-0.0589 0.52865,-0.0915 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;baseline-shift:sub;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14308" />
<path
d="m 93.309978,152.98102 -0.300757,1.03095 -0.03101,0.12557 q -0.0047,0.0233 -0.0047,0.0341 0,0.0186 0.0124,0.0326 0.01395,0.014 0.02791,0.014 0.03256,0 0.08992,-0.0496 0.02325,-0.0202 0.111621,-0.14263 l 0.05426,0.0279 q -0.110071,0.20153 -0.235645,0.29455 -0.124023,0.0915 -0.2682,0.0915 -0.08837,0 -0.134876,-0.045 -0.04651,-0.0465 -0.04651,-0.11627 0,-0.0605 0.04961,-0.2248 l 0.03721,-0.12557 q -0.179834,0.30852 -0.345715,0.43719 -0.09612,0.0744 -0.204639,0.0744 -0.142627,0 -0.206189,-0.11627 -0.06356,-0.11783 -0.06356,-0.2651 0,-0.2186 0.133325,-0.50075 0.133325,-0.2837 0.350366,-0.45578 0.178284,-0.14263 0.334864,-0.14263 0.08682,0 0.139526,0.0512 0.05271,0.0496 0.07752,0.18293 l 0.05581,-0.19068 z m -0.496094,0.29456 q 0,-0.12557 -0.03876,-0.18138 -0.02791,-0.0387 -0.07596,-0.0387 -0.04806,0 -0.09922,0.0465 -0.103869,0.0961 -0.224792,0.39069 -0.119373,0.293 -0.119373,0.50693 0,0.0822 0.02636,0.11938 0.02791,0.0357 0.06046,0.0357 0.06976,0 0.141076,-0.0806 0.10232,-0.11471 0.184485,-0.2806 0.145728,-0.29146 0.145728,-0.51779 z m 0.03101,-1.02939 h 0.47749 l -0.522449,0.5426 h -0.139526 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;baseline-shift:sub;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14310" />
<path
d="m 93.520817,153.05234 0.541052,-0.093 q 0.147278,0.23099 0.20774,0.50849 0.151928,-0.22479 0.229443,-0.31471 0.10387,-0.12092 0.170532,-0.15658 0.06821,-0.0372 0.144177,-0.0372 0.08527,0 0.130225,0.0465 0.04651,0.0465 0.04651,0.12557 0,0.0744 -0.04651,0.12247 -0.04496,0.0465 -0.113171,0.0465 -0.04961,0 -0.114722,-0.017 -0.06356,-0.0186 -0.08837,-0.0186 -0.06511,0 -0.124023,0.0465 -0.08062,0.0636 -0.198438,0.27131 0.131775,0.46508 0.21084,0.5674 0.04651,0.0605 0.09457,0.0605 0.04031,0 0.06976,-0.0202 0.04496,-0.0326 0.137976,-0.16278 l 0.05581,0.0326 q -0.136426,0.22014 -0.266651,0.31005 -0.09922,0.0698 -0.195337,0.0698 -0.09922,0 -0.165881,-0.0434 -0.06511,-0.045 -0.116272,-0.14418 -0.05116,-0.10077 -0.120923,-0.32091 -0.181384,0.231 -0.285254,0.33797 -0.102319,0.10542 -0.170532,0.13797 -0.06821,0.0326 -0.145727,0.0326 -0.08062,0 -0.127124,-0.0465 -0.04806,-0.0465 -0.04806,-0.12092 0,-0.0791 0.05116,-0.13023 0.05116,-0.0512 0.130225,-0.0512 0.04186,0 0.09457,0.0248 0.07751,0.0372 0.111621,0.0372 0.04496,0 0.08061,-0.0186 0.04651,-0.0232 0.117822,-0.10077 0.04341,-0.0481 0.15968,-0.20464 -0.148828,-0.5519 -0.232543,-0.66042 -0.05271,-0.0698 -0.133326,-0.0698 -0.04186,0 -0.102319,0.0124 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;baseline-shift:sub;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14312" />
<path
d="m 95.902583,152.88832 h -0.08475 q 0.01447,-0.26044 0.06408,-0.42995 0.05168,-0.17156 0.21084,-0.47542 0.124023,-0.23358 0.16123,-0.35761 0.03721,-0.12609 0.03721,-0.25424 0,-0.26252 -0.14056,-0.41755 -0.138492,-0.15503 -0.341064,-0.15503 -0.179834,0 -0.283186,0.0847 -0.103353,0.0847 -0.103353,0.18398 0,0.0765 0.06201,0.1881 0.06201,0.11161 0.06201,0.1695 0,0.0744 -0.04754,0.12609 -0.04754,0.0496 -0.115755,0.0496 -0.08682,0 -0.159164,-0.0847 -0.07028,-0.0868 -0.07028,-0.23978 0,-0.23358 0.200504,-0.41341 0.200504,-0.17983 0.543636,-0.17983 0.425813,0 0.626317,0.24804 0.148828,0.1819 0.148828,0.40308 0,0.15089 -0.06821,0.31006 -0.06615,0.15916 -0.254248,0.37414 -0.299723,0.33899 -0.367936,0.48162 -0.06615,0.14056 -0.08062,0.38861 z m -0.02894,0.25631 q 0.09715,0 0.163297,0.0682 0.06821,0.0662 0.06821,0.16331 0,0.0951 -0.06821,0.1633 -0.06821,0.0661 -0.163297,0.0661 -0.09508,0 -0.163298,-0.0661 -0.06615,-0.0682 -0.06615,-0.1633 0,-0.0971 0.06615,-0.16331 0.06821,-0.0682 0.163298,-0.0682 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14314" />
<path
d="m 69.237995,181.44086 v 8.30274 h 38.462895 v -8.30274 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163" />
<path
d="m 68.712639,180.91605 h 39.513641 v 9.35294 H 68.712639 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6" />
<path
d="m 84.881032,182.01932 v 1.10795 h 0.615983 q 0.239778,0 0.320394,-0.0723 0.107486,-0.0951 0.119889,-0.33486 h 0.07648 v 0.97565 h -0.07648 q -0.02894,-0.20464 -0.05788,-0.26251 -0.03721,-0.0724 -0.121956,-0.11369 -0.08475,-0.0413 -0.260449,-0.0413 H 84.88103 v 0.92397 q 0,0.18604 0.01654,0.22738 0.01654,0.0393 0.05788,0.0641 0.04134,0.0227 0.157097,0.0227 h 0.475422 q 0.237712,0 0.345199,-0.0331 0.107487,-0.0331 0.206705,-0.13022 0.128158,-0.12817 0.262516,-0.38654 h 0.08268 l -0.241845,0.7028 h -2.160073 v -0.0765 h 0.09922 q 0.09922,0 0.188102,-0.0476 0.06614,-0.0331 0.08888,-0.0992 0.0248,-0.0661 0.0248,-0.27078 v -1.82108 q 0,-0.26665 -0.05374,-0.32866 -0.07441,-0.0827 -0.248046,-0.0827 h -0.09922 v -0.0765 h 2.160073 l 0.03101,0.61391 h -0.08061 q -0.04341,-0.22117 -0.09715,-0.30386 -0.05168,-0.0827 -0.155029,-0.12609 -0.08268,-0.031 -0.291455,-0.031 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14319" />
<path
d="m 87.270549,182.72005 v 0.42582 q 0.237711,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0723 -0.132291,-0.0723 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90744 q 0,0.15709 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.19637,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14321" />
<path
d="m 88.684415,182.72005 v 0.42582 q 0.237711,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163297,-0.0703 -0.08888,-0.0723 -0.132292,-0.0723 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90744 q 0,0.15709 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.196371,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01033,-0.0351 0.01033,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14323" />
<path
d="m 90.470351,182.72005 q 0.429947,0 0.690396,0.32661 0.221175,0.27905 0.221175,0.64079 0,0.25424 -0.121956,0.51469 -0.121956,0.26045 -0.33693,0.39274 -0.212907,0.13229 -0.475423,0.13229 -0.42788,0 -0.680061,-0.34106 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128158,-0.51677 0.130224,-0.25838 0.341064,-0.38033 0.210839,-0.12403 0.446484,-0.12404 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0662 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41963 0,0.41341 0.163298,0.71313 0.165364,0.29972 0.434081,0.29972 0.200505,0 0.330729,-0.16536 0.130225,-0.16537 0.130225,-0.56844 0,-0.50436 -0.217041,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14325" />
<path
d="m 92.272823,183.92721 h -0.07855 l -0.181901,-1.67431 q -0.0124,-0.10956 -0.0124,-0.1633 0,-0.13022 0.06821,-0.20876 0.07028,-0.0785 0.167431,-0.0785 0.09715,0 0.163298,0.0785 0.06821,0.0786 0.06821,0.23357 0,0.0496 -0.0083,0.13849 z m -0.04134,0.34314 q 0.09508,0 0.16123,0.0682 0.06821,0.0661 0.06821,0.15916 0,0.0951 -0.06821,0.1633 -0.06615,0.0661 -0.16123,0.0661 -0.09508,0 -0.163297,-0.0661 -0.06615,-0.0682 -0.06615,-0.1633 0,-0.093 0.06615,-0.15916 0.06821,-0.0682 0.163297,-0.0682 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14327" />
<path
d="m 71.897856,186.03562 0.06408,0.95292 h -0.06408 q -0.128157,-0.42788 -0.365868,-0.61599 -0.237712,-0.18809 -0.570508,-0.18809 -0.279052,0 -0.504361,0.14261 -0.225309,0.14056 -0.355534,0.45062 -0.128157,0.31006 -0.128157,0.77101 0,0.38034 0.121956,0.65939 0.121956,0.27906 0.365869,0.42788 0.245979,0.14883 0.560172,0.14883 0.272851,0 0.481624,-0.11575 0.208772,-0.11783 0.458886,-0.46509 l 0.06408,0.0413 q -0.21084,0.37414 -0.491959,0.54777 -0.28112,0.17363 -0.667659,0.17363 -0.696598,0 -1.079003,-0.51676 -0.285254,-0.38447 -0.285254,-0.90537 0,-0.41961 0.188102,-0.77101 0.188102,-0.3514 0.516764,-0.54364 0.330729,-0.1943 0.721402,-0.1943 0.303858,0 0.599446,0.14883 0.08682,0.0455 0.124024,0.0455 0.05581,0 0.09715,-0.0393 0.05374,-0.0558 0.07648,-0.15503 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14329" />
<path
d="m 73.382002,188.62977 q -0.291454,0.22531 -0.365868,0.26045 -0.111621,0.0517 -0.237712,0.0517 -0.19637,0 -0.324528,-0.13436 -0.12609,-0.13435 -0.12609,-0.35346 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.210839,-0.12402 0.698664,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.0703 -0.07855,0.0703 -0.07855,0.16122 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.126091,-0.0538 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17776 0.181901,-0.3266 0.181901,-0.14883 0.510563,-0.14883 0.25218,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.36381 v 0.64286 q 0,0.27078 0.01034,0.33279 0.01033,0.0599 0.03307,0.0806 0.0248,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.15089 v 0.11574 q -0.23151,0.31006 -0.44235,0.31006 -0.101285,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.13436 v -0.72139 q -0.312125,0.12403 -0.403075,0.1757 -0.163298,0.0909 -0.233578,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204638,0.0971 0.157097,0 0.413411,-0.20671 z m 0.204639,-2.46599 -0.609781,0.71313 h -0.07028 l 0.21704,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14331" />
<path
d="m 74.837209,185.96327 v 2.51148 q 0,0.17777 0.02481,0.23564 0.02687,0.0579 0.08062,0.0889 0.05374,0.0289 0.200505,0.0289 v 0.0744 h -0.928108 v -0.0744 q 0.130224,0 0.177767,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02687,-0.062 0.02687,-0.23772 v -1.71979 q 0,-0.32039 -0.01447,-0.39274 -0.01447,-0.0744 -0.04754,-0.10128 -0.03101,-0.0269 -0.08062,-0.0269 -0.05374,0 -0.136425,0.0331 l -0.03514,-0.0724 0.564306,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14333" />
<path
d="m 76.968344,188.18329 q -0.07648,0.37414 -0.299723,0.57671 -0.223242,0.2005 -0.494027,0.2005 -0.32246,0 -0.562239,-0.27078 -0.239778,-0.27079 -0.239778,-0.73174 0,-0.44648 0.264583,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.279053,0 0.458886,0.14883 0.179834,0.14676 0.179834,0.30592 0,0.0786 -0.05168,0.12816 -0.04961,0.0475 -0.14056,0.0475 -0.121956,0 -0.183968,-0.0786 -0.03514,-0.0434 -0.04754,-0.16536 -0.01034,-0.12196 -0.08268,-0.18603 -0.07235,-0.062 -0.200505,-0.062 -0.206705,0 -0.332796,0.15297 -0.167431,0.20258 -0.167431,0.53536 0,0.339 0.165364,0.59945 0.167432,0.25838 0.450618,0.25838 0.202572,0 0.363802,-0.13849 0.113688,-0.0951 0.221175,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14335" />
<path
d="m 78.896906,187.0092 v 1.14723 q 0,0.32866 0.01447,0.40307 0.01654,0.0724 0.04961,0.10129 0.03514,0.0289 0.08062,0.0289 0.06408,0 0.144694,-0.0351 l 0.02894,0.0723 -0.566373,0.23358 h -0.09302 v -0.40101 q -0.243912,0.26458 -0.37207,0.33279 -0.128157,0.0682 -0.270784,0.0682 -0.159163,0 -0.276985,-0.091 -0.115756,-0.093 -0.161231,-0.23771 -0.04547,-0.14469 -0.04547,-0.40928 v -0.84542 q 0,-0.13435 -0.02894,-0.18603 -0.02894,-0.0517 -0.08682,-0.0786 -0.05581,-0.0289 -0.204639,-0.0269 v -0.0765 h 0.663525 v 1.26711 q 0,0.26458 0.09095,0.34726 0.09302,0.0827 0.223242,0.0827 0.08888,0 0.200504,-0.0558 0.113688,-0.0558 0.268717,-0.2129 v -1.07281 q 0,-0.16123 -0.05994,-0.21704 -0.05788,-0.0579 -0.243913,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14337" />
<path
d="m 80.004848,185.96327 v 2.51148 q 0,0.17777 0.02481,0.23564 0.02687,0.0579 0.08062,0.0889 0.05374,0.0289 0.200504,0.0289 v 0.0744 h -0.928107 v -0.0744 q 0.130224,0 0.177766,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02687,-0.062 0.02687,-0.23772 v -1.71979 q 0,-0.32039 -0.01447,-0.39274 -0.01447,-0.0744 -0.04754,-0.10128 -0.03101,-0.0269 -0.08062,-0.0269 -0.05374,0 -0.136425,0.0331 l -0.03514,-0.0724 0.564306,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14339" />
<path
d="m 81.453854,186.95339 q 0.429948,0 0.690397,0.32661 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121957,0.5147 -0.121956,0.26045 -0.33693,0.39274 -0.212906,0.13229 -0.475422,0.13229 -0.427881,0 -0.680062,-0.34106 -0.212906,-0.28732 -0.212906,-0.64492 0,-0.26045 0.128157,-0.51677 0.130224,-0.25838 0.341064,-0.38034 0.21084,-0.12402 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0662 -0.109553,0.0641 -0.177766,0.22737 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71315 0.165365,0.29972 0.434082,0.29972 0.200504,0 0.330729,-0.16536 0.130224,-0.16537 0.130224,-0.56844 0,-0.50437 -0.217041,-0.79375 -0.14676,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14341" />
<path
d="m 84.254714,187.3544 q 0.332796,-0.40101 0.634586,-0.40101 0.15503,0 0.266651,0.0786 0.111621,0.0765 0.177766,0.25425 0.04548,0.12402 0.04548,0.38033 v 0.80822 q 0,0.17984 0.02894,0.24392 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132292,0 0.183968,-0.0393 0.05374,-0.0414 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.19431 v -0.77514 q 0,-0.25838 -0.06821,-0.37414 -0.06615,-0.11782 -0.225309,-0.11782 -0.24598,0 -0.489893,0.26872 v 0.99838 q 0,0.19224 0.02274,0.23772 0.02894,0.0599 0.07855,0.0889 0.05168,0.0269 0.206706,0.0269 v 0.0744 h -0.936376 v -0.0744 h 0.04134 q 0.144694,0 0.194303,-0.0724 0.05168,-0.0744 0.05168,-0.28112 v -0.7028 q 0,-0.34106 -0.01654,-0.41547 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138492,0.031 l -0.03101,-0.0744 0.570507,-0.2315 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14343" />
<path
d="m 86.892277,188.62977 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237711,0.0517 -0.19637,0 -0.324528,-0.13436 -0.12609,-0.13435 -0.12609,-0.35346 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.210839,-0.12402 0.698664,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.0703 -0.07855,0.0703 -0.07855,0.16122 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.126091,-0.0538 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17776 0.181901,-0.3266 0.181901,-0.14883 0.510563,-0.14883 0.25218,0 0.413411,0.0847 0.121956,0.0641 0.179833,0.2005 0.03721,0.0889 0.03721,0.36381 v 0.64286 q 0,0.27078 0.01034,0.33279 0.01034,0.0599 0.03307,0.0806 0.0248,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.15089 v 0.11574 q -0.23151,0.31006 -0.44235,0.31006 -0.101285,0 -0.16123,-0.0703 -0.05995,-0.0703 -0.06201,-0.23978 z m 0,-0.13436 v -0.72139 q -0.312125,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204638,0.0971 0.157096,0 0.413411,-0.20671 z M 86.04065,186.63506 H 85.9745 q 0.0083,-0.28318 0.117822,-0.40927 0.109554,-0.12609 0.270784,-0.12609 0.08475,0 0.155029,0.0269 0.09302,0.0351 0.262516,0.14884 0.171566,0.11161 0.254248,0.11161 0.06615,0 0.115755,-0.0558 0.05168,-0.0558 0.08062,-0.2315 h 0.06408 q 0.0021,0.19222 -0.05168,0.30591 -0.05168,0.11162 -0.148828,0.1757 -0.09508,0.062 -0.192236,0.062 -0.163298,0 -0.405143,-0.16536 -0.130225,-0.0889 -0.1757,-0.1075 -0.04548,-0.0186 -0.08888,-0.0186 -0.08475,0 -0.134359,0.0744 -0.02274,0.0351 -0.05788,0.20876 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14345" />
<path
d="m 88.622403,186.95339 q 0.429947,0 0.690396,0.32661 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121956,0.5147 -0.121956,0.26045 -0.33693,0.39274 -0.212907,0.13229 -0.475423,0.13229 -0.42788,0 -0.680061,-0.34106 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128158,-0.51677 0.130224,-0.25838 0.341064,-0.38034 0.210839,-0.12402 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0662 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163298,0.71315 0.165364,0.29972 0.434082,0.29972 0.200504,0 0.330728,-0.16536 0.130225,-0.16537 0.130225,-0.56844 0,-0.50437 -0.217041,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14347" />
<path
d="m 92.479528,188.18329 q -0.07648,0.37414 -0.299723,0.57671 -0.223242,0.2005 -0.494026,0.2005 -0.322461,0 -0.562239,-0.27078 -0.239778,-0.27079 -0.239778,-0.73174 0,-0.44648 0.264583,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.279052,0 0.458886,0.14883 0.179834,0.14676 0.179834,0.30592 0,0.0786 -0.05168,0.12816 -0.04961,0.0475 -0.14056,0.0475 -0.121956,0 -0.183968,-0.0786 -0.03514,-0.0434 -0.04754,-0.16536 -0.01034,-0.12196 -0.08268,-0.18603 -0.07235,-0.062 -0.200504,-0.062 -0.206706,0 -0.332796,0.15297 -0.167431,0.20258 -0.167431,0.53536 0,0.339 0.165364,0.59945 0.167431,0.25838 0.450618,0.25838 0.202572,0 0.363802,-0.13849 0.113688,-0.0951 0.221175,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14349" />
<path
d="m 93.674286,186.95339 q 0.429948,0 0.690397,0.32661 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121956,0.5147 -0.121957,0.26045 -0.33693,0.39274 -0.212907,0.13229 -0.475423,0.13229 -0.427881,0 -0.680061,-0.34106 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128157,-0.51677 0.130225,-0.25838 0.341064,-0.38034 0.21084,-0.12402 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0662 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163298,0.71315 0.165364,0.29972 0.434081,0.29972 0.200505,0 0.330729,-0.16536 0.130225,-0.16537 0.130225,-0.56844 0,-0.50437 -0.217041,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14351" />
<path
d="m 95.416814,187.3544 q 0.332796,-0.40101 0.634586,-0.40101 0.155029,0 0.26665,0.0786 0.111621,0.0765 0.177767,0.25425 0.04547,0.12402 0.04547,0.38033 v 0.80822 q 0,0.17984 0.02894,0.24392 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132292,0 0.183968,-0.0393 0.05374,-0.0414 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.19431 v -0.77514 q 0,-0.25838 -0.06821,-0.37414 -0.06615,-0.11782 -0.225309,-0.11782 -0.245979,0 -0.489892,0.26872 v 0.99838 q 0,0.19224 0.02274,0.23772 0.02894,0.0599 0.07855,0.0889 0.05168,0.0269 0.206706,0.0269 v 0.0744 h -0.936377 v -0.0744 h 0.04134 q 0.144694,0 0.194304,-0.0724 0.05168,-0.0744 0.05168,-0.28112 v -0.7028 q 0,-0.34106 -0.01654,-0.41547 -0.01447,-0.0744 -0.04754,-0.10129 -0.031,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.031,-0.0744 0.570507,-0.2315 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14353" />
<path
d="m 96.884424,187.0092 h 0.890901 v 0.0765 h -0.05788 q -0.08061,0 -0.124023,0.0393 -0.04134,0.0393 -0.04134,0.10542 0,0.0723 0.04341,0.17156 l 0.440283,1.04593 0.44235,-1.0852 q 0.04754,-0.11576 0.04754,-0.1757 0,-0.0289 -0.01654,-0.0475 -0.02274,-0.031 -0.05788,-0.0413 -0.03514,-0.0124 -0.142627,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.107487,0.008 -0.148828,0.0434 -0.07235,0.062 -0.130225,0.20671 l -0.671793,1.6247 h -0.08475 l -0.675927,-1.59783 q -0.04548,-0.11162 -0.08682,-0.15917 -0.04134,-0.0496 -0.10542,-0.0827 -0.03514,-0.0186 -0.138492,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14355" />
<path
d="m 99.416567,187.72234 q -0.0021,0.42167 0.204638,0.66145 0.206706,0.23978 0.485755,0.23978 0.18604,0 0.32246,-0.10128 0.1385,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.522962,0.23151 -0.341064,0 -0.584977,-0.26458 -0.241845,-0.26665 -0.241845,-0.7152 0,-0.48576 0.248047,-0.75654 0.250113,-0.27286 0.626317,-0.27286 0.31833,0 0.52297,0.21084 0.20463,0.20878 0.20463,0.56018 z m 0,-0.11989 H 100.293 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.101287,-0.0661 -0.212908,-0.0661 -0.171565,0 -0.307991,0.13436 -0.134359,0.13229 -0.157096,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14357" />
<path
d="m 101.5291,186.95339 v 0.42582 q 0.23771,-0.42582 0.48782,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14359" />
<path
d="m 102.82101,188.21223 q -0.17364,-0.0847 -0.26665,-0.23565 -0.093,-0.15296 -0.093,-0.33693 0,-0.28111 0.21084,-0.48369 0.21291,-0.20257 0.54363,-0.20257 0.27079,0 0.46923,0.13229 h 0.401 q 0.0889,0 0.10336,0.006 0.0145,0.004 0.0207,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0537 -0.0103,0.0744 -0.006,0.0103 -0.0227,0.0165 -0.0145,0.006 -0.10336,0.006 h -0.24598 q 0.11576,0.14883 0.11576,0.38034 0,0.26458 -0.20257,0.45267 -0.20257,0.1881 -0.54364,0.1881 -0.14056,0 -0.28732,-0.0413 -0.091,0.0785 -0.12402,0.13849 -0.031,0.0579 -0.031,0.0992 0,0.0351 0.0331,0.0682 0.0351,0.0331 0.13436,0.0475 0.0579,0.008 0.28938,0.0145 0.42582,0.0103 0.55191,0.0289 0.19223,0.0269 0.30592,0.14262 0.11576,0.11576 0.11576,0.28526 0,0.23357 -0.21911,0.43821 -0.32246,0.30179 -0.84129,0.30179 -0.39894,0 -0.67386,-0.17983 -0.15503,-0.10335 -0.15503,-0.21497 0,-0.0496 0.0227,-0.0992 0.0351,-0.0765 0.14469,-0.21291 0.0145,-0.0186 0.21084,-0.22324 -0.10749,-0.0641 -0.15296,-0.11369 -0.0434,-0.0517 -0.0434,-0.11576 0,-0.0723 0.0579,-0.16949 0.0599,-0.0972 0.27285,-0.27492 z m 0.35967,-1.15962 q -0.15297,0 -0.25632,0.12196 -0.10335,0.12195 -0.10335,0.37413 0,0.32661 0.14056,0.50643 0.10748,0.13643 0.27285,0.13643 0.15709,0 0.25838,-0.11783 0.10129,-0.11782 0.10129,-0.37 0,-0.32866 -0.14263,-0.51469 -0.10542,-0.13643 -0.27078,-0.13643 z m -0.38034,1.85001 q -0.0971,0.10542 -0.14676,0.19637 -0.0496,0.0909 -0.0496,0.16744 0,0.0992 0.11988,0.17363 0.20671,0.12816 0.59738,0.12816 0.37207,0 0.54777,-0.13229 0.17777,-0.13022 0.17777,-0.27905 0,-0.10749 -0.10542,-0.15297 -0.10749,-0.0455 -0.42581,-0.0537 -0.46509,-0.0124 -0.7152,-0.0476 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14361" />
<path
d="m 104.91287,185.96327 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17156,0.99012 v 1.52136 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30798 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.5705,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14363" />
<path
d="m 107.26518,187.0092 v 1.14723 q 0,0.32866 0.0145,0.40307 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0723 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26458 -0.37207,0.33279 -0.12816,0.0682 -0.27079,0.0682 -0.15916,0 -0.27698,-0.091 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40928 v -0.84542 q 0,-0.13435 -0.0289,-0.18603 -0.0289,-0.0517 -0.0868,-0.0786 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66352 v 1.26711 q 0,0.26458 0.0909,0.34726 0.093,0.0827 0.22325,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.2129 v -1.07281 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24392,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14365" />
<path
d="m 121.45414,79.444228 v 12.45508 h 31.20313 v -12.45508 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-1" />
<path
d="m 120.92879,78.919418 h 32.25387 v 13.50528 h -32.25387 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-7" />
<path
d="m 124.15108,79.805648 0.0641,0.95291 h -0.0641 q -0.12816,-0.42788 -0.36587,-0.61598 -0.23771,-0.1881 -0.57051,-0.1881 -0.27905,0 -0.50436,0.14263 -0.22531,0.14056 -0.35553,0.45061 -0.12816,0.31006 -0.12816,0.77102 0,0.38033 0.12196,0.65939 0.12195,0.27905 0.36587,0.42788 0.24598,0.14882 0.56017,0.14882 0.27285,0 0.48162,-0.11575 0.20877,-0.11782 0.45889,-0.46509 l 0.0641,0.0413 q -0.21084,0.37414 -0.49196,0.54777 -0.28112,0.17364 -0.66766,0.17364 -0.6966,0 -1.079,-0.51677 -0.28526,-0.38447 -0.28526,-0.90537 0,-0.41961 0.18811,-0.77101 0.1881,-0.3514 0.51676,-0.54364 0.33073,-0.1943 0.7214,-0.1943 0.30386,0 0.59945,0.14883 0.0868,0.0455 0.12402,0.0455 0.0558,0 0.0971,-0.0393 0.0537,-0.0558 0.0765,-0.15503 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14370" />
<path
d="m 125.63523,82.399808 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10129,0 -0.16123,-0.0703 -0.06,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14372" />
<path
d="m 127.09043,79.733298 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14374" />
<path
d="m 129.22157,81.953318 q -0.0765,0.37414 -0.29973,0.57671 -0.22324,0.2005 -0.49402,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.27078 -0.23978,-0.73174 0,-0.44648 0.26458,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.27906,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30593 0,0.0785 -0.0517,0.12815 -0.0496,0.0476 -0.14056,0.0476 -0.12195,0 -0.18396,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15296 -0.16744,0.20257 -0.16744,0.53537 0,0.33899 0.16537,0.59944 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22117,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14376" />
<path
d="m 131.15013,80.779228 v 1.14722 q 0,0.32866 0.0145,0.40308 0.0165,0.0723 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0724 -0.56637,0.23357 h -0.093 v -0.401 q -0.24391,0.26458 -0.37207,0.33279 -0.12816,0.0682 -0.27078,0.0682 -0.15917,0 -0.27699,-0.0909 -0.11575,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40927 v -0.84543 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66353 v 1.26711 q 0,0.26458 0.0909,0.34726 0.093,0.0827 0.22324,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.21291 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14378" />
<path
d="m 132.25807,79.733298 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0538,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14380" />
<path
d="m 133.85384,82.399808 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14382" />
<path
d="m 135.21189,80.723418 v 0.42582 q 0.23772,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.16329,-0.0703 -0.0889,-0.0723 -0.1323,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14384" />
<path
d="m 138.73829,81.953318 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.27078 -0.23978,-0.73174 0,-0.44648 0.26459,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30593 0,0.0785 -0.0517,0.12815 -0.0496,0.0476 -0.14056,0.0476 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.33899 0.16536,0.59944 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14386" />
<path
d="m 139.93305,80.723418 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64079 0,0.25424 -0.12196,0.51469 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13023,-0.25838 0.34107,-0.38033 0.21083,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41962 0,0.41341 0.16329,0.71313 0.16537,0.29972 0.43409,0.29972 0.2005,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14388" />
<path
d="m 141.67764,80.723418 v 0.42582 q 0.23771,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.16329,-0.0703 -0.0889,-0.0723 -0.1323,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14390" />
<path
d="m 143.09151,80.723418 v 0.42582 q 0.23771,-0.42582 0.48783,-0.42582 0.11368,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14392" />
<path
d="m 144.26973,81.492368 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14394" />
<path
d="m 146.3802,81.124428 q 0.33279,-0.40101 0.63458,-0.40101 0.15503,0 0.26665,0.0786 0.11162,0.0765 0.17777,0.25425 0.0455,0.12402 0.0455,0.38034 v 0.80822 q 0,0.17983 0.0289,0.24391 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93638 v -0.0744 h 0.0393 q 0.1323,0 0.18397,-0.0393 0.0537,-0.0413 0.0744,-0.11989 0.008,-0.031 0.008,-0.1943 v -0.77515 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26872 v 0.99839 q 0,0.19223 0.0227,0.23771 0.0289,0.0599 0.0785,0.0889 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 h 0.0413 q 0.14469,0 0.1943,-0.0723 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34107 -0.0165,-0.41548 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14396" />
<path
d="m 148.49479,80.157048 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18397 0.0517,0.24805 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30593 -0.13229,0.10128 -0.27285,0.10128 -0.0951,0 -0.18603,-0.0517 -0.091,-0.0538 -0.13436,-0.1509 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 H 147.854 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14398" />
<path
d="m 149.43737,81.492368 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62631,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14400" />
<path
d="m 152.21963,80.723418 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10128,-0.23977 -0.0992,-0.0972 -0.39895,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15917,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14402" />
<path
d="m 125.27969,83.966638 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14882,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14404" />
<path
d="m 126.52406,85.357768 q 0.3328,-0.40101 0.63459,-0.40101 0.15502,0 0.26665,0.0786 0.11162,0.0765 0.17776,0.25425 0.0455,0.12402 0.0455,0.38033 v 0.80822 q 0,0.17984 0.0289,0.24392 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.18811,0.0289 v 0.0744 h -0.93638 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0414 0.0744,-0.11989 0.008,-0.031 0.008,-0.19431 v -0.77514 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26872 v 0.99838 q 0,0.19224 0.0227,0.23772 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93638 v -0.0744 h 0.0413 q 0.1447,0 0.19431,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41547 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.1385,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14406" />
<path
d="m 128.56838,83.964568 q 0.0889,0 0.15089,0.062 0.062,0.062 0.062,0.15089 0,0.0868 -0.062,0.14883 -0.062,0.062 -0.15089,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0889 0.062,-0.15089 0.062,-0.062 0.14883,-0.062 z m 0.17777,0.99219 v 1.90583 q 0,0.48575 -0.20671,0.7214 -0.20671,0.23564 -0.53744,0.23564 -0.1881,0 -0.27905,-0.0682 -0.0909,-0.0682 -0.0909,-0.14056 0,-0.0724 0.0517,-0.12402 0.0496,-0.0517 0.11782,-0.0517 0.0537,0 0.10956,0.0269 0.0351,0.0145 0.13436,0.10335 0.10128,0.091 0.1695,0.091 0.0496,0 0.0971,-0.0393 0.0475,-0.0372 0.0703,-0.12816 0.0227,-0.0889 0.0227,-0.3886 v -1.34772 q 0,-0.31213 -0.0186,-0.40101 -0.0145,-0.0682 -0.0455,-0.093 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14055,0.031 l -0.0289,-0.0744 0.5705,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14408" />
<path
d="m 129.58123,85.725708 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25012,-0.27286 0.62632,-0.27286 0.31833,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87644 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14410" />
<path
d="m 131.68963,84.390388 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30592 -0.13229,0.10129 -0.27285,0.10129 -0.0951,0 -0.18604,-0.0517 -0.0909,-0.0537 -0.13435,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29973 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14412" />
<path
d="m 133.38668,86.633138 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16124,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14414" />
<path
d="m 135.52815,86.693088 q -0.13849,0.14469 -0.27078,0.20877 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25631,-0.74414 0.25632,-0.339 0.65939,-0.339 0.25012,0 0.41341,0.15917 v -0.34934 q 0,-0.32452 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14262,0.0331 l -0.0269,-0.0724 0.5643,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14883,-0.0351 l 0.0227,0.0723 -0.56224,0.23358 h -0.0951 z m 0,-0.1447 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16536,-0.17363 -0.10129,-0.0599 -0.19844,-0.0599 -0.1819,0 -0.32453,0.1633 -0.1881,0.21497 -0.1881,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22118 0.40515,0.22118 0.1881,0 0.3638,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14416" />
<path
d="m 137.38023,86.633138 q -0.29145,0.22531 -0.36586,0.26045 -0.11162,0.0517 -0.23772,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14418" />
<path
d="m 139.40802,84.956758 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43614,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22117,0.43614 0.1633,0.14677 0.36587,0.14677 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14420" />
<path
d="m 140.7516,85.200668 0.58291,-0.23564 h 0.0786 v 0.44235 q 0.14676,-0.25011 0.29352,-0.34933 0.14883,-0.10129 0.31213,-0.10129 0.28525,0 0.47542,0.22324 0.23358,0.27285 0.23358,0.71107 0,0.48989 -0.28112,0.81029 -0.23151,0.26251 -0.58291,0.26251 -0.15296,0 -0.26458,-0.0434 -0.0827,-0.031 -0.18604,-0.12402 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0847 0.0599,0.031 0.21498,0.031 v 0.0765 h -0.99219 v -0.0765 h 0.0517 q 0.11369,0.002 0.1943,-0.0434 0.0393,-0.0227 0.0599,-0.0744 0.0227,-0.0496 0.0227,-0.25631 v -1.79007 q 0,-0.18397 -0.0165,-0.23358 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0971,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32867 v 0.70693 q 0,0.22944 0.0186,0.30179 0.0289,0.11989 0.14056,0.21084 0.11369,0.091 0.28525,0.091 0.20671,0 0.33487,-0.16123 0.16743,-0.21084 0.16743,-0.59325 0,-0.43408 -0.19017,-0.66766 -0.13229,-0.16123 -0.31419,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22325 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14422" />
<path
d="m 143.32302,85.725708 q -0.002,0.42167 0.20464,0.66145 0.2067,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.308,0.13436 -0.13435,0.13229 -0.15709,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14424" />
<path
d="m 145.5327,83.966638 v 2.51147 q 0,0.17777 0.0248,0.23565 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23772 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10128 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14426" />
<path
d="m 147.12847,86.633138 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41342,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14428" />
<path
d="m 149.15625,84.956758 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22118,0.43614 0.1633,0.14677 0.36587,0.14677 0.14262,0 0.23151,-0.0827 0.091,-0.0848 0.091,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14055,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14430" />
<path
d="m 122.2804,89.593168 q 0.2067,-0.2067 0.24391,-0.23771 0.093,-0.0785 0.2005,-0.12195 0.10749,-0.0434 0.21291,-0.0434 0.17777,0 0.30592,0.10335 0.12816,0.10335 0.17157,0.29972 0.21291,-0.24804 0.35967,-0.32452 0.14676,-0.0786 0.30179,-0.0786 0.15089,0 0.26665,0.0786 0.11782,0.0765 0.18603,0.25218 0.0455,0.11989 0.0455,0.3762 v 0.81442 q 0,0.17777 0.0269,0.24391 0.0207,0.0455 0.0765,0.0785 0.0558,0.031 0.1819,0.031 v 0.0744 h -0.93431 v -0.0744 h 0.0393 q 0.12196,0 0.19017,-0.0475 0.0475,-0.0331 0.0682,-0.10542 0.008,-0.0351 0.008,-0.20051 v -0.81442 q 0,-0.23151 -0.0558,-0.32659 -0.0806,-0.1323 -0.25838,-0.1323 -0.10955,0 -0.22118,0.0558 -0.10955,0.0537 -0.26665,0.20257 l -0.004,0.0227 0.004,0.0889 v 0.9033 q 0,0.1943 0.0207,0.24185 0.0227,0.0475 0.0827,0.0806 0.06,0.031 0.20464,0.031 v 0.0744 h -0.95704 v -0.0744 q 0.15709,0 0.21497,-0.0372 0.0599,-0.0372 0.0827,-0.11162 0.0103,-0.0351 0.0103,-0.20464 v -0.81442 q 0,-0.23151 -0.0682,-0.33279 -0.091,-0.1323 -0.25425,-0.1323 -0.11162,0 -0.22117,0.06 -0.17157,0.0909 -0.26459,0.20464 v 1.01492 q 0,0.18604 0.0248,0.24185 0.0269,0.0558 0.0765,0.0847 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 q 0.13023,0 0.1819,-0.0269 0.0517,-0.0289 0.0786,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -0.72347 q 0,-0.31212 -0.0186,-0.40307 -0.0145,-0.0682 -0.0455,-0.093 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14432" />
<path
d="m 126.08171,90.866478 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0848 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z m 0.20464,-2.466 -0.60978,0.71314 h -0.0703 l 0.21704,-0.71314 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14434" />
<path
d="m 128.56218,89.190098 v 2.43499 q 0,0.1819 0.0248,0.23358 0.0248,0.0517 0.0765,0.0806 0.0537,0.0289 0.2067,0.0289 v 0.0765 h -0.95498 v -0.0765 h 0.0393 q 0.11576,0 0.1757,-0.0331 0.0413,-0.0227 0.0662,-0.0827 0.0248,-0.0579 0.0248,-0.22738 v -0.81442 q -0.1881,0.22324 -0.32866,0.30592 -0.14056,0.0806 -0.29145,0.0806 -0.27492,0 -0.49196,-0.25011 -0.21498,-0.25012 -0.21498,-0.66973 0,-0.48162 0.28526,-0.78341 0.28525,-0.30386 0.68833,-0.30386 0.11782,0 0.21704,0.0331 0.0992,0.0331 0.17777,0.0992 0.11988,-0.0579 0.22944,-0.13229 z m -0.34107,1.49035 v -0.88884 q 0,-0.15503 -0.0413,-0.24391 -0.0393,-0.0889 -0.14262,-0.1509 -0.10336,-0.062 -0.23358,-0.062 -0.23151,0 -0.39688,0.19637 -0.16536,0.19637 -0.16536,0.59531 0,0.38241 0.16743,0.58085 0.1695,0.19843 0.40721,0.19843 0.12196,0 0.21704,-0.0517 0.0951,-0.0538 0.1881,-0.17363 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14436" />
<path
d="m 130.6623,89.245908 v 1.14721 q 0,0.32867 0.0145,0.40308 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.1447,-0.0351 l 0.0289,0.0724 -0.56638,0.23358 h -0.093 v -0.40101 q -0.24391,0.26458 -0.37207,0.3328 -0.12815,0.0682 -0.27078,0.0682 -0.15916,0 -0.27699,-0.091 -0.11575,-0.093 -0.16123,-0.23771 -0.0455,-0.1447 -0.0455,-0.40928 v -0.84543 q 0,-0.13435 -0.0289,-0.18603 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20463,-0.0269 v -0.0765 h 0.66352 v 1.2671 q 0,0.26459 0.0909,0.34727 0.093,0.0827 0.22324,0.0827 0.0889,0 0.20051,-0.0558 0.11369,-0.0558 0.26871,-0.21291 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14438" />
<path
d="m 131.60075,88.199978 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14440" />
<path
d="m 132.84512,89.591108 q 0.33279,-0.40101 0.63458,-0.40101 0.15503,0 0.26665,0.0786 0.11162,0.0765 0.17777,0.25424 0.0455,0.12403 0.0455,0.38034 v 0.80822 q 0,0.17983 0.0289,0.24391 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93638 v -0.0744 h 0.0393 q 0.1323,0 0.18397,-0.0393 0.0537,-0.0413 0.0744,-0.11989 0.008,-0.031 0.008,-0.1943 v -0.77514 q 0,-0.25839 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26871 v 0.99839 q 0,0.19224 0.0227,0.23771 0.0289,0.0599 0.0785,0.0889 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 h 0.0413 q 0.1447,0 0.1943,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41548 -0.0145,-0.0744 -0.0475,-0.10128 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14442" />
<path
d="m 135.48268,90.866478 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0848 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14444" />
<path
d="m 137.51046,89.190098 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26044,0.17984 l 0.3018,0.14676 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.19431,0.1571 -0.43615,0.1571 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.1633,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14446" />
<path
d="m 139.3088,89.959038 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32247,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.71521 0,-0.48575 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14448" />
<path
d="m 143.53386,90.419998 q -0.0765,0.37413 -0.29972,0.5767 -0.22325,0.20051 -0.49403,0.20051 -0.32246,0 -0.56224,-0.27079 -0.23978,-0.27078 -0.23978,-0.73173 0,-0.44649 0.26459,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18604 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.339 0.16536,0.59945 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14450" />
<path
d="m 144.87538,90.866478 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0848 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14452" />
<path
d="m 146.23343,89.190098 v 0.42581 q 0.23772,-0.42581 0.48783,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.16329,-0.0703 -0.0889,-0.0724 -0.1323,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14454" />
<path
d="m 147.52535,90.448928 q -0.17364,-0.0847 -0.26666,-0.23564 -0.093,-0.15296 -0.093,-0.33693 0,-0.28112 0.21083,-0.48369 0.21291,-0.20257 0.54364,-0.20257 0.27079,0 0.46922,0.13229 h 0.40101 q 0.0889,0 0.10335,0.006 0.0145,0.004 0.0207,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0538 -0.0103,0.0744 -0.006,0.0103 -0.0227,0.0165 -0.0145,0.006 -0.10335,0.006 h -0.24598 q 0.11576,0.14883 0.11576,0.38034 0,0.26459 -0.20257,0.45269 -0.20258,0.1881 -0.54364,0.1881 -0.14056,0 -0.28732,-0.0413 -0.0909,0.0785 -0.12402,0.13849 -0.031,0.0579 -0.031,0.0992 0,0.0351 0.0331,0.0682 0.0351,0.0331 0.13436,0.0476 0.0579,0.008 0.28938,0.0145 0.42582,0.0103 0.55191,0.0289 0.19223,0.0269 0.30592,0.14263 0.11576,0.11576 0.11576,0.28525 0,0.23358 -0.21911,0.43822 -0.32246,0.30179 -0.84129,0.30179 -0.39895,0 -0.67386,-0.17983 -0.15503,-0.10336 -0.15503,-0.21498 0,-0.0496 0.0227,-0.0992 0.0351,-0.0765 0.14469,-0.2129 0.0145,-0.0186 0.21084,-0.22324 -0.10749,-0.0641 -0.15296,-0.11369 -0.0434,-0.0517 -0.0434,-0.11576 0,-0.0724 0.0579,-0.1695 0.0599,-0.0971 0.27285,-0.27492 z m 0.35966,-1.15961 q -0.15296,0 -0.25631,0.12195 -0.10335,0.12196 -0.10335,0.37414 0,0.32659 0.14055,0.50643 0.10749,0.13642 0.27286,0.13642 0.15709,0 0.25838,-0.11782 0.10128,-0.11782 0.10128,-0.37 0,-0.32866 -0.14262,-0.5147 -0.10542,-0.13642 -0.27079,-0.13642 z m -0.38034,1.85001 q -0.0971,0.10542 -0.14676,0.19637 -0.0496,0.0909 -0.0496,0.16743 0,0.0992 0.11989,0.17364 0.20671,0.12815 0.59738,0.12815 0.37207,0 0.54777,-0.13229 0.17777,-0.13022 0.17777,-0.27905 0,-0.10749 -0.10542,-0.15296 -0.10749,-0.0455 -0.42582,-0.0538 -0.46508,-0.0124 -0.7152,-0.0475 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14456" />
<path
d="m 150.20838,90.866478 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29353,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0848 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14458" />
<path
d="m 152.23616,89.190098 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41341 -0.12195,-0.10956 -0.31212,-0.10956 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15917,-0.39068 0.16123,-0.15709 0.41547,-0.15709 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14460" />
<path
d="m 117.50786,97.175018 v 12.677742 h 39.0957 V 97.175018 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-4" />
<path
d="m 116.9825,96.650208 h 40.14645 V 110.37815 H 116.9825 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-0" />
<path
d="m 125.6807,97.536438 0.0641,0.95291 h -0.0641 q -0.12816,-0.42788 -0.36587,-0.61598 -0.23771,-0.1881 -0.5705,-0.1881 -0.27906,0 -0.50437,0.14263 -0.2253,0.14056 -0.35553,0.45061 -0.12816,0.31006 -0.12816,0.77102 0,0.38033 0.12196,0.65939 0.12195,0.27905 0.36587,0.427882 0.24598,0.14882 0.56017,0.14882 0.27285,0 0.48162,-0.11575 0.20878,-0.11782 0.45889,-0.465092 l 0.0641,0.0413 q -0.21084,0.374142 -0.49196,0.547772 -0.28112,0.17364 -0.66766,0.17364 -0.6966,0 -1.079,-0.516772 -0.28526,-0.38447 -0.28526,-0.90537 0,-0.41961 0.18811,-0.77101 0.1881,-0.3514 0.51676,-0.54364 0.33073,-0.1943 0.7214,-0.1943 0.30386,0 0.59945,0.14883 0.0868,0.0455 0.12402,0.0455 0.0558,0 0.0971,-0.0393 0.0537,-0.0558 0.0765,-0.15503 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14465" />
<path
d="m 127.16485,100.1306 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.353462 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.270792 0.0103,0.332802 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.134362 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.148832 0.0889,0.248052 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.206702 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14467" />
<path
d="m 128.62005,97.464088 v 2.51148 q 0,0.177762 0.0248,0.235642 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.237712 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14469" />
<path
d="m 130.75119,99.684108 q -0.0765,0.374142 -0.29972,0.576712 -0.22325,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.270782 -0.23978,-0.731742 0,-0.44648 0.26458,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.27906,0 0.45889,0.14883 0.17984,0.14676 0.17984,0.30593 0,0.0785 -0.0517,0.12815 -0.0496,0.0476 -0.14056,0.0476 -0.12195,0 -0.18396,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15296 -0.16744,0.20257 -0.16744,0.53537 0,0.33899 0.16537,0.59944 0.16743,0.258382 0.45062,0.258382 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22117,-0.345202 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14471" />
<path
d="m 132.67975,98.510018 v 1.14722 q 0,0.32866 0.0145,0.403082 0.0165,0.0723 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.1447,-0.0351 l 0.0289,0.0724 -0.56637,0.23357 h -0.093 v -0.401 q -0.24391,0.26458 -0.37207,0.33279 -0.12815,0.0682 -0.27078,0.0682 -0.15917,0 -0.27699,-0.0909 -0.11575,-0.093 -0.16123,-0.23771 -0.0455,-0.144692 -0.0455,-0.409272 v -0.84543 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66353 v 1.26711 q 0,0.264582 0.0909,0.347262 0.093,0.0827 0.22324,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.212912 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14473" />
<path
d="m 133.78769,97.464088 v 2.51148 q 0,0.177762 0.0248,0.235642 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.237712 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14475" />
<path
d="m 135.38346,100.1306 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.353462 0,-0.1385 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.270792 0.0103,0.332802 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.134362 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.148832 0.0889,0.248052 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.206702 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14477" />
<path
d="m 136.74151,98.454208 v 0.42582 q 0.23772,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.157092 0.0393,0.237712 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.200512 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14479" />
<path
d="m 139.20958,97.887838 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.183972 0.0517,0.248052 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30593 -0.13229,0.10128 -0.27285,0.10128 -0.0951,0 -0.18604,-0.0517 -0.0909,-0.0538 -0.13436,-0.1509 -0.0434,-0.0992 -0.0434,-0.303862 v -1.2733 h -0.29972 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14481" />
<path
d="m 140.15216,99.223158 q -0.002,0.42168 0.20464,0.66146 0.2067,0.239772 0.48575,0.239772 0.18604,0 0.32246,-0.10128 0.1385,-0.103352 0.23151,-0.351402 l 0.0641,0.0413 q -0.0434,0.28319 -0.25219,0.516762 -0.20877,0.23151 -0.52296,0.23151 -0.34106,0 -0.58498,-0.26458 -0.24184,-0.266652 -0.24184,-0.715202 0,-0.48576 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14483" />
<path
d="m 142.26262,98.855218 q 0.3328,-0.40101 0.63459,-0.40101 0.15503,0 0.26665,0.0786 0.11162,0.0765 0.17776,0.25425 0.0455,0.12402 0.0455,0.38034 v 0.80822 q 0,0.179832 0.0289,0.243912 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.18811,0.0289 v 0.0744 h -0.93638 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0413 0.0744,-0.11989 0.008,-0.031 0.008,-0.194302 v -0.77515 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26872 v 0.99839 q 0,0.192232 0.0227,0.237712 0.0289,0.0599 0.0785,0.0889 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93637 v -0.0744 h 0.0413 q 0.14469,0 0.1943,-0.0723 0.0517,-0.0744 0.0517,-0.281122 v -0.7028 q 0,-0.34107 -0.0165,-0.41548 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.5705,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14485" />
<path
d="m 145.05108,98.454208 v 0.64492 h -0.0682 q -0.0785,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.258382 -0.19637,0.417552 -0.19431,0.15709 -0.43615,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.675932 h 0.0682 q 0.0579,0.289392 0.22118,0.436152 0.16329,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.142622 -0.10129,-0.239772 -0.0992,-0.0972 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14487" />
<path
d="m 146.3988,98.454208 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64079 0,0.25424 -0.12196,0.51469 -0.12195,0.260452 -0.33693,0.392742 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.287322 -0.21291,-0.644922 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38033 0.21085,-0.12403 0.44649,-0.12403 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41962 0,0.41341 0.16329,0.713132 0.16537,0.29972 0.43409,0.29972 0.2005,0 0.33073,-0.16536 0.13022,-0.165372 0.13022,-0.568442 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z m -0.53123,-0.45268 h -0.0662 q 0.008,-0.28319 0.11782,-0.40928 0.10955,-0.12609 0.27078,-0.12609 0.0847,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0661,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19224 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19223,0.062 -0.1633,0 -0.40515,-0.16537 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0848,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20878 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14489" />
<path
d="m 147.90775,99.223158 q -0.002,0.42168 0.20464,0.66146 0.2067,0.239772 0.48576,0.239772 0.18603,0 0.32246,-0.10128 0.13849,-0.103352 0.23151,-0.351402 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.516762 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58498,-0.26458 -0.24184,-0.266652 -0.24184,-0.715202 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62631,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14491" />
<path
d="m 150.69001,98.454208 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20258,-0.41341 -0.12195,-0.10955 -0.31212,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.258382 -0.19637,0.417552 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.675932 h 0.0682 q 0.0579,0.289392 0.22117,0.436152 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0848 0.091,-0.20258 0,-0.142622 -0.10128,-0.239772 -0.0992,-0.0972 -0.39895,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15917,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14493" />
<path
d="m 118.23103,103.08856 q 0.3328,-0.40101 0.63459,-0.40101 0.15503,0 0.26665,0.0786 0.11162,0.0765 0.17777,0.25425 0.0455,0.12402 0.0455,0.38033 v 0.80822 q 0,0.17984 0.0289,0.24392 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93638 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0414 0.0744,-0.11989 0.008,-0.031 0.008,-0.19431 v -0.77514 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26872 v 0.99838 q 0,0.19224 0.0227,0.23772 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93637 v -0.0744 h 0.0413 q 0.14469,0 0.1943,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41547 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14495" />
<path
d="m 120.72184,102.68755 q 0.42994,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50437 -0.21705,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14497" />
<path
d="m 123.24984,104.42388 q -0.13849,0.14469 -0.27078,0.20877 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25631,-0.74414 0.25632,-0.339 0.65939,-0.339 0.25012,0 0.41341,0.15917 v -0.34934 q 0,-0.32452 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14262,0.0331 l -0.0269,-0.0724 0.5643,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14883,-0.0351 l 0.0227,0.0723 -0.56224,0.23358 h -0.0951 z m 0,-0.1447 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16536,-0.17363 -0.10129,-0.0599 -0.19844,-0.0599 -0.1819,0 -0.32452,0.1633 -0.18811,0.21497 -0.18811,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22118 0.40515,0.22118 0.1881,0 0.3638,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14499" />
<path
d="m 125.10193,104.36393 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26044,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25219,0 0.41342,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14501" />
<path
d="m 126.38763,101.69743 q 0.0868,0 0.14677,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14677,0.062 -0.0868,0 -0.14882,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91985 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14503" />
<path
d="m 128.30379,102.68755 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20258,-0.41341 -0.12195,-0.10955 -0.31212,-0.10955 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22117,0.43614 0.1633,0.14677 0.36587,0.14677 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14882 -0.39275,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15917,-0.39067 0.16123,-0.1571 0.41547,-0.1571 0.11163,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14505" />
<path
d="m 129.64738,102.93146 0.58291,-0.23564 h 0.0786 v 0.44235 q 0.14676,-0.25011 0.29352,-0.34933 0.14883,-0.10129 0.31213,-0.10129 0.28525,0 0.47542,0.22324 0.23358,0.27285 0.23358,0.71107 0,0.48989 -0.28112,0.81029 -0.23151,0.26251 -0.58291,0.26251 -0.15296,0 -0.26458,-0.0434 -0.0827,-0.031 -0.18604,-0.12402 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0847 0.0599,0.031 0.21497,0.031 v 0.0765 h -0.99218 v -0.0765 h 0.0517 q 0.11369,0.002 0.1943,-0.0434 0.0393,-0.0227 0.0599,-0.0744 0.0227,-0.0496 0.0227,-0.25631 v -1.79007 q 0,-0.18397 -0.0165,-0.23358 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0971,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32867 v 0.70693 q 0,0.22944 0.0186,0.30179 0.0289,0.11989 0.14056,0.21084 0.11369,0.091 0.28525,0.091 0.20671,0 0.33487,-0.16123 0.16743,-0.21084 0.16743,-0.59325 0,-0.43408 -0.19017,-0.66766 -0.13229,-0.16123 -0.31419,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22325 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14507" />
<path
d="m 132.82651,102.68755 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64078 0,0.25425 -0.12195,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47543,0.13229 -0.42788,0 -0.68006,-0.34106 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12815,-0.51677 0.13023,-0.25838 0.34107,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0662 -0.10956,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.2005,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14509" />
<path
d="m 134.57111,102.68755 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10541 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14511" />
<path
d="m 137.71303,102.68755 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10955 -0.31212,-0.10955 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11163,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22118,0.43614 0.1633,0.14677 0.36587,0.14677 0.14262,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14513" />
<path
d="m 139.79456,102.74336 v 1.14722 q 0,0.32866 0.0145,0.40307 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0723 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26459 -0.37207,0.3328 -0.12816,0.0682 -0.27079,0.0682 -0.15916,0 -0.27698,-0.091 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40928 v -0.84542 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0786 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66352 v 1.26711 q 0,0.26458 0.0909,0.34726 0.093,0.0827 0.22325,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.2129 v -1.07281 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24392,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14515" />
<path
d="m 140.77021,103.06996 q 0.27491,-0.38241 0.59324,-0.38241 0.29146,0 0.5085,0.25011 0.21704,0.24805 0.21704,0.68007 0,0.50436 -0.33487,0.81235 -0.28732,0.26458 -0.64078,0.26458 -0.16537,0 -0.33693,-0.0599 -0.1695,-0.06 -0.34727,-0.17984 v -1.96163 q 0,-0.32246 -0.0165,-0.39688 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0579,0 -0.14469,0.0331 l -0.0289,-0.0724 0.56844,-0.23151 h 0.093 z m 0,0.13229 v 1.13274 q 0.10542,0.10336 0.21704,0.1571 0.11369,0.0517 0.23151,0.0517 0.1881,0 0.34933,-0.20671 0.1633,-0.2067 0.1633,-0.60151 0,-0.3638 -0.1633,-0.55811 -0.16123,-0.19637 -0.36794,-0.19637 -0.10955,0 -0.2191,0.0558 -0.0827,0.0413 -0.21084,0.16537 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14517" />
<path
d="m 143.59174,102.68755 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43614,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22118,0.43614 0.16329,0.14677 0.36586,0.14677 0.14263,0 0.23152,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14519" />
<path
d="m 144.56325,102.12118 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30592 -0.13229,0.10129 -0.27285,0.10129 -0.0951,0 -0.18603,-0.0517 -0.0909,-0.0537 -0.13436,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29973 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14521" />
<path
d="m 145.66913,101.69743 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14523" />
<path
d="m 146.91143,102.12118 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13642,0.0641 0.0682,0 0.1323,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30592 -0.13229,0.10129 -0.27285,0.10129 -0.0951,0 -0.18604,-0.0517 -0.0909,-0.0537 -0.13436,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29972 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14525" />
<path
d="m 149.19552,102.74336 v 1.14722 q 0,0.32866 0.0145,0.40307 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.1447,-0.0351 l 0.0289,0.0723 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26459 -0.37206,0.3328 -0.12816,0.0682 -0.27079,0.0682 -0.15916,0 -0.27698,-0.091 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40928 v -0.84542 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0786 -0.0558,-0.0289 -0.20463,-0.0269 v -0.0765 h 0.66352 v 1.26711 q 0,0.26458 0.0909,0.34726 0.093,0.0827 0.22324,0.0827 0.0889,0 0.20051,-0.0558 0.11369,-0.0558 0.26872,-0.2129 v -1.07281 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24392,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14527" />
<path
d="m 150.13397,101.69743 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14529" />
<path
d="m 152.4346,103.91745 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23977,-0.27079 -0.23977,-0.73174 0,-0.44648 0.26458,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18603 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15297 -0.16743,0.20257 -0.16743,0.53536 0,0.339 0.16537,0.59945 0.16743,0.25838 0.45061,0.25838 0.20257,0 0.36381,-0.13849 0.11368,-0.0951 0.22117,-0.3452 z m -0.76894,0.68626 h 0.12402 l -0.10335,0.1633 q 0.13022,0.0331 0.1943,0.11162 0.0641,0.0786 0.0641,0.19017 0,0.14883 -0.12402,0.26045 -0.12403,0.11369 -0.32039,0.11369 -0.0765,0 -0.19431,-0.0145 v -0.0889 q 0.0579,0.008 0.0992,0.008 0.10542,0 0.17777,-0.0703 0.0724,-0.0682 0.0724,-0.15709 0,-0.062 -0.0475,-0.10749 -0.0475,-0.0455 -0.11782,-0.0455 -0.0207,0 -0.0537,0.004 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14531" />
<path
d="m 153.77612,104.36393 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.20671 z m -0.85163,-1.86035 h -0.0661 q 0.008,-0.28318 0.11783,-0.40927 0.10955,-0.12609 0.27078,-0.12609 0.0848,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25424,0.11162 0.0661,0 0.11576,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19223 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19224,0.062 -0.16329,0 -0.40514,-0.16536 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14533" />
<path
d="m 155.50625,102.68755 q 0.42994,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14535" />
<path
d="m 118.00986,107.1648 0.58291,-0.23564 h 0.0785 v 0.44235 q 0.14676,-0.25012 0.29352,-0.34934 0.14883,-0.10128 0.31213,-0.10128 0.28525,0 0.47542,0.22324 0.23357,0.27285 0.23357,0.71107 0,0.48989 -0.28111,0.81028 -0.23151,0.26252 -0.58291,0.26252 -0.15297,0 -0.26459,-0.0434 -0.0827,-0.031 -0.18603,-0.12402 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0847 0.0599,0.031 0.21497,0.031 v 0.0765 h -0.99218 v -0.0765 h 0.0517 q 0.11368,0.002 0.1943,-0.0434 0.0393,-0.0227 0.0599,-0.0744 0.0227,-0.0496 0.0227,-0.25632 v -1.79007 q 0,-0.18396 -0.0165,-0.23357 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0971,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32866 v 0.70694 q 0,0.22944 0.0186,0.30179 0.0289,0.11988 0.14056,0.21084 0.11368,0.091 0.28525,0.091 0.20671,0 0.33486,-0.16123 0.16743,-0.21084 0.16743,-0.59325 0,-0.43408 -0.19016,-0.66766 -0.1323,-0.16123 -0.3142,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22324 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14537" />
<path
d="m 120.81692,106.92089 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14539" />
<path
d="m 122.60286,106.92089 q 0.42994,0 0.69039,0.32659 0.22118,0.27906 0.22118,0.64079 0,0.25425 -0.12196,0.5147 -0.12195,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34107 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0661 -0.10955,0.0641 -0.17777,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16537 0.13023,-0.16536 0.13023,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14677,-0.19843 -0.37414,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14541" />
<path
d="m 124.29991,108.17972 q -0.17363,-0.0847 -0.26665,-0.23564 -0.093,-0.15296 -0.093,-0.33693 0,-0.28112 0.21084,-0.48369 0.2129,-0.20257 0.54363,-0.20257 0.27079,0 0.46923,0.13229 h 0.401 q 0.0889,0 0.10336,0.006 0.0145,0.004 0.0207,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0538 -0.0103,0.0744 -0.006,0.0103 -0.0227,0.0165 -0.0145,0.006 -0.10336,0.006 h -0.24598 q 0.11576,0.14883 0.11576,0.38034 0,0.26459 -0.20257,0.45269 -0.20257,0.1881 -0.54364,0.1881 -0.14056,0 -0.28732,-0.0413 -0.091,0.0785 -0.12402,0.13849 -0.031,0.0579 -0.031,0.0992 0,0.0351 0.0331,0.0682 0.0351,0.0331 0.13436,0.0476 0.0579,0.008 0.28938,0.0145 0.42582,0.0103 0.55191,0.0289 0.19223,0.0269 0.30592,0.14263 0.11576,0.11576 0.11576,0.28525 0,0.23358 -0.21911,0.43822 -0.32246,0.30179 -0.84129,0.30179 -0.39894,0 -0.67386,-0.17983 -0.15503,-0.10336 -0.15503,-0.21498 0,-0.0496 0.0227,-0.0992 0.0351,-0.0765 0.14469,-0.2129 0.0145,-0.0186 0.21084,-0.22324 -0.10748,-0.0641 -0.15296,-0.11369 -0.0434,-0.0517 -0.0434,-0.11576 0,-0.0724 0.0579,-0.1695 0.06,-0.0971 0.27285,-0.27492 z m 0.35967,-1.15961 q -0.15297,0 -0.25632,0.12195 -0.10335,0.12196 -0.10335,0.37414 0,0.32659 0.14056,0.50643 0.10749,0.13642 0.27285,0.13642 0.1571,0 0.25838,-0.11782 0.10129,-0.11782 0.10129,-0.37 0,-0.32866 -0.14263,-0.5147 -0.10542,-0.13642 -0.27078,-0.13642 z m -0.38034,1.85001 q -0.0971,0.10542 -0.14676,0.19637 -0.0496,0.0909 -0.0496,0.16743 0,0.0992 0.11989,0.17364 0.2067,0.12815 0.59738,0.12815 0.37207,0 0.54776,-0.13229 0.17777,-0.13022 0.17777,-0.27905 0,-0.10749 -0.10542,-0.15296 -0.10748,-0.0455 -0.42581,-0.0538 -0.46509,-0.0124 -0.7152,-0.0475 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14543" />
<path
d="m 126.46411,106.92089 v 0.42581 q 0.23772,-0.42581 0.48783,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14545" />
<path
d="m 127.64234,107.68983 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32246,-0.10129 0.1385,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52296,0.23151 -0.34106,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.71521 0,-0.48575 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14547" />
<path
d="m 130.42459,106.92089 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12195,-0.10956 -0.31212,-0.10956 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39895,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15917,-0.39068 0.16123,-0.15709 0.41547,-0.15709 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14549" />
<path
d="m 132.06997,106.92089 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26044,0.17984 l 0.3018,0.14676 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.19431,0.1571 -0.43615,0.1571 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14551" />
<path
d="m 132.97327,105.93077 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14553" />
<path
d="m 133.56858,106.9767 h 0.89091 v 0.0765 h -0.0579 q -0.0806,0 -0.12403,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17157 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11576 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0476 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14262,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.2067 l -0.6718,1.62471 h -0.0847 l -0.67592,-1.59783 q -0.0455,-0.11163 -0.0868,-0.15917 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.1385,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14555" />
<path
d="m 136.8552,108.59727 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32452,-0.13436 -0.1261,-0.13436 -0.1261,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29353,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0848 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14557" />
<path
d="m 137.69856,107.76425 h 1.06867 v 0.31212 h -1.06867 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14559" />
<path
d="m 139.62712,106.92089 v 0.42581 q 0.23772,-0.42581 0.48783,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.16329,-0.0703 -0.0889,-0.0724 -0.1323,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14561" />
<path
d="m 140.80535,107.68983 q -0.002,0.42168 0.20463,0.66146 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10129 0.1385,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.71521 0,-0.48575 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14563" />
<path
d="m 142.87033,108.17972 q -0.17363,-0.0847 -0.26665,-0.23564 -0.093,-0.15296 -0.093,-0.33693 0,-0.28112 0.21083,-0.48369 0.21291,-0.20257 0.54364,-0.20257 0.27078,0 0.46922,0.13229 h 0.40101 q 0.0889,0 0.10335,0.006 0.0145,0.004 0.0207,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0538 -0.0103,0.0744 -0.006,0.0103 -0.0227,0.0165 -0.0145,0.006 -0.10335,0.006 h -0.24598 q 0.11576,0.14883 0.11576,0.38034 0,0.26459 -0.20257,0.45269 -0.20257,0.1881 -0.54364,0.1881 -0.14056,0 -0.28732,-0.0413 -0.0909,0.0785 -0.12402,0.13849 -0.031,0.0579 -0.031,0.0992 0,0.0351 0.0331,0.0682 0.0351,0.0331 0.13436,0.0476 0.0579,0.008 0.28938,0.0145 0.42582,0.0103 0.55191,0.0289 0.19223,0.0269 0.30592,0.14263 0.11576,0.11576 0.11576,0.28525 0,0.23358 -0.21911,0.43822 -0.32246,0.30179 -0.84129,0.30179 -0.39894,0 -0.67386,-0.17983 -0.15503,-0.10336 -0.15503,-0.21498 0,-0.0496 0.0227,-0.0992 0.0351,-0.0765 0.14469,-0.2129 0.0145,-0.0186 0.21084,-0.22324 -0.10749,-0.0641 -0.15296,-0.11369 -0.0434,-0.0517 -0.0434,-0.11576 0,-0.0724 0.0579,-0.1695 0.0599,-0.0971 0.27285,-0.27492 z m 0.35967,-1.15961 q -0.15296,0 -0.25631,0.12195 -0.10336,0.12196 -0.10336,0.37414 0,0.32659 0.14056,0.50643 0.10749,0.13642 0.27286,0.13642 0.15709,0 0.25838,-0.11782 0.10128,-0.11782 0.10128,-0.37 0,-0.32866 -0.14262,-0.5147 -0.10542,-0.13642 -0.27079,-0.13642 z m -0.38033,1.85001 q -0.0971,0.10542 -0.14677,0.19637 -0.0496,0.0909 -0.0496,0.16743 0,0.0992 0.11989,0.17364 0.20671,0.12815 0.59738,0.12815 0.37207,0 0.54777,-0.13229 0.17777,-0.13022 0.17777,-0.27905 0,-0.10749 -0.10542,-0.15296 -0.10749,-0.0455 -0.42581,-0.0538 -0.46509,-0.0124 -0.7152,-0.0475 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14565" />
<path
d="m 145.03454,106.92089 v 0.42581 q 0.23771,-0.42581 0.48783,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14567" />
<path
d="m 146.21276,107.68983 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.71521 0,-0.48575 0.24805,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87644 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14569" />
<path
d="m 148.99502,106.92089 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.19431,0.1571 -0.43615,0.1571 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.1633,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27079,0.0475 0.10541,0.031 0.14055,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14571" />
<path
d="m 150.6404,106.92089 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10956 -0.31213,-0.10956 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.1943,0.1571 -0.43614,0.1571 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0847 0.091,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14573" />
<path
d="m 151.5437,105.93077 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14575" />
<path
d="m 152.13901,106.9767 h 0.89091 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17157 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11576 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0476 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14262,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13023,0.2067 l -0.67179,1.62471 h -0.0848 l -0.67593,-1.59783 q -0.0455,-0.11163 -0.0868,-0.15917 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.13849,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14577" />
<path
d="m 155.42563,108.59727 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29353,-0.26458 0.21083,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.18191,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0848 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14579" />
<path
d="m 129.99907,128.56041 v 3.96485 h 14.11328 v -3.96485 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-9" />
<path
d="m 129.47371,128.0356 h 15.16403 v 5.01505 h -15.16403 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-06" />
<path
d="m 131.8798,131.01369 q -0.0186,0.13436 -0.0186,0.22118 0,0.15503 0.0889,0.24804 0.0909,0.093 0.24185,0.093 0.14469,0 0.28938,-0.0703 0.14677,-0.0703 0.339,-0.24598 l 0.062,0.0558 q -0.23771,0.28732 -0.46302,0.40928 -0.22531,0.12195 -0.49816,0.12195 -0.3452,0 -0.47749,-0.16536 -0.13229,-0.16536 -0.13229,-0.38241 0,-0.33899 0.19637,-0.67799 0.19844,-0.339 0.53743,-0.54364 0.34107,-0.20463 0.6842,-0.20463 0.17363,0 0.26252,0.0827 0.0889,0.0827 0.0889,0.20877 0,0.1509 -0.0868,0.29352 -0.11989,0.19431 -0.30179,0.3142 -0.18191,0.11782 -0.40721,0.17983 -0.1509,0.0413 -0.40515,0.062 z m 0.0186,-0.10749 q 0.1819,-0.0269 0.28112,-0.0723 0.10129,-0.0476 0.19637,-0.14883 0.0971,-0.10335 0.16743,-0.25838 0.0703,-0.1571 0.0703,-0.29352 0,-0.0579 -0.0331,-0.091 -0.031,-0.0331 -0.0806,-0.0331 -0.0992,0 -0.22324,0.13849 -0.22738,0.25219 -0.37827,0.75861 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14584" />
<path
d="m 134.23004,129.96363 h 2.23036 v 0.1695 h -2.23036 z m 0,0.67386 h 2.23036 v 0.1695 h -2.23036 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14586" />
<path
d="m 137.75437,130.40391 q 0,-0.47956 0.1447,-0.82476 0.14469,-0.34726 0.38447,-0.51676 0.18604,-0.13436 0.38447,-0.13436 0.32246,0 0.57878,0.32866 0.32039,0.40721 0.32039,1.10381 0,0.48783 -0.14056,0.82889 -0.14056,0.34106 -0.35967,0.49609 -0.21704,0.15297 -0.41961,0.15297 -0.40101,0 -0.66766,-0.47336 -0.22531,-0.39894 -0.22531,-0.96118 z m 0.40515,0.0517 q 0,0.57877 0.14262,0.94464 0.11783,0.30799 0.3514,0.30799 0.11162,0 0.23151,-0.0992 0.11989,-0.10128 0.1819,-0.33693 0.0951,-0.35553 0.0951,-1.00252 0,-0.47956 -0.0992,-0.79995 -0.0744,-0.23771 -0.19223,-0.33693 -0.0847,-0.0682 -0.20464,-0.0682 -0.14056,0 -0.25011,0.12609 -0.14883,0.17156 -0.20258,0.5395 -0.0537,0.36794 -0.0537,0.72554 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14588" />
<path
d="m 139.94545,132.4937 v -0.0909 q 0.21291,-0.0703 0.32866,-0.21911 0.11783,-0.14676 0.11783,-0.31212 0,-0.0393 -0.0186,-0.0661 -0.0145,-0.0186 -0.0289,-0.0186 -0.0227,0 -0.0992,0.0413 -0.0372,0.0186 -0.0786,0.0186 -0.10129,0 -0.16123,-0.0599 -0.0599,-0.0599 -0.0599,-0.16536 0,-0.10129 0.0765,-0.17364 0.0786,-0.0723 0.19017,-0.0723 0.13642,0 0.24184,0.11988 0.10749,0.11783 0.10749,0.3142 0,0.2129 -0.14883,0.3948 -0.14676,0.18397 -0.46716,0.28939 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14590" />
<path
d="m 140.92937,130.40391 q 0,-0.47956 0.1447,-0.82476 0.14469,-0.34726 0.38447,-0.51676 0.18603,-0.13436 0.38447,-0.13436 0.32246,0 0.57877,0.32866 0.3204,0.40721 0.3204,1.10381 0,0.48783 -0.14056,0.82889 -0.14056,0.34106 -0.35967,0.49609 -0.21704,0.15297 -0.41961,0.15297 -0.40101,0 -0.66766,-0.47336 -0.22531,-0.39894 -0.22531,-0.96118 z m 0.40514,0.0517 q 0,0.57877 0.14263,0.94464 0.11782,0.30799 0.3514,0.30799 0.11162,0 0.23151,-0.0992 0.11989,-0.10128 0.1819,-0.33693 0.0951,-0.35553 0.0951,-1.00252 0,-0.47956 -0.0992,-0.79995 -0.0744,-0.23771 -0.19223,-0.33693 -0.0848,-0.0682 -0.20464,-0.0682 -0.14056,0 -0.25012,0.12609 -0.14882,0.17156 -0.20257,0.5395 -0.0537,0.36794 -0.0537,0.72554 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14592" />
<path
d="m 115.35649,137.80096 v 16.98047 h 43.39844 v -16.98047 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-2" />
<path
d="m 114.83113,137.27615 h 44.44919 v 18.03067 h -44.44919 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-4" />
<path
d="m 124.11181,141.02939 h -0.74828 l -0.94878,-1.31052 q -0.10542,0.004 -0.17156,0.004 -0.0269,0 -0.0579,0 -0.031,-0.002 -0.0641,-0.004 v 0.81442 q 0,0.26459 0.0579,0.32867 0.0786,0.0909 0.23564,0.0909 h 0.10956 v 0.0765 h -1.20096 v -0.0765 h 0.10542 q 0.17776,0 0.25424,-0.11576 0.0434,-0.0641 0.0434,-0.30386 v -1.81074 q 0,-0.26458 -0.0579,-0.32866 -0.0806,-0.0909 -0.23977,-0.0909 h -0.10542 v -0.0765 h 1.02112 q 0.44649,0 0.65733,0.0661 0.2129,0.0641 0.35966,0.23977 0.14883,0.17364 0.14883,0.41548 0,0.25838 -0.1695,0.44855 -0.16743,0.19017 -0.52089,0.26872 l 0.57877,0.80408 q 0.19844,0.27699 0.34106,0.36794 0.14263,0.0909 0.37207,0.11576 z m -1.99058,-1.44074 q 0.0393,0 0.0682,0.002 0.0289,0 0.0475,0 0.40101,0 0.60358,-0.17364 0.20464,-0.17363 0.20464,-0.44235 0,-0.26251 -0.16536,-0.42581 -0.1633,-0.16536 -0.43409,-0.16536 -0.11989,0 -0.32452,0.0393 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14597" />
<path
d="m 124.52935,139.8491 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62631,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14599" />
<path
d="m 127.31161,139.08015 v 0.64492 h -0.0682 q -0.0785,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10128,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14601" />
<path
d="m 128.65933,139.08015 q 0.42995,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64079 0,0.25424 -0.12196,0.51469 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38033 0.21084,-0.12403 0.44649,-0.12403 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41962 0,0.41341 0.16329,0.71313 0.16537,0.29972 0.43409,0.29972 0.2005,0 0.33072,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14603" />
<path
d="m 130.50107,138.09003 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13023,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14605" />
<path
d="m 130.92689,139.13596 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17156 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.20671 l -0.6718,1.6247 h -0.0848 l -0.67591,-1.59795 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.1385,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14607" />
<path
d="m 133.45903,139.8491 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14609" />
<path
d="m 135.57156,139.08015 v 0.42582 q 0.23771,-0.42582 0.48783,-0.42582 0.11368,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14611" />
<path
d="m 137.80812,139.8491 q -0.002,0.42168 0.20463,0.66146 0.20671,0.23977 0.48576,0.23977 0.18604,0 0.32246,-0.10128 0.1385,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14613" />
<path
d="m 141.04306,139.08015 v 2.43499 q 0,0.18191 0.0248,0.23358 0.0248,0.0517 0.0765,0.0806 0.0537,0.0289 0.2067,0.0289 v 0.0765 h -0.95498 v -0.0765 h 0.0393 q 0.11576,0 0.1757,-0.0331 0.0413,-0.0227 0.0661,-0.0827 0.0248,-0.0579 0.0248,-0.22738 v -0.81442 q -0.1881,0.22325 -0.32866,0.30593 -0.14056,0.0806 -0.29145,0.0806 -0.27492,0 -0.49196,-0.25011 -0.21498,-0.25011 -0.21498,-0.66973 0,-0.48162 0.28526,-0.78341 0.28525,-0.30386 0.68833,-0.30386 0.11782,0 0.21704,0.0331 0.0992,0.0331 0.17776,0.0992 0.11989,-0.0579 0.22945,-0.13229 z m -0.34107,1.49035 v -0.88883 q 0,-0.15503 -0.0413,-0.24392 -0.0393,-0.0889 -0.14262,-0.15089 -0.10336,-0.062 -0.23358,-0.062 -0.23151,0 -0.39688,0.19637 -0.16536,0.19637 -0.16536,0.59531 0,0.3824 0.16743,0.58084 0.1695,0.19844 0.40721,0.19844 0.12196,0 0.21704,-0.0517 0.0951,-0.0537 0.1881,-0.17363 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14615" />
<path
d="m 143.14319,139.13596 v 1.14722 q 0,0.32866 0.0145,0.40308 0.0165,0.0723 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0724 -0.56637,0.23357 h -0.093 v -0.401 q -0.24392,0.26458 -0.37207,0.33279 -0.12816,0.0682 -0.27079,0.0682 -0.15916,0 -0.27698,-0.0909 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40927 v -0.84543 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66352 v 1.26711 q 0,0.26458 0.0909,0.34726 0.093,0.0827 0.22324,0.0827 0.0889,0 0.20051,-0.0558 0.11369,-0.0558 0.26872,-0.21291 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24392,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14617" />
<path
d="m 144.67281,140.75654 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14619" />
<path
d="m 147.08506,140.31005 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.27078 -0.23978,-0.73174 0,-0.44648 0.26459,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30593 0,0.0785 -0.0517,0.12815 -0.0496,0.0476 -0.14056,0.0476 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.33899 0.16536,0.59944 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z m -0.76894,0.68626 h 0.12402 l -0.10335,0.1633 q 0.13022,0.0331 0.1943,0.11162 0.0641,0.0786 0.0641,0.19017 0,0.14883 -0.12402,0.26045 -0.12403,0.11369 -0.3204,0.11369 -0.0765,0 -0.1943,-0.0145 v -0.0889 q 0.0579,0.008 0.0992,0.008 0.10542,0 0.17777,-0.0703 0.0724,-0.0682 0.0724,-0.15709 0,-0.062 -0.0475,-0.10749 -0.0475,-0.0455 -0.11782,-0.0455 -0.0207,0 -0.0537,0.004 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14621" />
<path
d="m 148.27982,139.08015 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64079 0,0.25424 -0.12196,0.51469 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13023,-0.25838 0.34107,-0.38033 0.21083,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10955,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41962 0,0.41341 0.1633,0.71313 0.16536,0.29972 0.43408,0.29972 0.2005,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z m -0.53123,-0.45268 h -0.0661 q 0.008,-0.28319 0.11782,-0.40928 0.10955,-0.12609 0.27078,-0.12609 0.0848,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0661,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19224 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19223,0.062 -0.1633,0 -0.40515,-0.16537 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0848,0 -0.13435,0.0744 -0.0227,0.0351 -0.0579,0.20878 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14623" />
<path
d="m 149.78877,139.8491 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62631,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.308,0.13436 -0.13435,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14625" />
<path
d="m 152.57103,139.08015 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43614,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10128,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14627" />
<path
d="m 117.37527,145.04982 q -0.13849,0.14469 -0.27078,0.20877 -0.13229,0.062 -0.28526,0.062 -0.31005,0 -0.54156,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25631,-0.74414 0.25632,-0.339 0.65939,-0.339 0.25011,0 0.41341,0.15917 v -0.34934 q 0,-0.32452 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14262,0.0331 l -0.0269,-0.0724 0.5643,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14883,-0.0351 l 0.0227,0.0723 -0.56224,0.23358 h -0.0951 z m 0,-0.1447 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16536,-0.17363 -0.10129,-0.0599 -0.19844,-0.0599 -0.1819,0 -0.32453,0.1633 -0.1881,0.21497 -0.1881,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22118 0.40515,0.22118 0.1881,0 0.3638,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14629" />
<path
d="m 118.63618,142.32337 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14631" />
<path
d="m 120.06865,143.51813 v 1.24437 q 0,0.26458 0.0579,0.33486 0.0765,0.0909 0.20464,0.0909 h 0.17156 v 0.0744 h -1.13068 v -0.0744 h 0.0847 q 0.0827,0 0.15089,-0.0413 0.0682,-0.0413 0.093,-0.11162 0.0269,-0.0703 0.0269,-0.27285 v -1.24437 h -0.36793 v -0.14883 h 0.36793 v -0.12402 q 0,-0.28319 0.0909,-0.47956 0.091,-0.19637 0.27699,-0.31626 0.1881,-0.12195 0.42168,-0.12195 0.21704,0 0.39894,0.14056 0.11989,0.093 0.11989,0.20877 0,0.062 -0.0537,0.11782 -0.0537,0.0537 -0.11576,0.0537 -0.0475,0 -0.10128,-0.0331 -0.0517,-0.0351 -0.12816,-0.14676 -0.0765,-0.11369 -0.14056,-0.15296 -0.0641,-0.0393 -0.14263,-0.0393 -0.0951,0 -0.16123,0.0517 -0.0662,0.0496 -0.0951,0.1571 -0.0289,0.10542 -0.0289,0.54777 v 0.13642 h 0.48783 v 0.14883 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14633" />
<path
d="m 121.06083,144.08244 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14635" />
<path
d="m 123.17336,143.31349 v 0.42581 q 0.23771,-0.42581 0.48783,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.16329,-0.0703 -0.0889,-0.0724 -0.1323,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10541 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14637" />
<path
d="m 124.35159,144.08244 q -0.002,0.42167 0.20463,0.66145 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14639" />
<path
d="m 126.46205,143.7145 q 0.33279,-0.40101 0.63458,-0.40101 0.15503,0 0.26665,0.0786 0.11163,0.0765 0.17777,0.25425 0.0455,0.12402 0.0455,0.38033 v 0.80822 q 0,0.17984 0.0289,0.24392 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93637 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0414 0.0744,-0.11989 0.008,-0.031 0.008,-0.19431 v -0.77514 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.2253,-0.11782 -0.24598,0 -0.4899,0.26872 v 0.99838 q 0,0.19224 0.0227,0.23772 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 h 0.0413 q 0.1447,0 0.19431,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41547 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.1385,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14641" />
<path
d="m 129.63498,144.54339 q -0.0765,0.37414 -0.29972,0.57671 -0.22325,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.27079 -0.23978,-0.73174 0,-0.44648 0.26458,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27906,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12195,0 -0.18396,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18603 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15297 -0.16744,0.20257 -0.16744,0.53536 0,0.339 0.16537,0.59945 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22117,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14643" />
<path
d="m 130.38532,142.32337 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.06,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14645" />
<path
d="m 132.15058,144.98987 q -0.29145,0.22531 -0.36586,0.26045 -0.11163,0.0517 -0.23772,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14647" />
<path
d="m 133.43629,142.32337 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14882,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14649" />
<path
d="m 135.35245,143.31349 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12195,-0.10955 -0.31212,-0.10955 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22117,0.43614 0.1633,0.14677 0.36587,0.14677 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15917,-0.39067 0.16123,-0.1571 0.41547,-0.1571 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14651" />
<path
d="m 136.69604,143.5574 0.58291,-0.23564 h 0.0785 v 0.44235 q 0.14676,-0.25011 0.29352,-0.34933 0.14883,-0.10129 0.31213,-0.10129 0.28525,0 0.47542,0.22324 0.23358,0.27285 0.23358,0.71107 0,0.48989 -0.28112,0.81029 -0.23151,0.26251 -0.58291,0.26251 -0.15296,0 -0.26459,-0.0434 -0.0827,-0.031 -0.18603,-0.12402 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0847 0.0599,0.031 0.21497,0.031 v 0.0765 h -0.99218 v -0.0765 h 0.0517 q 0.11368,0.002 0.1943,-0.0434 0.0393,-0.0227 0.0599,-0.0744 0.0227,-0.0496 0.0227,-0.25631 v -1.79007 q 0,-0.18397 -0.0165,-0.23358 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0971,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32867 v 0.70693 q 0,0.22944 0.0186,0.30179 0.0289,0.11989 0.14056,0.21084 0.11368,0.091 0.28525,0.091 0.20671,0 0.33486,-0.16123 0.16743,-0.21084 0.16743,-0.59325 0,-0.43408 -0.19016,-0.66766 -0.1323,-0.16123 -0.3142,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22325 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14653" />
<path
d="m 139.26746,144.08244 q -0.002,0.42167 0.20464,0.66145 0.2067,0.23978 0.48575,0.23978 0.18604,0 0.32246,-0.10128 0.1385,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27286 0.62632,-0.27286 0.31833,0 0.52297,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14655" />
<path
d="m 141.47714,142.32337 v 2.51147 q 0,0.17777 0.0248,0.23565 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.9281 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23772 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10128 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14657" />
<path
d="m 142.92615,143.31349 q 0.42994,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14677,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14659" />
<path
d="m 146.775,145.26272 -1.08313,-2.35851 v 1.87276 q 0,0.25838 0.0558,0.32246 0.0765,0.0868 0.24184,0.0868 h 0.0992 v 0.0765 h -0.97565 v -0.0765 h 0.0992 q 0.17777,0 0.25218,-0.10748 0.0455,-0.0661 0.0455,-0.30179 v -1.83142 q 0,-0.18603 -0.0413,-0.26871 -0.0289,-0.0599 -0.10749,-0.0992 -0.0765,-0.0413 -0.24804,-0.0413 v -0.0765 h 0.79375 l 1.01699,2.19314 1.00045,-2.19314 h 0.79375 v 0.0765 h -0.0971 q -0.17983,0 -0.25425,0.10748 -0.0455,0.0662 -0.0455,0.30179 v 1.83142 q 0,0.25838 0.0579,0.32246 0.0765,0.0868 0.24185,0.0868 h 0.0971 v 0.0765 h -1.19062 v -0.0765 h 0.0992 q 0.17983,0 0.25218,-0.10748 0.0455,-0.0661 0.0455,-0.30179 v -1.87276 l -1.08107,2.35851 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14661" />
<path
d="m 149.25547,144.08244 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z m 0.98599,-1.57303 -0.60978,0.71313 h -0.0703 l 0.21704,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14663" />
<path
d="m 151.36387,142.74712 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13642,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30592 -0.13229,0.10129 -0.27285,0.10129 -0.0951,0 -0.18603,-0.0517 -0.0909,-0.0537 -0.13436,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29972 v -0.0682 q 0.11368,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.2129,-0.25838 0.0475,-0.0785 0.1323,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14665" />
<path
d="m 152.91416,143.31349 q 0.42995,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.16329,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14667" />
<path
d="m 155.44217,145.04982 q -0.1385,0.14469 -0.27079,0.20877 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25632,-0.74414 0.25631,-0.339 0.65939,-0.339 0.25011,0 0.41341,0.15917 v -0.34934 q 0,-0.32452 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14263,0.0331 l -0.0269,-0.0724 0.56431,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14882,-0.0351 l 0.0227,0.0723 -0.56224,0.23358 h -0.0951 z m 0,-0.1447 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16537,-0.17363 -0.10128,-0.0599 -0.19843,-0.0599 -0.18191,0 -0.32453,0.1633 -0.1881,0.21497 -0.1881,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22118 0.40514,0.22118 0.1881,0 0.3638,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14669" />
<path
d="m 157.14749,143.31349 q 0.42994,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.16329,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14671" />
<path
d="m 119.19841,146.69313 0.031,0.65733 h -0.0785 q -0.0227,-0.17363 -0.062,-0.24805 -0.0641,-0.11989 -0.17157,-0.1757 -0.10542,-0.0579 -0.27905,-0.0579 h -0.39481 v 2.14147 q 0,0.25839 0.0558,0.32246 0.0785,0.0868 0.24185,0.0868 h 0.0971 v 0.0765 h -1.18856 v -0.0765 h 0.0992 q 0.17777,0 0.25218,-0.10749 0.0455,-0.0661 0.0455,-0.30179 v -2.14147 h -0.33693 q -0.19637,0 -0.27905,0.0289 -0.10749,0.0393 -0.18397,0.1509 -0.0765,0.11162 -0.091,0.30179 h -0.0785 l 0.0331,-0.65733 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14673" />
<path
d="m 119.87434,147.54683 v 0.42581 q 0.23771,-0.42581 0.48783,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14675" />
<path
d="m 121.80704,149.22321 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0848 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14677" />
<path
d="m 122.4747,147.79074 0.58291,-0.23564 h 0.0786 v 0.44235 q 0.14676,-0.25012 0.29352,-0.34934 0.14883,-0.10128 0.31213,-0.10128 0.28525,0 0.47542,0.22324 0.23358,0.27285 0.23358,0.71107 0,0.48989 -0.28112,0.81028 -0.23151,0.26252 -0.58291,0.26252 -0.15297,0 -0.26459,-0.0434 -0.0827,-0.031 -0.18603,-0.12402 v 0.57671 q 0,0.1943 0.0227,0.24598 0.0248,0.0537 0.0827,0.0847 0.0599,0.031 0.21497,0.031 v 0.0765 h -0.99218 v -0.0765 h 0.0517 q 0.11369,0.002 0.19431,-0.0434 0.0393,-0.0227 0.0599,-0.0744 0.0227,-0.0496 0.0227,-0.25632 v -1.79007 q 0,-0.18396 -0.0165,-0.23357 -0.0165,-0.0496 -0.0537,-0.0744 -0.0351,-0.0248 -0.0971,-0.0248 -0.0496,0 -0.12609,0.0289 z m 0.66146,0.32866 v 0.70694 q 0,0.22944 0.0186,0.30179 0.0289,0.11988 0.14056,0.21084 0.11368,0.091 0.28525,0.091 0.2067,0 0.33486,-0.16123 0.16743,-0.21084 0.16743,-0.59325 0,-0.43408 -0.19017,-0.66766 -0.13229,-0.16123 -0.31419,-0.16123 -0.0992,0 -0.19637,0.0496 -0.0744,0.0372 -0.24598,0.22324 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14679" />
<path
d="m 125.04611,148.31577 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.71521 0,-0.48575 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31833,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87644 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14681" />
<path
d="m 128.25005,148.91522 -0.0227,0.58084 h -1.67018 v -0.0744 l 1.25677,-1.67432 h -0.62011 q -0.20051,0 -0.26252,0.0269 -0.062,0.0248 -0.10129,0.0972 -0.0558,0.10335 -0.0641,0.25631 h -0.0827 l 0.0124,-0.52503 h 1.5875 v 0.0765 l -1.26917,1.67845 h 0.6904 q 0.21704,0 0.29352,-0.0351 0.0786,-0.0372 0.12609,-0.12816 0.0331,-0.0661 0.0558,-0.27905 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14683" />
<path
d="m 129.4076,147.54683 q 0.42995,0 0.6904,0.32659 0.22117,0.27906 0.22117,0.64079 0,0.25425 -0.12195,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47543,0.13229 -0.42788,0 -0.68006,-0.34107 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12815,-0.51676 0.13023,-0.25838 0.34107,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0661 -0.10956,0.0641 -0.17777,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.2005,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19843 -0.37413,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14685" />
<path
d="m 131.07985,146.55671 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14687" />
<path
d="m 133.1097,149.28315 q -0.13849,0.1447 -0.27079,0.20878 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25632,-0.74414 0.25631,-0.339 0.65939,-0.339 0.25011,0 0.41341,0.15916 v -0.34933 q 0,-0.32453 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10129 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14263,0.0331 l -0.0269,-0.0724 0.56431,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14883,-0.0351 l 0.0227,0.0724 -0.56224,0.23358 h -0.0951 z m 0,-0.14469 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16537,-0.17364 -0.10128,-0.0599 -0.19843,-0.0599 -0.1819,0 -0.32453,0.1633 -0.1881,0.21497 -0.1881,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22117 0.40514,0.22117 0.1881,0 0.3638,-0.1881 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14689" />
<path
d="m 134.96178,149.22321 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25219,0 0.41342,0.0848 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14691" />
<path
d="m 136.41699,146.55671 v 2.51147 q 0,0.17777 0.0248,0.23565 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13023,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14693" />
<path
d="m 138.31661,148.31577 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.71521 0,-0.48575 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14695" />
<path
d="m 142.54167,148.77673 q -0.0765,0.37413 -0.29972,0.5767 -0.22324,0.20051 -0.49403,0.20051 -0.32246,0 -0.56223,-0.27079 -0.23978,-0.27078 -0.23978,-0.73173 0,-0.44649 0.26458,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12195,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18604 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.339 0.16537,0.59945 0.16743,0.25838 0.45061,0.25838 0.20258,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14697" />
<path
d="m 143.88319,149.22321 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32452,-0.13436 -0.1261,-0.13436 -0.1261,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29353,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0848 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14699" />
<path
d="m 145.3384,146.55671 v 2.51147 q 0,0.17777 0.0248,0.23565 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.9281 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14701" />
<path
d="m 147.46953,148.77673 q -0.0765,0.37413 -0.29972,0.5767 -0.22324,0.20051 -0.49402,0.20051 -0.32247,0 -0.56224,-0.27079 -0.23978,-0.27078 -0.23978,-0.73173 0,-0.44649 0.26458,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12195,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18604 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.339 0.16537,0.59945 0.16743,0.25838 0.45061,0.25838 0.20258,0 0.36381,-0.13849 0.11368,-0.0951 0.22117,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14703" />
<path
d="m 149.3981,147.60264 v 1.14721 q 0,0.32867 0.0145,0.40308 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0724 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26458 -0.37207,0.3328 -0.12816,0.0682 -0.27079,0.0682 -0.15916,0 -0.27698,-0.091 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.1447 -0.0455,-0.40928 v -0.84543 q 0,-0.13435 -0.0289,-0.18603 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66353 v 1.2671 q 0,0.26459 0.0909,0.34727 0.093,0.0827 0.22324,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.21291 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14705" />
<path
d="m 150.50604,146.55671 v 2.51147 q 0,0.17777 0.0248,0.23565 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.9281 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14707" />
<path
d="m 152.10181,149.22321 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0848 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14709" />
<path
d="m 153.45986,147.54683 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96944 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14711" />
<path
d="m 156.30413,147.54683 q 0.42995,0 0.69039,0.32659 0.22118,0.27906 0.22118,0.64079 0,0.25425 -0.12196,0.5147 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34107 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0661 -0.10955,0.0641 -0.17776,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.16329,0.71314 0.16537,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16537 0.13023,-0.16536 0.13023,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19843 -0.37414,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14713" />
<path
d="m 116.12057,152.54911 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58498,-0.26459 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10128,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14715" />
<path
d="m 118.2331,151.78017 v 0.42581 q 0.23771,-0.42581 0.48783,-0.42581 0.11368,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96944 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14717" />
<path
d="m 119.64697,151.78017 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14719" />
<path
d="m 121.4329,151.78017 q 0.42995,0 0.6904,0.32659 0.22117,0.27905 0.22117,0.64079 0,0.25425 -0.12195,0.51469 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.1323 -0.47542,0.1323 -0.42789,0 -0.68007,-0.34107 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12815,-0.51676 0.13023,-0.25838 0.34107,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13435 q -0.10955,0 -0.22117,0.0661 -0.10956,0.0641 -0.17777,0.22738 -0.0682,0.16329 -0.0682,0.41961 0,0.41341 0.1633,0.71313 0.16536,0.29973 0.43408,0.29973 0.2005,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14721" />
<path
d="m 124.86422,154.55829 v 0.0765 q -0.31213,-0.1571 -0.5209,-0.36794 -0.29766,-0.29972 -0.45889,-0.70693 -0.16123,-0.40721 -0.16123,-0.84543 0,-0.64078 0.31626,-1.16788 0.31626,-0.52917 0.82476,-0.75654 v 0.0868 q -0.25425,0.14056 -0.41755,0.38447 -0.1633,0.24392 -0.24391,0.61805 -0.0806,0.37414 -0.0806,0.78135 0,0.44235 0.0682,0.80409 0.0537,0.28525 0.13022,0.45682 0.0765,0.17363 0.20464,0.33279 0.13022,0.15916 0.339,0.30386 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14723" />
<path
d="m 125.62489,152.95425 q -0.0186,0.13436 -0.0186,0.22118 0,0.15503 0.0889,0.24804 0.0909,0.093 0.24185,0.093 0.14469,0 0.28938,-0.0703 0.14677,-0.0703 0.339,-0.24598 l 0.062,0.0558 q -0.23771,0.28732 -0.46302,0.40928 -0.22531,0.12196 -0.49816,0.12196 -0.3452,0 -0.47749,-0.16537 -0.13229,-0.16536 -0.13229,-0.3824 0,-0.339 0.19637,-0.678 0.19844,-0.33899 0.53743,-0.54363 0.34107,-0.20464 0.6842,-0.20464 0.17363,0 0.26251,0.0827 0.0889,0.0827 0.0889,0.20877 0,0.1509 -0.0868,0.29353 -0.11988,0.1943 -0.30178,0.31419 -0.18191,0.11782 -0.40722,0.17983 -0.15089,0.0413 -0.40514,0.062 z m 0.0186,-0.10748 q 0.1819,-0.0269 0.28112,-0.0724 0.10129,-0.0475 0.19637,-0.14883 0.0971,-0.10335 0.16743,-0.25838 0.0703,-0.1571 0.0703,-0.29352 0,-0.0579 -0.0331,-0.0909 -0.031,-0.0331 -0.0806,-0.0331 -0.0992,0 -0.22324,0.1385 -0.22738,0.25218 -0.37827,0.75861 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14725" />
<path
d="m 126.9354,150.87686 v -0.0868 q 0.3142,0.15503 0.52297,0.36586 0.29559,0.30179 0.45682,0.709 0.16123,0.40515 0.16123,0.84543 0,0.64079 -0.31626,1.16789 -0.31419,0.52916 -0.82476,0.75654 v -0.0765 q 0.25425,-0.14263 0.41755,-0.38654 0.16536,-0.24185 0.24391,-0.61598 0.0806,-0.37621 0.0806,-0.78342 0,-0.44028 -0.0682,-0.80408 -0.0517,-0.28526 -0.13022,-0.45682 -0.0765,-0.17157 -0.20464,-0.33073 -0.12816,-0.15916 -0.339,-0.30386 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14727" />
<path
d="m 129.76314,152.54911 q -0.002,0.42168 0.20463,0.66146 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10129 0.1385,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26459 -0.24184,-0.26665 -0.24184,-0.7152 0,-0.48576 0.24804,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14729" />
<path
d="m 131.8736,152.18117 q 0.3328,-0.401 0.63459,-0.401 0.15502,0 0.26665,0.0785 0.11162,0.0765 0.17776,0.25425 0.0455,0.12402 0.0455,0.38034 v 0.80822 q 0,0.17983 0.0289,0.24391 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93637 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0413 0.0744,-0.11989 0.008,-0.031 0.008,-0.1943 v -0.77515 q 0,-0.25838 -0.0682,-0.37413 -0.0661,-0.11783 -0.22531,-0.11783 -0.24598,0 -0.48989,0.26872 v 0.99839 q 0,0.19223 0.0227,0.23771 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93638 v -0.0744 h 0.0413 q 0.14469,0 0.1943,-0.0723 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41548 -0.0145,-0.0744 -0.0475,-0.10128 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.5705,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14731" />
<path
d="m 133.9882,151.21379 v 0.62219 h 0.44235 v 0.14469 h -0.44235 v 1.22783 q 0,0.18397 0.0517,0.24805 0.0537,0.0641 0.13642,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.1261 h 0.0806 q -0.0724,0.20258 -0.20463,0.30593 -0.1323,0.10128 -0.27286,0.10128 -0.0951,0 -0.18603,-0.0517 -0.091,-0.0538 -0.13436,-0.1509 -0.0434,-0.0992 -0.0434,-0.30385 v -1.27331 h -0.29972 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10956 0.2129,-0.25839 0.0475,-0.0786 0.1323,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14733" />
<path
d="m 135.16642,151.78017 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14735" />
<path
d="m 136.34464,152.54911 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26459 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14737" />
<path
d="m 140.03433,153.45655 q -0.29145,0.22531 -0.36586,0.26045 -0.11163,0.0517 -0.23772,0.0517 -0.19637,0 -0.32452,-0.13436 -0.12609,-0.13435 -0.12609,-0.35346 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.69866,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14882 0.51056,-0.14882 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12402 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14882 0.0889,0.24804 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14739" />
<path
d="m 142.06212,151.78017 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20258,-0.41341 -0.12195,-0.10956 -0.31212,-0.10956 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11576 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.53951 0,0.25838 -0.19637,0.41754 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14741" />
<path
d="m 144.02375,150.79005 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14743" />
<path
d="m 145.26605,151.21379 v 0.62219 h 0.44235 v 0.14469 h -0.44235 v 1.22783 q 0,0.18397 0.0517,0.24805 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.1261 h 0.0806 q -0.0724,0.20258 -0.20464,0.30593 -0.13229,0.10128 -0.27285,0.10128 -0.0951,0 -0.18604,-0.0517 -0.0909,-0.0538 -0.13435,-0.1509 -0.0434,-0.0992 -0.0434,-0.30385 v -1.27331 h -0.29973 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10956 0.21291,-0.25839 0.0475,-0.0786 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14745" />
<path
d="m 146.20863,152.54911 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20878,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26459 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62631,-0.27285 0.31833,0 0.52297,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.308,0.13436 -0.13435,0.13229 -0.15709,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14747" />
<path
d="m 148.32116,151.78017 v 0.42581 q 0.23771,-0.42581 0.48783,-0.42581 0.11368,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.1571 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.2005 v -0.73381 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14749" />
<path
d="m 150.25386,153.45655 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13435 -0.12609,-0.35346 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14882 0.51057,-0.14882 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14882 0.0889,0.24804 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14751" />
<path
d="m 152.66611,153.01006 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.20051 -0.49403,0.20051 -0.32246,0 -0.56224,-0.27079 -0.23978,-0.27078 -0.23978,-0.73174 0,-0.44648 0.26459,-0.72553 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45888,0.14882 0.17984,0.14676 0.17984,0.30593 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.33899 0.16536,0.59944 0.16743,0.25839 0.45062,0.25839 0.20257,0 0.3638,-0.1385 0.11369,-0.0951 0.22118,-0.3452 z m -0.76894,0.68627 h 0.12402 l -0.10335,0.16329 q 0.13022,0.0331 0.1943,0.11162 0.0641,0.0786 0.0641,0.19017 0,0.14883 -0.12402,0.26045 -0.12403,0.11369 -0.3204,0.11369 -0.0765,0 -0.1943,-0.0145 v -0.0889 q 0.0579,0.008 0.0992,0.008 0.10542,0 0.17777,-0.0703 0.0724,-0.0682 0.0724,-0.1571 0,-0.062 -0.0475,-0.10749 -0.0475,-0.0455 -0.11782,-0.0455 -0.0207,0 -0.0537,0.004 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14753" />
<path
d="m 153.86087,151.78017 q 0.42995,0 0.6904,0.32659 0.22117,0.27905 0.22117,0.64079 0,0.25425 -0.12195,0.51469 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.1323 -0.47543,0.1323 -0.42788,0 -0.68006,-0.34107 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12815,-0.51676 0.13023,-0.25838 0.34107,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13435 q -0.10955,0 -0.22117,0.0661 -0.10956,0.0641 -0.17777,0.22738 -0.0682,0.16329 -0.0682,0.41961 0,0.41341 0.1633,0.71313 0.16536,0.29973 0.43408,0.29973 0.2005,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z m -0.53123,-0.45268 h -0.0661 q 0.008,-0.28319 0.11782,-0.40928 0.10955,-0.12609 0.27078,-0.12609 0.0848,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0662,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19224 -0.0517,0.30593 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19223,0.062 -0.1633,0 -0.40515,-0.16537 -0.13022,-0.0889 -0.1757,-0.10748 -0.0455,-0.0186 -0.0889,-0.0186 -0.0848,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14755" />
<path
d="m 155.36982,152.54911 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10129 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51677 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26459 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25631 -0.0517,-0.11576 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14757" />
<path
d="m 158.15208,151.78017 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20258,-0.41341 -0.12195,-0.10956 -0.31212,-0.10956 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.53951 0,0.25838 -0.19637,0.41754 -0.1943,0.1571 -0.43614,0.1571 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0847 0.0909,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15916,-0.39068 0.16123,-0.15709 0.41548,-0.15709 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14759" />
<path
d="m 130.15434,160.05713 v 4.03516 h 13.80274 v -4.03516 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-5" />
<path
d="m 129.62898,159.53232 h 14.85349 v 5.08536 h -14.85349 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-41" />
<path
d="m 132.32629,160.41855 q 0.12815,0 0.21497,0.0889 0.0889,0.0889 0.0889,0.21498 0,0.12609 -0.0889,0.21497 -0.0889,0.0889 -0.21497,0.0889 -0.12403,0 -0.21291,-0.0889 -0.0889,-0.0889 -0.0889,-0.21497 0,-0.12609 0.0868,-0.21498 0.0889,-0.0889 0.21497,-0.0889 z m 0.12815,0.95085 -0.42374,1.46967 q -0.0351,0.12609 -0.0351,0.16537 0,0.0227 0.0186,0.0434 0.0186,0.0186 0.0393,0.0186 0.0351,0 0.0703,-0.031 0.093,-0.0765 0.22324,-0.27698 l 0.0703,0.0413 q -0.31213,0.54363 -0.66353,0.54363 -0.13435,0 -0.21497,-0.0744 -0.0785,-0.0765 -0.0785,-0.19224 0,-0.0765 0.0351,-0.1943 l 0.28732,-0.98805 q 0.0413,-0.14263 0.0413,-0.21498 0,-0.0455 -0.0393,-0.0806 -0.0393,-0.0351 -0.10749,-0.0351 -0.031,0 -0.0744,0.002 l 0.0269,-0.0827 0.70074,-0.11368 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14764" />
<path
d="m 133.76289,160.86503 -0.16536,0.56224 h 0.27078 l -0.0724,0.23772 h -0.26665 l -0.3452,1.19889 q -0.0331,0.11162 -0.0331,0.1695 0,0.0269 0.0186,0.0475 0.0186,0.0186 0.0413,0.0186 0.0351,0 0.0724,-0.0289 0.0951,-0.0723 0.22118,-0.25218 l 0.0724,0.0455 q -0.14263,0.24804 -0.3142,0.3638 -0.17156,0.11575 -0.33693,0.11575 -0.14056,0 -0.2191,-0.0703 -0.0765,-0.0723 -0.0765,-0.1819 0,-0.11989 0.0537,-0.30799 l 0.32659,-1.11827 h -0.28112 l 0.0413,-0.15297 q 0.26458,-0.0971 0.44648,-0.22737 0.18191,-0.13023 0.43822,-0.41962 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14766" />
<path
d="m 135.88782,162.9941 v -1.03146 h -1.02939 v -0.1695 h 1.02939 v -1.02732 h 0.16537 v 1.02732 h 1.03352 v 0.1695 h -1.03352 v 1.03146 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14768" />
<path
d="m 137.24794,161.46035 h 2.23036 v 0.1695 h -2.23036 z m 0,0.67386 h 2.23036 v 0.1695 h -2.23036 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14770" />
<path
d="m 141.1154,160.75755 0.68213,-0.3328 h 0.0682 v 2.36678 q 0,0.23564 0.0186,0.29352 0.0207,0.0579 0.0827,0.0889 0.062,0.031 0.25218,0.0351 v 0.0765 h -1.0542 v -0.0765 q 0.19844,-0.004 0.25632,-0.0331 0.0579,-0.031 0.0806,-0.0806 0.0227,-0.0517 0.0227,-0.30386 v -1.51308 q 0,-0.30593 -0.0207,-0.39274 -0.0145,-0.0661 -0.0537,-0.0972 -0.0372,-0.031 -0.0909,-0.031 -0.0765,0 -0.21291,0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14772" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
inkscape:connector-curvature="0"
id="rect13740-3-3-6-0-3"
d="m 137.05573,168.85881 11.50086,5.38531 -11.50086,5.38529 -11.50086,-5.38529 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
d="m 131.05093,174.72471 q -0.0186,0.13436 -0.0186,0.22117 0,0.15503 0.0889,0.24805 0.0909,0.093 0.24184,0.093 0.1447,0 0.28939,-0.0703 0.14676,-0.0703 0.339,-0.24598 l 0.062,0.0558 q -0.23771,0.28732 -0.46302,0.40927 -0.22531,0.12196 -0.49816,0.12196 -0.3452,0 -0.47749,-0.16536 -0.13229,-0.16537 -0.13229,-0.38241 0,-0.339 0.19637,-0.67799 0.19843,-0.339 0.53743,-0.54364 0.34106,-0.20464 0.6842,-0.20464 0.17363,0 0.26251,0.0827 0.0889,0.0827 0.0889,0.20878 0,0.15089 -0.0868,0.29352 -0.11989,0.1943 -0.30179,0.31419 -0.1819,0.11782 -0.40721,0.17983 -0.1509,0.0413 -0.40514,0.062 z m 0.0186,-0.10749 q 0.1819,-0.0269 0.28112,-0.0724 0.10128,-0.0475 0.19637,-0.14883 0.0972,-0.10335 0.16743,-0.25838 0.0703,-0.15709 0.0703,-0.29352 0,-0.0579 -0.0331,-0.0909 -0.031,-0.0331 -0.0806,-0.0331 -0.0992,0 -0.22324,0.13849 -0.22738,0.25218 -0.37827,0.75861 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14775" />
<path
d="m 135.59431,174.99136 -2.21795,-0.94258 v -0.17157 l 2.21795,-0.93844 v 0.21084 l -1.9637,0.81235 1.9637,0.81856 z m -2.22001,0.65319 h 2.22415 v 0.19223 h -2.22415 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14777" />
<path
d="m 137.36785,174.72471 q -0.0186,0.13436 -0.0186,0.22117 0,0.15503 0.0889,0.24805 0.0909,0.093 0.24184,0.093 0.1447,0 0.28939,-0.0703 0.14676,-0.0703 0.339,-0.24598 l 0.062,0.0558 q -0.23771,0.28732 -0.46302,0.40927 -0.22531,0.12196 -0.49816,0.12196 -0.3452,0 -0.47749,-0.16536 -0.13229,-0.16537 -0.13229,-0.38241 0,-0.339 0.19637,-0.67799 0.19844,-0.339 0.53743,-0.54364 0.34107,-0.20464 0.6842,-0.20464 0.17363,0 0.26251,0.0827 0.0889,0.0827 0.0889,0.20878 0,0.15089 -0.0868,0.29352 -0.11989,0.1943 -0.30179,0.31419 -0.1819,0.11782 -0.40721,0.17983 -0.15089,0.0413 -0.40514,0.062 z m 0.0186,-0.10749 q 0.1819,-0.0269 0.28112,-0.0724 0.10129,-0.0475 0.19637,-0.14883 0.0971,-0.10335 0.16743,-0.25838 0.0703,-0.15709 0.0703,-0.29352 0,-0.0579 -0.0331,-0.0909 -0.031,-0.0331 -0.0806,-0.0331 -0.0992,0 -0.22324,0.13849 -0.22737,0.25218 -0.37827,0.75861 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14779" />
<path
d="m 139.4933,174.53113 -0.12402,0.42167 h 0.20308 l -0.0543,0.17829 h -0.19998 l -0.2589,0.89917 q -0.0248,0.0837 -0.0248,0.12712 0,0.0202 0.014,0.0357 0.014,0.0139 0.031,0.0139 0.0264,0 0.0543,-0.0217 0.0713,-0.0543 0.16588,-0.18914 l 0.0543,0.0341 q -0.10697,0.18603 -0.23564,0.27285 -0.12868,0.0868 -0.2527,0.0868 -0.10542,0 -0.16433,-0.0527 -0.0574,-0.0543 -0.0574,-0.13643 0,-0.0899 0.0403,-0.23099 l 0.24494,-0.83871 h -0.21084 l 0.031,-0.11472 q 0.19844,-0.0729 0.33486,-0.17054 0.13643,-0.0977 0.32866,-0.3147 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.175px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;baseline-shift:sub;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14781" />
<path
d="m 140.50719,174.9094 q 0.12247,0 0.22944,0.0574 0.10852,0.0558 0.16278,0.15658 0.0558,0.10077 0.0558,0.22324 0,0.25115 -0.14108,0.50229 -0.13953,0.25115 -0.36897,0.39688 -0.22944,0.14418 -0.46199,0.14418 -0.21084,0 -0.32711,-0.12558 -0.11472,-0.12557 -0.11472,-0.30696 0,-0.21549 0.0853,-0.40307 0.0868,-0.18914 0.2186,-0.32866 0.13332,-0.14108 0.3054,-0.2279 0.17209,-0.0884 0.35657,-0.0884 z m -0.0636,0.0822 q -0.0822,0 -0.13643,0.0481 -0.10852,0.0977 -0.24494,0.45734 -0.13643,0.35812 -0.13643,0.64647 0,0.0713 0.0434,0.11782 0.0434,0.0465 0.10232,0.0465 0.0605,0 0.10697,-0.0372 0.0682,-0.0558 0.16743,-0.24959 0.0992,-0.19534 0.16278,-0.42943 0.0636,-0.23565 0.0636,-0.43099 0,-0.0806 -0.0387,-0.12402 -0.0388,-0.045 -0.0899,-0.045 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.175px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;baseline-shift:sub;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14783" />
<path
d="m 142.05593,174.19626 -0.51314,1.74563 q -0.045,0.15503 -0.045,0.19379 0,0.0201 0.0124,0.0341 0.014,0.014 0.0295,0.014 0.0279,0 0.0527,-0.0217 0.0744,-0.0605 0.16588,-0.20464 l 0.0605,0.0279 q -0.14728,0.23564 -0.28991,0.33641 -0.0977,0.0682 -0.20774,0.0682 -0.10232,0 -0.16278,-0.0543 -0.0605,-0.0558 -0.0605,-0.13333 0,-0.0574 0.0372,-0.18448 l 0.41858,-1.42937 q 0.0341,-0.11783 0.0341,-0.15658 0,-0.0372 -0.0326,-0.0589 -0.0434,-0.031 -0.13178,-0.0264 l 0.0171,-0.0589 0.52245,-0.0915 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:3.175px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;baseline-shift:sub;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14785" />
<path
d="m 142.87035,174.83839 h -0.0848 q 0.0145,-0.26044 0.0641,-0.42994 0.0517,-0.17157 0.21084,-0.47543 0.12403,-0.23357 0.16123,-0.3576 0.0372,-0.12609 0.0372,-0.25424 0,-0.26252 -0.14056,-0.41755 -0.13849,-0.15503 -0.34106,-0.15503 -0.17984,0 -0.28319,0.0848 -0.10335,0.0847 -0.10335,0.18397 0,0.0765 0.062,0.1881 0.062,0.11162 0.062,0.1695 0,0.0744 -0.0475,0.12609 -0.0476,0.0496 -0.11576,0.0496 -0.0868,0 -0.15916,-0.0847 -0.0703,-0.0868 -0.0703,-0.23978 0,-0.23358 0.2005,-0.41341 0.20051,-0.17983 0.54364,-0.17983 0.42581,0 0.62632,0.24804 0.14882,0.1819 0.14882,0.40308 0,0.15089 -0.0682,0.31006 -0.0661,0.15916 -0.25425,0.37413 -0.29972,0.339 -0.36793,0.48163 -0.0661,0.14056 -0.0806,0.3886 z m -0.0289,0.25632 q 0.0972,0 0.1633,0.0682 0.0682,0.0662 0.0682,0.1633 0,0.0951 -0.0682,0.1633 -0.0682,0.0661 -0.1633,0.0661 -0.0951,0 -0.16329,-0.0661 -0.0661,-0.0682 -0.0661,-0.1633 0,-0.0971 0.0661,-0.1633 0.0682,-0.0682 0.16329,-0.0682 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14787" />
<path
d="m 74.151585,198.25604 c -1.372929,0 -2.462891,1.08995 -2.462891,2.46289 v 3.14257 c 0,1.37294 1.089962,2.46289 2.462891,2.46289 H 102.7883 c 1.37293,0 2.46289,-1.08995 2.46289,-2.46289 v -3.14257 c 0,-1.37294 -1.08996,-2.46289 -2.46289,-2.46289 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34621" />
<path
d="m 74.151329,197.74293 h 28.636261 c 1.64901,0 2.97656,1.32755 2.97656,2.97656 v 3.14243 c 0,1.64901 -1.32755,2.97656 -2.97656,2.97656 H 74.151329 c -1.649015,0 -2.976562,-1.32755 -2.976562,-2.97656 v -3.14243 c 0,-1.64901 1.327547,-2.97656 2.976562,-2.97656 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-3-8-6" />
<path
d="m 73.816589,198.8345 v 1.10174 h 0.510563 q 0.1757,0 0.256315,-0.0765 0.08268,-0.0786 0.109554,-0.308 h 0.07648 v 0.94878 h -0.07648 q -0.0021,-0.16329 -0.04341,-0.23978 -0.03927,-0.0765 -0.111621,-0.11368 -0.07028,-0.0393 -0.21084,-0.0393 h -0.510563 v 0.88057 q 0,0.2129 0.02687,0.28112 0.02067,0.0517 0.08682,0.0889 0.09095,0.0496 0.19017,0.0496 h 0.101285 v 0.0765 h -1.203026 v -0.0765 h 0.09922 q 0.173632,0 0.25218,-0.10129 0.04961,-0.0661 0.04961,-0.31832 v -1.81074 q 0,-0.21291 -0.02687,-0.28112 -0.02067,-0.0517 -0.08475,-0.0889 -0.08888,-0.0496 -0.190169,-0.0496 h -0.09922 v -0.0765 h 2.085659 l 0.02687,0.61599 h -0.07235 q -0.05374,-0.19637 -0.126091,-0.28732 -0.07028,-0.093 -0.175699,-0.13436 -0.103353,-0.0413 -0.322461,-0.0413 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14792" />
<path
d="m 75.920852,198.54511 q 0.08682,0 0.146761,0.062 0.06201,0.0599 0.06201,0.14676 0,0.0868 -0.06201,0.14883 -0.05994,0.062 -0.146761,0.062 -0.08682,0 -0.148828,-0.062 -0.06201,-0.062 -0.06201,-0.14883 0,-0.0868 0.05994,-0.14676 0.06201,-0.062 0.150895,-0.062 z m 0.171566,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.02687,0.0579 0.07648,0.0868 0.05168,0.0289 0.186035,0.0289 v 0.0744 h -0.919839 v -0.0744 q 0.138492,0 0.186035,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02894,-0.062 0.02894,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.01447,-0.0661 -0.04548,-0.0909 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.140559,0.031 l -0.02894,-0.0744 0.570507,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14794" />
<path
d="m 77.175555,199.9383 q 0.206705,-0.2067 0.243912,-0.23771 0.09302,-0.0786 0.200505,-0.12195 0.107486,-0.0434 0.212906,-0.0434 0.177767,0 0.305925,0.10335 0.128157,0.10335 0.171565,0.29972 0.212907,-0.24804 0.359668,-0.32452 0.146761,-0.0786 0.30179,-0.0786 0.150895,0 0.26665,0.0786 0.117822,0.0765 0.186035,0.25218 0.04548,0.11989 0.04548,0.3762 v 0.81442 q 0,0.17777 0.02687,0.24391 0.02067,0.0455 0.07648,0.0786 0.05581,0.031 0.181901,0.031 v 0.0744 h -0.934309 v -0.0744 h 0.03927 q 0.121956,0 0.190169,-0.0476 0.04754,-0.0331 0.06821,-0.10541 0.0083,-0.0351 0.0083,-0.20051 v -0.81442 q 0,-0.23151 -0.05581,-0.32659 -0.08062,-0.1323 -0.258382,-0.1323 -0.109554,0 -0.221175,0.0558 -0.109554,0.0538 -0.26665,0.20258 l -0.0041,0.0227 0.0041,0.0889 v 0.9033 q 0,0.1943 0.02067,0.24185 0.02274,0.0475 0.08268,0.0806 0.05994,0.031 0.204639,0.031 v 0.0744 H 77.675807 V 201.41 q 0.157096,0 0.214974,-0.0372 0.05994,-0.0372 0.08268,-0.11162 0.01034,-0.0351 0.01034,-0.20464 v -0.81442 q 0,-0.23151 -0.06821,-0.3328 -0.09095,-0.13229 -0.254248,-0.13229 -0.111621,0 -0.221175,0.06 -0.171566,0.0909 -0.264583,0.20464 v 1.01492 q 0,0.18604 0.0248,0.24185 0.02687,0.0558 0.07648,0.0848 0.05168,0.0269 0.206706,0.0269 v 0.0744 h -0.936376 v -0.0744 q 0.130224,0 0.181901,-0.0269 0.05168,-0.0289 0.07855,-0.0889 0.02687,-0.062 0.02687,-0.23771 v -0.72347 q 0,-0.31212 -0.0186,-0.40307 -0.01447,-0.0682 -0.04547,-0.093 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138492,0.031 l -0.03101,-0.0744 0.570507,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14796" />
<path
d="m 82.299785,201.27155 q -0.138492,0.1447 -0.270784,0.20878 -0.132291,0.062 -0.285254,0.062 -0.310058,0 -0.541568,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.256315,-0.74414 0.256314,-0.339 0.65939,-0.339 0.250114,0 0.413411,0.15916 v -0.34933 q 0,-0.32453 -0.01654,-0.39894 -0.01447,-0.0744 -0.04754,-0.10129 -0.03307,-0.0269 -0.08268,-0.0269 -0.05374,0 -0.142626,0.0331 l -0.02687,-0.0724 0.564306,-0.23151 h 0.09302 v 2.18901 q 0,0.3328 0.01447,0.40721 0.01654,0.0724 0.04961,0.10129 0.03514,0.0289 0.08062,0.0289 0.05581,0 0.148828,-0.0351 l 0.02274,0.0724 -0.562239,0.23358 h -0.09508 z m 0,-0.14469 v -0.97565 q -0.0124,-0.14056 -0.07441,-0.25631 -0.06201,-0.11576 -0.165364,-0.17364 -0.101286,-0.0599 -0.198437,-0.0599 -0.181901,0 -0.324528,0.1633 -0.188102,0.21497 -0.188102,0.62838 0,0.41755 0.181901,0.64079 0.181901,0.22117 0.405143,0.22117 0.188102,0 0.363801,-0.1881 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14798" />
<path
d="m 84.151867,201.21161 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237711,0.0517 -0.19637,0 -0.324528,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28318 -0.09095,-0.3886 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.126091,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.32659 0.181901,-0.14883 0.510562,-0.14883 0.252181,0 0.413411,0.0847 0.121957,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.3638 v 0.64286 q 0,0.27078 0.01034,0.33279 0.01033,0.06 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.101286,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.13436 v -0.7214 q -0.312125,0.12402 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204638,0.0971 0.157096,0 0.413411,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14800" />
<path
d="m 87.246249,199.49802 0.03101,0.65939 h -0.07028 q -0.12609,-0.29352 -0.262516,-0.40101 -0.134359,-0.10748 -0.268717,-0.10748 -0.08475,0 -0.144694,0.0579 -0.05994,0.0558 -0.05994,0.13023 0,0.0558 0.04134,0.10748 0.06615,0.0848 0.370003,0.29146 0.303858,0.20464 0.398942,0.34933 0.09715,0.14263 0.09715,0.3204 0,0.16123 -0.08061,0.31626 -0.08062,0.15502 -0.227377,0.23771 -0.14676,0.0827 -0.324527,0.0827 -0.138493,0 -0.370003,-0.0868 -0.06201,-0.0227 -0.08475,-0.0227 -0.06821,0 -0.113689,0.10336 h -0.06821 l -0.03307,-0.69453 h 0.07028 q 0.09302,0.27285 0.254247,0.40927 0.163298,0.13643 0.307992,0.13643 0.09922,0 0.16123,-0.06 0.06408,-0.062 0.06408,-0.14882 0,-0.0992 -0.06201,-0.17157 -0.06201,-0.0724 -0.276985,-0.21911 -0.31626,-0.2191 -0.409277,-0.33486 -0.136426,-0.1695 -0.136426,-0.37414 0,-0.22324 0.152962,-0.40307 0.155029,-0.1819 0.446484,-0.1819 0.157096,0 0.303857,0.0765 0.05581,0.031 0.09095,0.031 0.03721,0 0.05994,-0.0145 0.02274,-0.0165 0.07235,-0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14802" />
<path
d="m 88.135083,198.61539 q 0.134359,0 0.227376,0.0951 0.09302,0.093 0.09302,0.22531 0,0.13229 -0.09508,0.22531 -0.09302,0.093 -0.225309,0.093 -0.132291,0 -0.225309,-0.093 -0.09302,-0.093 -0.09302,-0.22531 0,-0.13229 0.09302,-0.22531 0.09302,-0.0951 0.225309,-0.0951 z m 0.289388,0.93637 v 1.53169 q 0,0.20464 0.04754,0.26252 0.04754,0.0558 0.186035,0.0641 v 0.0744 h -1.043863 v -0.0744 q 0.128158,-0.004 0.190169,-0.0744 0.04134,-0.0475 0.04134,-0.25218 v -1.12861 q 0,-0.20464 -0.04754,-0.26045 -0.04754,-0.0579 -0.183968,-0.0661 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14804" />
<path
d="m 89.646101,199.55176 v 0.25425 q 0.159163,-0.17363 0.293522,-0.24184 0.136425,-0.0703 0.297656,-0.0703 0.186035,0 0.312125,0.0868 0.12609,0.0868 0.194303,0.26459 0.165365,-0.18604 0.31626,-0.26872 0.152962,-0.0827 0.318326,-0.0827 0.200505,0 0.318327,0.093 0.119889,0.0909 0.165364,0.23358 0.04754,0.14056 0.04754,0.45062 v 0.79168 q 0,0.22324 0.03928,0.27699 0.04134,0.0537 0.169498,0.0703 v 0.0744 h -0.998388 v -0.0744 q 0.117822,-0.0103 0.173633,-0.0909 0.03721,-0.0558 0.03721,-0.25632 v -0.83095 q 0,-0.25839 -0.02067,-0.32867 -0.02067,-0.0703 -0.06615,-0.10335 -0.04341,-0.0351 -0.103353,-0.0351 -0.08888,0 -0.179834,0.0661 -0.09095,0.0641 -0.183968,0.1943 v 1.03766 q 0,0.20877 0.03514,0.26252 0.04754,0.0765 0.181901,0.0848 v 0.0744 h -1.000455 v -0.0744 q 0.08062,-0.004 0.12609,-0.0393 0.04754,-0.0372 0.06201,-0.0868 0.01654,-0.0517 0.01654,-0.22118 v -0.83095 q 0,-0.26252 -0.02067,-0.32867 -0.02067,-0.0661 -0.07028,-0.10335 -0.04754,-0.0372 -0.103353,-0.0372 -0.08268,0 -0.150895,0.0434 -0.09715,0.0641 -0.206705,0.21911 v 1.03766 q 0,0.20464 0.03927,0.27079 0.04134,0.0641 0.169498,0.0765 v 0.0744 h -0.996321 v -0.0744 q 0.121957,-0.0124 0.173633,-0.0786 0.03514,-0.0455 0.03514,-0.26872 v -1.0914 q 0,-0.21911 -0.04134,-0.27285 -0.03927,-0.0538 -0.167432,-0.0703 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14806" />
<path
d="m 94.241165,199.55176 v 1.51309 q 0,0.22117 0.04134,0.27698 0.04134,0.0538 0.167432,0.0682 v 0.0744 h -0.787548 v -0.25838 q -0.138493,0.16536 -0.276986,0.24184 -0.138493,0.0744 -0.310058,0.0744 -0.163298,0 -0.291455,-0.0992 -0.12609,-0.10129 -0.169499,-0.23564 -0.04341,-0.13436 -0.04341,-0.46923 v -0.76687 q 0,-0.21911 -0.04134,-0.27285 -0.03927,-0.0538 -0.167431,-0.0703 v -0.0765 h 0.787548 v 1.32085 q 0,0.20671 0.0186,0.26665 0.02067,0.06 0.06201,0.0909 0.04341,0.031 0.09922,0.031 0.07441,0 0.134358,-0.0393 0.08268,-0.0538 0.198438,-0.21705 v -1.03352 q 0,-0.21911 -0.04134,-0.27285 -0.03928,-0.0538 -0.167432,-0.0703 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14808" />
<path
d="m 95.4876,198.68153 v 2.40192 q 0,0.20464 0.04754,0.26252 0.04754,0.0558 0.186035,0.0641 v 0.0744 h -1.043863 v -0.0744 q 0.128157,-0.004 0.190169,-0.0744 0.04134,-0.0475 0.04134,-0.25218 v -2.00091 q 0,-0.20257 -0.04754,-0.25838 -0.04754,-0.0579 -0.183968,-0.0661 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14810" />
<path
d="m 96.971746,201.19921 q -0.353467,0.31212 -0.634586,0.31212 -0.165365,0 -0.274919,-0.10748 -0.109554,-0.10956 -0.109554,-0.27286 0,-0.22117 0.190169,-0.39687 0.190169,-0.17777 0.82889,-0.47129 v -0.1943 q 0,-0.21911 -0.02481,-0.27492 -0.02274,-0.0579 -0.08888,-0.0992 -0.06615,-0.0434 -0.148828,-0.0434 -0.134359,0 -0.221175,0.06 -0.05374,0.0372 -0.05374,0.0868 0,0.0434 0.05788,0.10749 0.07855,0.0889 0.07855,0.17157 0,0.10128 -0.07648,0.17363 -0.07441,0.0703 -0.19637,0.0703 -0.130225,0 -0.219108,-0.0786 -0.08682,-0.0786 -0.08682,-0.18397 0,-0.14883 0.117822,-0.28318 0.117823,-0.13643 0.328662,-0.20878 0.21084,-0.0723 0.438216,-0.0723 0.274918,0 0.434082,0.11782 0.16123,0.11575 0.208772,0.25218 0.02894,0.0868 0.02894,0.39894 v 0.75034 q 0,0.13229 0.01034,0.16743 0.01034,0.0331 0.03101,0.0496 0.02067,0.0165 0.04754,0.0165 0.05374,0 0.109553,-0.0765 l 0.06201,0.0496 q -0.103353,0.15296 -0.214974,0.22324 -0.109554,0.0682 -0.250113,0.0682 -0.165365,0 -0.258382,-0.0765 -0.09302,-0.0786 -0.113688,-0.23564 z m 0,-0.1509 v -0.64699 q -0.250114,0.14676 -0.37207,0.3142 -0.08062,0.11162 -0.08062,0.22531 0,0.0951 0.06821,0.16743 0.05168,0.0558 0.144694,0.0558 0.103353,0 0.239779,-0.11576 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14812" />
<path
d="m 99.598973,200.9863 0.06408,0.0496 q -0.136426,0.25631 -0.341064,0.38241 -0.202572,0.12402 -0.432015,0.12402 -0.386539,0 -0.618049,-0.29146 -0.231511,-0.29145 -0.231511,-0.70073 0,-0.39481 0.21084,-0.69453 0.254248,-0.36173 0.700732,-0.36173 0.299723,0 0.475423,0.15089 0.177766,0.1509 0.177766,0.33693 0,0.11782 -0.07235,0.1881 -0.07028,0.0703 -0.186035,0.0703 -0.121956,0 -0.202571,-0.0806 -0.07855,-0.0806 -0.09715,-0.28732 -0.0124,-0.13023 -0.05994,-0.1819 -0.04754,-0.0517 -0.111621,-0.0517 -0.09922,0 -0.169499,0.10542 -0.107487,0.15916 -0.107487,0.48783 0,0.27285 0.08682,0.52296 0.08682,0.24805 0.237711,0.37 0.113688,0.0889 0.268717,0.0889 0.101286,0 0.192236,-0.0476 0.09095,-0.0475 0.214974,-0.17983 z m -0.727603,0.47336 h 0.136425 l -0.09715,0.15089 q 0.124023,0.0207 0.188102,0.0992 0.06615,0.0806 0.06615,0.2005 0,0.10749 -0.06408,0.19637 -0.06408,0.0889 -0.163298,0.12403 -0.157096,0.0517 -0.475422,0.0496 v -0.0971 q 0.206705,-0.008 0.279052,-0.0682 0.07441,-0.0579 0.07441,-0.16123 0,-0.062 -0.04961,-0.10335 -0.04754,-0.0413 -0.138493,-0.0413 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14814" />
<path
d="m 100.9653,201.19921 q -0.35347,0.31212 -0.63459,0.31212 -0.16536,0 -0.27492,-0.10748 -0.109552,-0.10956 -0.109552,-0.27286 0,-0.22117 0.190172,-0.39687 0.19017,-0.17777 0.82889,-0.47129 v -0.1943 q 0,-0.21911 -0.0248,-0.27492 -0.0227,-0.0579 -0.0889,-0.0992 -0.0661,-0.0434 -0.14883,-0.0434 -0.13436,0 -0.22118,0.06 -0.0537,0.0372 -0.0537,0.0868 0,0.0434 0.0579,0.10749 0.0785,0.0889 0.0785,0.17157 0,0.10128 -0.0765,0.17363 -0.0744,0.0703 -0.19637,0.0703 -0.13022,0 -0.2191,-0.0786 -0.08682,-0.0786 -0.08682,-0.18397 0,-0.14883 0.117824,-0.28318 0.11782,-0.13643 0.32866,-0.20878 0.21084,-0.0723 0.43821,-0.0723 0.27492,0 0.43409,0.11782 0.16123,0.11575 0.20877,0.25218 0.0289,0.0868 0.0289,0.39894 v 0.75034 q 0,0.13229 0.0103,0.16743 0.0103,0.0331 0.031,0.0496 0.0207,0.0165 0.0475,0.0165 0.0537,0 0.10955,-0.0765 l 0.062,0.0496 q -0.10335,0.15296 -0.21497,0.22324 -0.10955,0.0682 -0.25011,0.0682 -0.16537,0 -0.25839,-0.0765 -0.093,-0.0786 -0.11368,-0.23564 z m 0,-0.1509 v -0.64699 q -0.25012,0.14676 -0.37207,0.3142 -0.0806,0.11162 -0.0806,0.22531 0,0.0951 0.0682,0.16743 0.0517,0.0558 0.14469,0.0558 0.10335,0 0.23978,-0.11576 z m 0.39894,-2.39571 h 0.10955 q 0.002,0.0413 0.002,0.0703 0,0.22738 -0.12815,0.36587 -0.12816,0.1385 -0.31006,0.1385 -0.13436,0 -0.339,-0.0972 -0.20257,-0.0971 -0.27079,-0.0971 -0.062,0 -0.10335,0.0413 -0.0413,0.0413 -0.0579,0.14883 h -0.11989 q -0.008,-0.26871 0.12196,-0.42168 0.13229,-0.15296 0.32453,-0.15296 0.062,0 0.10335,0.0124 0.0579,0.0165 0.19844,0.0827 0.2129,0.0971 0.30385,0.0971 0.0455,0 0.0868,-0.0372 0.0413,-0.0372 0.0786,-0.15089 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14816" />
<path
d="m 102.92693,199.49389 q 0.25218,0 0.46922,0.13022 0.21704,0.13023 0.32867,0.37 0.11368,0.23978 0.11368,0.52504 0,0.41134 -0.20877,0.68833 -0.25218,0.33486 -0.6966,0.33486 -0.43615,0 -0.67179,-0.30593 -0.23564,-0.30592 -0.23564,-0.709 0,-0.41547 0.23977,-0.72347 0.24185,-0.31005 0.66146,-0.31005 z m 0.008,0.14676 q -0.10542,0 -0.1819,0.0806 -0.0744,0.0786 -0.0992,0.3142 -0.0227,0.23357 -0.0227,0.65112 0,0.22117 0.0289,0.41341 0.0227,0.14676 0.0971,0.22324 0.0744,0.0765 0.1695,0.0765 0.093,0 0.15503,-0.0517 0.0806,-0.0703 0.10749,-0.19637 0.0413,-0.19638 0.0413,-0.79375 0,-0.3514 -0.0393,-0.48163 -0.0393,-0.13229 -0.11576,-0.19223 -0.0537,-0.0434 -0.14056,-0.0434 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14818" />
<path
d="m 82.628447,205.01659 q -0.07648,0.37414 -0.299723,0.57671 -0.223242,0.2005 -0.494026,0.2005 -0.322461,0 -0.562239,-0.27078 -0.239779,-0.27079 -0.239779,-0.73174 0,-0.44648 0.264583,-0.72553 0.266651,-0.27906 0.638721,-0.27906 0.279052,0 0.458886,0.14883 0.179834,0.14676 0.179834,0.30592 0,0.0786 -0.05168,0.12816 -0.04961,0.0475 -0.140559,0.0475 -0.121957,0 -0.183968,-0.0785 -0.03514,-0.0434 -0.04754,-0.16537 -0.01033,-0.12195 -0.08268,-0.18603 -0.07235,-0.062 -0.200504,-0.062 -0.206706,0 -0.332796,0.15296 -0.167432,0.20257 -0.167432,0.53536 0,0.339 0.165365,0.59945 0.167431,0.25838 0.450618,0.25838 0.202571,0 0.363802,-0.13849 0.113688,-0.0951 0.221175,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14820" />
<path
d="m 83.823205,203.78669 q 0.429948,0 0.690397,0.3266 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121956,0.5147 -0.121957,0.26045 -0.336931,0.39274 -0.212906,0.13229 -0.475422,0.13229 -0.427881,0 -0.680062,-0.34106 -0.212906,-0.28732 -0.212906,-0.64492 0,-0.26045 0.128157,-0.51677 0.130225,-0.25838 0.341064,-0.38033 0.21084,-0.12403 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0661 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41962 0,0.41341 0.163297,0.71313 0.165365,0.29972 0.434082,0.29972 0.200504,0 0.330729,-0.16536 0.130224,-0.16537 0.130224,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14822" />
<path
d="m 85.576068,204.18977 q 0.206706,-0.20671 0.243913,-0.23771 0.09302,-0.0786 0.200504,-0.12196 0.107487,-0.0434 0.212907,-0.0434 0.177767,0 0.305924,0.10336 0.128158,0.10335 0.171566,0.29972 0.212907,-0.24805 0.359667,-0.32453 0.146761,-0.0785 0.301791,-0.0785 0.150895,0 0.26665,0.0785 0.117822,0.0765 0.186035,0.25218 0.04547,0.11989 0.04547,0.37621 v 0.81442 q 0,0.17776 0.02687,0.24391 0.02067,0.0455 0.07648,0.0786 0.05581,0.031 0.181901,0.031 v 0.0744 h -0.934309 v -0.0744 h 0.03927 q 0.121956,0 0.190169,-0.0475 0.04754,-0.0331 0.06821,-0.10542 0.0083,-0.0351 0.0083,-0.2005 v -0.81442 q 0,-0.23151 -0.05581,-0.3266 -0.08062,-0.13229 -0.258382,-0.13229 -0.109554,0 -0.221175,0.0558 -0.109554,0.0537 -0.26665,0.20257 l -0.0041,0.0227 0.0041,0.0889 v 0.90331 q 0,0.1943 0.02067,0.24184 0.02274,0.0475 0.08268,0.0806 0.05994,0.031 0.204638,0.031 v 0.0744 h -0.957046 v -0.0744 q 0.157096,0 0.214974,-0.0372 0.05994,-0.0372 0.08268,-0.11162 0.01033,-0.0351 0.01033,-0.20463 v -0.81442 q 0,-0.23151 -0.06821,-0.3328 -0.09095,-0.13229 -0.254248,-0.13229 -0.111621,0 -0.221175,0.0599 -0.171565,0.0909 -0.264583,0.20464 v 1.01493 q 0,0.18603 0.02481,0.24184 0.02687,0.0558 0.07648,0.0848 0.05168,0.0269 0.206706,0.0269 v 0.0744 h -0.936377 v -0.0744 q 0.130225,0 0.181901,-0.0269 0.05168,-0.0289 0.07855,-0.0889 0.02687,-0.062 0.02687,-0.23771 v -0.72347 q 0,-0.31213 -0.0186,-0.40308 -0.01447,-0.0682 -0.04548,-0.093 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.03101,-0.0744 0.570507,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14824" />
<path
d="m 89.681241,204.55564 q -0.0021,0.42168 0.204638,0.66146 0.206706,0.23977 0.485758,0.23977 0.186035,0 0.322461,-0.10128 0.138493,-0.10336 0.23151,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.252181,0.51676 -0.208773,0.23151 -0.522965,0.23151 -0.341064,0 -0.584977,-0.26458 -0.241845,-0.26665 -0.241845,-0.7152 0,-0.48576 0.248046,-0.75654 0.250114,-0.27285 0.626318,-0.27285 0.318327,0 0.522965,0.21084 0.204639,0.20877 0.204639,0.56017 z m 0,-0.11989 h 0.876431 q -0.01033,-0.1819 -0.04341,-0.25632 -0.05168,-0.11575 -0.155029,-0.1819 -0.101286,-0.0661 -0.212907,-0.0661 -0.171566,0 -0.307991,0.13436 -0.134359,0.13229 -0.157096,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14826" />
<path
d="m 91.793771,203.78669 v 0.42582 q 0.237712,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0723 -0.132291,-0.0723 -0.03721,0 -0.08062,0.0413 -0.09302,0.0848 -0.192236,0.27905 v 0.90744 q 0,0.15709 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.19637,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14828" />
<path
d="m 93.207637,203.78669 v 0.42582 q 0.237712,-0.42582 0.487825,-0.42582 0.113689,0 0.188103,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0723 -0.132291,-0.0723 -0.03721,0 -0.08061,0.0413 -0.09302,0.0848 -0.192237,0.27905 v 0.90744 q 0,0.15709 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.19637,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14830" />
<path
d="m 94.993573,203.78669 q 0.429948,0 0.690397,0.3266 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121956,0.5147 -0.121957,0.26045 -0.33693,0.39274 -0.212907,0.13229 -0.475423,0.13229 -0.427881,0 -0.680061,-0.34106 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128157,-0.51677 0.130225,-0.25838 0.341064,-0.38033 0.21084,-0.12403 0.446484,-0.12403 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0661 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41962 0,0.41341 0.163298,0.71313 0.165364,0.29972 0.434081,0.29972 0.200505,0 0.330729,-0.16536 0.130225,-0.16537 0.130225,-0.56844 0,-0.50436 -0.217041,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14832" />
<path
d="m 124.42457,202.35709 c -1.42341,0 -2.46289,0.90917 -2.46289,1.91796 v 0.13282 c 0,1.0088 1.03907,1.91601 2.46289,1.91601 h 25.26172 c 1.42382,0 2.46289,-0.90721 2.46289,-1.91601 v -0.13282 c 0,-1.00879 -1.03948,-1.91796 -2.46289,-1.91796 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34621-0" />
<path
d="m 124.42432,201.84398 h 25.26282 c 1.64901,0 2.97656,1.08427 2.97656,2.43111 v 0.13229 c 0,1.34683 -1.32755,2.43111 -2.97656,2.43111 h -25.26282 c -1.64902,0 -2.97657,-1.08428 -2.97657,-2.43111 v -0.13229 c 0,-1.34684 1.32755,-2.43111 2.97657,-2.43111 z"
style="fill:#c8c8c8;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-3-8-6-1" />
<path
d="m 124.99416,202.93555 v 1.10174 h 0.51057 q 0.1757,0 0.25631,-0.0765 0.0827,-0.0786 0.10955,-0.308 h 0.0765 v 0.94878 h -0.0765 q -0.002,-0.16329 -0.0434,-0.23978 -0.0393,-0.0765 -0.11162,-0.11368 -0.0703,-0.0393 -0.21084,-0.0393 h -0.51056 v 0.88057 q 0,0.2129 0.0269,0.28112 0.0207,0.0517 0.0868,0.0889 0.091,0.0496 0.19017,0.0496 h 0.10129 v 0.0765 h -1.20303 v -0.0765 h 0.0992 q 0.17363,0 0.25218,-0.10129 0.0496,-0.0661 0.0496,-0.31832 v -1.81074 q 0,-0.21291 -0.0269,-0.28112 -0.0207,-0.0517 -0.0847,-0.0889 -0.0889,-0.0496 -0.19017,-0.0496 h -0.0992 v -0.0765 h 2.08566 l 0.0269,0.61599 h -0.0724 q -0.0537,-0.19637 -0.12609,-0.28732 -0.0703,-0.093 -0.1757,-0.13436 -0.10335,-0.0413 -0.32246,-0.0413 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14837" />
<path
d="m 127.09842,202.64616 q 0.0868,0 0.14677,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14677,0.062 -0.0868,0 -0.14882,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14839" />
<path
d="m 128.35313,204.03935 q 0.2067,-0.2067 0.24391,-0.23771 0.093,-0.0786 0.2005,-0.12195 0.10749,-0.0434 0.21291,-0.0434 0.17777,0 0.30592,0.10335 0.12816,0.10335 0.17157,0.29972 0.21291,-0.24804 0.35967,-0.32452 0.14676,-0.0786 0.30179,-0.0786 0.15089,0 0.26665,0.0786 0.11782,0.0765 0.18603,0.25218 0.0455,0.11989 0.0455,0.3762 v 0.81442 q 0,0.17777 0.0269,0.24391 0.0207,0.0455 0.0765,0.0786 0.0558,0.031 0.1819,0.031 v 0.0744 h -0.9343 v -0.0744 h 0.0393 q 0.12195,0 0.19016,-0.0476 0.0475,-0.0331 0.0682,-0.10541 0.008,-0.0351 0.008,-0.20051 v -0.81442 q 0,-0.23151 -0.0558,-0.32659 -0.0806,-0.1323 -0.25838,-0.1323 -0.10955,0 -0.22117,0.0558 -0.10956,0.0538 -0.26665,0.20258 l -0.004,0.0227 0.004,0.0889 v 0.9033 q 0,0.1943 0.0207,0.24185 0.0227,0.0475 0.0827,0.0806 0.0599,0.031 0.20464,0.031 v 0.0744 h -0.95708 v -0.0744 q 0.1571,0 0.21498,-0.0372 0.0599,-0.0372 0.0827,-0.11162 0.0103,-0.0351 0.0103,-0.20464 v -0.81442 q 0,-0.23151 -0.0682,-0.3328 -0.0909,-0.13229 -0.25425,-0.13229 -0.11162,0 -0.22117,0.06 -0.17157,0.0909 -0.26459,0.20464 v 1.01492 q 0,0.18604 0.0248,0.24185 0.0269,0.0558 0.0765,0.0848 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 q 0.13023,0 0.1819,-0.0269 0.0517,-0.0289 0.0786,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -0.72347 q 0,-0.31212 -0.0186,-0.40307 -0.0145,-0.0682 -0.0455,-0.093 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14841" />
<path
d="m 133.47736,205.3726 q -0.1385,0.1447 -0.27079,0.20878 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25632,-0.74414 0.25631,-0.339 0.65939,-0.339 0.25011,0 0.41341,0.15916 v -0.34933 q 0,-0.32453 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10129 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14263,0.0331 l -0.0269,-0.0724 0.56431,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14883,-0.0351 l 0.0227,0.0724 -0.56224,0.23358 h -0.0951 z m 0,-0.14469 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16537,-0.17364 -0.10128,-0.0599 -0.19843,-0.0599 -0.18191,0 -0.32453,0.1633 -0.1881,0.21497 -0.1881,0.62838 0,0.41755 0.1819,0.64079 0.1819,0.22117 0.40514,0.22117 0.1881,0 0.3638,-0.1881 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14843" />
<path
d="m 135.32944,205.31266 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.0909,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.18191,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16744,-0.1509 v 0.11576 q -0.23152,0.31006 -0.44236,0.31006 -0.10128,0 -0.16122,-0.0703 -0.06,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14845" />
<path
d="m 138.41555,203.63628 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12195,-0.10956 -0.31212,-0.10956 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.16949 0,0.11576 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14677 q 0.41961,0.20463 0.41961,0.5395 0,0.25838 -0.19637,0.41754 -0.1943,0.1571 -0.43615,0.1571 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22117,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0848 0.091,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39895,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29765 0,-0.23358 0.15917,-0.39068 0.16123,-0.15709 0.41547,-0.15709 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14847" />
<path
d="m 139.76327,203.63628 q 0.42995,0 0.6904,0.32659 0.22117,0.27906 0.22117,0.64079 0,0.25425 -0.12195,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68007,-0.34107 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0661 -0.10956,0.0641 -0.17777,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71313 0.16536,0.29973 0.43408,0.29973 0.20051,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19843 -0.37413,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14849" />
<path
d="m 141.60502,202.64616 v 2.51147 q 0,0.17777 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.9281 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14851" />
<path
d="m 143.78783,203.69209 v 1.14721 q 0,0.32867 0.0145,0.40308 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0724 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26458 -0.37207,0.3328 -0.12816,0.0682 -0.27078,0.0682 -0.15917,0 -0.27699,-0.0909 -0.11575,-0.093 -0.16123,-0.23771 -0.0455,-0.1447 -0.0455,-0.40928 v -0.84543 q 0,-0.13435 -0.0289,-0.18603 -0.0289,-0.0517 -0.0868,-0.0786 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66353 v 1.2671 q 0,0.26459 0.0909,0.34727 0.093,0.0827 0.22324,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.21291 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14853" />
<path
d="m 145.85282,204.86618 q -0.0765,0.37413 -0.29972,0.5767 -0.22325,0.20051 -0.49403,0.20051 -0.32246,0 -0.56224,-0.27079 -0.23978,-0.27078 -0.23978,-0.73173 0,-0.44649 0.26459,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18604 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.339 0.16536,0.59945 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z m -0.76895,0.68626 h 0.12403 l -0.10336,0.1633 q 0.13023,0.0331 0.19431,0.11162 0.0641,0.0785 0.0641,0.19017 0,0.14882 -0.12402,0.26044 -0.12403,0.11369 -0.3204,0.11369 -0.0765,0 -0.1943,-0.0145 v -0.0889 q 0.0579,0.008 0.0992,0.008 0.10542,0 0.17777,-0.0703 0.0724,-0.0682 0.0724,-0.1571 0,-0.062 -0.0475,-0.10748 -0.0475,-0.0455 -0.11783,-0.0455 -0.0207,0 -0.0537,0.004 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14855" />
<path
d="m 147.19434,205.31266 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28318 -0.091,-0.3886 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.06 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12402 -0.40308,0.1757 -0.16329,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.20671 z m -0.85163,-1.86035 h -0.0662 q 0.008,-0.28319 0.11782,-0.40928 0.10956,-0.12609 0.27079,-0.12609 0.0848,0 0.15503,0.0269 0.093,0.0351 0.26251,0.14882 0.17157,0.11162 0.25425,0.11162 0.0661,0 0.11576,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19224 -0.0517,0.30593 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19224,0.062 -0.16329,0 -0.40514,-0.16537 -0.13022,-0.0889 -0.1757,-0.10748 -0.0455,-0.0186 -0.0889,-0.0186 -0.0848,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14857" />
<path
d="m 148.92446,203.63628 q 0.42995,0 0.6904,0.32659 0.22117,0.27906 0.22117,0.64079 0,0.25425 -0.12195,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34107 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51676 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0661 -0.10956,0.0641 -0.17777,0.22738 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71313 0.16536,0.29973 0.43408,0.29973 0.20051,0 0.33073,-0.16537 0.13023,-0.16536 0.13023,-0.56844 0,-0.50436 -0.21705,-0.79375 -0.14676,-0.19843 -0.37413,-0.19843 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-miterlimit:4;stroke-dasharray:none"
id="path14859" />
<path
d="m 82.163906,137.68164 v 4.03516 h 12.611329 v -4.03516 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-9-3" />
<path
d="m 81.63855,137.15683 h 13.661816 v 5.08618 H 81.63855 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-06-6" />
<path
d="m 84.934906,138.04306 q 0.128157,0 0.214973,0.0889 0.08888,0.0889 0.08888,0.21498 0,0.12609 -0.08888,0.21497 -0.08888,0.0889 -0.214973,0.0889 -0.124024,0 -0.212907,-0.0889 -0.08888,-0.0889 -0.08888,-0.21497 0,-0.12609 0.08682,-0.21498 0.08888,-0.0889 0.214974,-0.0889 z m 0.128157,0.95085 -0.423746,1.46967 q -0.03514,0.12609 -0.03514,0.16537 0,0.0227 0.0186,0.0434 0.0186,0.0186 0.03927,0.0186 0.03514,0 0.07028,-0.031 0.09302,-0.0765 0.223242,-0.27698 l 0.07028,0.0413 q -0.312125,0.54363 -0.663525,0.54363 -0.134358,0 -0.214974,-0.0744 -0.07855,-0.0765 -0.07855,-0.19224 0,-0.0765 0.03514,-0.1943 l 0.287321,-0.98805 q 0.04134,-0.14263 0.04134,-0.21498 0,-0.0455 -0.03927,-0.0806 -0.03927,-0.0351 -0.107487,-0.0351 -0.03101,0 -0.07441,0.002 l 0.02687,-0.0827 0.700732,-0.11368 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14864" />
<path
d="m 86.371509,138.48954 -0.165364,0.56224 h 0.270784 l -0.07235,0.23772 h -0.26665 l -0.345198,1.19889 q -0.03307,0.11162 -0.03307,0.1695 0,0.0269 0.0186,0.0475 0.0186,0.0186 0.04134,0.0186 0.03514,0 0.07235,-0.0289 0.09508,-0.0723 0.221175,-0.25218 l 0.07235,0.0455 q -0.142627,0.24804 -0.314192,0.3638 -0.171566,0.11575 -0.33693,0.11575 -0.14056,0 -0.219108,-0.0703 -0.07648,-0.0723 -0.07648,-0.1819 0,-0.11989 0.05374,-0.30799 l 0.326595,-1.11827 h -0.28112 l 0.04134,-0.15297 q 0.264584,-0.0971 0.446484,-0.22737 0.181901,-0.13023 0.438216,-0.41962 z"
style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14866" />
<path
d="m 87.467049,139.08486 h 2.230353 v 0.1695 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14868" />
<path
d="m 90.991378,139.52514 q 0,-0.47956 0.144694,-0.82476 0.144694,-0.34726 0.384472,-0.51676 0.186035,-0.13436 0.384472,-0.13436 0.322461,0 0.578776,0.32866 0.320394,0.40721 0.320394,1.10381 0,0.48783 -0.14056,0.82889 -0.14056,0.34106 -0.359668,0.49609 -0.217041,0.15297 -0.419612,0.15297 -0.401009,0 -0.667659,-0.47336 -0.225309,-0.39894 -0.225309,-0.96118 z m 0.405143,0.0517 q 0,0.57877 0.142627,0.94464 0.117822,0.30799 0.351399,0.30799 0.111621,0 0.23151,-0.0992 0.11989,-0.10128 0.181901,-0.33693 0.09509,-0.35553 0.09509,-1.00252 0,-0.47956 -0.09922,-0.79995 -0.07441,-0.23771 -0.192236,-0.33693 -0.08475,-0.0682 -0.204639,-0.0682 -0.140559,0 -0.250113,0.12609 -0.148828,0.17156 -0.202572,0.5395 -0.05374,0.36794 -0.05374,0.72554 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14870" />
<path
d="m 69.924518,92.904358 v 8.156252 h 37.089842 v -8.156252 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-6-0" />
<path
d="M 69.399162,92.379548 H 107.53975 V 101.586 H 69.399162 Z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-6-5" />
<path
d="m 73.394404,93.265778 0.06408,0.95291 h -0.06408 q -0.128157,-0.42788 -0.365869,-0.61598 -0.237711,-0.1881 -0.570507,-0.1881 -0.279052,0 -0.504361,0.14263 -0.22531,0.14056 -0.355534,0.45061 -0.128157,0.31006 -0.128157,0.77102 0,0.38033 0.121956,0.65939 0.121956,0.27905 0.365869,0.42788 0.245979,0.14882 0.560172,0.14882 0.272851,0 0.481624,-0.11575 0.208772,-0.11782 0.458886,-0.46509 l 0.06408,0.0413 q -0.21084,0.37414 -0.49196,0.54777 -0.281119,0.17364 -0.667658,0.17364 -0.696598,0 -1.079003,-0.51677 -0.285254,-0.38447 -0.285254,-0.90537 0,-0.41961 0.188102,-0.77101 0.188102,-0.3514 0.516764,-0.54364 0.330729,-0.1943 0.721402,-0.1943 0.303857,0 0.599446,0.14883 0.08682,0.0455 0.124024,0.0455 0.05581,0 0.09715,-0.0393 0.05374,-0.0558 0.07648,-0.15503 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14875" />
<path
d="m 74.87855,95.859938 q -0.291455,0.2253 -0.365869,0.26044 -0.111621,0.0517 -0.237711,0.0517 -0.19637,0 -0.324528,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.06201,-0.23978 0.08475,-0.14056 0.293521,-0.26459 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,0 -0.206706,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.126091,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.3266 0.181901,-0.14883 0.510562,-0.14883 0.252181,0 0.413412,0.0847 0.121956,0.0641 0.179833,0.20051 0.03721,0.0889 0.03721,0.3638 v 0.64285 q 0,0.27079 0.01034,0.3328 0.01034,0.0599 0.03307,0.0806 0.0248,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.101286,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312125,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204638,0.0971 0.157096,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14877" />
<path
d="m 76.333757,93.193428 v 2.51148 q 0,0.17776 0.02481,0.23564 0.02687,0.0579 0.08062,0.0889 0.05374,0.0289 0.200504,0.0289 v 0.0744 h -0.928107 v -0.0744 q 0.130224,0 0.177766,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02687,-0.062 0.02687,-0.23771 v -1.71979 q 0,-0.3204 -0.01447,-0.39274 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08062,-0.0269 -0.05374,0 -0.136425,0.0331 l -0.03514,-0.0724 0.564306,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14879" />
<path
d="m 78.464891,95.413448 q -0.07648,0.37414 -0.299723,0.57671 -0.223242,0.2005 -0.494026,0.2005 -0.322461,0 -0.562239,-0.27078 -0.239778,-0.27078 -0.239778,-0.73174 0,-0.44648 0.264583,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.279052,0 0.458886,0.14883 0.179834,0.14676 0.179834,0.30593 0,0.0785 -0.05168,0.12815 -0.04961,0.0476 -0.14056,0.0476 -0.121956,0 -0.183968,-0.0786 -0.03514,-0.0434 -0.04754,-0.16537 -0.01034,-0.12195 -0.08268,-0.18603 -0.07235,-0.062 -0.200504,-0.062 -0.206706,0 -0.332796,0.15296 -0.167431,0.20257 -0.167431,0.53537 0,0.33899 0.165364,0.59944 0.167432,0.25838 0.450618,0.25838 0.202572,0 0.363802,-0.13849 0.113688,-0.0951 0.221175,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14881" />
<path
d="m 80.393454,94.239358 v 1.14722 q 0,0.32866 0.01447,0.40308 0.01654,0.0723 0.04961,0.10128 0.03514,0.0289 0.08062,0.0289 0.06408,0 0.144694,-0.0351 l 0.02894,0.0724 -0.566373,0.23357 h -0.09302 v -0.401 q -0.243912,0.26458 -0.37207,0.33279 -0.128157,0.0682 -0.270784,0.0682 -0.159163,0 -0.276986,-0.0909 -0.115755,-0.093 -0.16123,-0.23771 -0.04548,-0.14469 -0.04548,-0.40927 v -0.84543 q 0,-0.13436 -0.02894,-0.18604 -0.02894,-0.0517 -0.08682,-0.0785 -0.05581,-0.0289 -0.204639,-0.0269 v -0.0765 h 0.663525 v 1.26711 q 0,0.26458 0.09095,0.34726 0.09302,0.0827 0.223242,0.0827 0.08888,0 0.200505,-0.0558 0.113688,-0.0558 0.268717,-0.21291 v -1.0728 q 0,-0.16123 -0.05994,-0.21704 -0.05788,-0.0579 -0.243912,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14883" />
<path
d="m 81.501396,93.193428 v 2.51148 q 0,0.17776 0.02481,0.23564 0.02687,0.0579 0.08061,0.0889 0.05374,0.0289 0.200504,0.0289 v 0.0744 h -0.928108 v -0.0744 q 0.130225,0 0.177767,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02687,-0.062 0.02687,-0.23771 v -1.71979 q 0,-0.3204 -0.01447,-0.39274 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08062,-0.0269 -0.05374,0 -0.136426,0.0331 l -0.03514,-0.0724 0.564307,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14885" />
<path
d="m 83.097163,95.859938 q -0.291455,0.2253 -0.365869,0.26044 -0.111621,0.0517 -0.237711,0.0517 -0.196371,0 -0.324528,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26459 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.126091,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.3266 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.20051 0.03721,0.0889 0.03721,0.3638 v 0.64285 q 0,0.27079 0.01033,0.3328 0.01034,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.101286,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312126,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14887" />
<path
d="m 84.455218,94.183548 v 0.42582 q 0.237712,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0723 -0.132291,-0.0723 -0.03721,0 -0.08062,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90744 q 0,0.15709 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.19637,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01034,-0.0351 0.01034,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14889" />
<path
d="m 87.446248,95.859938 q -0.291455,0.2253 -0.365869,0.26044 -0.111621,0.0517 -0.237711,0.0517 -0.196371,0 -0.324528,-0.13436 -0.126091,-0.13436 -0.126091,-0.35346 0,-0.1385 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26459 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.3266 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.20051 0.03721,0.0889 0.03721,0.3638 v 0.64285 q 0,0.27079 0.01034,0.3328 0.01033,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.1509 v 0.11576 q -0.231511,0.31005 -0.44235,0.31005 -0.101286,0 -0.161231,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312126,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14891" />
<path
d="m 89.474029,94.183548 v 0.64492 h -0.06821 q -0.07855,-0.30385 -0.202571,-0.41341 -0.121956,-0.10955 -0.312126,-0.10955 -0.144693,0 -0.233577,0.0765 -0.08888,0.0765 -0.08888,0.1695 0,0.11575 0.06615,0.19844 0.06408,0.0847 0.260449,0.17983 l 0.30179,0.14676 q 0.419612,0.20464 0.419612,0.5395 0,0.25838 -0.19637,0.41755 -0.194304,0.15709 -0.436149,0.15709 -0.173633,0 -0.396875,-0.062 -0.06821,-0.0207 -0.111621,-0.0207 -0.04754,0 -0.07441,0.0538 h -0.06821 v -0.67593 h 0.06821 q 0.05788,0.28939 0.221175,0.43615 0.163298,0.14676 0.365869,0.14676 0.142627,0 0.23151,-0.0827 0.09095,-0.0848 0.09095,-0.20258 0,-0.14262 -0.101286,-0.23977 -0.09922,-0.0972 -0.398942,-0.24598 -0.299723,-0.14883 -0.39274,-0.26872 -0.09302,-0.11782 -0.09302,-0.29766 0,-0.23357 0.159164,-0.39067 0.16123,-0.1571 0.415478,-0.1571 0.111621,0 0.270784,0.0476 0.10542,0.031 0.14056,0.031 0.03307,0 0.05168,-0.0145 0.0186,-0.0145 0.04341,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14893" />
<path
d="m 90.856889,94.239358 h 0.890901 v 0.0765 h -0.05788 q -0.08061,0 -0.124024,0.0393 -0.04134,0.0393 -0.04134,0.10542 0,0.0724 0.04341,0.17156 l 0.440283,1.04593 0.44235,-1.0852 q 0.04754,-0.11575 0.04754,-0.1757 0,-0.0289 -0.01654,-0.0475 -0.02274,-0.031 -0.05788,-0.0413 -0.03514,-0.0124 -0.142626,-0.0124 v -0.0765 h 0.618049 v 0.0765 q -0.107487,0.008 -0.148828,0.0434 -0.07235,0.062 -0.130224,0.20671 l -0.671793,1.6247 h -0.08475 l -0.675919,-1.59795 q -0.04547,-0.11162 -0.08682,-0.15916 -0.04134,-0.0496 -0.10542,-0.0827 -0.03514,-0.0186 -0.138493,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14895" />
<path
d="m 94.143508,95.859938 q -0.291455,0.2253 -0.365869,0.26044 -0.111621,0.0517 -0.237712,0.0517 -0.19637,0 -0.324527,-0.13436 -0.126091,-0.13436 -0.126091,-0.35346 0,-0.1385 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26459 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.12609,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.3266 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.20051 0.03721,0.0889 0.03721,0.3638 v 0.64285 q 0,0.27079 0.01034,0.3328 0.01033,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.1509 v 0.11576 q -0.231511,0.31005 -0.44235,0.31005 -0.101286,0 -0.161231,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312126,0.12403 -0.403076,0.1757 -0.163298,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14897" />
<path
d="m 95.501563,94.183548 v 0.42582 q 0.237711,-0.42582 0.487825,-0.42582 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15917 0,0.0806 -0.05374,0.13642 -0.05374,0.0558 -0.128158,0.0558 -0.07235,0 -0.163297,-0.0703 -0.08888,-0.0723 -0.132292,-0.0723 -0.03721,0 -0.08062,0.0413 -0.09302,0.0847 -0.192236,0.27905 v 0.90744 q 0,0.15709 0.03927,0.23771 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.19637,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214974,-0.0455 0.05168,-0.0331 0.07235,-0.10542 0.01033,-0.0351 0.01033,-0.20051 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572575,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14899" />
<path
d="m 96.843082,93.193428 q 0.08682,0 0.146761,0.062 0.06201,0.0599 0.06201,0.14676 0,0.0868 -0.06201,0.14882 -0.05994,0.062 -0.146761,0.062 -0.08682,0 -0.148828,-0.062 -0.06201,-0.062 -0.06201,-0.14882 0,-0.0868 0.05994,-0.14676 0.06201,-0.062 0.150895,-0.062 z m 0.171566,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.02687,0.0579 0.07648,0.0868 0.05168,0.0289 0.186035,0.0289 v 0.0744 h -0.919839 v -0.0744 q 0.138492,0 0.186035,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02894,-0.062 0.02894,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.01447,-0.0661 -0.04547,-0.0909 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.14056,0.031 l -0.02894,-0.0744 0.570507,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14901" />
<path
d="m 98.608348,95.859938 q -0.291455,0.2253 -0.365869,0.26044 -0.111621,0.0517 -0.237712,0.0517 -0.19637,0 -0.324527,-0.13436 -0.126091,-0.13436 -0.126091,-0.35346 0,-0.1385 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26459 0.210839,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.126091,-0.0537 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17777 0.181901,-0.3266 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.20051 0.03721,0.0889 0.03721,0.3638 v 0.64285 q 0,0.27079 0.01033,0.3328 0.01033,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167431,-0.1509 v 0.11576 q -0.23151,0.31005 -0.442349,0.31005 -0.101286,0 -0.161231,-0.0703 -0.05994,-0.0703 -0.06201,-0.23977 z m 0,-0.13436 v -0.72141 q -0.312126,0.12403 -0.403076,0.1757 -0.163298,0.0909 -0.233578,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.24805 0.08888,0.0971 0.204638,0.0971 0.157097,0 0.413412,-0.2067 z m 0.204638,-2.466 -0.609781,0.71313 h -0.07028 l 0.217041,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14903" />
<path
d="m 99.31528,94.239358 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.04134,0.0393 -0.04134,0.10542 0,0.0724 0.04341,0.17156 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.20671 l -0.67179,1.6247 h -0.0847 l -0.675921,-1.59795 q -0.04547,-0.11162 -0.08682,-0.15916 -0.04134,-0.0496 -0.10542,-0.0827 -0.03514,-0.0186 -0.138493,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14905" />
<path
d="m 101.84742,94.952498 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18604,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87644 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14907" />
<path
d="m 103.88761,93.193428 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14909" />
<path
d="m 105.80377,94.183548 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.25838 -0.19638,0.41755 -0.1943,0.15709 -0.43614,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.091,-0.0848 0.091,-0.20258 0,-0.14262 -0.10129,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14911" />
<path
d="m 76.288282,98.817898 q 0.332796,-0.40101 0.634586,-0.40101 0.155029,0 0.26665,0.0786 0.111621,0.0765 0.177767,0.25425 0.04548,0.12402 0.04548,0.38033 v 0.80822 q 0,0.179842 0.02894,0.243922 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132291,0 0.183968,-0.0393 0.05374,-0.0414 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.194312 v -0.77514 q 0,-0.25838 -0.06821,-0.37414 -0.06615,-0.11782 -0.225309,-0.11782 -0.245979,0 -0.489892,0.26872 v 0.99838 q 0,0.192242 0.02274,0.237722 0.02894,0.0599 0.07855,0.0889 0.05168,0.0269 0.206705,0.0269 v 0.0744 h -0.936376 v -0.0744 h 0.04134 q 0.144694,0 0.194303,-0.0724 0.05168,-0.0744 0.05168,-0.281122 v -0.7028 q 0,-0.34106 -0.01654,-0.41547 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.03101,-0.0744 0.570508,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14913" />
<path
d="m 78.925845,100.09327 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237711,0.0517 -0.196371,0 -0.324528,-0.13436 -0.12609,-0.13436 -0.12609,-0.353472 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.126091,0.0517 -0.07648,0 -0.12609,-0.0538 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17776 0.181901,-0.32659 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.36381 v 0.64285 q 0,0.27078 0.01033,0.332802 0.01034,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.150892 v 0.115752 q -0.23151,0.31006 -0.44235,0.31006 -0.101286,0 -0.16123,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.134362 v -0.7214 q -0.312126,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.248052 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.206712 z m -0.851627,-1.86035 h -0.06615 q 0.0083,-0.28318 0.117822,-0.40927 0.109554,-0.12609 0.270785,-0.12609 0.08475,0 0.155029,0.0269 0.09302,0.0351 0.262516,0.14883 0.171565,0.11162 0.254248,0.11162 0.06614,0 0.115755,-0.0558 0.05168,-0.0558 0.08061,-0.23151 h 0.06408 q 0.0021,0.19223 -0.05168,0.30592 -0.05168,0.11162 -0.148828,0.1757 -0.09508,0.062 -0.192236,0.062 -0.163297,0 -0.405143,-0.16536 -0.130224,-0.0889 -0.175699,-0.10749 -0.04548,-0.0186 -0.08888,-0.0186 -0.08475,0 -0.134358,0.0744 -0.02274,0.0351 -0.05788,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14915" />
<path
d="m 80.65597,98.416888 q 0.429948,0 0.690397,0.3266 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121956,0.5147 -0.121957,0.260452 -0.336931,0.392742 -0.212906,0.13229 -0.475422,0.13229 -0.427881,0 -0.680062,-0.34106 -0.212906,-0.287322 -0.212906,-0.644922 0,-0.26045 0.128157,-0.51677 0.130225,-0.25838 0.341064,-0.38034 0.21084,-0.12402 0.446484,-0.12402 z m -0.06408,0.13436 q -0.109554,0 -0.221175,0.0662 -0.109554,0.0641 -0.177767,0.22737 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71314 0.165365,0.299722 0.434082,0.299722 0.200504,0 0.330729,-0.16536 0.130224,-0.165372 0.130224,-0.568442 0,-0.50437 -0.21704,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14917" />
<path
d="m 83.386551,97.426768 q 0.08682,0 0.146761,0.062 0.06201,0.06 0.06201,0.14676 0,0.0868 -0.06201,0.14883 -0.05994,0.062 -0.146761,0.062 -0.08682,0 -0.148828,-0.062 -0.06201,-0.062 -0.06201,-0.14883 0,-0.0868 0.05994,-0.14676 0.06201,-0.062 0.150895,-0.062 z m 0.171565,0.99012 v 1.52135 q 0,0.177772 0.02481,0.237722 0.02687,0.0579 0.07648,0.0868 0.05168,0.0289 0.186035,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.138493,0 0.186035,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02894,-0.062 0.02894,-0.237722 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.01447,-0.0661 -0.04548,-0.0909 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.14056,0.031 l -0.02894,-0.0744 0.570507,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14919" />
<path
d="m 84.630918,98.817898 q 0.332796,-0.40101 0.634586,-0.40101 0.155029,0 0.26665,0.0786 0.111621,0.0765 0.177767,0.25425 0.04547,0.12402 0.04547,0.38033 v 0.80822 q 0,0.179842 0.02894,0.243922 0.02274,0.0517 0.07235,0.0806 0.05168,0.0289 0.188102,0.0289 v 0.0744 h -0.936376 v -0.0744 h 0.03927 q 0.132292,0 0.183968,-0.0393 0.05374,-0.0414 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.194312 v -0.77514 q 0,-0.25838 -0.06821,-0.37414 -0.06614,-0.11782 -0.225309,-0.11782 -0.245979,0 -0.489892,0.26872 v 0.99838 q 0,0.192242 0.02274,0.237722 0.02894,0.0599 0.07855,0.0889 0.05168,0.0269 0.206705,0.0269 v 0.0744 h -0.936376 v -0.0744 h 0.04134 q 0.144694,0 0.194304,-0.0724 0.05168,-0.0744 0.05168,-0.281122 v -0.7028 q 0,-0.34106 -0.01654,-0.41547 -0.01447,-0.0744 -0.04754,-0.10129 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.138493,0.031 l -0.03101,-0.0744 0.570508,-0.23151 h 0.08888 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14921" />
<path
d="m 86.745516,97.850518 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.183962 0.05168,0.248042 0.05374,0.0641 0.136426,0.0641 0.06821,0 0.132292,-0.0413 0.06408,-0.0434 0.09922,-0.126092 h 0.08061 q -0.07235,0.202572 -0.204638,0.305922 -0.132292,0.10129 -0.272851,0.10129 -0.09508,0 -0.186035,-0.0517 -0.09095,-0.0537 -0.134359,-0.15089 -0.04341,-0.0992 -0.04341,-0.303862 v -1.2733 h -0.299723 v -0.0682 q 0.113688,-0.0455 0.23151,-0.15296 0.119889,-0.10955 0.212907,-0.25838 0.04754,-0.0785 0.132291,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14923" />
<path
d="m 87.688093,99.185838 q -0.0021,0.42167 0.204639,0.66145 0.206705,0.239782 0.485758,0.239782 0.186035,0 0.32246,-0.101282 0.138493,-0.10336 0.231511,-0.3514 l 0.06408,0.0413 q -0.04341,0.28318 -0.25218,0.516762 -0.208773,0.23151 -0.522965,0.23151 -0.341065,0 -0.584977,-0.26458 -0.241846,-0.266652 -0.241846,-0.715202 0,-0.48576 0.248047,-0.75654 0.250114,-0.27286 0.626318,-0.27286 0.318326,0 0.522965,0.21084 0.204638,0.20878 0.204638,0.56018 z m 0,-0.11989 h 0.876432 q -0.01033,-0.1819 -0.04341,-0.25632 -0.05168,-0.11575 -0.15503,-0.1819 -0.101285,-0.0661 -0.212906,-0.0661 -0.171566,0 -0.307992,0.13436 -0.134358,0.13229 -0.157096,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14925" />
<path
d="m 89.753082,99.675728 q -0.173633,-0.0847 -0.266651,-0.23565 -0.09302,-0.15296 -0.09302,-0.33693 0,-0.28112 0.21084,-0.48369 0.212906,-0.20257 0.543635,-0.20257 0.270785,0 0.469222,0.13229 h 0.401009 q 0.08888,0 0.103352,0.006 0.01447,0.004 0.02067,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0537 -0.01033,0.0744 -0.0062,0.0103 -0.02274,0.0165 -0.01447,0.006 -0.103352,0.006 h -0.24598 q 0.115755,0.14883 0.115755,0.38034 0,0.26458 -0.202571,0.45268 -0.202572,0.1881 -0.543636,0.1881 -0.14056,0 -0.287321,-0.0413 -0.09095,0.0785 -0.124023,0.13849 -0.03101,0.0579 -0.03101,0.0992 0,0.0351 0.03307,0.0682 0.03514,0.0331 0.134359,0.0475 0.05788,0.008 0.289387,0.0145 0.425814,0.0103 0.551904,0.0289 0.192236,0.0269 0.305925,0.14262 0.115755,0.11576 0.115755,0.28526 0,0.23357 -0.219108,0.43821 -0.322461,0.30179 -0.841292,0.30179 -0.398942,0 -0.67386,-0.17983 -0.155029,-0.10335 -0.155029,-0.21497 0,-0.0496 0.02274,-0.0992 0.03514,-0.0765 0.144694,-0.21291 0.01447,-0.0186 0.21084,-0.22324 -0.107487,-0.0641 -0.152962,-0.11369 -0.04341,-0.0517 -0.04341,-0.11576 0,-0.0723 0.05788,-0.169492 0.05994,-0.0972 0.272852,-0.27492 z m 0.359667,-1.15962 q -0.152962,0 -0.256315,0.12196 -0.103352,0.12195 -0.103352,0.37413 0,0.3266 0.140559,0.50643 0.107487,0.13643 0.272852,0.13643 0.157096,0 0.258382,-0.11783 0.101285,-0.11782 0.101285,-0.37 0,-0.32866 -0.142626,-0.51469 -0.10542,-0.13643 -0.270785,-0.13643 z m -0.380338,1.850012 q -0.09715,0.10542 -0.146761,0.19637 -0.04961,0.0909 -0.04961,0.16744 0,0.0992 0.119889,0.17363 0.206706,0.12816 0.597379,0.12816 0.37207,0 0.54777,-0.1323 0.177767,-0.13022 0.177767,-0.27905 0,-0.10748 -0.10542,-0.15296 -0.107487,-0.0455 -0.425814,-0.0537 -0.465087,-0.0124 -0.715201,-0.0476 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14927" />
<path
d="m 91.917289,98.416888 v 0.42581 q 0.237711,-0.42581 0.487825,-0.42581 0.113688,0 0.188102,0.0703 0.07441,0.0682 0.07441,0.15916 0,0.0806 -0.05374,0.13643 -0.05374,0.0558 -0.128158,0.0558 -0.07235,0 -0.163297,-0.0703 -0.08888,-0.0724 -0.132292,-0.0724 -0.03721,0 -0.08061,0.0413 -0.09302,0.0847 -0.192236,0.27906 v 0.90743 q 0,0.157102 0.03927,0.237722 0.02687,0.0558 0.09508,0.093 0.06821,0.0372 0.196371,0.0372 v 0.0744 h -0.969449 v -0.0744 q 0.144694,0 0.214973,-0.0455 0.05168,-0.0331 0.07235,-0.10541 0.01034,-0.0351 0.01034,-0.200512 v -0.7338 q 0,-0.33073 -0.01447,-0.39274 -0.0124,-0.0641 -0.04961,-0.093 -0.03514,-0.0289 -0.08888,-0.0289 -0.06408,0 -0.144694,0.031 l -0.02067,-0.0744 0.572574,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14929" />
<path
d="m 93.849986,100.09327 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237711,0.0517 -0.196371,0 -0.324528,-0.13436 -0.126091,-0.13436 -0.126091,-0.353472 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 0.21084,-0.12402 0.698665,-0.30179 v -0.0744 q 0,-0.28319 -0.09095,-0.38861 -0.08888,-0.10542 -0.260449,-0.10542 -0.130224,0 -0.206705,0.0703 -0.07855,0.0703 -0.07855,0.16123 l 0.0041,0.11989 q 0,0.0951 -0.04961,0.14676 -0.04754,0.0517 -0.12609,0.0517 -0.07648,0 -0.12609,-0.0538 -0.04754,-0.0537 -0.04754,-0.14676 0,-0.17776 0.181901,-0.32659 0.181901,-0.14883 0.510563,-0.14883 0.252181,0 0.413411,0.0847 0.121956,0.0641 0.179834,0.2005 0.03721,0.0889 0.03721,0.36381 v 0.64285 q 0,0.27078 0.01033,0.332802 0.01034,0.0599 0.03307,0.0806 0.02481,0.0207 0.05581,0.0207 0.03307,0 0.05788,-0.0145 0.04341,-0.0269 0.167432,-0.150892 v 0.115752 q -0.231511,0.31006 -0.44235,0.31006 -0.101286,0 -0.161231,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.134362 v -0.7214 q -0.312126,0.12403 -0.403076,0.1757 -0.163297,0.0909 -0.233577,0.19017 -0.07028,0.0992 -0.07028,0.21704 0,0.14883 0.08888,0.248052 0.08888,0.0971 0.204639,0.0971 0.157096,0 0.413411,-0.206712 z m 0.204638,-2.46599 -0.609781,0.71313 h -0.07028 l 0.217041,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14931" />
<path
d="m 94.556919,98.472698 h 0.890901 v 0.0765 h -0.05788 q -0.08061,0 -0.124023,0.0393 -0.04134,0.0393 -0.04134,0.10542 0,0.0723 0.04341,0.17156 l 0.440283,1.04593 0.44235,-1.0852 q 0.04754,-0.11576 0.04754,-0.1757 0,-0.0289 -0.01654,-0.0475 -0.02274,-0.031 -0.05788,-0.0413 -0.03514,-0.0124 -0.142627,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.107487,0.008 -0.148828,0.0434 -0.07235,0.062 -0.130225,0.20671 l -0.671793,1.624702 h -0.08475 L 94.88764,98.826288 q -0.04548,-0.11162 -0.08682,-0.15917 -0.04134,-0.0496 -0.10542,-0.0827 -0.03514,-0.0186 -0.138492,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14933" />
<path
d="m 97.089062,99.185838 q -0.0021,0.42167 0.204638,0.66145 0.206706,0.239782 0.485758,0.239782 0.186035,0 0.322461,-0.101282 0.138493,-0.10336 0.23151,-0.3514 l 0.06408,0.0413 q -0.04341,0.28318 -0.252181,0.516762 -0.208772,0.23151 -0.522965,0.23151 -0.341064,0 -0.584977,-0.26458 -0.241845,-0.266652 -0.241845,-0.715202 0,-0.48576 0.248047,-0.75654 0.250113,-0.27286 0.626317,-0.27286 0.318327,0 0.522965,0.21084 0.204639,0.20878 0.204639,0.56018 z m 0,-0.11989 h 0.876431 q -0.01033,-0.1819 -0.04341,-0.25632 -0.05168,-0.11575 -0.155029,-0.1819 -0.101286,-0.0661 -0.212907,-0.0661 -0.171565,0 -0.307991,0.13436 -0.134359,0.13229 -0.157096,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14935" />
<path
d="m 99.129246,97.426768 q 0.08682,0 0.14676,0.062 0.06201,0.06 0.06201,0.14676 0,0.0868 -0.06201,0.14883 -0.05994,0.062 -0.14676,0.062 -0.08682,0 -0.148828,-0.062 -0.06201,-0.062 -0.06201,-0.14883 0,-0.0868 0.05994,-0.14676 0.06201,-0.062 0.150896,-0.062 z m 0.171565,0.99012 v 1.52135 q 0,0.177772 0.02481,0.237722 0.02687,0.0579 0.07648,0.0868 0.05168,0.0289 0.186035,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.138493,0 0.186035,-0.0269 0.04754,-0.0269 0.07441,-0.0889 0.02894,-0.062 0.02894,-0.237722 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.01447,-0.0661 -0.04547,-0.0909 -0.03101,-0.0269 -0.08475,-0.0269 -0.05788,0 -0.14056,0.031 l -0.02894,-0.0744 0.570508,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14937" />
<path
d="m 101.04541,98.416888 v 0.64492 h -0.0682 q -0.0785,-0.30386 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.258382 -0.19637,0.417552 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.04754,0 -0.07441,0.0537 h -0.06821 v -0.675922 h 0.06821 q 0.05788,0.289382 0.221171,0.436142 0.1633,0.14677 0.36587,0.14677 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.142632 -0.10128,-0.239782 -0.0992,-0.0971 -0.39895,-0.24598 -0.29972,-0.14882 -0.392735,-0.26871 -0.09302,-0.11783 -0.09302,-0.29766 0,-0.23358 0.159165,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14939" />
<path
d="m 118.51079,115.12845 v 8.15625 h 37.08984 v -8.15625 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-6-0-9" />
<path
d="m 117.98543,114.60364 h 38.14059 v 9.20645 h -38.14059 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-6-5-2" />
<path
d="m 121.98067,115.48987 0.0641,0.95291 h -0.0641 q -0.12815,-0.42788 -0.36586,-0.61598 -0.23772,-0.1881 -0.57051,-0.1881 -0.27905,0 -0.50436,0.14263 -0.22531,0.14056 -0.35554,0.45061 -0.12815,0.31006 -0.12815,0.77102 0,0.38033 0.12195,0.65939 0.12196,0.27905 0.36587,0.42788 0.24598,0.14882 0.56017,0.14882 0.27285,0 0.48163,-0.11575 0.20877,-0.11782 0.45888,-0.46509 l 0.0641,0.0413 q -0.21084,0.37414 -0.49196,0.54777 -0.28112,0.17364 -0.66766,0.17364 -0.69659,0 -1.079,-0.51677 -0.28525,-0.38447 -0.28525,-0.90537 0,-0.41961 0.1881,-0.77101 0.1881,-0.3514 0.51676,-0.54364 0.33073,-0.1943 0.72141,-0.1943 0.30385,0 0.59944,0.14883 0.0868,0.0455 0.12403,0.0455 0.0558,0 0.0971,-0.0393 0.0537,-0.0558 0.0765,-0.15503 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14944" />
<path
d="m 123.46482,118.08403 q -0.29145,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14946" />
<path
d="m 124.92003,115.41752 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13023,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14948" />
<path
d="m 127.05116,117.63754 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23977,-0.27078 -0.23977,-0.73174 0,-0.44648 0.26458,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30593 0,0.0785 -0.0517,0.12815 -0.0496,0.0476 -0.14056,0.0476 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.33899 0.16536,0.59944 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14950" />
<path
d="m 128.97972,116.46345 v 1.14722 q 0,0.32866 0.0145,0.40308 0.0165,0.0723 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.1447,-0.0351 l 0.0289,0.0724 -0.56637,0.23357 h -0.093 v -0.401 q -0.24391,0.26458 -0.37207,0.33279 -0.12815,0.0682 -0.27078,0.0682 -0.15916,0 -0.27698,-0.0909 -0.11576,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40927 v -0.84543 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66352 v 1.26711 q 0,0.26458 0.091,0.34726 0.093,0.0827 0.22324,0.0827 0.0889,0 0.20051,-0.0558 0.11369,-0.0558 0.26871,-0.21291 v -1.0728 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24392,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14952" />
<path
d="m 130.08767,115.41752 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13023,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14954" />
<path
d="m 131.68343,118.08403 q -0.29145,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0848,-0.14056 0.29353,-0.26459 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14956" />
<path
d="m 133.04149,116.40764 v 0.42582 q 0.23771,-0.42582 0.48782,-0.42582 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0538,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14958" />
<path
d="m 136.03252,118.08403 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41342,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14960" />
<path
d="m 138.0603,116.40764 v 0.64492 h -0.0682 q -0.0785,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36586,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10128,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14962" />
<path
d="m 139.44316,116.46345 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17156 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.20671 l -0.67179,1.6247 h -0.0847 l -0.67592,-1.59795 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.1385,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14964" />
<path
d="m 142.72978,118.08403 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14966" />
<path
d="m 144.08783,116.40764 v 0.42582 q 0.23771,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14968" />
<path
d="m 145.42935,115.41752 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14970" />
<path
d="m 147.19462,118.08403 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0848,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51056,-0.14883 0.25219,0 0.41342,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.2067 z m 0.20464,-2.466 -0.60979,0.71313 h -0.0703 l 0.21704,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14972" />
<path
d="m 147.90155,116.46345 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17156 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10749,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.20671 l -0.67179,1.6247 h -0.0848 l -0.67592,-1.59795 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.13849,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14974" />
<path
d="m 150.43369,117.17659 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18604,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15502,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14976" />
<path
d="m 152.47388,115.41752 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14978" />
<path
d="m 154.39004,116.40764 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.25838 -0.19638,0.41755 -0.1943,0.15709 -0.43614,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36586,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0848 0.091,-0.20258 0,-0.14262 -0.10129,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14980" />
<path
d="m 124.87455,121.04199 q 0.3328,-0.40101 0.63459,-0.40101 0.15503,0 0.26665,0.0786 0.11162,0.0765 0.17776,0.25425 0.0455,0.12402 0.0455,0.38033 v 0.80822 q 0,0.17984 0.0289,0.24392 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.18811,0.0289 v 0.0744 h -0.93638 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0414 0.0744,-0.11989 0.008,-0.031 0.008,-0.19431 v -0.77514 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26872 v 0.99838 q 0,0.19224 0.0227,0.23772 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93637 v -0.0744 h 0.0413 q 0.14469,0 0.1943,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41547 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.5705,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14982" />
<path
d="m 127.51211,122.31736 q -0.29145,0.22531 -0.36586,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19638,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26044,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z m -0.85162,-1.86035 h -0.0661 q 0.008,-0.28318 0.11782,-0.40927 0.10955,-0.12609 0.27079,-0.12609 0.0847,0 0.15502,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0661,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19223 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19223,0.062 -0.1633,0 -0.40514,-0.16536 -0.13023,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14984" />
<path
d="m 129.24224,120.64098 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64078 0,0.25425 -0.12195,0.5147 -0.12196,0.26045 -0.33694,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13023,-0.25838 0.34107,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22118,0.0662 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.16329,0.71314 0.16537,0.29972 0.43409,0.29972 0.2005,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14986" />
<path
d="m 131.97282,119.65086 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.5705,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14988" />
<path
d="m 133.21719,121.04199 q 0.33279,-0.40101 0.63458,-0.40101 0.15503,0 0.26665,0.0786 0.11163,0.0765 0.17777,0.25425 0.0455,0.12402 0.0455,0.38033 v 0.80822 q 0,0.17984 0.0289,0.24392 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93637 v -0.0744 h 0.0393 q 0.13229,0 0.18396,-0.0393 0.0537,-0.0414 0.0744,-0.11989 0.008,-0.031 0.008,-0.19431 v -0.77514 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.2253,-0.11782 -0.24598,0 -0.4899,0.26872 v 0.99838 q 0,0.19224 0.0227,0.23772 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 h 0.0413 q 0.1447,0 0.19431,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41547 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.1385,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14990" />
<path
d="m 135.33179,120.07461 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13642,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20463,0.30592 -0.1323,0.10129 -0.27285,0.10129 -0.0951,0 -0.18604,-0.0517 -0.0909,-0.0537 -0.13436,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 H 134.691 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14992" />
<path
d="m 136.27436,121.40993 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87644 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15504,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14994" />
<path
d="m 138.33935,121.89982 q -0.17363,-0.0847 -0.26665,-0.23565 -0.093,-0.15296 -0.093,-0.33693 0,-0.28112 0.21084,-0.48369 0.21291,-0.20257 0.54364,-0.20257 0.27078,0 0.46922,0.13229 h 0.40101 q 0.0889,0 0.10335,0.006 0.0145,0.004 0.0207,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0537 -0.0103,0.0744 -0.006,0.0103 -0.0227,0.0165 -0.0145,0.006 -0.10335,0.006 h -0.24598 q 0.11575,0.14883 0.11575,0.38034 0,0.26458 -0.20257,0.45268 -0.20257,0.1881 -0.54364,0.1881 -0.14055,0 -0.28732,-0.0413 -0.0909,0.0785 -0.12402,0.13849 -0.031,0.0579 -0.031,0.0992 0,0.0351 0.0331,0.0682 0.0351,0.0331 0.13436,0.0475 0.0579,0.008 0.28939,0.0145 0.42581,0.0103 0.5519,0.0289 0.19224,0.0269 0.30593,0.14262 0.11575,0.11576 0.11575,0.28526 0,0.23357 -0.21911,0.43821 -0.32246,0.30179 -0.84129,0.30179 -0.39894,0 -0.67386,-0.17983 -0.15503,-0.10335 -0.15503,-0.21497 0,-0.0496 0.0227,-0.0992 0.0351,-0.0765 0.1447,-0.21291 0.0145,-0.0186 0.21084,-0.22324 -0.10749,-0.0641 -0.15297,-0.11369 -0.0434,-0.0517 -0.0434,-0.11576 0,-0.0723 0.0579,-0.16949 0.0599,-0.0972 0.27286,-0.27492 z m 0.35967,-1.15962 q -0.15296,0 -0.25632,0.12196 -0.10335,0.12195 -0.10335,0.37413 0,0.3266 0.14056,0.50643 0.10749,0.13643 0.27285,0.13643 0.1571,0 0.25838,-0.11783 0.10129,-0.11782 0.10129,-0.37 0,-0.32866 -0.14263,-0.51469 -0.10542,-0.13643 -0.27078,-0.13643 z m -0.38034,1.85001 q -0.0971,0.10542 -0.14676,0.19637 -0.0496,0.0909 -0.0496,0.16744 0,0.0992 0.11989,0.17363 0.20671,0.12816 0.59738,0.12816 0.37207,0 0.54777,-0.1323 0.17777,-0.13022 0.17777,-0.27905 0,-0.10748 -0.10543,-0.15296 -0.10748,-0.0455 -0.42581,-0.0537 -0.46509,-0.0124 -0.7152,-0.0476 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14996" />
<path
d="m 140.50356,120.64098 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96944 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10541 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path14998" />
<path
d="m 142.43626,122.31736 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19638,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z m 0.20463,-2.46599 -0.60978,0.71313 h -0.0703 l 0.21704,-0.71313 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15000" />
<path
d="m 143.14319,120.69679 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0723 0.0434,0.17156 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11576 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10748,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.20671 l -0.67179,1.6247 h -0.0847 l -0.67593,-1.59783 q -0.0455,-0.11162 -0.0868,-0.15917 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.13849,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15002" />
<path
d="m 145.67533,121.40993 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15004" />
<path
d="m 147.71552,119.65086 q 0.0868,0 0.14676,0.062 0.062,0.06 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17156,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23772 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23772 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15006" />
<path
d="m 149.63168,120.64098 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20258,-0.41341 -0.12195,-0.10955 -0.31212,-0.10955 -0.1447,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22117,0.43614 0.1633,0.14677 0.36587,0.14677 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10128,-0.23978 -0.0992,-0.0971 -0.39895,-0.24598 -0.29972,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15917,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15008" />
<path
d="m 123.39887,66.169878 v 8.130859 h 27.31446 v -8.130859 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-6-0-0" />
<path
d="m 122.87273,65.645361 h 28.36599 v 9.180767 h -28.36599 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.4, 2.4;stroke-dashoffset:0.18;stroke-opacity:1"
id="rect7253-2-7-4-7-6-6-5-28" />
<path
d="m 126.14746,66.53159 0.0641,0.95291 h -0.0641 q -0.12816,-0.42788 -0.36587,-0.61598 -0.23771,-0.1881 -0.5705,-0.1881 -0.27906,0 -0.50437,0.14263 -0.22531,0.14056 -0.35553,0.45061 -0.12816,0.31006 -0.12816,0.77102 0,0.38033 0.12196,0.65939 0.12196,0.27905 0.36587,0.42788 0.24598,0.14882 0.56017,0.14882 0.27285,0 0.48162,-0.11575 0.20878,-0.11782 0.45889,-0.46509 l 0.0641,0.0413 q -0.21084,0.37414 -0.49196,0.54777 -0.28112,0.17364 -0.66766,0.17364 -0.6966,0 -1.079,-0.51677 -0.28525,-0.38447 -0.28525,-0.90537 0,-0.41961 0.1881,-0.77101 0.1881,-0.3514 0.51676,-0.54364 0.33073,-0.1943 0.7214,-0.1943 0.30386,0 0.59945,0.14883 0.0868,0.0455 0.12402,0.0455 0.0558,0 0.0971,-0.0393 0.0537,-0.0558 0.0765,-0.15503 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15013" />
<path
d="m 127.63161,69.12575 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15015" />
<path
d="m 129.08681,66.45924 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13023,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15017" />
<path
d="m 131.21795,68.67926 q -0.0765,0.37414 -0.29972,0.57671 -0.22325,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.27078 -0.23978,-0.73174 0,-0.44648 0.26459,-0.72553 0.26665,-0.27906 0.63872,-0.27906 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30593 0,0.0785 -0.0517,0.12815 -0.0496,0.0476 -0.14056,0.0476 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16537 -0.0103,-0.12195 -0.0827,-0.18603 -0.0724,-0.062 -0.20051,-0.062 -0.2067,0 -0.33279,0.15296 -0.16743,0.20257 -0.16743,0.53537 0,0.33899 0.16536,0.59944 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15019" />
<path
d="m 133.14651,67.50517 v 1.14722 q 0,0.32866 0.0145,0.40308 0.0165,0.0723 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.1447,-0.0351 l 0.0289,0.0724 -0.56638,0.23357 h -0.093 v -0.401 q -0.24391,0.26458 -0.37207,0.33279 -0.12816,0.0682 -0.27078,0.0682 -0.15916,0 -0.27699,-0.0909 -0.11575,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40927 V 67.8732 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0785 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66353 v 1.26711 q 0,0.26458 0.0909,0.34726 0.093,0.0827 0.22324,0.0827 0.0889,0 0.20051,-0.0558 0.11368,-0.0558 0.26871,-0.21291 v -1.0728 q 0,-0.16123 -0.06,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15021" />
<path
d="m 134.25445,66.45924 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15023" />
<path
d="m 135.85022,69.12575 q -0.29145,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.18191,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44234,0.31005 -0.10129,0 -0.16124,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15025" />
<path
d="m 137.20828,67.44936 v 0.42582 q 0.23771,-0.42582 0.48782,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12815,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0352,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15027" />
<path
d="m 139.86651,67.654 v 1.24437 q 0,0.26458 0.0579,0.33486 0.0765,0.0909 0.20464,0.0909 h 0.17156 v 0.0744 h -1.13068 v -0.0744 h 0.0848 q 0.0827,0 0.1509,-0.0413 0.0682,-0.0413 0.093,-0.11162 0.0269,-0.0703 0.0269,-0.27285 v -1.24437 h -0.36794 v -0.14883 h 0.36794 v -0.12402 q 0,-0.28319 0.0909,-0.47956 0.0909,-0.19637 0.27698,-0.31626 0.18811,-0.12195 0.42168,-0.12195 0.21704,0 0.39894,0.14056 0.11989,0.093 0.11989,0.20877 0,0.062 -0.0537,0.11782 -0.0537,0.0538 -0.11575,0.0538 -0.0475,0 -0.10129,-0.0331 -0.0517,-0.0351 -0.12815,-0.14676 -0.0765,-0.11369 -0.14056,-0.15296 -0.0641,-0.0393 -0.14263,-0.0393 -0.0951,0 -0.16123,0.0517 -0.0662,0.0496 -0.0951,0.1571 -0.0289,0.10542 -0.0289,0.54777 v 0.13642 h 0.48782 v 0.14883 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15029" />
<path
d="m 141.61317,69.12575 q -0.29145,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15031" />
<path
d="m 142.96709,66.88299 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18397 0.0517,0.24805 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30593 -0.13229,0.10128 -0.27285,0.10128 -0.0951,0 -0.18604,-0.0517 -0.0909,-0.0538 -0.13435,-0.1509 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29973 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15033" />
<path
d="m 144.51738,67.44936 q 0.42995,0 0.6904,0.3266 0.22118,0.27905 0.22118,0.64079 0,0.25424 -0.12196,0.51469 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38033 0.21084,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0662 -0.10956,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41962 0,0.41341 0.1633,0.71313 0.16536,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15035" />
<path
d="m 146.26198,67.44936 v 0.42582 q 0.23771,-0.42582 0.48782,-0.42582 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0723 -0.13229,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.1447,0 0.21498,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15037" />
<path
d="m 147.4402,68.21831 q -0.002,0.42168 0.20464,0.66146 0.2067,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15039" />
<path
d="m 150.22246,67.44936 v 0.64492 h -0.0682 q -0.0785,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.25838 -0.19638,0.41755 -0.1943,0.15709 -0.43614,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36586,0.14676 0.14263,0 0.23152,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10128,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15041" />
<path
d="m 128.01195,73.41903 q -0.1385,0.14469 -0.27079,0.20877 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25631,-0.74414 0.25632,-0.339 0.65939,-0.339 0.25012,0 0.41342,0.15917 v -0.34934 q 0,-0.32452 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14263,0.0331 l -0.0269,-0.0724 0.5643,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14882,-0.0351 l 0.0227,0.0723 -0.56224,0.23358 h -0.0951 z m 0,-0.1447 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16537,-0.17363 -0.10128,-0.0599 -0.19844,-0.0599 -0.1819,0 -0.32452,0.1633 -0.18811,0.21497 -0.18811,0.62838 0,0.41755 0.18191,0.64079 0.1819,0.22118 0.40514,0.22118 0.1881,0 0.3638,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15043" />
<path
d="m 129.10955,72.45165 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15045" />
<path
d="m 132.95014,71.6827 v 0.64492 h -0.0682 q -0.0786,-0.30386 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19843 0.0641,0.0847 0.26045,0.17984 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11163,-0.0207 -0.0475,0 -0.0744,0.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 0.22118,0.43614 0.1633,0.14677 0.36587,0.14677 0.14262,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20257 0,-0.14263 -0.10129,-0.23978 -0.0992,-0.0971 -0.39894,-0.24598 -0.29972,-0.14882 -0.39274,-0.26871 -0.093,-0.11783 -0.093,-0.29766 0,-0.23358 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27079,0.0475 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15047" />
<path
d="m 134.44462,73.35908 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0848,-0.14056 0.29353,-0.26458 0.21084,-0.12402 0.69866,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12403 -0.40307,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15049" />
<path
d="m 135.79854,71.11633 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13643,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20464,0.30592 -0.13229,0.10129 -0.27285,0.10129 -0.0951,0 -0.18603,-0.0517 -0.0909,-0.0537 -0.13436,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29973 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15051" />
<path
d="m 138.08264,71.73851 v 1.14722 q 0,0.32866 0.0145,0.40307 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0641,0 0.14469,-0.0351 l 0.0289,0.0723 -0.56637,0.23358 h -0.093 v -0.40101 q -0.24391,0.26459 -0.37207,0.3328 -0.12816,0.0682 -0.27078,0.0682 -0.15917,0 -0.27699,-0.091 -0.11575,-0.093 -0.16123,-0.23771 -0.0455,-0.14469 -0.0455,-0.40928 v -0.84542 q 0,-0.13436 -0.0289,-0.18604 -0.0289,-0.0517 -0.0868,-0.0786 -0.0558,-0.0289 -0.20464,-0.0269 v -0.0765 h 0.66353 v 1.26711 q 0,0.26458 0.091,0.34726 0.093,0.0827 0.22324,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.2129 v -1.07281 q 0,-0.16123 -0.0599,-0.21704 -0.0579,-0.0579 -0.24391,-0.062 v -0.0765 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15053" />
<path
d="m 139.09343,71.6827 v 0.42581 q 0.23771,-0.42581 0.48783,-0.42581 0.11368,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10541 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15055" />
<path
d="m 141.02613,73.35908 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12403 -0.40308,0.1757 -0.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.1571,0 0.41341,-0.20671 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15057" />
<path
d="m 143.43838,72.9126 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49403,0.2005 -0.32246,0 -0.56224,-0.27078 -0.23978,-0.27079 -0.23978,-0.73174 0,-0.44648 0.26459,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45888,0.14883 0.17984,0.14676 0.17984,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18603 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15297 -0.16743,0.20257 -0.16743,0.53536 0,0.339 0.16536,0.59945 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z m -0.76894,0.68626 h 0.12402 l -0.10335,0.1633 q 0.13022,0.0331 0.1943,0.11162 0.0641,0.0786 0.0641,0.19017 0,0.14883 -0.12402,0.26045 -0.12403,0.11369 -0.3204,0.11369 -0.0765,0 -0.1943,-0.0145 v -0.0889 q 0.0579,0.008 0.0992,0.008 0.10542,0 0.17777,-0.0703 0.0724,-0.0682 0.0724,-0.15709 0,-0.062 -0.0475,-0.10749 -0.0475,-0.0455 -0.11783,-0.0455 -0.0207,0 -0.0537,0.004 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15059" />
<path
d="m 144.7799,73.35908 q -0.29145,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35347 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0538 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17776 0.1819,-0.32659 0.1819,-0.14883 0.51057,-0.14883 0.25218,0 0.41341,0.0847 0.12195,0.0641 0.17983,0.2005 0.0372,0.0889 0.0372,0.36381 v 0.64285 q 0,0.27078 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10128,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31212,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.20671 z m -0.85163,-1.86035 h -0.0661 q 0.008,-0.28318 0.11783,-0.40927 0.10955,-0.12609 0.27078,-0.12609 0.0847,0 0.15503,0.0269 0.093,0.0351 0.26251,0.14883 0.17157,0.11162 0.25425,0.11162 0.0662,0 0.11576,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19223 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19224,0.062 -0.16329,0 -0.40514,-0.16536 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15061" />
<path
d="m 146.51003,71.6827 q 0.42994,0 0.69039,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0662 -0.10955,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50437 -0.21705,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15063" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-2"
d="m 137.05574,92.551496 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-1)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cccc"
inkscape:connector-curvature="0"
id="path9106-8-1-1"
d="m 101.20732,152.29406 h 10.23414 V 85.621161 h 8.21025"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-5)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-2-6"
d="m 88.469459,158.25858 v 21.51226"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-1-2)" />
<path
d="m 88.983239,159.87623 h 7.098921 v 3.56784 h -7.098921 z"
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14838-4-5-5" />
<path
d="m 89.071052,160.26366 h 0.760677 l 1.713589,2.10219 v -1.61643 q 0,-0.25839 -0.05788,-0.32246 -0.07648,-0.0868 -0.241845,-0.0868 h -0.09715 v -0.0765 h 0.975647 v 0.0765 h -0.0992 q -0.17776,0 -0.25218,0.10748 -0.0455,0.0661 -0.0455,0.30179 v 2.36265 h -0.07442 l -1.847948,-2.25723 v 1.72599 q 0,0.25839 0.05581,0.32246 0.07855,0.0868 0.241846,0.0868 h 0.09922 v 0.0765 h -0.975651 v -0.0765 h 0.09715 q 0.179834,0 0.254248,-0.10748 0.04547,-0.0661 0.04547,-0.30179 v -1.94924 q -0.121956,-0.14262 -0.186035,-0.1881 -0.06201,-0.0455 -0.183968,-0.0847 -0.05994,-0.0186 -0.181901,-0.0186 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15067" />
<path
d="m 93.3912,162.79373 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13435 -0.12609,-0.35346 0,-0.13849 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0848 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13435 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z m -0.85163,-1.86035 h -0.0661 q 0.008,-0.28319 0.11782,-0.40928 0.10955,-0.12609 0.27078,-0.12609 0.0847,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0661,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19223 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19224,0.062 -0.16329,0 -0.40514,-0.16536 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15069" />
<path
d="m 95.12132,161.11735 q 0.42995,0 0.6904,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68007,-0.34106 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38033 0.21084,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0661 -0.10955,0.0641 -0.17777,0.22738 -0.0682,0.16329 -0.0682,0.41961 0,0.41341 0.1633,0.71313 0.16536,0.29973 0.43408,0.29973 0.2005,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15071" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0"
id="path9106-8-1-2-2-3"
d="M 125.55487,174.24413 H 111.44146 65.720547 v -22.02727 l 8.841745,0.0772"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-1-1-0)" />
<path
id="path39045"
style="opacity:1;fill:#fcffff;fill-opacity:1;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 87.277458,174.44632 a 1.1920018,1.1920018 0 0 1 1.192002,-1.192 1.1920018,1.1920018 0 0 1 1.192001,1.192" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-2-2"
d="m 88.469459,190.22549 v 6.32379"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-1-1)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-7"
d="m 88.469459,88.272493 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-3)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-25"
d="m 88.469459,101.6727 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-7)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-6"
d="m 88.469459,115.06156 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-0)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-5"
d="m 88.469459,133.13874 v 2.83483"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-00)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-23"
d="m 88.469459,142.28625 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-8)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-27"
d="m 137.05574,110.49514 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-80)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-74"
d="m 137.05574,123.88967 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-82)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-22"
d="m 137.05574,133.18316 v 2.83483"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-6)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-57"
d="m 137.05574,155.44124 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-19)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-12"
d="m 137.05574,164.69432 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-58)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-55"
d="m 137.05574,179.65061 v 7.79576"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-05)" />
<path
d="m 102.71567,147.95986 h 7.09892 v 3.70147 h -7.09892 z"
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14838-5-3-8-5" />
<path
d="m 104.80026,148.41684 v 0.96945 h -0.0765 q -0.0372,-0.27905 -0.13436,-0.44441 -0.0951,-0.16537 -0.27285,-0.26252 -0.17777,-0.0971 -0.36794,-0.0971 -0.21497,0 -0.35553,0.13229 -0.14056,0.13023 -0.14056,0.29766 0,0.12816 0.0889,0.23358 0.12816,0.15502 0.60978,0.41341 0.39274,0.21084 0.53537,0.32452 0.14469,0.11163 0.22117,0.26459 0.0785,0.15296 0.0785,0.32039 0,0.31833 -0.24804,0.54984 -0.24598,0.22944 -0.63459,0.22944 -0.12196,0 -0.22944,-0.0186 -0.0641,-0.0103 -0.26665,-0.0744 -0.20051,-0.0661 -0.25425,-0.0661 -0.0517,0 -0.0827,0.031 -0.0289,0.031 -0.0434,0.12816 h -0.0765 v -0.96118 h 0.0765 q 0.0537,0.30179 0.14469,0.45268 0.0909,0.14883 0.27699,0.24805 0.1881,0.0992 0.41134,0.0992 0.25838,0 0.40721,-0.13642 0.1509,-0.13643 0.1509,-0.32247 0,-0.10335 -0.0579,-0.20877 -0.0558,-0.10542 -0.1757,-0.19637 -0.0806,-0.062 -0.44028,-0.26251 -0.35967,-0.20258 -0.51263,-0.32247 -0.1509,-0.11988 -0.22945,-0.26458 -0.0786,-0.14469 -0.0786,-0.31832 0,-0.30179 0.23151,-0.51884 0.23151,-0.2191 0.58911,-0.2191 0.22325,0 0.47336,0.10955 0.11575,0.0517 0.1633,0.0517 0.0537,0 0.0868,-0.031 0.0351,-0.0331 0.0558,-0.13022 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15076" />
<path
d="m 105.82965,148.3445 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52135 q 0,0.17777 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.13849,0 0.18603,-0.0269 0.0476,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.30799 -0.0186,-0.39894 -0.0145,-0.0662 -0.0455,-0.091 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.57051,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15078" />
<path
d="m 107.08435,149.73769 q 0.20671,-0.2067 0.24392,-0.23771 0.093,-0.0786 0.2005,-0.12195 0.10749,-0.0434 0.21291,-0.0434 0.17776,0 0.30592,0.10335 0.12816,0.10335 0.17157,0.29972 0.2129,-0.24805 0.35967,-0.32453 0.14676,-0.0786 0.30179,-0.0786 0.15089,0 0.26665,0.0786 0.11782,0.0765 0.18603,0.25218 0.0455,0.11989 0.0455,0.37621 v 0.81442 q 0,0.17776 0.0269,0.24391 0.0207,0.0455 0.0765,0.0785 0.0558,0.031 0.1819,0.031 v 0.0744 h -0.93431 v -0.0744 h 0.0393 q 0.12196,0 0.19017,-0.0475 0.0476,-0.0331 0.0682,-0.10542 0.008,-0.0351 0.008,-0.2005 v -0.81442 q 0,-0.23151 -0.0558,-0.3266 -0.0806,-0.13229 -0.25838,-0.13229 -0.10955,0 -0.22117,0.0558 -0.10956,0.0537 -0.26665,0.20257 l -0.004,0.0227 0.004,0.0889 v 0.9033 q 0,0.19431 0.0207,0.24185 0.0227,0.0475 0.0827,0.0806 0.0599,0.031 0.20464,0.031 v 0.0744 h -0.95705 v -0.0744 q 0.1571,0 0.21498,-0.0372 0.0599,-0.0372 0.0827,-0.11162 0.0103,-0.0351 0.0103,-0.20464 v -0.81442 q 0,-0.23151 -0.0682,-0.3328 -0.091,-0.13229 -0.25425,-0.13229 -0.11162,0 -0.22117,0.0599 -0.17157,0.0909 -0.26459,0.20464 v 1.01493 q 0,0.18603 0.0248,0.24184 0.0269,0.0558 0.0765,0.0847 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 q 0.13022,0 0.1819,-0.0269 0.0517,-0.0289 0.0786,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -0.72347 q 0,-0.31213 -0.0186,-0.40308 -0.0145,-0.0682 -0.0455,-0.093 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15080" />
<path
d="m 137.56603,181.09944 h 7.09892 v 3.70147 h -7.09892 z"
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14838-5-3-8-3" />
<path
d="m 139.65062,181.55642 v 0.96945 h -0.0765 q -0.0372,-0.27905 -0.13435,-0.44442 -0.0951,-0.16536 -0.27286,-0.26251 -0.17776,-0.0971 -0.36793,-0.0971 -0.21498,0 -0.35554,0.13229 -0.14055,0.13022 -0.14055,0.29765 0,0.12816 0.0889,0.23358 0.12815,0.15503 0.60978,0.41341 0.39274,0.21084 0.53536,0.32453 0.1447,0.11162 0.22118,0.26458 0.0785,0.15296 0.0785,0.3204 0,0.31832 -0.24805,0.54983 -0.24598,0.22945 -0.63458,0.22945 -0.12196,0 -0.22945,-0.0186 -0.0641,-0.0103 -0.26665,-0.0744 -0.2005,-0.0661 -0.25424,-0.0661 -0.0517,0 -0.0827,0.031 -0.0289,0.031 -0.0434,0.12815 h -0.0765 v -0.96118 h 0.0765 q 0.0537,0.30179 0.14469,0.45269 0.0909,0.14883 0.27698,0.24805 0.18811,0.0992 0.41135,0.0992 0.25838,0 0.40721,-0.13643 0.15089,-0.13643 0.15089,-0.32246 0,-0.10335 -0.0579,-0.20877 -0.0558,-0.10542 -0.17569,-0.19637 -0.0806,-0.062 -0.44029,-0.26252 -0.35967,-0.20257 -0.51263,-0.32246 -0.15089,-0.11989 -0.22944,-0.26458 -0.0786,-0.1447 -0.0786,-0.31833 0,-0.30179 0.23151,-0.51883 0.23151,-0.21911 0.58911,-0.21911 0.22324,0 0.47336,0.10956 0.11575,0.0517 0.16329,0.0517 0.0537,0 0.0868,-0.031 0.0351,-0.0331 0.0558,-0.13023 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15084" />
<path
d="m 140.68001,181.48407 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14883 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14883 0,-0.0868 0.06,-0.14676 0.062,-0.062 0.15089,-0.062 z m 0.17157,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18604,0.0289 v 0.0744 h -0.91985 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0476,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14057,0.031 l -0.0289,-0.0744 0.57052,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15086" />
<path
d="m 141.93471,182.87727 q 0.20671,-0.20671 0.24392,-0.23771 0.093,-0.0785 0.2005,-0.12196 0.10749,-0.0434 0.21291,-0.0434 0.17776,0 0.30592,0.10335 0.12816,0.10336 0.17157,0.29973 0.2129,-0.24805 0.35967,-0.32453 0.14676,-0.0786 0.30179,-0.0786 0.15089,0 0.26665,0.0786 0.11782,0.0765 0.18603,0.25218 0.0455,0.11989 0.0455,0.3762 v 0.81442 q 0,0.17777 0.0269,0.24392 0.0207,0.0455 0.0765,0.0785 0.0558,0.031 0.1819,0.031 v 0.0744 h -0.93431 v -0.0744 h 0.0393 q 0.12196,0 0.19017,-0.0475 0.0476,-0.0331 0.0682,-0.10542 0.008,-0.0351 0.008,-0.20051 v -0.81442 q 0,-0.23151 -0.0558,-0.32659 -0.0806,-0.1323 -0.25838,-0.1323 -0.10955,0 -0.22117,0.0558 -0.10956,0.0537 -0.26665,0.20258 l -0.004,0.0227 0.004,0.0889 v 0.9033 q 0,0.1943 0.0207,0.24184 0.0227,0.0476 0.0827,0.0806 0.0599,0.031 0.20464,0.031 v 0.0744 h -0.95705 v -0.0744 q 0.1571,0 0.21498,-0.0372 0.0599,-0.0372 0.0827,-0.11162 0.0103,-0.0351 0.0103,-0.20463 v -0.81442 q 0,-0.23152 -0.0682,-0.3328 -0.091,-0.13229 -0.25425,-0.13229 -0.11162,0 -0.22117,0.0599 -0.17157,0.0909 -0.26459,0.20464 v 1.01492 q 0,0.18604 0.0248,0.24185 0.0269,0.0558 0.0765,0.0847 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 q 0.13022,0 0.1819,-0.0269 0.0517,-0.0289 0.0786,-0.0889 0.0269,-0.062 0.0269,-0.23772 v -0.72347 q 0,-0.31212 -0.0186,-0.40307 -0.0145,-0.0682 -0.0455,-0.093 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15088" />
<path
d="m 116.14327,170.20443 h 7.09892 v 3.56784 h -7.09892 z"
style="fill:none;fill-opacity:1;stroke:none;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect14838-4-5-5-7" />
<path
d="m 116.23109,170.59186 h 0.76067 l 1.71359,2.10219 v -1.61643 q 0,-0.25839 -0.0579,-0.32247 -0.0765,-0.0868 -0.24184,-0.0868 h -0.0971 v -0.0765 h 0.97564 v 0.0765 h -0.0992 q -0.17776,0 -0.25218,0.10749 -0.0455,0.0661 -0.0455,0.30179 v 2.36265 h -0.0744 l -1.84794,-2.25723 v 1.72599 q 0,0.25838 0.0558,0.32246 0.0785,0.0868 0.24184,0.0868 h 0.0992 v 0.0765 h -0.97565 v -0.0765 h 0.0971 q 0.17983,0 0.25425,-0.10748 0.0455,-0.0662 0.0455,-0.30179 v -1.94924 q -0.12196,-0.14262 -0.18604,-0.1881 -0.062,-0.0455 -0.18396,-0.0848 -0.0599,-0.0186 -0.1819,-0.0186 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15092" />
<path
d="m 120.55123,173.12193 q -0.29146,0.22531 -0.36587,0.26045 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13435 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26458 0.21084,-0.12403 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.091,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0785,0.0703 -0.0785,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.32659 0.1819,-0.14883 0.51056,-0.14883 0.25218,0 0.41341,0.0847 0.12196,0.0641 0.17984,0.2005 0.0372,0.0889 0.0372,0.3638 v 0.64286 q 0,0.27078 0.0103,0.33279 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.15089 v 0.11575 q -0.23151,0.31006 -0.44235,0.31006 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23978 z m 0,-0.13436 v -0.7214 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20464,0.0971 0.15709,0 0.41341,-0.20671 z m -0.85163,-1.86035 h -0.0661 q 0.008,-0.28318 0.11782,-0.40927 0.10955,-0.12609 0.27078,-0.12609 0.0847,0 0.15503,0.0269 0.093,0.0351 0.26252,0.14883 0.17156,0.11162 0.25425,0.11162 0.0661,0 0.11575,-0.0558 0.0517,-0.0558 0.0806,-0.23151 h 0.0641 q 0.002,0.19223 -0.0517,0.30592 -0.0517,0.11162 -0.14883,0.1757 -0.0951,0.062 -0.19224,0.062 -0.16329,0 -0.40514,-0.16536 -0.13022,-0.0889 -0.1757,-0.10749 -0.0455,-0.0186 -0.0889,-0.0186 -0.0847,0 -0.13436,0.0744 -0.0227,0.0351 -0.0579,0.20877 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15094" />
<path
d="m 122.28135,171.44555 q 0.42995,0 0.6904,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68007,-0.34106 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38033 0.21084,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10956,0 -0.22118,0.0661 -0.10955,0.0641 -0.17777,0.22738 -0.0682,0.16329 -0.0682,0.41961 0,0.41341 0.1633,0.71313 0.16536,0.29973 0.43408,0.29973 0.2005,0 0.33073,-0.16537 0.13022,-0.16536 0.13022,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15096" />
<path
id="path15099"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 122.21736,62.21856 v 0.777213 q 0,0.227376 0.0269,0.28732 0.0289,0.05788 0.0992,0.09302 0.0724,0.03514 0.26252,0.03514 v 0.07648 h -1.4242 v -0.07648 q 0.1943,0 0.26251,-0.03514 0.0703,-0.03721 0.0971,-0.09509 0.0289,-0.05788 0.0289,-0.285253 v -1.819009 q 0,-0.227376 -0.0289,-0.285254 -0.0269,-0.05994 -0.0971,-0.09508 -0.0703,-0.03514 -0.26251,-0.03514 v -0.07648 h 1.22163 q 0.60358,0 0.86609,0.214973 0.26252,0.214974 0.26252,0.537435 0,0.272851 -0.1695,0.467154 -0.1695,0.194304 -0.46716,0.264583 -0.2005,0.04961 -0.67799,0.04961 z m 0,-1.372525 v 1.211294 q 0.0682,0.0041 0.10335,0.0041 0.25218,0 0.38861,-0.148828 0.13643,-0.150895 0.13643,-0.465088 0,-0.312125 -0.13643,-0.456819 Q 122.57289,60.846 122.30211,60.846 Z" />
<path
id="path15101"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 124.60688,61.555035 v 0.438216 q 0.19223,-0.299723 0.33693,-0.396875 0.14469,-0.09922 0.27905,-0.09922 0.11575,0 0.18397,0.07235 0.0703,0.07028 0.0703,0.200505 0,0.138492 -0.0682,0.214974 -0.0661,0.07648 -0.16123,0.07648 -0.10955,0 -0.19016,-0.07028 -0.0806,-0.07028 -0.0951,-0.07855 -0.0207,-0.0124 -0.0475,-0.0124 -0.0599,0 -0.11369,0.04548 -0.0847,0.07028 -0.12816,0.200505 -0.0661,0.200504 -0.0661,0.44235 v 0.444417 l 0.002,0.115755 q 0,0.117822 0.0145,0.150895 0.0248,0.05581 0.0724,0.08268 0.0496,0.02481 0.16536,0.03101 v 0.07441 h -1.04386 v -0.07441 q 0.12609,-0.01033 0.1695,-0.06821 0.0455,-0.05994 0.0455,-0.312125 v -1.068668 q 0,-0.165364 -0.0165,-0.21084 -0.0207,-0.05788 -0.06,-0.08475 -0.0393,-0.02687 -0.13849,-0.03721 v -0.07648 z" />
<path
id="path15103"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 126.5189,61.497157 q 0.25218,0 0.46923,0.130225 0.21704,0.130224 0.32866,0.370003 0.11368,0.239778 0.11368,0.525032 0,0.411344 -0.20877,0.688329 -0.25218,0.334863 -0.6966,0.334863 -0.43614,0 -0.67179,-0.305924 -0.23564,-0.305924 -0.23564,-0.709 0,-0.415478 0.23978,-0.723469 0.24184,-0.310059 0.66145,-0.310059 z m 0.008,0.146761 q -0.10542,0 -0.1819,0.08062 -0.0744,0.07855 -0.0992,0.314192 -0.0227,0.233577 -0.0227,0.651122 0,0.221175 0.0289,0.413412 0.0227,0.146761 0.0971,0.223242 0.0744,0.07648 0.1695,0.07648 0.093,0 0.15503,-0.05168 0.0806,-0.07028 0.10749,-0.19637 0.0413,-0.19637 0.0413,-0.793749 0,-0.3514 -0.0393,-0.481624 -0.0393,-0.132292 -0.11576,-0.192236 -0.0537,-0.04341 -0.14056,-0.04341 z" />
<path
id="path15105"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 129.30116,62.989572 0.0641,0.04961 q -0.13643,0.256315 -0.34107,0.382405 -0.20257,0.124023 -0.43201,0.124023 -0.38654,0 -0.61805,-0.291454 -0.23151,-0.291455 -0.23151,-0.700732 0,-0.394808 0.21084,-0.694531 0.25425,-0.361735 0.70073,-0.361735 0.29972,0 0.47542,0.150895 0.17777,0.150896 0.17777,0.336931 0,0.117822 -0.0724,0.188102 -0.0703,0.07028 -0.18603,0.07028 -0.12196,0 -0.20257,-0.08062 -0.0785,-0.08061 -0.0971,-0.28732 -0.0124,-0.130225 -0.0599,-0.181901 -0.0475,-0.05168 -0.11162,-0.05168 -0.0992,0 -0.1695,0.10542 -0.10748,0.159163 -0.10748,0.487825 0,0.272852 0.0868,0.522965 0.0868,0.248047 0.23771,0.370003 0.11369,0.08888 0.26872,0.08888 0.10129,0 0.19224,-0.04754 0.091,-0.04754 0.21497,-0.179833 z" />
<path
id="path15107"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 131.23799,62.452137 h -1.0604 q 0.0186,0.384472 0.20464,0.607714 0.14263,0.171566 0.34313,0.171566 0.12403,0 0.22531,-0.06821 0.10129,-0.07028 0.21704,-0.250114 l 0.0703,0.04548 q -0.15709,0.320393 -0.34726,0.454752 -0.19017,0.132291 -0.44029,0.132291 -0.42994,0 -0.65112,-0.330728 -0.17777,-0.266651 -0.17777,-0.661458 0,-0.483691 0.26045,-0.768945 0.26252,-0.287321 0.61392,-0.287321 0.29352,0 0.50849,0.241846 0.21705,0.239778 0.23358,0.713134 z m -0.50849,-0.138493 q 0,-0.332796 -0.0372,-0.456819 -0.0351,-0.124023 -0.11162,-0.188102 -0.0434,-0.03721 -0.11576,-0.03721 -0.10748,0 -0.1757,0.10542 -0.12195,0.183968 -0.12195,0.504361 v 0.07235 z" />
<path
id="path15109"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 132.6994,61.501292 0.031,0.65939 h -0.0703 q -0.12609,-0.293522 -0.26252,-0.401009 -0.13436,-0.107486 -0.26872,-0.107486 -0.0848,0 -0.14469,0.05788 -0.0599,0.05581 -0.0599,0.130225 0,0.05581 0.0413,0.107487 0.0661,0.08475 0.37,0.291454 0.30386,0.204639 0.39894,0.349333 0.0971,0.142627 0.0971,0.320393 0,0.161231 -0.0806,0.31626 -0.0806,0.155029 -0.22738,0.237711 -0.14676,0.08268 -0.32453,0.08268 -0.13849,0 -0.37,-0.08682 -0.062,-0.02274 -0.0848,-0.02274 -0.0682,0 -0.11369,0.103352 h -0.0682 l -0.0331,-0.69453 h 0.0703 q 0.093,0.272851 0.25424,0.409277 0.1633,0.136425 0.308,0.136425 0.0992,0 0.16123,-0.05994 0.0641,-0.06201 0.0641,-0.148828 0,-0.09922 -0.062,-0.171566 -0.062,-0.07235 -0.27698,-0.219108 -0.31626,-0.219108 -0.40928,-0.334863 -0.13643,-0.169498 -0.13643,-0.374137 0,-0.223242 0.15297,-0.403076 0.15503,-0.181901 0.44648,-0.181901 0.1571,0 0.30386,0.07648 0.0558,0.03101 0.0909,0.03101 0.0372,0 0.0599,-0.01447 0.0227,-0.01654 0.0724,-0.08888 z" />
<path
id="path15111"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 134.34478,61.501292 0.031,0.65939 h -0.0703 q -0.12609,-0.293522 -0.26251,-0.401009 -0.13436,-0.107486 -0.26872,-0.107486 -0.0848,0 -0.1447,0.05788 -0.0599,0.05581 -0.0599,0.130225 0,0.05581 0.0413,0.107487 0.0661,0.08475 0.37,0.291454 0.30386,0.204639 0.39895,0.349333 0.0971,0.142627 0.0971,0.320393 0,0.161231 -0.0806,0.31626 -0.0806,0.155029 -0.22737,0.237711 -0.14676,0.08268 -0.32453,0.08268 -0.13849,0 -0.37,-0.08682 -0.062,-0.02274 -0.0847,-0.02274 -0.0682,0 -0.11369,0.103352 h -0.0682 l -0.0331,-0.69453 h 0.0703 q 0.093,0.272851 0.25425,0.409277 0.1633,0.136425 0.30799,0.136425 0.0992,0 0.16123,-0.05994 0.0641,-0.06201 0.0641,-0.148828 0,-0.09922 -0.062,-0.171566 -0.062,-0.07235 -0.27699,-0.219108 -0.31626,-0.219108 -0.40927,-0.334863 -0.13643,-0.169498 -0.13643,-0.374137 0,-0.223242 0.15296,-0.403076 0.15503,-0.181901 0.44649,-0.181901 0.15709,0 0.30385,0.07648 0.0558,0.03101 0.0909,0.03101 0.0372,0 0.0599,-0.01447 0.0227,-0.01654 0.0724,-0.08888 z" />
<path
id="path15113"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 135.68009,61.497157 q 0.25218,0 0.46923,0.130225 0.21704,0.130224 0.32866,0.370003 0.11369,0.239778 0.11369,0.525032 0,0.411344 -0.20878,0.688329 -0.25218,0.334863 -0.69659,0.334863 -0.43615,0 -0.6718,-0.305924 -0.23564,-0.305924 -0.23564,-0.709 0,-0.415478 0.23978,-0.723469 0.24184,-0.310059 0.66145,-0.310059 z m 0.008,0.146761 q -0.10542,0 -0.1819,0.08062 -0.0744,0.07855 -0.0992,0.314192 -0.0227,0.233577 -0.0227,0.651122 0,0.221175 0.0289,0.413412 0.0227,0.146761 0.0972,0.223242 0.0744,0.07648 0.16949,0.07648 0.093,0 0.15503,-0.05168 0.0806,-0.07028 0.10749,-0.19637 0.0413,-0.19637 0.0413,-0.793749 0,-0.3514 -0.0393,-0.481624 -0.0393,-0.132292 -0.11576,-0.192236 -0.0537,-0.04341 -0.14056,-0.04341 z" />
<path
id="path15115"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 138.40861,60.618659 q 0.13436,0 0.22737,0.09508 0.093,0.09302 0.093,0.225309 0,0.132292 -0.0951,0.225309 -0.093,0.09302 -0.22531,0.09302 -0.13229,0 -0.22531,-0.09302 -0.093,-0.09302 -0.093,-0.225309 0,-0.132291 0.093,-0.225309 0.093,-0.09508 0.22531,-0.09508 z m 0.28939,0.936376 v 1.531688 q 0,0.204639 0.0475,0.262516 0.0475,0.05581 0.18603,0.06408 v 0.07441 h -1.04386 v -0.07441 q 0.12816,-0.0041 0.19017,-0.07441 0.0413,-0.04754 0.0413,-0.252181 v -1.128612 q 0,-0.204639 -0.0475,-0.260449 -0.0475,-0.05788 -0.18397,-0.06615 v -0.07648 z" />
<path
id="path15117"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 139.88448,60.848102 v 0.706933 h 0.45889 v 0.204638 h -0.45889 v 1.192692 q 0,0.167431 0.0145,0.21704 0.0165,0.04754 0.0558,0.07855 0.0393,0.02894 0.0724,0.02894 0.13436,0 0.25425,-0.204638 l 0.062,0.04547 q -0.16743,0.396875 -0.54363,0.396875 -0.18397,0 -0.31213,-0.101286 -0.12609,-0.103353 -0.16123,-0.229443 -0.0207,-0.07028 -0.0207,-0.380338 v -1.043864 h -0.25218 v -0.07235 q 0.26045,-0.183968 0.44235,-0.38654 0.18397,-0.202571 0.32039,-0.452685 z" />
<path
id="path15119"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 142.16858,62.452137 h -1.0604 q 0.0186,0.384472 0.20464,0.607714 0.14263,0.171566 0.34313,0.171566 0.12402,0 0.22531,-0.06821 0.10129,-0.07028 0.21704,-0.250114 l 0.0703,0.04548 q -0.15709,0.320393 -0.34726,0.454752 -0.19017,0.132291 -0.44029,0.132291 -0.42994,0 -0.65112,-0.330728 -0.17777,-0.266651 -0.17777,-0.661458 0,-0.483691 0.26045,-0.768945 0.26252,-0.287321 0.61392,-0.287321 0.29352,0 0.50849,0.241846 0.21704,0.239778 0.23358,0.713134 z m -0.50849,-0.138493 q 0,-0.332796 -0.0372,-0.456819 -0.0351,-0.124023 -0.11162,-0.188102 -0.0434,-0.03721 -0.11576,-0.03721 -0.10748,0 -0.1757,0.10542 -0.12195,0.183968 -0.12195,0.504361 v 0.07235 z" />
<path
id="path15121"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 143.21038,61.555035 v 0.438216 q 0.19223,-0.299723 0.33693,-0.396875 0.14469,-0.09922 0.27905,-0.09922 0.11575,0 0.18397,0.07235 0.0703,0.07028 0.0703,0.200505 0,0.138492 -0.0682,0.214974 -0.0661,0.07648 -0.16123,0.07648 -0.10955,0 -0.19016,-0.07028 -0.0806,-0.07028 -0.0951,-0.07855 -0.0207,-0.0124 -0.0475,-0.0124 -0.06,0 -0.11369,0.04548 -0.0848,0.07028 -0.12816,0.200505 -0.0661,0.200504 -0.0661,0.44235 v 0.444417 l 0.002,0.115755 q 0,0.117822 0.0145,0.150895 0.0248,0.05581 0.0724,0.08268 0.0496,0.02481 0.16537,0.03101 v 0.07441 h -1.04387 v -0.07441 q 0.12609,-0.01033 0.1695,-0.06821 0.0455,-0.05994 0.0455,-0.312125 v -1.068668 q 0,-0.165364 -0.0165,-0.21084 -0.0207,-0.05788 -0.06,-0.08475 -0.0393,-0.02687 -0.13849,-0.03721 v -0.07648 z" />
<path
id="path15123"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 145.35185,63.202478 q -0.35347,0.312126 -0.63459,0.312126 -0.16536,0 -0.27492,-0.107487 -0.10955,-0.109554 -0.10955,-0.272852 0,-0.221175 0.19017,-0.396874 0.19017,-0.177767 0.82889,-0.471289 v -0.194303 q 0,-0.219108 -0.0248,-0.274919 -0.0227,-0.05788 -0.0889,-0.09922 -0.0661,-0.04341 -0.14883,-0.04341 -0.13436,0 -0.22117,0.05994 -0.0537,0.03721 -0.0537,0.08682 0,0.04341 0.0579,0.107486 0.0786,0.08888 0.0786,0.171566 0,0.101286 -0.0765,0.173633 -0.0744,0.07028 -0.19637,0.07028 -0.13023,0 -0.21911,-0.07855 -0.0868,-0.07855 -0.0868,-0.183968 0,-0.148828 0.11782,-0.283187 0.11783,-0.136426 0.32867,-0.208773 0.21084,-0.07235 0.43821,-0.07235 0.27492,0 0.43408,0.117823 0.16123,0.115755 0.20878,0.25218 0.0289,0.08682 0.0289,0.398942 v 0.750341 q 0,0.132292 0.0103,0.167432 0.0103,0.03307 0.031,0.04961 0.0207,0.01654 0.0475,0.01654 0.0537,0 0.10955,-0.07648 l 0.062,0.04961 q -0.10335,0.152962 -0.21497,0.223242 -0.10955,0.06821 -0.25011,0.06821 -0.16537,0 -0.25839,-0.07648 -0.093,-0.07855 -0.11368,-0.235645 z m 0,-0.150895 v -0.646988 q -0.25012,0.146761 -0.37207,0.314192 -0.0806,0.111621 -0.0806,0.225309 0,0.09508 0.0682,0.167432 0.0517,0.05581 0.1447,0.05581 0.10335,0 0.23978,-0.115755 z" />
<path
id="path15125"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 147.16879,60.848102 v 0.706933 h 0.45888 v 0.204638 h -0.45888 v 1.192692 q 0,0.167431 0.0145,0.21704 0.0165,0.04754 0.0558,0.07855 0.0393,0.02894 0.0724,0.02894 0.13435,0 0.25424,-0.204638 l 0.062,0.04547 q -0.16743,0.396875 -0.54363,0.396875 -0.18397,0 -0.31213,-0.101286 -0.12609,-0.103353 -0.16123,-0.229443 -0.0207,-0.07028 -0.0207,-0.380338 v -1.043864 h -0.25218 v -0.07235 q 0.26045,-0.183968 0.44235,-0.38654 0.18397,-0.202571 0.3204,-0.452685 z" />
<path
id="path15127"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 148.28086,60.618659 q 0.13436,0 0.22738,0.09508 0.093,0.09302 0.093,0.225309 0,0.132292 -0.0951,0.225309 -0.093,0.09302 -0.22531,0.09302 -0.13229,0 -0.2253,-0.09302 -0.093,-0.09302 -0.093,-0.225309 0,-0.132291 0.093,-0.225309 0.093,-0.09508 0.2253,-0.09508 z m 0.28939,0.936376 v 1.531688 q 0,0.204639 0.0475,0.262516 0.0475,0.05581 0.18604,0.06408 v 0.07441 h -1.04386 v -0.07441 q 0.12815,-0.0041 0.19017,-0.07441 0.0413,-0.04754 0.0413,-0.252181 v -1.128612 q 0,-0.204639 -0.0476,-0.260449 -0.0475,-0.05788 -0.18396,-0.06615 v -0.07648 z" />
<path
id="path15129"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 149.86216,63.545609 -0.65112,-1.498615 q -0.11782,-0.270784 -0.18397,-0.343131 -0.0475,-0.05374 -0.14056,-0.07235 v -0.07648 h 1.02733 v 0.07648 q -0.0971,0 -0.13229,0.03514 -0.0496,0.04547 -0.0496,0.107487 0,0.07648 0.0909,0.287321 l 0.31832,0.725536 0.25425,-0.626318 q 0.10956,-0.268717 0.10956,-0.380338 0,-0.06408 -0.0476,-0.103353 -0.0455,-0.04134 -0.16329,-0.04548 v -0.07648 h 0.63252 v 0.07648 q -0.091,0.0124 -0.14883,0.06821 -0.0579,0.05581 -0.17364,0.328662 l -0.64492,1.517218 z" />
<path
id="path15131"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
d="m 152.0181,61.497157 q 0.25218,0 0.46922,0.130225 0.21704,0.130224 0.32866,0.370003 0.11369,0.239778 0.11369,0.525032 0,0.411344 -0.20877,0.688329 -0.25218,0.334863 -0.6966,0.334863 -0.43615,0 -0.67179,-0.305924 -0.23565,-0.305924 -0.23565,-0.709 0,-0.415478 0.23978,-0.723469 0.24185,-0.310059 0.66146,-0.310059 z m 0.008,0.146761 q -0.10542,0 -0.1819,0.08062 -0.0744,0.07855 -0.0992,0.314192 -0.0227,0.233577 -0.0227,0.651122 0,0.221175 0.0289,0.413412 0.0227,0.146761 0.0971,0.223242 0.0744,0.07648 0.1695,0.07648 0.093,0 0.15503,-0.05168 0.0806,-0.07028 0.10749,-0.19637 0.0413,-0.19637 0.0413,-0.793749 0,-0.3514 -0.0393,-0.481624 -0.0393,-0.132292 -0.11575,-0.192236 -0.0537,-0.04341 -0.14056,-0.04341 z" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-2-4"
d="m 135.10337,74.932087 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-1-3)" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-2-4-3"
d="m 139.00809,78.846774 v -2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-1-3-1)" />
<path
d="m 121.68579,189.12646 v 8.15625 h 30.74023 v -8.15625 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path34163-6-0-9-5" />
<path
d="m 121.16043,188.60165 h 31.79059 v 9.20645 h -31.79059 z"
style="fill:#ffffff;fill-opacity:1;stroke:#808080;stroke-width:0.3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7253-2-7-4-7-6-6-5-2-5" />
<path
d="m 124.69905,192.35489 h -0.74828 l -0.94878,-1.31052 q -0.10541,0.004 -0.17156,0.004 -0.0269,0 -0.0579,0 -0.031,-0.002 -0.0641,-0.004 v 0.81442 q 0,0.26459 0.0579,0.32867 0.0785,0.0909 0.23564,0.0909 h 0.10956 v 0.0765 h -1.20096 v -0.0765 h 0.10542 q 0.17776,0 0.25425,-0.11576 0.0434,-0.0641 0.0434,-0.30386 V 190.048 q 0,-0.26458 -0.0579,-0.32866 -0.0806,-0.0909 -0.23978,-0.0909 h -0.10542 v -0.0765 h 1.02112 q 0.44649,0 0.65733,0.0661 0.2129,0.0641 0.35966,0.23977 0.14883,0.17364 0.14883,0.41548 0,0.25838 -0.1695,0.44855 -0.16743,0.19017 -0.52089,0.26872 l 0.57877,0.80408 q 0.19844,0.27699 0.34107,0.36794 0.14262,0.0909 0.37207,0.11576 z m -1.99058,-1.44074 q 0.0393,0 0.0682,0.002 0.0289,0 0.0475,0 0.40101,0 0.60358,-0.17364 0.20464,-0.17363 0.20464,-0.44235 0,-0.26251 -0.16536,-0.42581 -0.1633,-0.16536 -0.43408,-0.16536 -0.11989,0 -0.32453,0.0393 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15136" />
<path
d="m 125.11659,191.1746 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15138" />
<path
d="m 127.89885,190.40565 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0662,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30178,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10129,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15140" />
<path
d="m 129.24657,190.40565 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64079 0,0.25424 -0.12196,0.51469 -0.12195,0.26045 -0.33693,0.39274 -0.2129,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13023,-0.25838 0.34107,-0.38033 0.21083,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0662 -0.10956,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41962 0,0.41341 0.16329,0.71313 0.16537,0.29972 0.43409,0.29972 0.2005,0 0.33072,-0.16536 0.13023,-0.16537 0.13023,-0.56844 0,-0.50436 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15142" />
<path
d="m 131.08832,189.41553 v 2.51148 q 0,0.17776 0.0248,0.23564 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.2005,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13023,0 0.17777,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -1.71979 q 0,-0.3204 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13643,0.0331 l -0.0351,-0.0724 0.56431,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15144" />
<path
d="m 131.51413,190.46146 h 0.8909 v 0.0765 h -0.0579 q -0.0806,0 -0.12402,0.0393 -0.0413,0.0393 -0.0413,0.10542 0,0.0724 0.0434,0.17156 l 0.44028,1.04593 0.44235,-1.0852 q 0.0475,-0.11575 0.0475,-0.1757 0,-0.0289 -0.0165,-0.0475 -0.0227,-0.031 -0.0579,-0.0413 -0.0351,-0.0124 -0.14263,-0.0124 v -0.0765 h 0.61805 v 0.0765 q -0.10748,0.008 -0.14882,0.0434 -0.0724,0.062 -0.13023,0.20671 l -0.67179,1.6247 h -0.0847 l -0.67593,-1.59795 q -0.0455,-0.11162 -0.0868,-0.15916 -0.0413,-0.0496 -0.10542,-0.0827 -0.0351,-0.0186 -0.13849,-0.0351 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15146" />
<path
d="m 134.04627,191.1746 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18603,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27285 0.62632,-0.27285 0.31832,0 0.52296,0.21084 0.20464,0.20877 0.20464,0.56017 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15148" />
<path
d="m 136.1588,190.40565 v 0.42582 q 0.23771,-0.42582 0.48783,-0.42582 0.11369,0 0.1881,0.0703 0.0744,0.0682 0.0744,0.15917 0,0.0806 -0.0537,0.13642 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.16329,-0.0703 -0.0889,-0.0723 -0.1323,-0.0723 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19223,0.27905 v 0.90744 q 0,0.15709 0.0393,0.23771 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96945 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10542 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.14469,0.031 l -0.0207,-0.0744 0.57257,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15150" />
<path
d="m 139.30073,190.40565 v 0.64492 h -0.0682 q -0.0786,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23358,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41962,0.20464 0.41962,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17364,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.16329,0.14676 0.36586,0.14676 0.14263,0 0.23151,-0.0827 0.091,-0.0848 0.091,-0.20258 0,-0.14262 -0.10129,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29973,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27078,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15152" />
<path
d="m 140.20403,189.41553 q 0.0868,0 0.14676,0.062 0.062,0.0599 0.062,0.14676 0,0.0868 -0.062,0.14882 -0.0599,0.062 -0.14676,0.062 -0.0868,0 -0.14883,-0.062 -0.062,-0.062 -0.062,-0.14882 0,-0.0868 0.0599,-0.14676 0.062,-0.062 0.1509,-0.062 z m 0.17157,0.99012 v 1.52136 q 0,0.17776 0.0248,0.23771 0.0269,0.0579 0.0765,0.0868 0.0517,0.0289 0.18603,0.0289 v 0.0744 h -0.91984 v -0.0744 q 0.1385,0 0.18604,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0289,-0.062 0.0289,-0.23771 v -0.72967 q 0,-0.308 -0.0186,-0.39895 -0.0145,-0.0661 -0.0455,-0.0909 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.14056,0.031 l -0.0289,-0.0744 0.5705,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15154" />
<path
d="m 142.12019,190.40565 v 0.64492 h -0.0682 q -0.0785,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.1943,0.15709 -0.43615,0.15709 -0.17363,0 -0.39687,-0.062 -0.0682,-0.0207 -0.11163,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.1633,0.14676 0.36587,0.14676 0.14263,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10129,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27079,0.0476 0.10542,0.031 0.14056,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15156" />
<path
d="m 143.09171,189.83928 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18397 0.0517,0.24805 0.0537,0.0641 0.13642,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20463,0.30593 -0.1323,0.10128 -0.27286,0.10128 -0.0951,0 -0.18603,-0.0517 -0.0909,-0.0538 -0.13436,-0.1509 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29972 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15158" />
<path
d="m 144.03428,191.1746 q -0.002,0.42168 0.20464,0.66146 0.20671,0.23977 0.48576,0.23977 0.18604,0 0.32246,-0.10128 0.13849,-0.10335 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28319 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25012,-0.27285 0.62632,-0.27285 0.31833,0 0.52297,0.21084 0.20463,0.20877 0.20463,0.56017 z m 0,-0.11989 h 0.87644 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17156,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15160" />
<path
d="m 146.15508,190.80873 q 0.20671,-0.20671 0.24392,-0.23771 0.093,-0.0786 0.2005,-0.12196 0.10749,-0.0434 0.21291,-0.0434 0.17776,0 0.30592,0.10336 0.12816,0.10335 0.17157,0.29972 0.2129,-0.24805 0.35966,-0.32453 0.14677,-0.0786 0.30179,-0.0786 0.1509,0 0.26665,0.0786 0.11783,0.0765 0.18604,0.25218 0.0455,0.11989 0.0455,0.37621 v 0.81442 q 0,0.17776 0.0269,0.24391 0.0207,0.0455 0.0765,0.0786 0.0558,0.031 0.1819,0.031 v 0.0744 h -0.93431 v -0.0744 h 0.0393 q 0.12196,0 0.19017,-0.0475 0.0475,-0.0331 0.0682,-0.10542 0.008,-0.0351 0.008,-0.2005 v -0.81442 q 0,-0.23151 -0.0558,-0.3266 -0.0806,-0.13229 -0.25838,-0.13229 -0.10955,0 -0.22118,0.0558 -0.10955,0.0537 -0.26665,0.20257 l -0.004,0.0227 0.004,0.0889 v 0.90331 q 0,0.1943 0.0207,0.24184 0.0227,0.0475 0.0827,0.0806 0.0599,0.031 0.20464,0.031 v 0.0744 h -0.95705 v -0.0744 q 0.1571,0 0.21498,-0.0372 0.0599,-0.0372 0.0827,-0.11163 0.0103,-0.0351 0.0103,-0.20463 v -0.81442 q 0,-0.23151 -0.0682,-0.3328 -0.0909,-0.13229 -0.25425,-0.13229 -0.11162,0 -0.22117,0.0599 -0.17157,0.0909 -0.26459,0.20464 v 1.01493 q 0,0.18603 0.0248,0.24184 0.0269,0.0558 0.0765,0.0848 0.0517,0.0269 0.20671,0.0269 v 0.0744 h -0.93638 v -0.0744 q 0.13023,0 0.1819,-0.0269 0.0517,-0.0289 0.0786,-0.0889 0.0269,-0.062 0.0269,-0.23771 v -0.72347 q 0,-0.31213 -0.0186,-0.40308 -0.0145,-0.0682 -0.0455,-0.093 -0.031,-0.0269 -0.0847,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15162" />
<path
d="m 149.9564,192.08204 q -0.29146,0.2253 -0.36587,0.26044 -0.11162,0.0517 -0.23771,0.0517 -0.19637,0 -0.32453,-0.13436 -0.12609,-0.13436 -0.12609,-0.35346 0,-0.1385 0.062,-0.23978 0.0847,-0.14056 0.29352,-0.26459 0.21084,-0.12402 0.69867,-0.30179 v -0.0744 q 0,-0.28319 -0.0909,-0.38861 -0.0889,-0.10542 -0.26045,-0.10542 -0.13023,0 -0.20671,0.0703 -0.0786,0.0703 -0.0786,0.16123 l 0.004,0.11989 q 0,0.0951 -0.0496,0.14676 -0.0475,0.0517 -0.12609,0.0517 -0.0765,0 -0.12609,-0.0537 -0.0475,-0.0537 -0.0475,-0.14676 0,-0.17777 0.1819,-0.3266 0.1819,-0.14883 0.51056,-0.14883 0.25219,0 0.41342,0.0847 0.12195,0.0641 0.17983,0.20051 0.0372,0.0889 0.0372,0.3638 v 0.64285 q 0,0.27079 0.0103,0.3328 0.0103,0.0599 0.0331,0.0806 0.0248,0.0207 0.0558,0.0207 0.0331,0 0.0579,-0.0145 0.0434,-0.0269 0.16743,-0.1509 v 0.11576 q -0.23151,0.31005 -0.44235,0.31005 -0.10129,0 -0.16123,-0.0703 -0.0599,-0.0703 -0.062,-0.23977 z m 0,-0.13436 v -0.72141 q -0.31213,0.12403 -0.40308,0.1757 -0.16329,0.0909 -0.23357,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24805 0.0889,0.0971 0.20463,0.0971 0.1571,0 0.41342,-0.2067 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15164" />
<path
d="m 151.98418,190.40565 v 0.64492 h -0.0682 q -0.0785,-0.30385 -0.20257,-0.41341 -0.12196,-0.10955 -0.31213,-0.10955 -0.14469,0 -0.23357,0.0765 -0.0889,0.0765 -0.0889,0.1695 0,0.11575 0.0661,0.19844 0.0641,0.0847 0.26045,0.17983 l 0.30179,0.14676 q 0.41961,0.20464 0.41961,0.5395 0,0.25838 -0.19637,0.41755 -0.19431,0.15709 -0.43615,0.15709 -0.17363,0 -0.39688,-0.062 -0.0682,-0.0207 -0.11162,-0.0207 -0.0475,0 -0.0744,0.0538 h -0.0682 v -0.67593 h 0.0682 q 0.0579,0.28939 0.22118,0.43615 0.1633,0.14676 0.36587,0.14676 0.14262,0 0.23151,-0.0827 0.0909,-0.0848 0.0909,-0.20258 0,-0.14262 -0.10129,-0.23977 -0.0992,-0.0972 -0.39894,-0.24598 -0.29972,-0.14883 -0.39274,-0.26872 -0.093,-0.11782 -0.093,-0.29766 0,-0.23357 0.15916,-0.39067 0.16123,-0.1571 0.41548,-0.1571 0.11162,0 0.27079,0.0476 0.10542,0.031 0.14055,0.031 0.0331,0 0.0517,-0.0145 0.0186,-0.0145 0.0434,-0.0641 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15166" />
<path
d="m 129.06674,196.37532 q -0.1385,0.14469 -0.27079,0.20877 -0.13229,0.062 -0.28525,0.062 -0.31006,0 -0.54157,-0.25838 -0.23151,-0.26045 -0.23151,-0.66766 0,-0.40721 0.25631,-0.74414 0.25632,-0.339 0.65939,-0.339 0.25012,0 0.41342,0.15917 v -0.34934 q 0,-0.32452 -0.0165,-0.39894 -0.0145,-0.0744 -0.0475,-0.10128 -0.0331,-0.0269 -0.0827,-0.0269 -0.0537,0 -0.14263,0.0331 l -0.0269,-0.0724 0.56431,-0.23151 h 0.093 v 2.18901 q 0,0.3328 0.0145,0.40721 0.0165,0.0724 0.0496,0.10129 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14882,-0.0351 l 0.0227,0.0723 -0.56224,0.23358 h -0.0951 z m 0,-0.1447 v -0.97565 q -0.0124,-0.14056 -0.0744,-0.25631 -0.062,-0.11576 -0.16537,-0.17363 -0.10128,-0.0599 -0.19844,-0.0599 -0.1819,0 -0.32452,0.1633 -0.18811,0.21497 -0.18811,0.62838 0,0.41755 0.1819,0.64079 0.18191,0.22118 0.40515,0.22118 0.1881,0 0.3638,-0.18811 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15168" />
<path
d="m 130.16434,195.40794 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18603,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52297,0.23151 -0.34106,0 -0.58497,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15503,-0.1819 -0.10128,-0.0661 -0.2129,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15170" />
<path
d="m 134.3894,195.86889 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49403,0.2005 -0.32246,0 -0.56223,-0.27078 -0.23978,-0.27079 -0.23978,-0.73174 0,-0.44648 0.26458,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.27905,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30592 0,0.0786 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12196,0 -0.18397,-0.0786 -0.0351,-0.0434 -0.0475,-0.16536 -0.0103,-0.12196 -0.0827,-0.18603 -0.0724,-0.062 -0.2005,-0.062 -0.20671,0 -0.3328,0.15297 -0.16743,0.20257 -0.16743,0.53536 0,0.339 0.16537,0.59945 0.16743,0.25838 0.45061,0.25838 0.20257,0 0.3638,-0.13849 0.11369,-0.0951 0.22118,-0.3452 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15172" />
<path
d="m 135.58416,194.63899 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64078 0,0.25425 -0.12195,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47543,0.13229 -0.42788,0 -0.68006,-0.34106 -0.2129,-0.28732 -0.2129,-0.64492 0,-0.26045 0.12815,-0.51677 0.13023,-0.25838 0.34107,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0662 -0.10956,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.2005,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37414,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15174" />
<path
d="m 137.32669,195.04 q 0.3328,-0.40101 0.63459,-0.40101 0.15502,0 0.26665,0.0786 0.11162,0.0765 0.17776,0.25425 0.0455,0.12402 0.0455,0.38033 v 0.80822 q 0,0.17984 0.0289,0.24392 0.0227,0.0517 0.0724,0.0806 0.0517,0.0289 0.1881,0.0289 v 0.0744 h -0.93637 v -0.0744 h 0.0393 q 0.13229,0 0.18397,-0.0393 0.0537,-0.0414 0.0744,-0.11989 0.008,-0.031 0.008,-0.19431 v -0.77514 q 0,-0.25838 -0.0682,-0.37414 -0.0661,-0.11782 -0.22531,-0.11782 -0.24598,0 -0.48989,0.26872 v 0.99838 q 0,0.19224 0.0227,0.23772 0.0289,0.0599 0.0786,0.0889 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93637 v -0.0744 h 0.0413 q 0.14469,0 0.1943,-0.0724 0.0517,-0.0744 0.0517,-0.28112 v -0.7028 q 0,-0.34106 -0.0165,-0.41547 -0.0145,-0.0744 -0.0475,-0.10129 -0.031,-0.0269 -0.0848,-0.0269 -0.0579,0 -0.13849,0.031 l -0.031,-0.0744 0.57051,-0.23151 h 0.0889 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15176" />
<path
d="m 139.44129,194.07262 v 0.62218 h 0.44235 v 0.1447 h -0.44235 v 1.22783 q 0,0.18396 0.0517,0.24804 0.0537,0.0641 0.13642,0.0641 0.0682,0 0.13229,-0.0413 0.0641,-0.0434 0.0992,-0.12609 h 0.0806 q -0.0724,0.20257 -0.20463,0.30592 -0.1323,0.10129 -0.27286,0.10129 -0.0951,0 -0.18603,-0.0517 -0.0909,-0.0537 -0.13436,-0.15089 -0.0434,-0.0992 -0.0434,-0.30386 v -1.2733 h -0.29972 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15296 0.11989,-0.10955 0.21291,-0.25838 0.0475,-0.0785 0.13229,-0.28732 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15178" />
<path
d="m 140.61951,194.63899 v 0.42581 q 0.23771,-0.42581 0.48782,-0.42581 0.11369,0 0.18811,0.0703 0.0744,0.0682 0.0744,0.15916 0,0.0806 -0.0537,0.13643 -0.0537,0.0558 -0.12816,0.0558 -0.0724,0 -0.1633,-0.0703 -0.0889,-0.0724 -0.13229,-0.0724 -0.0372,0 -0.0806,0.0413 -0.093,0.0847 -0.19224,0.27906 v 0.90743 q 0,0.1571 0.0393,0.23772 0.0269,0.0558 0.0951,0.093 0.0682,0.0372 0.19637,0.0372 v 0.0744 h -0.96944 v -0.0744 q 0.14469,0 0.21497,-0.0455 0.0517,-0.0331 0.0724,-0.10541 0.0103,-0.0351 0.0103,-0.20051 v -0.7338 q 0,-0.33073 -0.0145,-0.39274 -0.0124,-0.0641 -0.0496,-0.093 -0.0351,-0.0289 -0.0889,-0.0289 -0.0641,0 -0.1447,0.031 l -0.0207,-0.0744 0.57258,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15180" />
<path
d="m 142.40544,194.63899 q 0.42995,0 0.6904,0.3266 0.22118,0.27905 0.22118,0.64078 0,0.25425 -0.12196,0.5147 -0.12196,0.26045 -0.33693,0.39274 -0.21291,0.13229 -0.47542,0.13229 -0.42788,0 -0.68006,-0.34106 -0.21291,-0.28732 -0.21291,-0.64492 0,-0.26045 0.12816,-0.51677 0.13022,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44648,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0662 -0.10955,0.0641 -0.17777,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41341 0.1633,0.71314 0.16536,0.29972 0.43408,0.29972 0.20051,0 0.33073,-0.16536 0.13022,-0.16537 0.13022,-0.56844 0,-0.50437 -0.21704,-0.79375 -0.14676,-0.19844 -0.37413,-0.19844 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15182" />
<path
d="m 144.24719,193.64887 v 2.51147 q 0,0.17777 0.0248,0.23565 0.0269,0.0579 0.0806,0.0889 0.0537,0.0289 0.20051,0.0289 v 0.0744 h -0.92811 v -0.0744 q 0.13022,0 0.17776,-0.0269 0.0475,-0.0269 0.0744,-0.0889 0.0269,-0.062 0.0269,-0.23772 v -1.71979 q 0,-0.32039 -0.0145,-0.39274 -0.0145,-0.0744 -0.0475,-0.10128 -0.031,-0.0269 -0.0806,-0.0269 -0.0537,0 -0.13642,0.0331 l -0.0351,-0.0724 0.5643,-0.23151 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15184" />
<path
d="m 145.08848,195.40794 q -0.002,0.42167 0.20464,0.66145 0.20671,0.23978 0.48576,0.23978 0.18604,0 0.32246,-0.10128 0.13849,-0.10336 0.23151,-0.3514 l 0.0641,0.0413 q -0.0434,0.28318 -0.25218,0.51676 -0.20877,0.23151 -0.52296,0.23151 -0.34107,0 -0.58498,-0.26458 -0.24185,-0.26665 -0.24185,-0.7152 0,-0.48576 0.24805,-0.75654 0.25011,-0.27286 0.62632,-0.27286 0.31832,0 0.52296,0.21084 0.20464,0.20878 0.20464,0.56018 z m 0,-0.11989 h 0.87643 q -0.0103,-0.1819 -0.0434,-0.25632 -0.0517,-0.11575 -0.15502,-0.1819 -0.10129,-0.0661 -0.21291,-0.0661 -0.17157,0 -0.30799,0.13436 -0.13436,0.13229 -0.1571,0.37001 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
id="path15186" />
<path
inkscape:export-ydpi="200"
inkscape:export-xdpi="200"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path9106-8-1-12-4"
d="m 137.05573,197.80257 v 2.83482"
style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#TriangleOutM-72-8-58-2)" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:10.5833px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.264583"
x="176.43741"
y="142.93767"
id="text13728"><tspan
sodipodi:role="line"
id="tspan13726"
x="176.43741"
y="142.93767"
style="stroke-width:0.264583" /></text>
</g>
</svg>
|