summaryrefslogtreecommitdiffstats
path: root/docs/images/controlInit.svg
blob: a4805c6c64ef36ea66d9fb3ead45a90fd067c73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
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
<?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="149.69559mm"
   height="114.04693mm"
   viewBox="0 0 149.69559 114.04693"
   version="1.1"
   id="svg10350"
   sodipodi:docname="controlInit.svg"
   inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
  <defs
     id="defs10344">
    <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-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"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-9"
       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-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-3"
         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-9"
         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-4"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-17"
       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-5-4"
       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-8"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-7-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-3-9"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-98-4"
       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-8-7"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-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-4-0"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-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-4-03"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-8-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-4-0-8"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-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-4-0-6"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-98-4-73"
       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-8-7-2"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-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-4-0-60"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-8-5-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-4-0-60-2"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-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-4-0-0"
         inkscape:connector-curvature="0" />
    </marker>
    <marker
       inkscape:isstock="true"
       style="overflow:visible"
       id="TriangleOutM-72-8-6-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-4-4"
         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.98994949"
     inkscape:cx="243.08128"
     inkscape:cy="231.25618"
     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="metadata10347">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(199.6636,110.19459)">
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1"
       d="m -159.96431,-104.65161 v 2.83481"
       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 -172.89453,-100.2207 v 12.816403 h 25.85937 V -100.2207 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 -173.41957,-100.74532 h 26.91049 v 13.866604 h -26.91049 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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165-8-0-9"
       transform="translate(-221.32352,-236.34532)"
       aria-label="hmin = h * 10-1
hmax = h * 10
it = 0">
      <path
         id="path5114"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 50.249109,137.00595 -0.537435,1.86242 q 0.279053,-0.41135 0.405143,-0.55604 0.188102,-0.20877 0.322461,-0.28112 0.136426,-0.0744 0.260449,-0.0744 0.10542,0 0.179834,0.0806 0.07648,0.0786 0.07648,0.21084 0,0.11162 -0.04961,0.27905 l -0.262516,0.88057 q -0.03514,0.11575 -0.03514,0.15503 0,0.0186 0.01447,0.0351 0.01447,0.0145 0.03307,0.0145 0.0248,0 0.04961,-0.0207 0.06615,-0.0517 0.14056,-0.16537 0.0186,-0.0289 0.05994,-0.0868 l 0.08062,0.0455 q -0.177767,0.29352 -0.33693,0.40308 -0.159164,0.10955 -0.30179,0.10955 -0.128158,0 -0.200505,-0.0661 -0.07235,-0.0661 -0.07235,-0.16537 0,-0.0909 0.04961,-0.25838 L 50.3814,138.5273 q 0.02481,-0.0909 0.02481,-0.13229 0,-0.0227 -0.0186,-0.0393 -0.01654,-0.0186 -0.03927,-0.0186 -0.07441,0 -0.204639,0.12403 -0.268717,0.25425 -0.537434,0.79788 l -0.183968,0.61392 h -0.51263 l 0.677994,-2.33578 q 0.04134,-0.14882 0.04134,-0.2129 0,-0.0517 -0.04134,-0.0806 -0.05374,-0.0393 -0.165364,-0.0331 l 0.01447,-0.0827 0.68833,-0.12196 z" />
      <path
         id="path5116"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 52.057783,139.2825 -0.198437,0.66663 q 0.199988,-0.30696 0.291455,-0.41393 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.13333 0,0.076 -0.04186,0.22324 l -0.06976,0.2496 q 0.201538,-0.31006 0.289905,-0.41238 0.136426,-0.15813 0.237195,-0.21394 0.06976,-0.0403 0.148828,-0.0403 0.08216,0 0.136426,0.0558 0.05581,0.0543 0.05581,0.14263 0,0.0992 -0.04651,0.25735 l -0.172082,0.57826 q -0.03876,0.12867 -0.03876,0.16588 0,0.0124 0.0093,0.0233 0.01085,0.0108 0.02325,0.0108 0.01705,0 0.02946,-0.0108 0.05581,-0.045 0.117822,-0.13177 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.12248 0,-0.0667 0.03876,-0.20153 l 0.175183,-0.60462 q 0.03566,-0.12557 0.03566,-0.15658 0,-0.0109 -0.01085,-0.0202 -0.01085,-0.0109 -0.0217,-0.0109 -0.02015,0 -0.04031,0.009 -0.02946,0.0155 -0.09147,0.0806 -0.06046,0.0651 -0.175183,0.2341 -0.114722,0.16743 -0.15968,0.262 -0.04341,0.0946 -0.08682,0.24494 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.15038 -0.189135,0.23255 -0.344165,0.55966 l -0.125574,0.44493 H 51.24543 l 0.291455,-0.99684 q 0.04341,-0.14727 0.04341,-0.20929 0,-0.0248 -0.0124,-0.0418 -0.0124,-0.0186 -0.04031,-0.0279 -0.0279,-0.0108 -0.10697,-0.0108 l 0.0155,-0.0589 0.52865,-0.0915 z" />
      <path
         id="path5118"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 54.395625,138.56937 q 0.09612,0 0.16123,0.0667 0.06666,0.0667 0.06666,0.16123 0,0.0946 -0.06666,0.16123 -0.06666,0.0667 -0.16123,0.0667 -0.09302,0 -0.15968,-0.0667 -0.06666,-0.0667 -0.06666,-0.16123 0,-0.0946 0.06511,-0.16123 0.06666,-0.0667 0.161231,-0.0667 z m 0.09612,0.71313 -0.31781,1.10226 q -0.02635,0.0946 -0.02635,0.12402 0,0.0171 0.01395,0.0326 0.01395,0.014 0.02946,0.014 0.02635,0 0.05271,-0.0233 0.06976,-0.0574 0.167432,-0.20774 l 0.05271,0.031 q -0.234094,0.40773 -0.497644,0.40773 -0.100769,0 -0.161231,-0.0558 -0.05891,-0.0574 -0.05891,-0.14418 0,-0.0574 0.02636,-0.14572 l 0.215491,-0.74104 q 0.03101,-0.10697 0.03101,-0.16123 0,-0.0341 -0.02946,-0.0605 -0.02946,-0.0263 -0.08062,-0.0263 -0.02325,0 -0.05581,0.002 l 0.02015,-0.062 0.525549,-0.0853 z" />
      <path
         id="path5120"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 55.411067,139.2825 -0.192236,0.66508 q 0.193786,-0.29146 0.289904,-0.39843 0.141077,-0.15503 0.243396,-0.21084 0.10232,-0.0558 0.192237,-0.0558 0.08062,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198438,0.66198 q -0.02481,0.0868 -0.02481,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.110071,-0.12712 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38293 -0.479041,0.38293 -0.09612,0 -0.150378,-0.0496 -0.05426,-0.0496 -0.05426,-0.12403 0,-0.0651 0.03721,-0.19378 l 0.193786,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.017 -0.01395,-0.0294 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142627,0.0806 -0.21394,0.20464 -0.413928,0.60927 l -0.127124,0.46043 h -0.395325 l 0.289905,-0.99529 q 0.04186,-0.14727 0.04186,-0.20928 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.0279,-0.0108 -0.10542,-0.0108 l 0.01705,-0.0589 0.522449,-0.0915 z" />
      <path
         id="path5122"
         style="font-size:4.23333px;fill:#808080"
         d="m 57.465204,138.04775 h 2.230353 v 0.1695 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z" />
      <path
         id="path5124"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 62.2277,137.00595 -0.537435,1.86242 q 0.279053,-0.41135 0.405143,-0.55604 0.188102,-0.20877 0.322461,-0.28112 0.136426,-0.0744 0.260449,-0.0744 0.10542,0 0.179834,0.0806 0.07648,0.0786 0.07648,0.21084 0,0.11162 -0.04961,0.27905 l -0.262517,0.88057 q -0.03514,0.11575 -0.03514,0.15503 0,0.0186 0.01447,0.0351 0.01447,0.0145 0.03307,0.0145 0.0248,0 0.04961,-0.0207 0.06615,-0.0517 0.14056,-0.16537 0.0186,-0.0289 0.05994,-0.0868 l 0.08062,0.0455 q -0.177767,0.29352 -0.33693,0.40308 -0.159164,0.10955 -0.30179,0.10955 -0.128158,0 -0.200505,-0.0661 -0.07235,-0.0661 -0.07235,-0.16537 0,-0.0909 0.04961,-0.25838 l 0.256314,-0.88057 q 0.02481,-0.0909 0.02481,-0.13229 0,-0.0227 -0.0186,-0.0393 -0.01654,-0.0186 -0.03927,-0.0186 -0.07441,0 -0.204639,0.12403 -0.268717,0.25425 -0.537434,0.79788 l -0.183968,0.61392 h -0.51263 l 0.677994,-2.33578 q 0.04134,-0.14882 0.04134,-0.2129 0,-0.0517 -0.04134,-0.0806 -0.05374,-0.0393 -0.165364,-0.0331 l 0.01447,-0.0827 0.68833,-0.12196 z" />
      <path
         id="path5126"
         style="font-size:4.23333px;fill:#808080"
         d="m 65.272473,137.71495 q -0.0083,-0.14263 -0.05788,-0.28319 -0.07028,-0.20257 -0.07028,-0.27905 0,-0.10749 0.04961,-0.1633 0.05168,-0.0558 0.12609,-0.0558 0.06408,0 0.111621,0.0558 0.04754,0.0558 0.04754,0.15917 0,0.093 -0.05581,0.26045 -0.05374,0.16536 -0.06615,0.30592 0.113688,-0.0724 0.204639,-0.1757 0.140559,-0.1633 0.208772,-0.20257 0.06821,-0.0393 0.138493,-0.0393 0.06821,0 0.113688,0.0475 0.04754,0.0455 0.04754,0.10955 0,0.0765 -0.06821,0.13643 -0.06821,0.0599 -0.341064,0.11989 -0.159163,0.0351 -0.264583,0.0806 0.107487,0.0558 0.262516,0.0848 0.250114,0.0455 0.326595,0.11369 0.07855,0.0682 0.07855,0.14883 0,0.062 -0.04754,0.10748 -0.04548,0.0455 -0.107487,0.0455 -0.06201,0 -0.138493,-0.0434 -0.07441,-0.0434 -0.202571,-0.1943 -0.08475,-0.10129 -0.21084,-0.19017 0.0041,0.11782 0.04754,0.25631 0.07441,0.24392 0.07441,0.3328 0,0.0827 -0.04961,0.14056 -0.04961,0.0558 -0.10542,0.0558 -0.07648,0 -0.138493,-0.0599 -0.04341,-0.0434 -0.04341,-0.1385 0,-0.0992 0.04754,-0.23771 0.04754,-0.14056 0.05994,-0.19224 0.0124,-0.0537 0.02274,-0.15709 -0.121956,0.0806 -0.212907,0.17983 -0.150895,0.1695 -0.227376,0.21498 -0.05374,0.0331 -0.111621,0.0331 -0.07028,0 -0.119889,-0.0475 -0.04961,-0.0476 -0.04961,-0.10542 0,-0.0517 0.04134,-0.10749 0.04341,-0.0579 0.128157,-0.0951 0.05581,-0.0248 0.254248,-0.0661 0.128157,-0.0269 0.250114,-0.0786 -0.111621,-0.0558 -0.266651,-0.0868 -0.254247,-0.0538 -0.314192,-0.0972 -0.09302,-0.0682 -0.09302,-0.16536 0,-0.0558 0.04548,-0.10129 0.04754,-0.0475 0.109554,-0.0475 0.06821,0 0.144693,0.0434 0.07648,0.0434 0.19017,0.1757 0.113688,0.13022 0.23151,0.20257 z" />
      <path
         id="path5128"
         style="font-size:4.23333px;fill:#808080"
         d="m 67.922439,137.34495 0.682128,-0.3328 h 0.06821 v 2.36678 q 0,0.23564 0.0186,0.29352 0.02067,0.0579 0.08268,0.0889 0.06201,0.031 0.252181,0.0351 v 0.0765 h -1.054199 v -0.0765 q 0.198438,-0.004 0.256315,-0.0331 0.05788,-0.031 0.08061,-0.0806 0.02274,-0.0517 0.02274,-0.30386 v -1.51308 q 0,-0.30593 -0.02067,-0.39274 -0.01447,-0.0661 -0.05374,-0.0972 -0.03721,-0.031 -0.09095,-0.031 -0.07648,0 -0.212907,0.0641 z" />
      <path
         id="path5130"
         style="font-size:4.23333px;fill:#808080"
         d="m 69.695973,138.48803 q 0,-0.47956 0.144694,-0.82476 0.144693,-0.34726 0.384472,-0.51676 0.186035,-0.13436 0.384472,-0.13436 0.322461,0 0.578776,0.32866 0.320393,0.40721 0.320393,1.10381 0,0.48783 -0.140559,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.142626,0.94464 0.117823,0.30799 0.3514,0.30799 0.111621,0 0.23151,-0.0992 0.119889,-0.10128 0.181901,-0.33693 0.09508,-0.35553 0.09508,-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.14056,0 -0.250114,0.12609 -0.148828,0.17156 -0.202571,0.5395 -0.05374,0.36794 -0.05374,0.72554 z" />
      <path
         id="path5132"
         style="font-size:65%;baseline-shift:super;fill:#808080"
         d="m 71.771193,137.46081 h 0.694634 v 0.20288 h -0.694634 z" />
      <path
         id="path5134"
         style="font-size:65%;baseline-shift:super;fill:#808080"
         d="m 72.901148,136.53642 0.443383,-0.21632 h 0.04434 v 1.53841 q 0,0.15317 0.01209,0.19079 0.01344,0.0376 0.05374,0.0578 0.04031,0.0202 0.163917,0.0228 v 0.0497 h -0.685229 v -0.0497 q 0.128984,-0.003 0.166605,-0.0215 0.03762,-0.0202 0.0524,-0.0524 0.01478,-0.0336 0.01478,-0.1975 V 136.875 q 0,-0.19885 -0.01344,-0.25528 -0.0094,-0.043 -0.03493,-0.0632 -0.02419,-0.0202 -0.05912,-0.0202 -0.04971,0 -0.138389,0.0417 z" />
      <path
         id="path5136"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 51.132982,141.25742 -0.537435,1.86241 q 0.279053,-0.41134 0.405143,-0.55604 0.188102,-0.20877 0.322461,-0.28111 0.136425,-0.0744 0.260449,-0.0744 0.10542,0 0.179834,0.0806 0.07648,0.0785 0.07648,0.21084 0,0.11162 -0.04961,0.27905 l -0.262516,0.88056 q -0.03514,0.11576 -0.03514,0.15503 0,0.0186 0.01447,0.0351 0.01447,0.0145 0.03307,0.0145 0.0248,0 0.04961,-0.0207 0.06615,-0.0517 0.14056,-0.16536 0.0186,-0.0289 0.05994,-0.0868 l 0.08062,0.0455 q -0.177766,0.29352 -0.33693,0.40307 -0.159163,0.10956 -0.30179,0.10956 -0.128157,0 -0.200504,-0.0661 -0.07235,-0.0661 -0.07235,-0.16536 0,-0.0909 0.04961,-0.25839 l 0.256315,-0.88056 q 0.02481,-0.091 0.02481,-0.13229 0,-0.0227 -0.0186,-0.0393 -0.01654,-0.0186 -0.03927,-0.0186 -0.07441,0 -0.204638,0.12402 -0.268717,0.25425 -0.537435,0.79789 l -0.183968,0.61391 H 49.79353 l 0.677994,-2.33577 q 0.04134,-0.14883 0.04134,-0.21291 0,-0.0517 -0.04134,-0.0806 -0.05374,-0.0393 -0.165365,-0.0331 l 0.01447,-0.0827 0.688329,-0.12195 z" />
      <path
         id="path5138"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 52.941656,143.53397 -0.198438,0.66662 q 0.199988,-0.30696 0.291456,-0.41393 0.134875,-0.15658 0.221691,-0.20463 0.08837,-0.0481 0.176734,-0.0481 0.100769,0 0.145727,0.0605 0.04496,0.0605 0.04496,0.13332 0,0.076 -0.04186,0.22324 l -0.06976,0.2496 q 0.201538,-0.31006 0.289905,-0.41238 0.136425,-0.15813 0.237194,-0.21394 0.06976,-0.0403 0.148828,-0.0403 0.08217,0 0.136426,0.0558 0.05581,0.0543 0.05581,0.14262 0,0.0992 -0.04651,0.25735 l -0.172083,0.57826 q -0.03876,0.12868 -0.03876,0.16588 0,0.0124 0.0093,0.0233 0.01085,0.0109 0.02325,0.0109 0.01705,0 0.02946,-0.0109 0.05581,-0.045 0.117822,-0.13178 0.01395,-0.0186 0.04186,-0.0574 l 0.05271,0.0341 q -0.10697,0.19999 -0.235645,0.293 -0.127124,0.093 -0.235644,0.093 -0.09457,0 -0.151929,-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.02946,0.0155 -0.09147,0.0806 -0.06046,0.0651 -0.175184,0.23409 -0.114721,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.11318 0,-0.0109 -0.01085,-0.0202 -0.0093,-0.009 -0.02015,-0.009 -0.05736,0 -0.181384,0.15038 -0.189136,0.23254 -0.344165,0.55965 l -0.125574,0.44494 h -0.395325 l 0.291456,-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.0109 -0.10697,-0.0109 l 0.0155,-0.0589 0.52865,-0.0915 z" />
      <path
         id="path5140"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 56.0872,143.55567 -0.300757,1.03094 -0.03101,0.12558 q -0.0046,0.0233 -0.0046,0.0341 0,0.0186 0.0124,0.0326 0.01395,0.0139 0.02791,0.0139 0.03256,0 0.08992,-0.0496 0.02325,-0.0202 0.111621,-0.14262 l 0.05426,0.0279 q -0.110071,0.20154 -0.235645,0.29456 -0.124023,0.0915 -0.268201,0.0915 -0.08837,0 -0.134875,-0.045 -0.04651,-0.0465 -0.04651,-0.11627 0,-0.0605 0.04961,-0.2248 l 0.03721,-0.12557 q -0.179833,0.30851 -0.345715,0.43718 -0.09612,0.0744 -0.204639,0.0744 -0.142626,0 -0.206188,-0.11628 -0.06356,-0.11782 -0.06356,-0.2651 0,-0.21859 0.133325,-0.50074 0.133325,-0.2837 0.350366,-0.45579 0.178284,-0.14262 0.334863,-0.14262 0.08682,0 0.139527,0.0512 0.05271,0.0496 0.07751,0.18293 l 0.05581,-0.19069 z m -0.496094,0.29456 q 0,-0.12558 -0.03876,-0.18139 -0.0279,-0.0388 -0.07596,-0.0388 -0.04806,0 -0.09922,0.0465 -0.10387,0.0961 -0.224792,0.39068 -0.119373,0.293 -0.119373,0.50694 0,0.0822 0.02636,0.11938 0.0279,0.0357 0.06046,0.0357 0.06976,0 0.141077,-0.0806 0.102319,-0.11473 0.184485,-0.28061 0.145727,-0.29145 0.145727,-0.51779 z" />
      <path
         id="path5142"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 56.29804,143.62698 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.12558 0,0.0744 -0.04651,0.12247 -0.04496,0.0465 -0.113171,0.0465 -0.04961,0 -0.114722,-0.0171 -0.06356,-0.0186 -0.08837,-0.0186 -0.06511,0 -0.124023,0.0465 -0.08062,0.0636 -0.198438,0.2713 0.131775,0.46509 0.21084,0.56741 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.0325 q -0.136426,0.22015 -0.266651,0.31006 -0.09922,0.0698 -0.195336,0.0698 -0.09922,0 -0.165882,-0.0434 -0.06511,-0.045 -0.116272,-0.14418 -0.05116,-0.10077 -0.120923,-0.32091 -0.181384,0.23099 -0.285253,0.33796 -0.10232,0.10542 -0.170533,0.13798 -0.06821,0.0326 -0.145727,0.0326 -0.08062,0 -0.127124,-0.0465 -0.04806,-0.0465 -0.04806,-0.12093 0,-0.0791 0.05116,-0.13022 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.08062,-0.0186 0.04651,-0.0233 0.117822,-0.10077 0.04341,-0.0481 0.159681,-0.20464 -0.148829,-0.5519 -0.232544,-0.66042 -0.05271,-0.0698 -0.133326,-0.0698 -0.04186,0 -0.102319,0.0124 z" />
      <path
         id="path5144"
         style="font-size:4.23333px;fill:#808080"
         d="m 58.876176,142.29921 h 2.230353 v 0.1695 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z" />
      <path
         id="path5146"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 63.638672,141.25742 -0.537434,1.86241 q 0.279052,-0.41134 0.405143,-0.55604 0.188102,-0.20877 0.32246,-0.28111 0.136426,-0.0744 0.260449,-0.0744 0.10542,0 0.179834,0.0806 0.07648,0.0785 0.07648,0.21084 0,0.11162 -0.04961,0.27905 l -0.262516,0.88056 q -0.03514,0.11576 -0.03514,0.15503 0,0.0186 0.01447,0.0351 0.01447,0.0145 0.03307,0.0145 0.02481,0 0.04961,-0.0207 0.06615,-0.0517 0.14056,-0.16536 0.0186,-0.0289 0.05994,-0.0868 l 0.08061,0.0455 q -0.177767,0.29352 -0.33693,0.40307 -0.159163,0.10956 -0.30179,0.10956 -0.128158,0 -0.200505,-0.0661 -0.07235,-0.0661 -0.07235,-0.16536 0,-0.0909 0.04961,-0.25839 l 0.256315,-0.88056 q 0.0248,-0.091 0.0248,-0.13229 0,-0.0227 -0.0186,-0.0393 -0.01654,-0.0186 -0.03927,-0.0186 -0.07441,0 -0.204639,0.12402 -0.268717,0.25425 -0.537434,0.79789 l -0.183968,0.61391 h -0.51263 l 0.677994,-2.33577 q 0.04134,-0.14883 0.04134,-0.21291 0,-0.0517 -0.04134,-0.0806 -0.05374,-0.0393 -0.165364,-0.0331 l 0.01447,-0.0827 0.68833,-0.12195 z" />
      <path
         id="path5148"
         style="font-size:4.23333px;fill:#808080"
         d="m 66.683445,141.96642 q -0.0083,-0.14263 -0.05788,-0.28319 -0.07028,-0.20257 -0.07028,-0.27905 0,-0.10749 0.04961,-0.1633 0.05168,-0.0558 0.12609,-0.0558 0.06408,0 0.111621,0.0558 0.04754,0.0558 0.04754,0.15916 0,0.093 -0.05581,0.26045 -0.05374,0.16537 -0.06615,0.30593 0.113688,-0.0724 0.204639,-0.1757 0.14056,-0.1633 0.208772,-0.20258 0.06821,-0.0393 0.138493,-0.0393 0.06821,0 0.113688,0.0475 0.04754,0.0455 0.04754,0.10956 0,0.0765 -0.06821,0.13642 -0.06821,0.06 -0.341065,0.11989 -0.159163,0.0351 -0.264583,0.0806 0.107487,0.0558 0.262516,0.0847 0.250114,0.0455 0.326595,0.11368 0.07855,0.0682 0.07855,0.14883 0,0.062 -0.04754,0.10749 -0.04547,0.0455 -0.107487,0.0455 -0.06201,0 -0.138493,-0.0434 -0.07441,-0.0434 -0.202571,-0.19431 -0.08475,-0.10128 -0.21084,-0.19017 0.0041,0.11783 0.04754,0.25632 0.07441,0.24391 0.07441,0.33279 0,0.0827 -0.04961,0.14056 -0.04961,0.0558 -0.10542,0.0558 -0.07648,0 -0.138492,-0.0599 -0.04341,-0.0434 -0.04341,-0.13849 0,-0.0992 0.04754,-0.23771 0.04754,-0.14056 0.05994,-0.19224 0.0124,-0.0537 0.02274,-0.1571 -0.121956,0.0806 -0.212907,0.17984 -0.150895,0.1695 -0.227376,0.21497 -0.05374,0.0331 -0.111621,0.0331 -0.07028,0 -0.119889,-0.0475 -0.04961,-0.0475 -0.04961,-0.10542 0,-0.0517 0.04134,-0.10748 0.04341,-0.0579 0.128157,-0.0951 0.05581,-0.0248 0.254248,-0.0661 0.128157,-0.0269 0.250114,-0.0785 -0.111621,-0.0558 -0.26665,-0.0868 -0.254248,-0.0537 -0.314193,-0.0971 -0.09302,-0.0682 -0.09302,-0.16537 0,-0.0558 0.04548,-0.10128 0.04754,-0.0475 0.109554,-0.0475 0.06821,0 0.144694,0.0434 0.07648,0.0434 0.190169,0.1757 0.113688,0.13023 0.23151,0.20258 z" />
      <path
         id="path5150"
         style="font-size:4.23333px;fill:#808080"
         d="m 69.333411,141.59641 0.682129,-0.33279 h 0.06821 v 2.36678 q 0,0.23564 0.0186,0.29352 0.02067,0.0579 0.08268,0.0889 0.06201,0.031 0.252181,0.0351 v 0.0765 h -1.054198 v -0.0765 q 0.198437,-0.004 0.256314,-0.0331 0.05788,-0.031 0.08062,-0.0806 0.02274,-0.0517 0.02274,-0.30385 v -1.51309 q 0,-0.30592 -0.02067,-0.39274 -0.01447,-0.0661 -0.05374,-0.0971 -0.03721,-0.031 -0.09095,-0.031 -0.07648,0 -0.212907,0.0641 z" />
      <path
         id="path5152"
         style="font-size:4.23333px;fill:#808080"
         d="m 71.106945,142.73949 q 0,-0.47955 0.144694,-0.82475 0.144694,-0.34727 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.48782 -0.14056,0.82889 -0.14056,0.34106 -0.359668,0.49609 -0.217041,0.15296 -0.419612,0.15296 -0.401009,0 -0.667659,-0.47335 -0.225309,-0.39895 -0.225309,-0.96119 z m 0.405143,0.0517 q 0,0.57878 0.142627,0.94465 0.117822,0.30799 0.351399,0.30799 0.111621,0 0.23151,-0.0992 0.119889,-0.10129 0.181901,-0.33693 0.09509,-0.35554 0.09509,-1.00252 0,-0.47956 -0.09922,-0.79995 -0.07441,-0.23772 -0.192236,-0.33693 -0.08475,-0.0682 -0.204639,-0.0682 -0.140559,0 -0.250113,0.12609 -0.148828,0.17157 -0.202572,0.5395 -0.05374,0.36794 -0.05374,0.72554 z" />
      <path
         id="path5154"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 57.871585,145.50888 q 0.128157,0 0.214974,0.0889 0.08888,0.0889 0.08888,0.21498 0,0.12609 -0.08888,0.21497 -0.08888,0.0889 -0.214974,0.0889 -0.124023,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.663524,0.54363 -0.134359,0 -0.214974,-0.0744 -0.07855,-0.0765 -0.07855,-0.19224 0,-0.0765 0.03514,-0.1943 l 0.28732,-0.98805 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.11368 z" />
      <path
         id="path5156"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 59.308189,145.95536 -0.165365,0.56224 h 0.270784 l -0.07235,0.23771 h -0.26665 l -0.345198,1.1989 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.314193,0.3638 -0.171565,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.326594,-1.11828 h -0.281119 l 0.04134,-0.15296 q 0.264583,-0.0971 0.446484,-0.22737 0.181901,-0.13023 0.438216,-0.41962 z" />
      <path
         id="path5158"
         style="font-size:4.23333px;fill:#808080"
         d="m 60.403728,146.55068 h 2.230353 v 0.16949 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z" />
      <path
         id="path5160"
         style="font-size:4.23333px;fill:#808080"
         d="m 63.928057,146.99096 q 0,-0.47956 0.144694,-0.82476 0.144694,-0.34726 0.384473,-0.51676 0.186035,-0.13436 0.384472,-0.13436 0.322461,0 0.578775,0.32866 0.320394,0.40721 0.320394,1.10381 0,0.48783 -0.14056,0.82889 -0.140559,0.34106 -0.359667,0.49609 -0.217041,0.15297 -0.419613,0.15297 -0.401008,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.3514,0.30799 0.111621,0 0.23151,-0.0992 0.119889,-0.10128 0.181901,-0.33693 0.09508,-0.35553 0.09508,-1.00252 0,-0.47956 -0.09922,-0.79995 -0.07441,-0.23771 -0.192237,-0.33693 -0.08475,-0.0682 -0.204638,-0.0682 -0.14056,0 -0.250114,0.12609 -0.148828,0.17156 -0.202571,0.5395 -0.05374,0.36793 -0.05374,0.72554 z" />
    </g>
    <path
       d="m -165.78125,-109.53125 c -1.42986,0 -2.46289,0.88785 -2.46289,1.84961 v 0.53516 c 0,0.96175 1.03303,1.84961 2.46289,1.8496 h 11.63281 c 1.42986,0 2.46289,-0.88785 2.46289,-1.8496 v -0.53516 c 0,-0.96176 -1.03303,-1.84961 -2.46289,-1.84961 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 -165.78035,-110.04459 h 11.63207 c 1.64902,0 2.97657,1.05417 2.97657,2.36361 v 0.53454 c 0,1.30945 -1.32755,2.36362 -2.97657,2.36362 h -11.63207 c -1.64902,0 -2.97656,-1.05417 -2.97656,-2.36362 v -0.53454 c 0,-1.30944 1.32754,-2.36361 2.97656,-2.36361 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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times 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="flowRoot34623-8"
       transform="translate(-217.77814,-273.66625)"
       aria-label="INÍCIO">
      <path
         id="path5165"
         style="font-size:4.23333px;fill:#808080"
         d="m 52.525809,167.28671 v 0.0765 H 51.32485 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.09095,-0.0496 -0.190169,-0.0496 h -0.09922 v -0.0765 h 1.200959 v 0.0765 h -0.101286 q -0.171565,0 -0.250113,0.10129 -0.05168,0.0661 -0.05168,0.31833 v 1.81074 q 0,0.2129 0.02687,0.28112 0.02067,0.0517 0.08682,0.0889 0.08888,0.0496 0.188102,0.0496 z" />
      <path
         id="path5167"
         style="font-size:4.23333px;fill:#808080"
         d="m 52.577486,164.56026 h 0.760676 l 1.713589,2.1022 v -1.61644 q 0,-0.25838 -0.05788,-0.32246 -0.07648,-0.0868 -0.241846,-0.0868 h -0.09715 v -0.0765 h 0.975651 v 0.0765 h -0.09922 q -0.177767,0 -0.252181,0.10749 -0.04548,0.0662 -0.04548,0.30179 v 2.36265 h -0.07441 l -1.847948,-2.25723 v 1.72599 q 0,0.25839 0.05581,0.32246 0.07855,0.0868 0.241845,0.0868 h 0.09922 v 0.0765 h -0.97565 v -0.0765 h 0.09715 q 0.179834,0 0.254248,-0.10749 0.04548,-0.0661 0.04548,-0.30179 v -1.94923 q -0.121956,-0.14263 -0.186035,-0.1881 -0.06201,-0.0455 -0.183967,-0.0848 -0.05994,-0.0186 -0.181901,-0.0186 z" />
      <path
         id="path5169"
         style="font-size:4.23333px;fill:#808080"
         d="m 56.998918,167.28671 v 0.0765 h -1.20096 v -0.0765 h 0.09922 q 0.173633,0 0.252181,-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.09095,-0.0496 -0.190169,-0.0496 h -0.09922 v -0.0765 h 1.20096 v 0.0765 h -0.101286 q -0.171566,0 -0.250114,0.10129 -0.05168,0.0661 -0.05168,0.31833 v 1.81074 q 0,0.2129 0.02687,0.28112 0.02067,0.0517 0.08682,0.0889 0.08888,0.0496 0.188102,0.0496 z m -0.138493,-3.63802 -0.609782,0.71314 h -0.07028 l 0.21704,-0.71314 z" />
      <path
         id="path5171"
         style="font-size:4.23333px;fill:#808080"
         d="m 59.655084,164.49619 0.06408,0.95291 h -0.06408 q -0.128158,-0.42788 -0.365869,-0.61598 -0.237711,-0.18811 -0.570507,-0.18811 -0.279053,0 -0.504362,0.14263 -0.225309,0.14056 -0.355533,0.45062 -0.128158,0.31006 -0.128158,0.77101 0,0.38034 0.121957,0.65939 0.121956,0.27905 0.365868,0.42788 0.24598,0.14883 0.560172,0.14883 0.272852,0 0.481624,-0.11576 0.208773,-0.11782 0.458887,-0.46508 l 0.06408,0.0413 q -0.210839,0.37413 -0.491959,0.54777 -0.281119,0.17363 -0.667659,0.17363 -0.696597,0 -1.079003,-0.51676 -0.285253,-0.38448 -0.285253,-0.90537 0,-0.41962 0.188102,-0.77102 0.188102,-0.3514 0.516764,-0.54363 0.330728,-0.1943 0.721402,-0.1943 0.303857,0 0.599446,0.14882 0.08682,0.0455 0.124023,0.0455 0.05581,0 0.09715,-0.0393 0.05374,-0.0558 0.07648,-0.15502 z" />
      <path
         id="path5173"
         style="font-size:4.23333px;fill:#808080"
         d="m 61.240516,167.28671 v 0.0765 h -1.20096 v -0.0765 h 0.09922 q 0.173633,0 0.252181,-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.09095,-0.0496 -0.190169,-0.0496 h -0.09922 v -0.0765 h 1.20096 v 0.0765 H 61.13923 q -0.171566,0 -0.250114,0.10129 -0.05168,0.0661 -0.05168,0.31833 v 1.81074 q 0,0.2129 0.02687,0.28112 0.02067,0.0517 0.08682,0.0889 0.08888,0.0496 0.188102,0.0496 z" />
      <path
         id="path5175"
         style="font-size:4.23333px;fill:#808080"
         d="m 62.896227,164.49619 q 0.545703,0 0.944645,0.41547 0.401008,0.41341 0.401008,1.03353 0,0.63872 -0.403075,1.0604 -0.403076,0.42168 -0.975651,0.42168 -0.578775,0 -0.973583,-0.41134 -0.39274,-0.41135 -0.39274,-1.06454 0,-0.66766 0.454752,-1.08934 0.394807,-0.36586 0.944644,-0.36586 z m -0.03927,0.15089 q -0.376204,0 -0.60358,0.27905 -0.283187,0.34727 -0.283187,1.01699 0,0.68627 0.293522,1.05627 0.225309,0.28112 0.595312,0.28112 0.394808,0 0.651123,-0.30799 0.258382,-0.30799 0.258382,-0.97152 0,-0.71933 -0.283187,-1.0728 -0.227376,-0.28112 -0.628385,-0.28112 z" />
    </g>
    <path
       d="m -170.27344,-62.041016 v 9.574219 h 20.61719 v -9.574219 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-1-0" />
    <path
       d="m -170.79828,-62.567089 h 21.66794 v 10.626369 h -21.66794 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-2-2" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165-8-0-9-8-5"
       transform="translate(-218.74949,-200.15679)"
       aria-label="
soln-1 = soln
en-1 = en">
      <path
         id="path5180"
         style="font-size:4.23333px;fill:#808080"
         d="m 50.177935,142.19209 -0.09095,0.63872 h -0.07648 q -0.01654,-0.24805 -0.152963,-0.39068 -0.134358,-0.14262 -0.289387,-0.14262 -0.09508,0 -0.157097,0.0558 -0.06201,0.0558 -0.06201,0.13436 0,0.0661 0.02687,0.12402 0.02687,0.0579 0.11989,0.1571 0.326594,0.35139 0.396874,0.48369 0.07028,0.13229 0.07028,0.28318 0,0.1633 -0.08268,0.31006 -0.08268,0.1447 -0.248047,0.23358 -0.163297,0.0868 -0.341064,0.0868 -0.119889,0 -0.295589,-0.0475 -0.115755,-0.0331 -0.173632,-0.0331 -0.05168,0 -0.08062,0.0165 -0.02894,0.0145 -0.06408,0.0641 h -0.07648 l 0.101285,-0.68832 h 0.06615 q 0.07235,0.25011 0.134359,0.3576 0.06408,0.10542 0.169498,0.16949 0.10542,0.062 0.202572,0.062 0.113688,0 0.188102,-0.0703 0.07441,-0.0724 0.07441,-0.17157 0,-0.0971 -0.04961,-0.1881 -0.04754,-0.0909 -0.223242,-0.28319 -0.241845,-0.26251 -0.318326,-0.40514 -0.05374,-0.10335 -0.05374,-0.23565 0,-0.22324 0.161231,-0.37207 0.163297,-0.14882 0.456819,-0.14882 0.128158,0 0.314193,0.0455 0.09302,0.0227 0.148828,0.0227 0.08061,0 0.130224,-0.0682 z" />
      <path
         id="path5182"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 51.639343,142.19209 q 0.163298,0 0.305925,0.0765 0.144693,0.0744 0.21704,0.20877 0.07441,0.13436 0.07441,0.29766 0,0.33486 -0.188102,0.66972 -0.186035,0.33487 -0.491959,0.52917 -0.305924,0.19223 -0.615982,0.19223 -0.28112,0 -0.436149,-0.16743 -0.152962,-0.16743 -0.152962,-0.40927 0,-0.28732 0.113688,-0.53744 0.115755,-0.25218 0.291455,-0.43821 0.177766,-0.18811 0.40721,-0.30386 0.229443,-0.11782 0.475422,-0.11782 z m -0.08475,0.10955 q -0.109554,0 -0.181901,0.0641 -0.144694,0.13022 -0.326595,0.60978 -0.181901,0.47749 -0.181901,0.86196 0,0.0951 0.05788,0.1571 0.05788,0.062 0.136426,0.062 0.08062,0 0.142627,-0.0496 0.09095,-0.0744 0.223242,-0.33279 0.132291,-0.26045 0.21704,-0.57258 0.08475,-0.31419 0.08475,-0.57464 0,-0.10749 -0.05168,-0.16536 -0.05168,-0.06 -0.119889,-0.06 z" />
      <path
         id="path5184"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 53.704332,141.24124 -0.684196,2.32751 q -0.05994,0.2067 -0.05994,0.25838 0,0.0269 0.01654,0.0455 0.0186,0.0186 0.03927,0.0186 0.03721,0 0.07028,-0.0289 0.09922,-0.0806 0.221175,-0.27285 l 0.08062,0.0372 q -0.19637,0.3142 -0.386539,0.44855 -0.130225,0.0909 -0.276986,0.0909 -0.136425,0 -0.21704,-0.0723 -0.08062,-0.0744 -0.08062,-0.17777 0,-0.0765 0.04961,-0.24598 l 0.558105,-1.90582 q 0.04548,-0.1571 0.04548,-0.20878 0,-0.0496 -0.04341,-0.0785 -0.05788,-0.0413 -0.1757,-0.0351 l 0.02274,-0.0786 0.696597,-0.12196 z" />
      <path
         id="path5186"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 54.386978,143.51779 -0.192237,0.66508 q 0.193787,-0.29146 0.289905,-0.39843 0.141077,-0.15503 0.243396,-0.21084 0.102319,-0.0558 0.192236,-0.0558 0.08062,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198437,0.66198 q -0.02481,0.0868 -0.02481,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.110071,-0.12712 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38293 -0.47904,0.38293 -0.09612,0 -0.150379,-0.0496 -0.05426,-0.0496 -0.05426,-0.12403 0,-0.0651 0.03721,-0.19378 l 0.193787,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.0171 -0.01395,-0.0295 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142627,0.0806 -0.213941,0.20464 -0.413928,0.60927 l -0.127124,0.46043 h -0.395325 l 0.289905,-0.99528 q 0.04186,-0.14728 0.04186,-0.20929 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.02791,-0.0109 -0.10542,-0.0109 l 0.01705,-0.0589 0.522449,-0.0915 z" />
      <path
         id="path5188"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 55.427224,144.0976 h 0.902271 l -0.09612,0.32246 h -0.906921 z" />
      <path
         id="path5190"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 57.779019,142.80931 -0.513147,1.76423 q -0.04031,0.13798 -0.04031,0.17518 0,0.0372 0.02791,0.0775 0.02946,0.0388 0.06201,0.0512 0.03411,0.0109 0.201538,0.0202 l -0.01705,0.0574 h -1.05885 l 0.01705,-0.0574 q 0.15813,-0.003 0.220142,-0.0264 0.06201,-0.0233 0.100769,-0.076 0.04031,-0.0527 0.08992,-0.22169 l 0.303857,-1.048 q 0.06976,-0.23874 0.07286,-0.25269 0.0093,-0.0403 0.0093,-0.076 0,-0.0698 -0.04341,-0.11007 -0.04186,-0.0419 -0.120922,-0.0419 -0.03876,0 -0.153479,0.0124 l -0.0124,-0.0574 0.789099,-0.19068 z" />
      <path
         id="path5192"
         style="font-size:4.23333px;fill:#808080"
         d="m 59.089015,142.28304 h 2.230353 v 0.1695 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z" />
      <path
         id="path5194"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 64.035479,142.19209 -0.09095,0.63872 h -0.07648 q -0.01654,-0.24805 -0.152962,-0.39068 -0.134358,-0.14262 -0.289387,-0.14262 -0.09508,0 -0.157097,0.0558 -0.06201,0.0558 -0.06201,0.13436 0,0.0661 0.02687,0.12402 0.02687,0.0579 0.11989,0.1571 0.326594,0.35139 0.396874,0.48369 0.07028,0.13229 0.07028,0.28318 0,0.1633 -0.08268,0.31006 -0.08268,0.1447 -0.248047,0.23358 -0.163297,0.0868 -0.341064,0.0868 -0.119889,0 -0.295589,-0.0475 -0.115755,-0.0331 -0.173632,-0.0331 -0.05168,0 -0.08062,0.0165 -0.02894,0.0145 -0.06408,0.0641 h -0.07648 l 0.101285,-0.68832 h 0.06615 q 0.07235,0.25011 0.134359,0.3576 0.06408,0.10542 0.169498,0.16949 0.10542,0.062 0.202572,0.062 0.113688,0 0.188102,-0.0703 0.07441,-0.0724 0.07441,-0.17157 0,-0.0971 -0.04961,-0.1881 -0.04754,-0.0909 -0.223242,-0.28319 -0.241845,-0.26251 -0.318326,-0.40514 -0.05374,-0.10335 -0.05374,-0.23565 0,-0.22324 0.161231,-0.37207 0.163297,-0.14882 0.456819,-0.14882 0.128157,0 0.314192,0.0455 0.09302,0.0227 0.148828,0.0227 0.08062,0 0.130225,-0.0682 z" />
      <path
         id="path5196"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 65.496887,142.19209 q 0.163298,0 0.305924,0.0765 0.144694,0.0744 0.217041,0.20877 0.07441,0.13436 0.07441,0.29766 0,0.33486 -0.188102,0.66972 -0.186035,0.33487 -0.491959,0.52917 -0.305924,0.19223 -0.615983,0.19223 -0.281119,0 -0.436148,-0.16743 -0.152962,-0.16743 -0.152962,-0.40927 0,-0.28732 0.113688,-0.53744 0.115755,-0.25218 0.291455,-0.43821 0.177766,-0.18811 0.407209,-0.30386 0.229444,-0.11782 0.475423,-0.11782 z m -0.08475,0.10955 q -0.109554,0 -0.181901,0.0641 -0.144694,0.13022 -0.326595,0.60978 -0.181901,0.47749 -0.181901,0.86196 0,0.0951 0.05788,0.1571 0.05788,0.062 0.136426,0.062 0.08062,0 0.142626,-0.0496 0.09095,-0.0744 0.223242,-0.33279 0.132292,-0.26045 0.217041,-0.57258 0.08475,-0.31419 0.08475,-0.57464 0,-0.10749 -0.05168,-0.16536 -0.05168,-0.06 -0.119889,-0.06 z" />
      <path
         id="path5198"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 67.561876,141.24124 -0.684196,2.32751 q -0.05994,0.2067 -0.05994,0.25838 0,0.0269 0.01654,0.0455 0.0186,0.0186 0.03927,0.0186 0.03721,0 0.07028,-0.0289 0.09922,-0.0806 0.221175,-0.27285 l 0.08061,0.0372 q -0.19637,0.3142 -0.386539,0.44855 -0.130225,0.0909 -0.276986,0.0909 -0.136425,0 -0.21704,-0.0723 -0.08062,-0.0744 -0.08062,-0.17777 0,-0.0765 0.04961,-0.24598 l 0.558105,-1.90582 q 0.04547,-0.1571 0.04547,-0.20878 0,-0.0496 -0.04341,-0.0785 -0.05788,-0.0413 -0.1757,-0.0351 l 0.02274,-0.0786 0.696597,-0.12196 z" />
      <path
         id="path5200"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:2.82222px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 68.150298,143.67747 -0.170877,0.59118 q 0.172255,-0.25907 0.257693,-0.35415 0.125401,-0.13781 0.216352,-0.18742 0.09095,-0.0496 0.170876,-0.0496 0.07166,0 0.122646,0.0538 0.05099,0.0524 0.05099,0.1378 0,0.0772 -0.03307,0.18741 l -0.176389,0.58842 q -0.02205,0.0772 -0.02205,0.1006 0,0.0138 0.0096,0.0248 0.01102,0.011 0.02205,0.011 0.01378,0 0.02894,-0.011 0.04823,-0.04 0.09784,-0.113 0.0124,-0.0193 0.03996,-0.0579 l 0.05237,0.0317 q -0.202572,0.34038 -0.425814,0.34038 -0.08544,0 -0.13367,-0.0441 -0.04823,-0.0441 -0.04823,-0.11024 0,-0.0579 0.03307,-0.17226 l 0.172255,-0.58842 q 0.01791,-0.0579 0.01791,-0.0854 0,-0.0152 -0.0124,-0.0262 -0.0124,-0.0124 -0.02894,-0.0124 -0.05236,0 -0.126779,0.0717 -0.190169,0.1819 -0.367936,0.54157 l -0.112999,0.40927 h -0.3514 l 0.257693,-0.8847 q 0.03721,-0.13091 0.03721,-0.18603 0,-0.0234 -0.01102,-0.0386 -0.01102,-0.0165 -0.03583,-0.0248 -0.02481,-0.01 -0.09371,-0.01 l 0.01516,-0.0524 0.464398,-0.0813 z" />
      <path
         id="path5202"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 49.13802,148.67398 q -0.0186,0.13436 -0.0186,0.22118 0,0.15503 0.08888,0.24804 0.09095,0.093 0.241846,0.093 0.144694,0 0.289387,-0.0703 0.146761,-0.0703 0.338998,-0.24598 l 0.06201,0.0558 q -0.237711,0.28732 -0.46302,0.40928 -0.225309,0.12196 -0.498161,0.12196 -0.345198,0 -0.477489,-0.16537 -0.132292,-0.16536 -0.132292,-0.3824 0,-0.339 0.19637,-0.678 0.198438,-0.33899 0.537435,-0.54363 0.341064,-0.20464 0.684195,-0.20464 0.173633,0 0.262516,0.0827 0.08888,0.0827 0.08888,0.20877 0,0.1509 -0.08682,0.29352 -0.119889,0.19431 -0.30179,0.3142 -0.181901,0.11782 -0.40721,0.17983 -0.150895,0.0413 -0.405143,0.062 z m 0.0186,-0.10748 q 0.181901,-0.0269 0.281119,-0.0724 0.101286,-0.0475 0.196371,-0.14883 0.09715,-0.10335 0.167431,-0.25838 0.07028,-0.1571 0.07028,-0.29352 0,-0.0579 -0.03307,-0.0909 -0.03101,-0.0331 -0.08062,-0.0331 -0.09922,0 -0.223242,0.1385 -0.227376,0.25218 -0.378271,0.75861 z" />
      <path
         id="path5204"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 51.201459,148.85867 -0.192236,0.66508 q 0.193787,-0.29146 0.289905,-0.39843 0.141076,-0.15503 0.243396,-0.21084 0.102319,-0.0558 0.192236,-0.0558 0.08062,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198438,0.66198 q -0.0248,0.0868 -0.0248,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.11007,-0.12713 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38292 -0.479041,0.38292 -0.09612,0 -0.150378,-0.0496 -0.05426,-0.0496 -0.05426,-0.12402 0,-0.0651 0.03721,-0.19379 l 0.193786,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.0171 -0.01395,-0.0295 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142626,0.0806 -0.213941,0.20464 -0.413929,0.60927 l -0.127124,0.46043 h -0.395324 l 0.289904,-0.99528 q 0.04186,-0.14728 0.04186,-0.20929 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.02791,-0.0109 -0.10542,-0.0109 l 0.01705,-0.0589 0.522448,-0.0915 z" />
      <path
         id="path5206"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 52.241706,149.43848 h 0.90227 l -0.09612,0.32246 h -0.906921 z" />
      <path
         id="path5208"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 54.5935,148.15019 -0.513147,1.76423 q -0.04031,0.13798 -0.04031,0.17519 0,0.0372 0.02791,0.0775 0.02945,0.0388 0.06201,0.0512 0.03411,0.0109 0.201538,0.0202 l -0.01705,0.0574 h -1.05885 l 0.01705,-0.0574 q 0.15813,-0.003 0.220141,-0.0264 0.06201,-0.0233 0.100769,-0.076 0.04031,-0.0527 0.08992,-0.22169 l 0.303858,-1.048 q 0.06976,-0.23874 0.07286,-0.25269 0.0093,-0.0403 0.0093,-0.076 0,-0.0698 -0.04341,-0.11007 -0.04186,-0.0419 -0.120923,-0.0419 -0.03876,0 -0.153479,0.0124 l -0.0124,-0.0574 0.789099,-0.19069 z" />
      <path
         id="path5210"
         style="font-size:4.23333px;fill:#808080"
         d="m 55.903497,147.62392 h 2.230353 v 0.1695 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z" />
      <path
         id="path5212"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 59.936322,148.67398 q -0.0186,0.13436 -0.0186,0.22118 0,0.15503 0.08888,0.24804 0.09095,0.093 0.241845,0.093 0.144694,0 0.289388,-0.0703 0.146761,-0.0703 0.338997,-0.24598 l 0.06201,0.0558 q -0.237711,0.28732 -0.463021,0.40928 -0.225309,0.12196 -0.49816,0.12196 -0.345198,0 -0.47749,-0.16537 -0.132291,-0.16536 -0.132291,-0.3824 0,-0.339 0.19637,-0.678 0.198437,-0.33899 0.537434,-0.54363 0.341065,-0.20464 0.684196,-0.20464 0.173632,0 0.262516,0.0827 0.08888,0.0827 0.08888,0.20877 0,0.1509 -0.08682,0.29352 -0.119889,0.19431 -0.30179,0.3142 -0.181901,0.11782 -0.40721,0.17983 -0.150895,0.0413 -0.405143,0.062 z m 0.0186,-0.10748 q 0.181901,-0.0269 0.28112,-0.0724 0.101286,-0.0475 0.19637,-0.14883 0.09715,-0.10335 0.167432,-0.25838 0.07028,-0.1571 0.07028,-0.29352 0,-0.0579 -0.03307,-0.0909 -0.03101,-0.0331 -0.08062,-0.0331 -0.09922,0 -0.223242,0.1385 -0.227376,0.25218 -0.378272,0.75861 z" />
      <path
         id="path5214"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 61.999761,148.85867 -0.192237,0.66508 q 0.193787,-0.29146 0.289905,-0.39843 0.141077,-0.15503 0.243396,-0.21084 0.10232,-0.0558 0.192237,-0.0558 0.08062,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198437,0.66198 q -0.02481,0.0868 -0.02481,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.110071,-0.12713 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38292 -0.479041,0.38292 -0.09612,0 -0.150378,-0.0496 -0.05426,-0.0496 -0.05426,-0.12402 0,-0.0651 0.03721,-0.19379 l 0.193787,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.0171 -0.01395,-0.0295 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142627,0.0806 -0.21394,0.20464 -0.413928,0.60927 l -0.127124,0.46043 h -0.395325 l 0.289905,-0.99528 q 0.04186,-0.14728 0.04186,-0.20929 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.0279,-0.0109 -0.10542,-0.0109 l 0.01705,-0.0589 0.522449,-0.0915 z" />
    </g>
    <path
       d="m -174.46289,-47.376953 v 12.916015 h 28.99805 v -12.916015 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-1-2" />
    <path
       d="m -174.98871,-47.903221 h 30.0488 v 13.968169 h -30.0488 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-2-4" />
    <path
       d="m -171.4985,-44.14803 h -0.74828 l -0.94878,-1.31051 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.26458 0.0579,0.32866 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.25424,-0.11576 0.0434,-0.0641 0.0434,-0.30385 v -1.81074 q 0,-0.26459 -0.0579,-0.32867 -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.23978 0.14883,0.17363 0.14883,0.41547 0,0.25839 -0.1695,0.44856 -0.16743,0.19017 -0.52089,0.26871 l 0.57877,0.80409 q 0.19844,0.27698 0.34107,0.36793 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.17363 0.20464,-0.17364 0.20464,-0.44235 0,-0.26252 -0.16537,-0.42582 -0.16329,-0.16536 -0.43408,-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="path5219" />
    <path
       d="m -171.08096,-45.32832 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.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="path5221" />
    <path
       d="m -168.2987,-46.09726 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.1695 0,0.11576 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.53951 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.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="path5223" />
    <path
       d="m -166.95098,-46.09726 q 0.42995,0 0.6904,0.32659 0.22117,0.27905 0.22117,0.64079 0,0.25425 -0.12196,0.5147 -0.12195,0.26044 -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.13023,-0.25838 0.34106,-0.38034 0.21084,-0.12402 0.44649,-0.12402 z m -0.0641,0.13436 q -0.10955,0 -0.22118,0.0661 -0.10955,0.0641 -0.17776,0.22738 -0.0682,0.16329 -0.0682,0.41961 0,0.41341 0.16329,0.71313 0.16537,0.29973 0.43409,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.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="path5225" />
    <path
       d="m -165.10923,-47.08738 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.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.13643,0.0331 l -0.0351,-0.0723 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="path5227" />
    <path
       d="m -164.68342,-46.04145 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.10748,0.008 -0.14883,0.0434 -0.0724,0.062 -0.13022,0.2067 l -0.67179,1.62471 h -0.0848 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="path5229" />
    <path
       d="m -162.15128,-45.32832 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.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="path5231" />
    <path
       d="m -160.03875,-46.09726 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="path5233" />
    <path
       d="m -156.89682,-46.09726 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.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.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.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="path5235" />
    <path
       d="m -155.99352,-47.08738 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.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="path5237" />
    <path
       d="m -154.07736,-46.09726 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.26044,0.17983 l 0.3018,0.14676 q 0.41961,0.20464 0.41961,0.53951 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.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="path5239" />
    <path
       d="m -153.10584,-46.66364 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.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.091,-0.0537 -0.13436,-0.1509 -0.0434,-0.0992 -0.0434,-0.30385 v -1.27331 h -0.29972 v -0.0682 q 0.11368,-0.0455 0.23151,-0.15296 0.11989,-0.10956 0.2129,-0.25839 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="path5241" />
    <path
       d="m -152.16327,-45.32832 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.26459 -0.24185,-0.26665 -0.24185,-0.7152 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.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="path5243" />
    <path
       d="m -150.04247,-45.69419 q 0.20671,-0.2067 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.10335 0.17157,0.29972 0.2129,-0.24804 0.35966,-0.32453 0.14676,-0.0785 0.30179,-0.0785 0.1509,0 0.26665,0.0785 0.11783,0.0765 0.18604,0.25219 0.0455,0.11988 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.0476 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.10956,0 -0.22118,0.0558 -0.10955,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.95706 v -0.0744 q 0.1571,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.3328 -0.0909,-0.13229 -0.25424,-0.13229 -0.11163,0 -0.22118,0.06 -0.17156,0.0909 -0.26458,0.20464 v 1.01492 q 0,0.18603 0.0248,0.24184 0.0269,0.0558 0.0765,0.0847 0.0517,0.0269 0.2067,0.0269 v 0.0744 h -0.93637 v -0.0744 q 0.13022,0 0.1819,-0.0269 0.0517,-0.0289 0.0785,-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.0848,-0.0269 -0.0579,0 -0.1385,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="path5245" />
    <path
       d="m -146.24115,-44.42088 q -0.29146,0.22531 -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.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.51056,-0.14882 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.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.1633,0.0909 -0.23358,0.19017 -0.0703,0.0992 -0.0703,0.21704 0,0.14883 0.0889,0.24804 0.0889,0.0972 0.20464,0.0972 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="path5247" />
    <path
       d="m -167.9535,-40.1276 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.33899 0.6594,-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.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.18902 q 0,0.33279 0.0145,0.40721 0.0165,0.0723 0.0496,0.10128 0.0351,0.0289 0.0806,0.0289 0.0558,0 0.14882,-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.19844,-0.0599 -0.1819,0 -0.32452,0.1633 -0.1881,0.21498 -0.1881,0.62839 0,0.41754 0.1819,0.64078 0.1819,0.22118 0.40514,0.22118 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="path5249" />
    <path
       d="m -166.8559,-41.09498 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.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="path5251" />
    <path
       d="m -162.63084,-40.63403 q -0.0765,0.37414 -0.29972,0.57671 -0.22324,0.2005 -0.49402,0.2005 -0.32247,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.27905,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.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.16537,0.59944 0.16743,0.25838 0.45062,0.25838 0.20257,0 0.3638,-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="path5253" />
    <path
       d="m -161.43608,-41.86393 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,0.64079 0,0.25424 -0.12195,0.51469 -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.51676 0.13023,-0.25839 0.34107,-0.38034 0.21084,-0.12403 0.44648,-0.12403 z m -0.0641,0.13436 q -0.10955,0 -0.22117,0.0661 -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.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.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="path5255" />
    <path
       d="m -159.69355,-41.46292 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.17983 0.0289,0.24391 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.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.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.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.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="path5257" />
    <path
       d="m -157.57895,-42.4303 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.1323,-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.30386 v -1.2733 h -0.29972 v -0.0682 q 0.11369,-0.0455 0.23151,-0.15297 0.11989,-0.10955 0.21291,-0.25838 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="path5259" />
    <path
       d="m -156.40073,-41.86393 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="path5261" />
    <path
       d="m -154.61479,-41.86393 q 0.42994,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.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.51676 0.13022,-0.25839 0.34106,-0.38034 0.21084,-0.12403 0.44649,-0.12403 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.41962 0,0.41341 0.1633,0.71313 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.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="path5263" />
    <path
       d="m -152.77305,-42.85405 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.0476,-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="path5265" />
    <path
       d="m -151.93176,-41.09498 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="path5267" />
    <path
       d="m -171.9977,-34.85247 v 0.0765 q -0.31212,-0.1571 -0.5209,-0.36794 -0.29765,-0.29972 -0.45888,-0.70693 -0.16123,-0.40721 -0.16123,-0.84543 0,-0.64079 0.31626,-1.16789 0.31626,-0.52916 0.82475,-0.75654 v 0.0868 q -0.25425,0.14056 -0.41754,0.38447 -0.1633,0.24391 -0.24392,0.61805 -0.0806,0.37414 -0.0806,0.78135 0,0.44235 0.0682,0.80408 0.0537,0.28526 0.13023,0.45682 0.0765,0.17363 0.20464,0.3328 0.13022,0.15916 0.33899,0.30385 z"
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="path5269" />
    <path
       d="m -170.32338,-37.59752 -0.091,0.63872 h -0.0765 q -0.0165,-0.24804 -0.15297,-0.39067 -0.13435,-0.14263 -0.28938,-0.14263 -0.0951,0 -0.1571,0.0558 -0.062,0.0558 -0.062,0.13436 0,0.0661 0.0269,0.12403 0.0269,0.0579 0.11989,0.15709 0.32659,0.3514 0.39687,0.48369 0.0703,0.1323 0.0703,0.28319 0,0.1633 -0.0827,0.31006 -0.0827,0.14469 -0.24804,0.23358 -0.1633,0.0868 -0.34107,0.0868 -0.11989,0 -0.29559,-0.0475 -0.11575,-0.0331 -0.17363,-0.0331 -0.0517,0 -0.0806,0.0165 -0.0289,0.0145 -0.0641,0.0641 h -0.0765 l 0.10129,-0.68833 h 0.0661 q 0.0724,0.25012 0.13436,0.3576 0.0641,0.10542 0.16949,0.1695 0.10542,0.062 0.20258,0.062 0.11368,0 0.1881,-0.0703 0.0744,-0.0723 0.0744,-0.17156 0,-0.0971 -0.0496,-0.1881 -0.0475,-0.0909 -0.22324,-0.28319 -0.24185,-0.26252 -0.31833,-0.40514 -0.0537,-0.10336 -0.0537,-0.23565 0,-0.22324 0.16123,-0.37207 0.1633,-0.14883 0.45682,-0.14883 0.12816,0 0.31419,0.0455 0.093,0.0227 0.14883,0.0227 0.0806,0 0.13022,-0.0682 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="path5271" />
    <path
       d="m -168.86198,-37.59752 q 0.1633,0 0.30593,0.0765 0.14469,0.0744 0.21704,0.20877 0.0744,0.13436 0.0744,0.29765 0,0.33487 -0.1881,0.66973 -0.18604,0.33486 -0.49196,0.52917 -0.30593,0.19223 -0.61598,0.19223 -0.28112,0 -0.43615,-0.16743 -0.15296,-0.16743 -0.15296,-0.40928 0,-0.28732 0.11368,-0.53743 0.11576,-0.25218 0.29146,-0.43822 0.17776,-0.1881 0.40721,-0.30385 0.22944,-0.11783 0.47542,-0.11783 z m -0.0848,0.10956 q -0.10955,0 -0.1819,0.0641 -0.14469,0.13022 -0.32659,0.60978 -0.1819,0.47749 -0.1819,0.86196 0,0.0951 0.0579,0.1571 0.0579,0.062 0.13642,0.062 0.0806,0 0.14263,-0.0496 0.0909,-0.0744 0.22324,-0.3328 0.13229,-0.26045 0.21704,-0.57257 0.0848,-0.31419 0.0848,-0.57464 0,-0.10749 -0.0517,-0.16537 -0.0517,-0.0599 -0.11989,-0.0599 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="path5273" />
    <path
       d="m -166.79699,-38.54836 -0.68419,2.3275 q -0.0599,0.20671 -0.0599,0.25839 0,0.0269 0.0165,0.0455 0.0186,0.0186 0.0393,0.0186 0.0372,0 0.0703,-0.0289 0.0992,-0.0806 0.22117,-0.27286 l 0.0806,0.0372 q -0.19637,0.31419 -0.38654,0.44855 -0.13022,0.0909 -0.27698,0.0909 -0.13643,0 -0.21704,-0.0723 -0.0806,-0.0744 -0.0806,-0.17777 0,-0.0765 0.0496,-0.24598 l 0.5581,-1.90583 q 0.0455,-0.15709 0.0455,-0.20877 0,-0.0496 -0.0434,-0.0786 -0.0579,-0.0413 -0.1757,-0.0351 l 0.0227,-0.0786 0.6966,-0.12195 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="path5275" />
    <path
       d="m -166.11434,-36.27181 -0.19224,0.66507 q 0.19379,-0.29145 0.28991,-0.39842 0.14107,-0.15503 0.24339,-0.21084 0.10232,-0.0558 0.19224,-0.0558 0.0806,0 0.13798,0.0605 0.0574,0.0589 0.0574,0.15503 0,0.0868 -0.0372,0.21084 l -0.19844,0.66197 q -0.0248,0.0868 -0.0248,0.11318 0,0.0155 0.0109,0.0279 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.0326,-0.0124 0.0543,-0.045 0.11007,-0.12712 0.0139,-0.0217 0.045,-0.0651 l 0.0589,0.0357 q -0.22789,0.38292 -0.47904,0.38292 -0.0961,0 -0.15038,-0.0496 -0.0543,-0.0496 -0.0543,-0.12402 0,-0.0651 0.0372,-0.19379 l 0.19379,-0.66197 q 0.0202,-0.0651 0.0202,-0.0961 0,-0.0171 -0.014,-0.0295 -0.0139,-0.014 -0.0326,-0.014 -0.0589,0 -0.14263,0.0806 -0.21394,0.20464 -0.41393,0.60926 l -0.12712,0.46044 h -0.39533 l 0.28991,-0.99529 q 0.0419,-0.14728 0.0419,-0.20929 0,-0.0263 -0.0124,-0.0434 -0.0124,-0.0186 -0.0403,-0.0279 -0.0279,-0.0109 -0.10542,-0.0109 l 0.0171,-0.0589 0.52245,-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="path5277" />
    <path
       d="m -164.32479,-37.50657 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="path5279" />
    <path
       d="m -159.59743,-37.63059 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.0661,0.19843 0.0641,0.0848 0.26044,0.17984 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.0537 h -0.0682 v -0.67592 h 0.0682 q 0.0579,0.28938 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.14262 -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="path5281" />
    <path
       d="m -158.24971,-37.63059 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,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.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.0661 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41342 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.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="path5283" />
    <path
       d="m -156.40796,-38.62071 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.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="path5285" />
    <path
       d="m -154.22515,-37.57478 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.24392,0.26459 -0.37207,0.3328 -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.40928 v -0.84542 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.22325,0.0827 0.0889,0 0.2005,-0.0558 0.11369,-0.0558 0.26872,-0.2129 v -1.0728 q 0,-0.16123 -0.0599,-0.21705 -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="path5287" />
    <path
       d="m -152.16016,-36.40069 q -0.0765,0.37414 -0.29973,0.57671 -0.22324,0.2005 -0.49402,0.2005 -0.32247,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.27905,0 0.45889,0.14883 0.17983,0.14676 0.17983,0.30592 0,0.0785 -0.0517,0.12816 -0.0496,0.0475 -0.14056,0.0475 -0.12195,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.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.20258,0 0.36381,-0.13849 0.11368,-0.0951 0.22117,-0.3452 z m -0.76895,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.12402,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="path5289" />
    <path
       d="m -150.81865,-35.95421 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.23977 0.0848,-0.14056 0.29352,-0.26459 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.0538 -0.0475,-0.14677 0,-0.17776 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.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.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.091 -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.0662 q 0.008,-0.28318 0.11782,-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.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.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="path5291" />
    <path
       d="m -149.08852,-37.63059 q 0.42995,0 0.6904,0.3266 0.22117,0.27905 0.22117,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.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.0661 -0.10955,0.0641 -0.17776,0.22737 -0.0682,0.1633 -0.0682,0.41961 0,0.41342 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.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="path5293" />
    <path
       d="m -147.9351,-38.53389 v -0.0868 q 0.31419,0.15503 0.52296,0.36587 0.29559,0.30179 0.45682,0.709 0.16123,0.40514 0.16123,0.84543 0,0.64078 -0.31626,1.16788 -0.31419,0.52917 -0.82475,0.75655 v -0.0765 q 0.25424,-0.14262 0.41754,-0.38654 0.16537,-0.24184 0.24391,-0.61598 0.0806,-0.3762 0.0806,-0.78341 0,-0.44028 -0.0682,-0.80409 -0.0517,-0.28525 -0.13022,-0.45682 -0.0765,-0.17156 -0.20464,-0.33072 -0.12816,-0.15917 -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="path5295" />
    <path
       d="m -174.84766,-29.373047 v 4.378906 h 29.76563 v -4.378906 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-1-1-2" />
    <path
       d="m -175.3725,-29.897549 h 30.81637 v 5.42855 h -30.81637 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-2-0-7" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165-8-0-9-8-1-9"
       transform="translate(-223.32371,-166.01727)"
       aria-label="en = |soln - soln-1|">
      <path
         id="path5300"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 49.301327,139.09781 q -0.0186,0.13436 -0.0186,0.22118 0,0.15503 0.08888,0.24804 0.09095,0.093 0.241845,0.093 0.144694,0 0.289388,-0.0703 0.146761,-0.0703 0.338997,-0.24598 l 0.06201,0.0558 q -0.237712,0.28732 -0.463021,0.40928 -0.225309,0.12195 -0.49816,0.12195 -0.345198,0 -0.47749,-0.16536 -0.132291,-0.16536 -0.132291,-0.38241 0,-0.33899 0.19637,-0.67799 0.198437,-0.339 0.537434,-0.54364 0.341065,-0.20463 0.684196,-0.20463 0.173632,0 0.262516,0.0827 0.08888,0.0827 0.08888,0.20877 0,0.1509 -0.08682,0.29352 -0.119889,0.19431 -0.30179,0.3142 -0.181901,0.11782 -0.40721,0.17983 -0.150895,0.0413 -0.405143,0.062 z m 0.0186,-0.10749 q 0.181901,-0.0269 0.28112,-0.0723 0.101286,-0.0476 0.19637,-0.14883 0.09715,-0.10335 0.167432,-0.25838 0.07028,-0.1571 0.07028,-0.29352 0,-0.0579 -0.03307,-0.091 -0.03101,-0.0331 -0.08062,-0.0331 -0.09922,0 -0.223242,0.13849 -0.227377,0.25219 -0.378272,0.75861 z" />
      <path
         id="path5302"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 51.364766,139.2825 -0.192236,0.66508 q 0.193786,-0.29146 0.289904,-0.39843 0.141077,-0.15503 0.243396,-0.21084 0.10232,-0.0558 0.192237,-0.0558 0.08062,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198438,0.66198 q -0.02481,0.0868 -0.02481,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.110071,-0.12712 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38293 -0.479041,0.38293 -0.09612,0 -0.150378,-0.0496 -0.05426,-0.0496 -0.05426,-0.12403 0,-0.0651 0.03721,-0.19378 l 0.193787,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.017 -0.01395,-0.0294 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142627,0.0806 -0.21394,0.20464 -0.413928,0.60927 l -0.127124,0.46043 h -0.395325 l 0.289905,-0.99529 q 0.04186,-0.14727 0.04186,-0.20928 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.0279,-0.0108 -0.10542,-0.0108 l 0.01705,-0.0589 0.522449,-0.0915 z" />
      <path
         id="path5304"
         style="font-size:4.23333px;fill:#808080"
         d="m 53.418903,138.04775 h 2.230353 v 0.1695 h -2.230353 z m 0,0.67386 h 2.230353 v 0.1695 h -2.230353 z" />
      <path
         id="path5306"
         style="font-size:4.23333px;fill:#808080"
         d="m 57.294632,136.9336 v 3.853 h -0.171566 v -3.853 z" />
      <path
         id="path5308"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 59.216994,137.9568 -0.09095,0.63872 h -0.07648 q -0.01654,-0.24805 -0.152962,-0.39068 -0.134358,-0.14262 -0.289387,-0.14262 -0.09509,0 -0.157097,0.0558 -0.06201,0.0558 -0.06201,0.13436 0,0.0661 0.02687,0.12402 0.02687,0.0579 0.11989,0.15709 0.326594,0.3514 0.396874,0.4837 0.07028,0.13229 0.07028,0.28318 0,0.1633 -0.08268,0.31006 -0.08268,0.14469 -0.248047,0.23358 -0.163297,0.0868 -0.341064,0.0868 -0.119889,0 -0.295589,-0.0475 -0.115755,-0.0331 -0.173633,-0.0331 -0.05168,0 -0.08062,0.0165 -0.02894,0.0145 -0.06408,0.0641 h -0.07648 l 0.101285,-0.68833 h 0.06615 q 0.07235,0.25012 0.134359,0.35761 0.06408,0.10542 0.169498,0.16949 0.10542,0.062 0.202572,0.062 0.113688,0 0.188102,-0.0703 0.07441,-0.0724 0.07441,-0.17157 0,-0.0971 -0.04961,-0.1881 -0.04754,-0.0909 -0.223242,-0.28319 -0.241845,-0.26251 -0.318326,-0.40514 -0.05374,-0.10335 -0.05374,-0.23565 0,-0.22324 0.161231,-0.37207 0.163297,-0.14882 0.456819,-0.14882 0.128157,0 0.314192,0.0455 0.09302,0.0227 0.148828,0.0227 0.08062,0 0.130225,-0.0682 z" />
      <path
         id="path5310"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 60.678402,137.9568 q 0.163298,0 0.305924,0.0765 0.144694,0.0744 0.217041,0.20877 0.07441,0.13436 0.07441,0.29766 0,0.33486 -0.188102,0.66972 -0.186035,0.33486 -0.491959,0.52917 -0.305924,0.19223 -0.615983,0.19223 -0.281119,0 -0.436148,-0.16743 -0.152962,-0.16743 -0.152962,-0.40927 0,-0.28732 0.113688,-0.53744 0.115755,-0.25218 0.291454,-0.43821 0.177767,-0.18811 0.40721,-0.30386 0.229444,-0.11782 0.475423,-0.11782 z m -0.08475,0.10955 q -0.109554,0 -0.181901,0.0641 -0.144694,0.13022 -0.326595,0.60978 -0.181901,0.47749 -0.181901,0.86196 0,0.0951 0.05788,0.1571 0.05788,0.062 0.136426,0.062 0.08062,0 0.142626,-0.0496 0.09095,-0.0744 0.223242,-0.33279 0.132292,-0.26045 0.217041,-0.57258 0.08475,-0.31419 0.08475,-0.57464 0,-0.10749 -0.05168,-0.16537 -0.05168,-0.0599 -0.119889,-0.0599 z" />
      <path
         id="path5312"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 62.743391,137.00595 -0.684196,2.32751 q -0.05994,0.2067 -0.05994,0.25838 0,0.0269 0.01654,0.0455 0.0186,0.0186 0.03927,0.0186 0.03721,0 0.07028,-0.0289 0.09922,-0.0806 0.221175,-0.27285 l 0.08062,0.0372 q -0.19637,0.3142 -0.386539,0.44855 -0.130225,0.0909 -0.276986,0.0909 -0.136425,0 -0.21704,-0.0723 -0.08062,-0.0744 -0.08062,-0.17777 0,-0.0765 0.04961,-0.24598 l 0.558105,-1.90582 q 0.04548,-0.1571 0.04548,-0.20878 0,-0.0496 -0.04341,-0.0785 -0.05788,-0.0413 -0.1757,-0.0351 l 0.02274,-0.0785 0.696597,-0.12196 z" />
      <path
         id="path5314"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 63.426036,139.2825 -0.192236,0.66508 q 0.193787,-0.29146 0.289905,-0.39843 0.141077,-0.15503 0.243396,-0.21084 0.102319,-0.0558 0.192236,-0.0558 0.08062,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198437,0.66198 q -0.02481,0.0868 -0.02481,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.110071,-0.12712 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38293 -0.47904,0.38293 -0.09612,0 -0.150379,-0.0496 -0.05426,-0.0496 -0.05426,-0.12403 0,-0.0651 0.03721,-0.19378 l 0.193787,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.017 -0.01395,-0.0294 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142627,0.0806 -0.213941,0.20464 -0.413928,0.60927 l -0.127124,0.46043 h -0.395325 l 0.289905,-0.99529 q 0.04186,-0.14727 0.04186,-0.20928 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.02791,-0.0108 -0.10542,-0.0108 l 0.01705,-0.0589 0.522449,-0.0915 z" />
      <path
         id="path5316"
         style="font-size:4.23333px;fill:#808080"
         d="m 65.575257,138.76708 h 1.068668 v 0.31213 h -1.068668 z" />
      <path
         id="path5318"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 69.450986,137.9568 -0.09095,0.63872 h -0.07648 q -0.01654,-0.24805 -0.152962,-0.39068 -0.134359,-0.14262 -0.289388,-0.14262 -0.09508,0 -0.157096,0.0558 -0.06201,0.0558 -0.06201,0.13436 0,0.0661 0.02687,0.12402 0.02687,0.0579 0.119889,0.15709 0.326595,0.3514 0.396875,0.4837 0.07028,0.13229 0.07028,0.28318 0,0.1633 -0.08268,0.31006 -0.08268,0.14469 -0.248046,0.23358 -0.163298,0.0868 -0.341064,0.0868 -0.11989,0 -0.295589,-0.0475 -0.115755,-0.0331 -0.173633,-0.0331 -0.05168,0 -0.08062,0.0165 -0.02894,0.0145 -0.06408,0.0641 h -0.07648 l 0.101286,-0.68833 h 0.06615 q 0.07235,0.25012 0.134358,0.35761 0.06408,0.10542 0.169499,0.16949 0.10542,0.062 0.202571,0.062 0.113688,0 0.188102,-0.0703 0.07441,-0.0724 0.07441,-0.17157 0,-0.0971 -0.04961,-0.1881 -0.04754,-0.0909 -0.223242,-0.28319 -0.241846,-0.26251 -0.318327,-0.40514 -0.05374,-0.10335 -0.05374,-0.23565 0,-0.22324 0.16123,-0.37207 0.163298,-0.14882 0.45682,-0.14882 0.128157,0 0.314192,0.0455 0.09302,0.0227 0.148828,0.0227 0.08062,0 0.130224,-0.0682 z" />
      <path
         id="path5320"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 70.912395,137.9568 q 0.163297,0 0.305924,0.0765 0.144694,0.0744 0.217041,0.20877 0.07441,0.13436 0.07441,0.29766 0,0.33486 -0.188102,0.66972 -0.186035,0.33486 -0.491959,0.52917 -0.305925,0.19223 -0.615983,0.19223 -0.28112,0 -0.436149,-0.16743 -0.152962,-0.16743 -0.152962,-0.40927 0,-0.28732 0.113688,-0.53744 0.115755,-0.25218 0.291455,-0.43821 0.177767,-0.18811 0.40721,-0.30386 0.229443,-0.11782 0.475423,-0.11782 z m -0.08475,0.10955 q -0.109553,0 -0.1819,0.0641 -0.144694,0.13022 -0.326595,0.60978 -0.181901,0.47749 -0.181901,0.86196 0,0.0951 0.05788,0.1571 0.05788,0.062 0.136426,0.062 0.08061,0 0.142627,-0.0496 0.09095,-0.0744 0.223242,-0.33279 0.132292,-0.26045 0.217041,-0.57258 0.08475,-0.31419 0.08475,-0.57464 0,-0.10749 -0.05168,-0.16537 -0.05168,-0.0599 -0.11989,-0.0599 z" />
      <path
         id="path5322"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m 72.977383,137.00595 -0.684195,2.32751 q -0.05994,0.2067 -0.05994,0.25838 0,0.0269 0.01654,0.0455 0.0186,0.0186 0.03927,0.0186 0.03721,0 0.07028,-0.0289 0.09922,-0.0806 0.221175,-0.27285 l 0.08061,0.0372 q -0.196371,0.3142 -0.38654,0.44855 -0.130224,0.0909 -0.276985,0.0909 -0.136426,0 -0.217041,-0.0723 -0.08061,-0.0744 -0.08061,-0.17777 0,-0.0765 0.04961,-0.24598 l 0.558105,-1.90582 q 0.04547,-0.1571 0.04547,-0.20878 0,-0.0496 -0.04341,-0.0785 -0.05788,-0.0413 -0.175699,-0.0351 l 0.02274,-0.0785 0.696598,-0.12196 z" />
      <path
         id="path5324"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 73.660029,139.2825 -0.192236,0.66508 q 0.193786,-0.29146 0.289904,-0.39843 0.141077,-0.15503 0.243396,-0.21084 0.10232,-0.0558 0.192237,-0.0558 0.08061,0 0.137976,0.0605 0.05736,0.0589 0.05736,0.15503 0,0.0868 -0.03721,0.21084 l -0.198438,0.66198 q -0.02481,0.0868 -0.02481,0.11317 0,0.0155 0.01085,0.0279 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.045 0.110071,-0.12712 0.01395,-0.0217 0.04496,-0.0651 l 0.05891,0.0357 q -0.227893,0.38293 -0.479041,0.38293 -0.09612,0 -0.150378,-0.0496 -0.05426,-0.0496 -0.05426,-0.12403 0,-0.0651 0.03721,-0.19378 l 0.193786,-0.66198 q 0.02015,-0.0651 0.02015,-0.0961 0,-0.017 -0.01395,-0.0294 -0.01395,-0.0139 -0.03256,-0.0139 -0.05891,0 -0.142627,0.0806 -0.21394,0.20464 -0.413928,0.60927 l -0.127124,0.46043 h -0.395325 l 0.289905,-0.99529 q 0.04186,-0.14727 0.04186,-0.20928 0,-0.0264 -0.0124,-0.0434 -0.0124,-0.0186 -0.04031,-0.0279 -0.0279,-0.0108 -0.10542,-0.0108 l 0.01705,-0.0589 0.522449,-0.0915 z" />
      <path
         id="path5326"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 74.700276,139.86231 h 0.90227 l -0.09612,0.32246 h -0.906921 z" />
      <path
         id="path5328"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m 77.052072,138.57402 -0.513147,1.76423 q -0.04031,0.13798 -0.04031,0.17518 0,0.0372 0.02791,0.0775 0.02946,0.0388 0.06201,0.0512 0.03411,0.0109 0.201538,0.0202 l -0.01705,0.0574 h -1.05885 l 0.01705,-0.0574 q 0.15813,-0.003 0.220142,-0.0264 0.06201,-0.0233 0.100769,-0.076 0.04031,-0.0527 0.08992,-0.22169 l 0.303857,-1.048 q 0.06976,-0.23874 0.07286,-0.2527 0.0093,-0.0403 0.0093,-0.076 0,-0.0698 -0.04341,-0.11007 -0.04186,-0.0419 -0.120923,-0.0419 -0.03876,0 -0.153479,0.0124 l -0.0124,-0.0574 0.789099,-0.19068 z" />
      <path
         id="path5330"
         style="font-size:4.23333px;fill:#808080"
         d="m 77.731616,136.9336 v 3.853 H 77.56005 v -3.853 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       inkscape:connector-curvature="0"
       id="rect13740-3-3-6-0-3"
       d="m -159.96432,-20.41587 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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-4-3-3-3-2"
       aria-label="en≤ etol?">
      <path
         id="path5333"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -166.32362,-14.549974 q -0.0186,0.134359 -0.0186,0.221175 0,0.155029 0.0889,0.248047 0.091,0.09302 0.24185,0.09302 0.14469,0 0.28938,-0.07028 0.14676,-0.07028 0.339,-0.245979 l 0.062,0.05581 q -0.23771,0.287321 -0.46302,0.409277 -0.22531,0.121957 -0.49816,0.121957 -0.3452,0 -0.47749,-0.165365 -0.13229,-0.165364 -0.13229,-0.382405 0,-0.338997 0.19637,-0.677994 0.19844,-0.338997 0.53743,-0.543636 0.34107,-0.204638 0.6842,-0.204638 0.17363,0 0.26252,0.08268 0.0889,0.08268 0.0889,0.208772 0,0.150895 -0.0868,0.293522 -0.11989,0.194303 -0.30179,0.314193 -0.1819,0.117822 -0.40721,0.179834 -0.15089,0.04134 -0.40514,0.06201 z m 0.0186,-0.107487 q 0.1819,-0.02687 0.28112,-0.07235 0.10129,-0.04754 0.19637,-0.148828 0.0971,-0.103352 0.16743,-0.258382 0.0703,-0.157096 0.0703,-0.293521 0,-0.05788 -0.0331,-0.09095 -0.031,-0.03307 -0.0806,-0.03307 -0.0992,0 -0.22325,0.138493 -0.22737,0.252181 -0.37827,0.758609 z" />
      <path
         id="path5335"
         style="font-size:3.175px;baseline-shift:sub;fill:#808080"
         d="m -164.26018,-14.365284 -0.19224,0.665076 q 0.19379,-0.291455 0.28991,-0.398425 0.14107,-0.155029 0.24339,-0.21084 0.10232,-0.05581 0.19224,-0.05581 0.0806,0 0.13798,0.06046 0.0574,0.05891 0.0574,0.155029 0,0.08682 -0.0372,0.21084 l -0.19844,0.661975 q -0.0248,0.08682 -0.0248,0.113171 0,0.0155 0.0109,0.02791 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.0326,-0.0124 0.0543,-0.04496 0.11007,-0.127124 0.0139,-0.0217 0.045,-0.06511 l 0.0589,0.03566 q -0.22789,0.382923 -0.47904,0.382923 -0.0961,0 -0.15038,-0.04961 -0.0543,-0.04961 -0.0543,-0.124023 0,-0.06511 0.0372,-0.193787 l 0.19378,-0.661975 q 0.0202,-0.06511 0.0202,-0.09612 0,-0.01705 -0.0139,-0.02946 -0.014,-0.01395 -0.0326,-0.01395 -0.0589,0 -0.14263,0.08061 -0.21394,0.204639 -0.41393,0.609265 l -0.12712,0.460437 h -0.39532 l 0.2899,-0.995288 q 0.0419,-0.147278 0.0419,-0.20929 0,-0.02636 -0.0124,-0.04341 -0.0124,-0.0186 -0.0403,-0.02791 -0.0279,-0.01085 -0.10542,-0.01085 l 0.0171,-0.05891 0.52245,-0.09147 z" />
      <path
         id="path5337"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -161.07123,-14.283324 -2.21795,-0.942577 v -0.171566 l 2.21795,-0.938443 v 0.21084 l -1.9637,0.812353 1.9637,0.818554 z m -2.22002,0.65319 h 2.22415 v 0.192236 h -2.22415 z" />
      <path
         id="path5339"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -159.2977,-14.549974 q -0.0186,0.134359 -0.0186,0.221175 0,0.155029 0.0889,0.248047 0.0909,0.09302 0.24185,0.09302 0.14469,0 0.28939,-0.07028 0.14676,-0.07028 0.33899,-0.245979 l 0.062,0.05581 q -0.23771,0.287321 -0.46302,0.409277 -0.2253,0.121957 -0.49816,0.121957 -0.34519,0 -0.47749,-0.165365 -0.13229,-0.165364 -0.13229,-0.382405 0,-0.338997 0.19637,-0.677994 0.19844,-0.338997 0.53744,-0.543636 0.34106,-0.204638 0.68419,-0.204638 0.17364,0 0.26252,0.08268 0.0889,0.08268 0.0889,0.208772 0,0.150895 -0.0868,0.293522 -0.11989,0.194303 -0.30179,0.314193 -0.18191,0.117822 -0.40721,0.179834 -0.1509,0.04134 -0.40515,0.06201 z m 0.0186,-0.107487 q 0.1819,-0.02687 0.28112,-0.07235 0.10128,-0.04754 0.19637,-0.148828 0.0971,-0.103352 0.16743,-0.258382 0.0703,-0.157096 0.0703,-0.293521 0,-0.05788 -0.0331,-0.09095 -0.031,-0.03307 -0.0806,-0.03307 -0.0992,0 -0.22324,0.138493 -0.22738,0.252181 -0.37827,0.758609 z" />
      <path
         id="path5341"
         style="font-size:3.175px;baseline-shift:sub;fill:#808080"
         d="m -157.17225,-14.743555 -0.12402,0.42168 h 0.20309 l -0.0543,0.178283 h -0.19999 l -0.2589,0.89917 q -0.0248,0.08372 -0.0248,0.127124 0,0.02015 0.014,0.03566 0.0139,0.01395 0.031,0.01395 0.0264,0 0.0543,-0.0217 0.0713,-0.05426 0.16588,-0.189136 l 0.0543,0.03411 q -0.10697,0.186035 -0.23565,0.272852 -0.12867,0.08682 -0.25269,0.08682 -0.10542,0 -0.16434,-0.05271 -0.0574,-0.05426 -0.0574,-0.136426 0,-0.08992 0.0403,-0.230993 l 0.24495,-0.838709 h -0.21084 l 0.031,-0.114721 q 0.19844,-0.07286 0.33487,-0.170533 0.13642,-0.09767 0.32866,-0.314709 z" />
      <path
         id="path5343"
         style="font-size:3.175px;baseline-shift:sub;fill:#808080"
         d="m -156.15835,-14.365284 q 0.12247,0 0.22944,0.05736 0.10852,0.05581 0.16278,0.15658 0.0558,0.100769 0.0558,0.223242 0,0.251148 -0.14108,0.502295 -0.13952,0.251147 -0.36897,0.396875 -0.22944,0.144177 -0.46198,0.144177 -0.21084,0 -0.32712,-0.125574 -0.11472,-0.125573 -0.11472,-0.306958 0,-0.21549 0.0853,-0.403076 0.0868,-0.189135 0.21859,-0.328662 0.13333,-0.141076 0.30541,-0.227893 0.17208,-0.08837 0.35657,-0.08837 z m -0.0636,0.08217 q -0.0822,0 -0.13642,0.04806 -0.10852,0.09767 -0.24495,0.457336 -0.13642,0.358118 -0.13642,0.646473 0,0.07131 0.0434,0.117822 0.0434,0.04651 0.10232,0.04651 0.0605,0 0.10697,-0.03721 0.0682,-0.05581 0.16744,-0.249597 0.0992,-0.195337 0.16278,-0.429432 0.0636,-0.235644 0.0636,-0.430981 0,-0.08061 -0.0388,-0.124024 -0.0388,-0.04496 -0.0899,-0.04496 z" />
      <path
         id="path5345"
         style="font-size:3.175px;baseline-shift:sub;fill:#808080"
         d="m -154.60961,-15.078418 -0.51315,1.74563 q -0.045,0.155029 -0.045,0.193786 0,0.02015 0.0124,0.03411 0.014,0.01395 0.0295,0.01395 0.0279,0 0.0527,-0.0217 0.0744,-0.06046 0.16588,-0.204639 l 0.0605,0.02791 q -0.14727,0.235644 -0.2899,0.336413 -0.0977,0.06821 -0.20774,0.06821 -0.10232,0 -0.16278,-0.05426 -0.0605,-0.05581 -0.0605,-0.133325 0,-0.05736 0.0372,-0.184485 l 0.41858,-1.42937 q 0.0341,-0.117822 0.0341,-0.15658 0,-0.03721 -0.0326,-0.05891 -0.0434,-0.03101 -0.13177,-0.02635 l 0.0171,-0.05891 0.52245,-0.09147 z" />
      <path
         id="path5347"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -153.79519,-14.436286 h -0.0848 q 0.0145,-0.260449 0.0641,-0.429947 0.0517,-0.171566 0.21084,-0.475423 0.12402,-0.233577 0.16123,-0.357601 0.0372,-0.12609 0.0372,-0.254248 0,-0.262516 -0.14056,-0.417545 -0.13849,-0.155029 -0.34106,-0.155029 -0.17983,0 -0.28319,0.08475 -0.10335,0.08475 -0.10335,0.183968 0,0.07648 0.062,0.188102 0.062,0.111621 0.062,0.169499 0,0.07441 -0.0475,0.12609 -0.0475,0.04961 -0.11575,0.04961 -0.0868,0 -0.15917,-0.08475 -0.0703,-0.08682 -0.0703,-0.239778 0,-0.233577 0.20051,-0.413411 0.2005,-0.179834 0.54363,-0.179834 0.42582,0 0.62632,0.248047 0.14883,0.181901 0.14883,0.403075 0,0.150896 -0.0682,0.310059 -0.0661,0.159163 -0.25425,0.374137 -0.29972,0.338997 -0.36794,0.481624 -0.0661,0.14056 -0.0806,0.388606 z m -0.0289,0.256315 q 0.0971,0 0.1633,0.06821 0.0682,0.06615 0.0682,0.163297 0,0.09508 -0.0682,0.163298 -0.0682,0.06615 -0.1633,0.06615 -0.0951,0 -0.1633,-0.06615 -0.0661,-0.06821 -0.0661,-0.163298 0,-0.09715 0.0661,-0.163297 0.0682,-0.06821 0.1633,-0.06821 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       inkscape:connector-curvature="0"
       id="rect13740-3-3-6-0"
       d="m -159.96431,-82.82558 12.73786,5.96454 -12.73786,5.96452 -12.73787,-5.96452 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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-4-3-3-3"
       aria-label="it ≤ itmáx?">
      <path
         id="path5350"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -167.29824,-78.472322 q 0.12816,0 0.21498,0.08888 0.0889,0.08888 0.0889,0.214974 0,0.12609 -0.0889,0.214974 -0.0889,0.08888 -0.21498,0.08888 -0.12402,0 -0.2129,-0.08888 -0.0889,-0.08888 -0.0889,-0.214974 0,-0.12609 0.0868,-0.214974 0.0889,-0.08888 0.21497,-0.08888 z m 0.12816,0.950845 -0.42375,1.469677 q -0.0351,0.12609 -0.0351,0.165364 0,0.02274 0.0186,0.04341 0.0186,0.0186 0.0393,0.0186 0.0351,0 0.0703,-0.03101 0.093,-0.07648 0.22324,-0.276985 l 0.0703,0.04134 q -0.31212,0.543635 -0.66352,0.543635 -0.13436,0 -0.21498,-0.07441 -0.0785,-0.07648 -0.0785,-0.192236 0,-0.07648 0.0351,-0.194303 l 0.28732,-0.988053 q 0.0413,-0.142626 0.0413,-0.214973 0,-0.04548 -0.0393,-0.08062 -0.0393,-0.03514 -0.10748,-0.03514 -0.031,0 -0.0744,0.0021 l 0.0269,-0.08268 0.70074,-0.113688 z" />
      <path
         id="path5352"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -165.86163,-78.025838 -0.16537,0.562239 h 0.27079 l -0.0724,0.237711 h -0.26665 l -0.3452,1.198893 q -0.0331,0.111621 -0.0331,0.169498 0,0.02687 0.0186,0.04754 0.0186,0.0186 0.0413,0.0186 0.0351,0 0.0724,-0.02894 0.0951,-0.07235 0.22117,-0.252181 l 0.0724,0.04548 q -0.14263,0.248046 -0.31419,0.363801 -0.17157,0.115755 -0.33693,0.115755 -0.14056,0 -0.21911,-0.07028 -0.0765,-0.07235 -0.0765,-0.181901 0,-0.11989 0.0537,-0.307992 l 0.3266,-1.118277 h -0.28112 l 0.0413,-0.152962 q 0.26458,-0.09715 0.44648,-0.227376 0.1819,-0.130224 0.43822,-0.419612 z" />
      <path
         id="path5354"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -162.57295,-76.113812 -2.21795,-0.942577 v -0.171566 l 2.21795,-0.938443 v 0.21084 l -1.9637,0.812353 1.9637,0.818554 z m -2.22002,0.65319 h 2.22416 v 0.192236 h -2.22416 z" />
      <path
         id="path5356"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -160.51003,-78.472322 q 0.12816,0 0.21498,0.08888 0.0889,0.08888 0.0889,0.214974 0,0.12609 -0.0889,0.214974 -0.0889,0.08888 -0.21498,0.08888 -0.12402,0 -0.2129,-0.08888 -0.0889,-0.08888 -0.0889,-0.214974 0,-0.12609 0.0868,-0.214974 0.0889,-0.08888 0.21497,-0.08888 z m 0.12816,0.950845 -0.42375,1.469677 q -0.0351,0.12609 -0.0351,0.165364 0,0.02274 0.0186,0.04341 0.0186,0.0186 0.0393,0.0186 0.0351,0 0.0703,-0.03101 0.093,-0.07648 0.22324,-0.276985 l 0.0703,0.04134 q -0.31212,0.543635 -0.66352,0.543635 -0.13436,0 -0.21498,-0.07441 -0.0785,-0.07648 -0.0785,-0.192236 0,-0.07648 0.0351,-0.194303 l 0.28732,-0.988053 q 0.0413,-0.142626 0.0413,-0.214973 0,-0.04548 -0.0393,-0.08062 -0.0393,-0.03514 -0.10748,-0.03514 -0.031,0 -0.0744,0.0021 l 0.0269,-0.08268 0.70073,-0.113688 z" />
      <path
         id="path5358"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -159.07342,-78.025838 -0.16537,0.562239 h 0.27079 l -0.0724,0.237711 h -0.26665 l -0.3452,1.198893 q -0.0331,0.111621 -0.0331,0.169498 0,0.02687 0.0186,0.04754 0.0186,0.0186 0.0413,0.0186 0.0351,0 0.0724,-0.02894 0.0951,-0.07235 0.22117,-0.252181 l 0.0724,0.04548 q -0.14263,0.248046 -0.31419,0.363801 -0.17157,0.115755 -0.33693,0.115755 -0.14056,0 -0.21911,-0.07028 -0.0765,-0.07235 -0.0765,-0.181901 0,-0.11989 0.0537,-0.307992 l 0.3266,-1.118277 h -0.28112 l 0.0413,-0.152962 q 0.26458,-0.09715 0.44648,-0.227376 0.1819,-0.130224 0.43822,-0.419612 z" />
      <path
         id="path5360"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m -158.26934,-76.195772 -0.19844,0.666626 q 0.19999,-0.306958 0.29146,-0.413928 0.13487,-0.15658 0.22169,-0.204639 0.0884,-0.04806 0.17673,-0.04806 0.10077,0 0.14573,0.06046 0.045,0.06046 0.045,0.133325 0,0.07596 -0.0419,0.223242 l -0.0698,0.249597 q 0.20154,-0.310058 0.2899,-0.412378 0.13643,-0.15813 0.2372,-0.21394 0.0698,-0.04031 0.14883,-0.04031 0.0822,0 0.13642,0.05581 0.0558,0.05426 0.0558,0.142627 0,0.09922 -0.0465,0.257348 l -0.17208,0.57826 q -0.0388,0.128674 -0.0388,0.165881 0,0.0124 0.009,0.02325 0.0109,0.01085 0.0232,0.01085 0.0171,0 0.0295,-0.01085 0.0558,-0.04496 0.11782,-0.131775 0.0139,-0.0186 0.0419,-0.05736 l 0.0527,0.03411 q -0.10697,0.199988 -0.23565,0.293005 -0.12712,0.09302 -0.23564,0.09302 -0.0946,0 -0.15193,-0.05116 -0.0574,-0.05271 -0.0574,-0.122473 0,-0.06666 0.0388,-0.201538 l 0.17518,-0.604614 q 0.0357,-0.125574 0.0357,-0.15658 0,-0.01085 -0.0109,-0.02015 -0.0109,-0.01085 -0.0217,-0.01085 -0.0202,0 -0.0403,0.0093 -0.0294,0.0155 -0.0915,0.08061 -0.0605,0.06511 -0.17518,0.234095 -0.11472,0.167431 -0.15968,0.261999 -0.0434,0.09457 -0.0868,0.244946 l -0.0946,0.319361 h -0.39223 l 0.28991,-1.012341 q 0.0232,-0.08217 0.0232,-0.113172 0,-0.01085 -0.0108,-0.02015 -0.009,-0.0093 -0.0202,-0.0093 -0.0574,0 -0.18139,0.150378 -0.18913,0.232544 -0.34416,0.559656 l -0.12558,0.444934 h -0.39532 l 0.29145,-0.996839 q 0.0434,-0.147277 0.0434,-0.209289 0,-0.02481 -0.0124,-0.04186 -0.0124,-0.0186 -0.0403,-0.02791 -0.0279,-0.01085 -0.10697,-0.01085 l 0.0155,-0.05891 0.52865,-0.09147 z" />
      <path
         id="path5362"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m -155.12379,-76.174068 -0.30076,1.030945 -0.031,0.125574 q -0.005,0.02325 -0.005,0.03411 0,0.0186 0.0124,0.03256 0.0139,0.01395 0.0279,0.01395 0.0326,0 0.0899,-0.04961 0.0233,-0.02015 0.11162,-0.142627 l 0.0543,0.02791 q -0.11007,0.201538 -0.23565,0.294556 -0.12402,0.09147 -0.2682,0.09147 -0.0884,0 -0.13487,-0.04496 -0.0465,-0.04651 -0.0465,-0.116272 0,-0.06046 0.0496,-0.224793 l 0.0372,-0.125574 q -0.17984,0.308509 -0.34572,0.437183 -0.0961,0.07441 -0.20464,0.07441 -0.14262,0 -0.20619,-0.116272 -0.0636,-0.117822 -0.0636,-0.2651 0,-0.218591 0.13333,-0.500745 0.13332,-0.283703 0.35036,-0.455786 0.17829,-0.142627 0.33487,-0.142627 0.0868,0 0.13952,0.05116 0.0527,0.04961 0.0775,0.182934 l 0.0558,-0.190686 z m -0.4961,0.294556 q 0,-0.125574 -0.0387,-0.181384 -0.0279,-0.03876 -0.076,-0.03876 -0.0481,0 -0.0992,0.04651 -0.10387,0.09612 -0.22479,0.390674 -0.11937,0.293005 -0.11937,0.506946 0,0.08217 0.0264,0.119372 0.0279,0.03566 0.0605,0.03566 0.0698,0 0.14108,-0.08062 0.10232,-0.114722 0.18449,-0.280603 0.14572,-0.291455 0.14572,-0.517798 z m 0.031,-1.029394 h 0.47749 l -0.52245,0.542602 h -0.13953 z" />
      <path
         id="path5364"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080"
         d="m -154.91295,-76.102754 0.54105,-0.09302 q 0.14728,0.230994 0.20774,0.508496 0.15193,-0.224792 0.22944,-0.314709 0.10387,-0.120923 0.17053,-0.15658 0.0682,-0.03721 0.14418,-0.03721 0.0853,0 0.13023,0.04651 0.0465,0.04651 0.0465,0.125574 0,0.07441 -0.0465,0.122473 -0.045,0.04651 -0.11318,0.04651 -0.0496,0 -0.11472,-0.01705 -0.0636,-0.0186 -0.0884,-0.0186 -0.0651,0 -0.12403,0.04651 -0.0806,0.06356 -0.19844,0.271301 0.13178,0.465088 0.21084,0.567407 0.0465,0.06046 0.0946,0.06046 0.0403,0 0.0698,-0.02015 0.045,-0.03256 0.13797,-0.162781 l 0.0558,0.03256 q -0.13642,0.220142 -0.26665,0.310059 -0.0992,0.06976 -0.19534,0.06976 -0.0992,0 -0.16588,-0.04341 -0.0651,-0.04496 -0.11627,-0.144177 -0.0512,-0.100769 -0.12092,-0.320911 -0.18139,0.230994 -0.28526,0.337964 -0.10231,0.10542 -0.17053,0.137976 -0.0682,0.03256 -0.14573,0.03256 -0.0806,0 -0.12712,-0.04651 -0.0481,-0.04651 -0.0481,-0.120923 0,-0.07906 0.0512,-0.130224 0.0512,-0.05116 0.13023,-0.05116 0.0419,0 0.0946,0.02481 0.0775,0.03721 0.11162,0.03721 0.045,0 0.0806,-0.0186 0.0465,-0.02325 0.11782,-0.100769 0.0434,-0.04806 0.15968,-0.204638 -0.14883,-0.551905 -0.23254,-0.660425 -0.0527,-0.06976 -0.13333,-0.06976 -0.0418,0 -0.10232,0.0124 z" />
      <path
         id="path5366"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -152.53119,-76.266774 h -0.0847 q 0.0145,-0.260449 0.0641,-0.429947 0.0517,-0.171566 0.21084,-0.475423 0.12402,-0.233578 0.16123,-0.357601 0.0372,-0.12609 0.0372,-0.254248 0,-0.262516 -0.14056,-0.417545 -0.13849,-0.155029 -0.34107,-0.155029 -0.17983,0 -0.28318,0.08475 -0.10336,0.08475 -0.10336,0.183968 0,0.07648 0.062,0.188102 0.062,0.111621 0.062,0.169499 0,0.07441 -0.0475,0.12609 -0.0476,0.04961 -0.11576,0.04961 -0.0868,0 -0.15916,-0.08475 -0.0703,-0.08682 -0.0703,-0.239778 0,-0.233578 0.2005,-0.413411 0.20051,-0.179834 0.54364,-0.179834 0.42581,0 0.62632,0.248046 0.14882,0.181901 0.14882,0.403076 0,0.150895 -0.0682,0.310059 -0.0661,0.159163 -0.25425,0.374137 -0.29972,0.338997 -0.36793,0.481624 -0.0661,0.140559 -0.0806,0.388606 z m -0.0289,0.256315 q 0.0971,0 0.1633,0.06821 0.0682,0.06615 0.0682,0.163297 0,0.09508 -0.0682,0.163298 -0.0682,0.06615 -0.1633,0.06615 -0.0951,0 -0.16329,-0.06615 -0.0661,-0.06821 -0.0661,-0.163298 0,-0.09715 0.0661,-0.163297 0.0682,-0.06821 0.16329,-0.06821 z" />
    </g>
    <path
       d="m -198.98828,-27.357422 v 12.541016 h 20.45117 v -12.541016 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 -199.51361,-27.882549 h 21.50108 v 13.591817 h -21.50108 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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165"
       transform="translate(-247.46481,-164.00227)"
       aria-label="Erro!
Cálculo não convergiu">
      <path
         id="path5371"
         style="font-size:4.23333px;fill:#808080"
         d="m 55.11374,137.22299 v 1.10794 h 0.615983 q 0.239778,0 0.320393,-0.0723 0.107487,-0.0951 0.119889,-0.33487 h 0.07648 v 0.97565 h -0.07648 q -0.02894,-0.20463 -0.05788,-0.26251 -0.03721,-0.0724 -0.121956,-0.11369 -0.08475,-0.0413 -0.260449,-0.0413 H 55.11374 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.13022 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.0476 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.61391 h -0.08062 q -0.04341,-0.22117 -0.09715,-0.30385 -0.05168,-0.0827 -0.15503,-0.12609 -0.08268,-0.031 -0.291454,-0.031 z" />
      <path
         id="path5373"
         style="font-size:4.23333px;fill:#808080"
         d="m 57.503256,137.92372 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.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" />
      <path
         id="path5375"
         style="font-size:4.23333px;fill:#808080"
         d="m 58.917122,137.92372 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.09509,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" />
      <path
         id="path5377"
         style="font-size:4.23333px;fill:#808080"
         d="m 60.703058,137.92372 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.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.0662 -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" />
      <path
         id="path5379"
         style="font-size:4.23333px;fill:#808080"
         d="m 62.505531,139.13088 h -0.07855 l -0.181901,-1.67431 q -0.0124,-0.10956 -0.0124,-0.1633 0,-0.13022 0.06821,-0.20877 0.07028,-0.0785 0.167432,-0.0785 0.09715,0 0.163297,0.0785 0.06821,0.0786 0.06821,0.23358 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.09509,0 -0.163298,-0.0661 -0.06615,-0.0682 -0.06615,-0.1633 0,-0.093 0.06615,-0.15916 0.06821,-0.0682 0.163298,-0.0682 z" />
      <path
         id="path5381"
         style="font-size:4.23333px;fill:#808080"
         d="m 51.085049,141.23929 0.06408,0.95291 h -0.06408 q -0.128158,-0.42788 -0.365869,-0.61598 -0.237711,-0.1881 -0.570507,-0.1881 -0.279053,0 -0.504362,0.14262 -0.225309,0.14056 -0.355534,0.45062 -0.128157,0.31006 -0.128157,0.77101 0,0.38034 0.121956,0.65939 0.121957,0.27906 0.365869,0.42788 0.24598,0.14883 0.560172,0.14883 0.272852,0 0.481624,-0.11575 0.208773,-0.11783 0.458886,-0.46509 l 0.06408,0.0413 q -0.210839,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.721403,-0.1943 0.303857,0 0.599446,0.14883 0.08682,0.0455 0.124023,0.0455 0.05581,0 0.09715,-0.0393 0.05374,-0.0558 0.07648,-0.15503 z" />
      <path
         id="path5383"
         style="font-size:4.23333px;fill:#808080"
         d="m 52.569195,143.83344 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237712,0.0517 -0.19637,0 -0.324527,-0.13436 -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.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.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.167432,-0.15089 v 0.11575 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.13436 v -0.7214 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.20671 z m 0.204638,-2.46599 -0.609781,0.71313 h -0.07028 l 0.217041,-0.71313 z" />
      <path
         id="path5385"
         style="font-size:4.23333px;fill:#808080"
         d="m 54.024402,141.16694 v 2.51147 q 0,0.17777 0.0248,0.23565 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.130225,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.136426,0.0331 l -0.03514,-0.0724 0.564306,-0.23151 z" />
      <path
         id="path5387"
         style="font-size:4.23333px;fill:#808080"
         d="m 56.155536,143.38696 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.72554 0.26665,-0.27905 0.63872,-0.27905 0.279053,0 0.458887,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.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.113688,-0.0951 0.221175,-0.3452 z" />
      <path
         id="path5389"
         style="font-size:4.23333px;fill:#808080"
         d="m 58.084099,142.21287 v 1.14722 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.243913,0.26459 -0.37207,0.3328 -0.128158,0.0682 -0.270785,0.0682 -0.159163,0 -0.276985,-0.091 -0.115755,-0.093 -0.16123,-0.23771 -0.04548,-0.14469 -0.04548,-0.40928 v -0.84542 q 0,-0.13436 -0.02894,-0.18604 -0.02894,-0.0517 -0.08682,-0.0786 -0.05581,-0.0289 -0.204638,-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.268718,-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" />
      <path
         id="path5391"
         style="font-size:4.23333px;fill:#808080"
         d="m 59.192041,141.16694 v 2.51147 q 0,0.17777 0.0248,0.23565 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" />
      <path
         id="path5393"
         style="font-size:4.23333px;fill:#808080"
         d="m 60.641046,142.15706 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.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.163298,0.71314 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" />
      <path
         id="path5395"
         style="font-size:4.23333px;fill:#808080"
         d="m 63.441907,142.55807 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.132291,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.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.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" />
      <path
         id="path5397"
         style="font-size:4.23333px;fill:#808080"
         d="m 66.07947,143.83344 q -0.291455,0.22531 -0.365869,0.26045 -0.111621,0.0517 -0.237712,0.0517 -0.19637,0 -0.324527,-0.13436 -0.126091,-0.13436 -0.126091,-0.35347 0,-0.13849 0.06201,-0.23978 0.08475,-0.14056 0.293522,-0.26458 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.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.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.15089 v 0.11575 q -0.23151,0.31006 -0.442349,0.31006 -0.101286,0 -0.161231,-0.0703 -0.05994,-0.0703 -0.06201,-0.23978 z m 0,-0.13436 v -0.7214 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.20671 z m -0.851627,-1.86035 h -0.06615 q 0.0083,-0.28318 0.117822,-0.40927 0.109554,-0.12609 0.270784,-0.12609 0.08475,0 0.15503,0.0269 0.09302,0.0351 0.262516,0.14883 0.171565,0.11162 0.254247,0.11162 0.06615,0 0.115756,-0.0558 0.05168,-0.0558 0.08062,-0.23151 h 0.06408 q 0.0021,0.19223 -0.05168,0.30592 -0.05168,0.11162 -0.148828,0.1757 -0.09509,0.062 -0.192236,0.062 -0.163298,0 -0.405143,-0.16536 -0.130225,-0.0889 -0.1757,-0.10749 -0.04547,-0.0186 -0.08888,-0.0186 -0.08475,0 -0.134359,0.0744 -0.02274,0.0351 -0.05788,0.20877 z" />
      <path
         id="path5399"
         style="font-size:4.23333px;fill:#808080"
         d="m 67.809595,142.15706 q 0.429948,0 0.690397,0.3266 0.221175,0.27905 0.221175,0.64078 0,0.25425 -0.121957,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.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.177766,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.217041,-0.79375 -0.146761,-0.19844 -0.374137,-0.19844 z" />
      <path
         id="path5401"
         style="font-size:4.23333px;fill:#808080"
         d="m 52.017291,147.6203 q -0.07648,0.37413 -0.299723,0.5767 -0.223242,0.20051 -0.494027,0.20051 -0.32246,0 -0.562239,-0.27079 -0.239778,-0.27078 -0.239778,-0.73173 0,-0.44649 0.264583,-0.72554 0.26665,-0.27905 0.63872,-0.27905 0.279053,0 0.458887,0.14883 0.179833,0.14676 0.179833,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.01033,-0.12196 -0.08268,-0.18604 -0.07235,-0.062 -0.200505,-0.062 -0.206705,0 -0.332796,0.15296 -0.167431,0.20257 -0.167431,0.53537 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" />
      <path
         id="path5403"
         style="font-size:4.23333px;fill:#808080"
         d="m 53.212049,146.3904 q 0.429947,0 0.690396,0.32659 0.221175,0.27906 0.221175,0.64079 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.34107 -0.212907,-0.28732 -0.212907,-0.64492 0,-0.26045 0.128158,-0.51676 0.130224,-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.0661 -0.109554,0.0641 -0.177767,0.22738 -0.06821,0.1633 -0.06821,0.41961 0,0.41341 0.163297,0.71314 0.165364,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" />
      <path
         id="path5405"
         style="font-size:4.23333px;fill:#808080"
         d="m 54.954577,146.79141 q 0.332796,-0.40101 0.634586,-0.40101 0.155029,0 0.26665,0.0786 0.111621,0.0765 0.177767,0.25424 0.04547,0.12403 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.936377 v -0.0744 h 0.03928 q 0.132291,0 0.183967,-0.0393 0.05374,-0.0413 0.07441,-0.11989 0.0083,-0.031 0.0083,-0.1943 v -0.77514 q 0,-0.25839 -0.06821,-0.37414 -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.41548 -0.01447,-0.0744 -0.04754,-0.10128 -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" />
      <path
         id="path5407"
         style="font-size:4.23333px;fill:#808080"
         d="m 56.422186,146.44621 h 0.890901 v 0.0765 h -0.05788 q -0.08062,0 -0.124023,0.0393 -0.04134,0.0393 -0.04134,0.10542 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.0476 -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.2067 l -0.671793,1.62471 h -0.08475 l -0.675927,-1.59783 q -0.04548,-0.11163 -0.08682,-0.15917 -0.04134,-0.0496 -0.10542,-0.0827 -0.03514,-0.0186 -0.138493,-0.0351 z" />
      <path
         id="path5409"
         style="font-size:4.23333px;fill:#808080"
         d="m 58.954329,147.15934 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.522966,0.23151 -0.341064,0 -0.584976,-0.26458 -0.241846,-0.26665 -0.241846,-0.71521 0,-0.48575 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.13436 -0.134358,0.13229 -0.157096,0.37 z" />
      <path
         id="path5411"
         style="font-size:4.23333px;fill:#808080"
         d="m 61.06686,146.3904 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.08062,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 60.42814 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.73381 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" />
      <path
         id="path5413"
         style="font-size:4.23333px;fill:#808080"
         d="m 62.35877,147.64923 q -0.173632,-0.0847 -0.26665,-0.23564 -0.09302,-0.15296 -0.09302,-0.33693 0,-0.28112 0.210839,-0.48369 0.212907,-0.20257 0.543636,-0.20257 0.270784,0 0.469222,0.13229 h 0.401008 q 0.08888,0 0.103353,0.006 0.01447,0.004 0.02067,0.0165 0.0124,0.0186 0.0124,0.0661 0,0.0538 -0.01033,0.0744 -0.0062,0.0103 -0.02274,0.0165 -0.01447,0.006 -0.103353,0.006 h -0.245979 q 0.115755,0.14883 0.115755,0.38034 0,0.26459 -0.202572,0.45269 -0.202571,0.1881 -0.543635,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.134358,0.0476 0.05788,0.008 0.289388,0.0145 0.425814,0.0103 0.551904,0.0289 0.192236,0.0269 0.305924,0.14263 0.115755,0.11576 0.115755,0.28525 0,0.23358 -0.219108,0.43822 -0.32246,0.30179 -0.841291,0.30179 -0.398942,0 -0.67386,-0.17983 -0.155029,-0.10336 -0.155029,-0.21498 0,-0.0496 0.02274,-0.0992 0.03514,-0.0765 0.144694,-0.2129 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.0724 0.05788,-0.1695 0.05995,-0.0971 0.272851,-0.27492 z m 0.359668,-1.15961 q -0.152962,0 -0.256315,0.12195 -0.103353,0.12196 -0.103353,0.37414 0,0.32659 0.14056,0.50643 0.107487,0.13642 0.272851,0.13642 0.157097,0 0.258382,-0.11782 0.101286,-0.11782 0.101286,-0.37 0,-0.32866 -0.142627,-0.5147 -0.10542,-0.13642 -0.270784,-0.13642 z m -0.380338,1.85001 q -0.09715,0.10542 -0.146761,0.19637 -0.04961,0.0909 -0.04961,0.16743 0,0.0992 0.11989,0.17364 0.206705,0.12815 0.597379,0.12815 0.37207,0 0.547769,-0.13229 0.177767,-0.13022 0.177767,-0.27905 0,-0.10749 -0.10542,-0.15296 -0.107486,-0.0455 -0.425813,-0.0538 -0.465088,-0.0124 -0.715201,-0.0475 z" />
      <path
         id="path5415"
         style="font-size:4.23333px;fill:#808080"
         d="m 64.450631,145.40028 q 0.08682,0 0.14676,0.062 0.06201,0.0599 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.17777 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.04548,-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" />
      <path
         id="path5417"
         style="font-size:4.23333px;fill:#808080"
         d="m 66.80294,146.44621 v 1.14721 q 0,0.32867 0.01447,0.40308 0.01654,0.0724 0.04961,0.10129 0.03514,0.0289 0.08062,0.0289 0.06408,0 0.144693,-0.0351 l 0.02894,0.0724 -0.566373,0.23358 h -0.09302 v -0.40101 q -0.243913,0.26458 -0.37207,0.3328 -0.128158,0.0682 -0.270785,0.0682 -0.159163,0 -0.276985,-0.091 -0.115755,-0.093 -0.161231,-0.23771 -0.04547,-0.1447 -0.04547,-0.40928 v -0.84543 q 0,-0.13435 -0.02894,-0.18603 -0.02894,-0.0517 -0.08682,-0.0785 -0.05581,-0.0289 -0.204638,-0.0269 v -0.0765 h 0.663524 v 1.2671 q 0,0.26459 0.09095,0.34727 0.09302,0.0827 0.223242,0.0827 0.08888,0 0.200504,-0.0558 0.113688,-0.0558 0.268718,-0.21291 v -1.0728 q 0,-0.16123 -0.05994,-0.21704 -0.05788,-0.0579 -0.243913,-0.062 v -0.0765 z" />
    </g>
    <path
       d="m -195.80469,-9.7929688 c -1.37292,0 -2.46289,1.0899619 -2.46289,2.4628907 v 8.0566406 c 0,1.3729287 1.08997,2.4628906 2.46289,2.4628906 h 14.08399 c 1.37292,0 2.46289,-1.0899619 2.46289,-2.4628906 v -8.0566406 c 0,-1.3729288 -1.08997,-2.4628906 -2.46289,-2.4628907 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 -195.80515,-10.306902 h 14.08418 c 1.64901,0 2.97656,1.3275469 2.97656,2.9765626 v 8.05611607 c 0,1.64901563 -1.32755,2.97656253 -2.97656,2.97656253 h -14.08418 c -1.64901,0 -2.97656,-1.3275469 -2.97656,-2.97656253 V -7.3303394 c 0,-1.6490157 1.32755,-2.9765626 2.97656,-2.9765626 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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times 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="flowRoot34623"
       transform="translate(-247.80294,-173.92856)"
       aria-label="Fim da simulação com erro">
      <path
         id="path5422"
         style="font-size:4.23333px;fill:#808080"
         d="m 53.970095,164.71323 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" />
      <path
         id="path5424"
         style="font-size:4.23333px;fill:#808080"
         d="m 56.074358,164.42384 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.04547,-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" />
      <path
         id="path5426"
         style="font-size:4.23333px;fill:#808080"
         d="m 57.329061,165.81703 q 0.206705,-0.2067 0.243912,-0.23771 0.09302,-0.0786 0.200505,-0.12195 0.107487,-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.04547,0.11989 0.04547,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 -0.957047 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.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.138493,0.031 l -0.03101,-0.0744 0.570507,-0.23151 h 0.08888 z" />
      <path
         id="path5428"
         style="font-size:4.23333px;fill:#808080"
         d="m 62.453291,167.15028 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.08061,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" />
      <path
         id="path5430"
         style="font-size:4.23333px;fill:#808080"
         d="m 64.305373,167.09034 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.293521,-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" />
      <path
         id="path5432"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 51.350592,169.62822 0.03101,0.65939 h -0.07028 q -0.12609,-0.29353 -0.262516,-0.40101 -0.134358,-0.10749 -0.268717,-0.10749 -0.08475,0 -0.144694,0.0579 -0.05994,0.0558 -0.05994,0.13022 0,0.0558 0.04134,0.10749 0.06614,0.0847 0.370003,0.29145 0.303857,0.20464 0.398941,0.34934 0.09715,0.14262 0.09715,0.32039 0,0.16123 -0.08062,0.31626 -0.08061,0.15503 -0.227376,0.23771 -0.146761,0.0827 -0.324528,0.0827 -0.138493,0 -0.370003,-0.0868 -0.06201,-0.0227 -0.08475,-0.0227 -0.06821,0 -0.113688,0.10335 h -0.06821 l -0.03307,-0.69453 h 0.07028 q 0.09302,0.27285 0.254248,0.40928 0.163297,0.13642 0.307991,0.13642 0.09922,0 0.16123,-0.0599 0.06408,-0.062 0.06408,-0.14883 0,-0.0992 -0.06201,-0.17156 -0.06201,-0.0724 -0.276985,-0.21911 -0.31626,-0.21911 -0.409277,-0.33486 -0.136426,-0.1695 -0.136426,-0.37414 0,-0.22324 0.152962,-0.40308 0.15503,-0.1819 0.446484,-0.1819 0.157097,0 0.303858,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" />
      <path
         id="path5434"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 52.239426,168.74558 q 0.134359,0 0.227376,0.0951 0.09302,0.093 0.09302,0.22531 0,0.13229 -0.09509,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.1323 0.09302,-0.22531 0.09302,-0.0951 0.225309,-0.0951 z m 0.289388,0.93638 v 1.53169 q 0,0.20464 0.04754,0.26251 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.12862 q 0,-0.20463 -0.04754,-0.26044 -0.04754,-0.0579 -0.183968,-0.0661 v -0.0765 z" />
      <path
         id="path5436"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 53.750444,169.68196 v 0.25425 q 0.159163,-0.17364 0.293522,-0.24185 0.136425,-0.0703 0.297656,-0.0703 0.186035,0 0.312125,0.0868 0.126091,0.0868 0.194303,0.26458 0.165365,-0.18603 0.31626,-0.26872 0.152962,-0.0827 0.318326,-0.0827 0.200505,0 0.318327,0.093 0.119889,0.091 0.165364,0.23358 0.04754,0.14056 0.04754,0.45061 v 0.79169 q 0,0.22324 0.03927,0.27698 0.04134,0.0538 0.169498,0.0703 v 0.0744 h -0.998388 v -0.0744 q 0.117823,-0.0103 0.173633,-0.091 0.03721,-0.0558 0.03721,-0.25631 v -0.83096 q 0,-0.25838 -0.02067,-0.32866 -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.03767 q 0,0.20877 0.03514,0.26251 0.04754,0.0765 0.181901,0.0848 v 0.0744 h -1.000455 v -0.0744 q 0.08062,-0.004 0.126091,-0.0393 0.04754,-0.0372 0.06201,-0.0868 0.01654,-0.0517 0.01654,-0.22117 v -0.83096 q 0,-0.26252 -0.02067,-0.32866 -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.2191 v 1.03767 q 0,0.20464 0.03927,0.27078 0.04134,0.0641 0.169498,0.0765 v 0.0744 h -0.99632 v -0.0744 q 0.121956,-0.0124 0.173632,-0.0786 0.03514,-0.0455 0.03514,-0.26871 v -1.09141 q 0,-0.21911 -0.04134,-0.27285 -0.03927,-0.0537 -0.167431,-0.0703 v -0.0765 z" />
      <path
         id="path5438"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 58.345508,169.68196 v 1.51308 q 0,0.22118 0.04134,0.27699 0.04134,0.0537 0.167431,0.0682 v 0.0744 h -0.787548 v -0.25839 q -0.138493,0.16537 -0.276986,0.24185 -0.138492,0.0744 -0.310058,0.0744 -0.163297,0 -0.291455,-0.0992 -0.12609,-0.10128 -0.169498,-0.23564 -0.04341,-0.13436 -0.04341,-0.46922 v -0.76688 q 0,-0.21911 -0.04134,-0.27285 -0.03927,-0.0537 -0.167431,-0.0703 v -0.0765 h 0.787548 v 1.32085 q 0,0.2067 0.0186,0.26665 0.02067,0.0599 0.06201,0.0909 0.04341,0.031 0.09922,0.031 0.07441,0 0.134359,-0.0393 0.08268,-0.0537 0.198437,-0.21704 v -1.03353 q 0,-0.21911 -0.04134,-0.27285 -0.03927,-0.0537 -0.167432,-0.0703 v -0.0765 z" />
      <path
         id="path5440"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 59.591943,168.81173 v 2.40192 q 0,0.20464 0.04754,0.26251 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 -2.00091 q 0,-0.20257 -0.04754,-0.25838 -0.04754,-0.0579 -0.183968,-0.0662 v -0.0765 z" />
      <path
         id="path5442"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 61.076089,171.3294 q -0.353467,0.31213 -0.634586,0.31213 -0.165365,0 -0.274919,-0.10749 -0.109554,-0.10955 -0.109554,-0.27285 0,-0.22118 0.19017,-0.39688 0.190169,-0.17776 0.828889,-0.47128 v -0.19431 q 0,-0.2191 -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.0599 -0.05374,0.0372 -0.05374,0.0868 0,0.0434 0.05788,0.10749 0.07855,0.0889 0.07855,0.17156 0,0.10129 -0.07648,0.17363 -0.07441,0.0703 -0.19637,0.0703 -0.130225,0 -0.219108,-0.0785 -0.08682,-0.0785 -0.08682,-0.18397 0,-0.14883 0.117823,-0.28319 0.117822,-0.13642 0.328661,-0.20877 0.21084,-0.0724 0.438216,-0.0724 0.274919,0 0.434082,0.11782 0.16123,0.11576 0.208773,0.25218 0.02894,0.0868 0.02894,0.39895 v 0.75034 q 0,0.13229 0.01034,0.16743 0.01033,0.0331 0.03101,0.0496 0.02067,0.0165 0.04754,0.0165 0.05374,0 0.109554,-0.0765 l 0.06201,0.0496 q -0.103352,0.15296 -0.214973,0.22324 -0.109554,0.0682 -0.250114,0.0682 -0.165365,0 -0.258382,-0.0765 -0.09302,-0.0786 -0.113688,-0.23565 z m 0,-0.15089 v -0.64699 q -0.250114,0.14676 -0.37207,0.31419 -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.11575 z" />
      <path
         id="path5444"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 63.703316,171.1165 0.06408,0.0496 q -0.136426,0.25632 -0.341064,0.38241 -0.202571,0.12402 -0.432015,0.12402 -0.386539,0 -0.618049,-0.29145 -0.23151,-0.29146 -0.23151,-0.70073 0,-0.39481 0.210839,-0.69453 0.254248,-0.36174 0.700732,-0.36174 0.299723,0 0.475423,0.1509 0.177767,0.15089 0.177767,0.33693 0,0.11782 -0.07235,0.1881 -0.07028,0.0703 -0.186035,0.0703 -0.121957,0 -0.202572,-0.0806 -0.07855,-0.0806 -0.09715,-0.28732 -0.0124,-0.13022 -0.05994,-0.1819 -0.04754,-0.0517 -0.111621,-0.0517 -0.09922,0 -0.169499,0.10542 -0.107486,0.15916 -0.107486,0.48782 0,0.27285 0.08682,0.52297 0.08682,0.24804 0.237711,0.37 0.113688,0.0889 0.268717,0.0889 0.101286,0 0.192237,-0.0475 0.09095,-0.0475 0.214973,-0.17983 z m -0.727603,0.47335 h 0.136426 l -0.09715,0.1509 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.163297,0.12402 -0.157097,0.0517 -0.475423,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.10336 -0.04754,-0.0413 -0.138493,-0.0413 z" />
      <path
         id="path5446"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 65.06964,171.3294 q -0.353466,0.31213 -0.634586,0.31213 -0.165364,0 -0.274918,-0.10749 -0.109554,-0.10955 -0.109554,-0.27285 0,-0.22118 0.190169,-0.39688 0.190169,-0.17776 0.828889,-0.47128 v -0.19431 q 0,-0.2191 -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.0599 -0.05374,0.0372 -0.05374,0.0868 0,0.0434 0.05788,0.10749 0.07855,0.0889 0.07855,0.17156 0,0.10129 -0.07648,0.17363 -0.07441,0.0703 -0.19637,0.0703 -0.130225,0 -0.219108,-0.0785 -0.08682,-0.0785 -0.08682,-0.18397 0,-0.14883 0.117822,-0.28319 0.117822,-0.13642 0.328662,-0.20877 0.210839,-0.0724 0.438216,-0.0724 0.274918,0 0.434081,0.11782 0.161231,0.11576 0.208773,0.25218 0.02894,0.0868 0.02894,0.39895 v 0.75034 q 0,0.13229 0.01033,0.16743 0.01033,0.0331 0.03101,0.0496 0.02067,0.0165 0.04754,0.0165 0.05374,0 0.109554,-0.0765 l 0.06201,0.0496 q -0.103353,0.15296 -0.214974,0.22324 -0.109554,0.0682 -0.250114,0.0682 -0.165364,0 -0.258382,-0.0765 -0.09302,-0.0786 -0.113688,-0.23565 z m 0,-0.15089 v -0.64699 q -0.250114,0.14676 -0.37207,0.31419 -0.08061,0.11162 -0.08061,0.22531 0,0.0951 0.06821,0.16743 0.05168,0.0558 0.144694,0.0558 0.103352,0 0.239778,-0.11575 z m 0.398942,-2.39572 h 0.109554 q 0.0021,0.0413 0.0021,0.0703 0,0.22738 -0.128158,0.36587 -0.128157,0.13849 -0.310058,0.13849 -0.134359,0 -0.338997,-0.0971 -0.202572,-0.0971 -0.270784,-0.0971 -0.06201,0 -0.103353,0.0413 -0.04134,0.0413 -0.05788,0.14883 h -0.119889 q -0.0083,-0.26872 0.121956,-0.42168 0.132292,-0.15296 0.324528,-0.15296 0.06201,0 0.103353,0.0124 0.05788,0.0165 0.198437,0.0827 0.212907,0.0971 0.303857,0.0971 0.04548,0 0.08682,-0.0372 0.04134,-0.0372 0.07855,-0.15089 z" />
      <path
         id="path5448"
         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#808080"
         d="m 67.031276,169.62408 q 0.252181,0 0.469221,0.13023 0.217041,0.13022 0.328662,0.37 0.113688,0.23978 0.113688,0.52503 0,0.41135 -0.208772,0.68833 -0.252181,0.33486 -0.696598,0.33486 -0.436149,0 -0.671793,-0.30592 -0.235644,-0.30592 -0.235644,-0.709 0,-0.41548 0.239778,-0.72347 0.241846,-0.31006 0.661458,-0.31006 z m 0.0083,0.14676 q -0.10542,0 -0.181901,0.0806 -0.07441,0.0786 -0.09922,0.31419 -0.02274,0.23358 -0.02274,0.65112 0,0.22118 0.02894,0.41341 0.02274,0.14676 0.09715,0.22325 0.07441,0.0765 0.169499,0.0765 0.09302,0 0.155029,-0.0517 0.08061,-0.0703 0.107487,-0.19637 0.04134,-0.19637 0.04134,-0.79375 0,-0.3514 -0.03927,-0.48162 -0.03927,-0.13229 -0.115755,-0.19224 -0.05374,-0.0434 -0.14056,-0.0434 z" />
      <path
         id="path5450"
         style="font-size:4.23333px;fill:#808080"
         d="m 53.198622,175.14679 q -0.07648,0.37413 -0.299723,0.5767 -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.14883 0.179834,0.14676 0.179834,0.30592 0,0.0785 -0.05168,0.12816 -0.04961,0.0475 -0.14056,0.0475 -0.121956,0 -0.183967,-0.0785 -0.03514,-0.0434 -0.04754,-0.16536 -0.01033,-0.12196 -0.08268,-0.18604 -0.07235,-0.062 -0.200504,-0.062 -0.206706,0 -0.332796,0.15296 -0.167432,0.20257 -0.167432,0.53537 0,0.339 0.165365,0.59945 0.167431,0.25838 0.450618,0.25838 0.202571,0 0.363802,-0.1385 0.113688,-0.0951 0.221174,-0.34519 z" />
      <path
         id="path5452"
         style="font-size:4.23333px;fill:#808080"
         d="m 54.39338,173.91689 q 0.429948,0 0.690397,0.32659 0.221175,0.27905 0.221175,0.64079 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.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.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.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.374137,-0.19843 z" />
      <path
         id="path5454"
         style="font-size:4.23333px;fill:#808080"
         d="m 56.146243,174.31996 q 0.206706,-0.2067 0.243913,-0.23771 0.09302,-0.0785 0.200504,-0.12195 0.107487,-0.0434 0.212907,-0.0434 0.177767,0 0.305924,0.10335 0.128158,0.10335 0.171566,0.29972 0.212906,-0.24804 0.359667,-0.32452 0.146761,-0.0786 0.301791,-0.0786 0.150895,0 0.26665,0.0786 0.117822,0.0765 0.186035,0.25218 0.04547,0.11989 0.04547,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.93431 v -0.0744 h 0.03928 q 0.121956,0 0.190169,-0.0476 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.32659 -0.08062,-0.1323 -0.258382,-0.1323 -0.109554,0 -0.221175,0.0558 -0.109554,0.0537 -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.204638,0.031 v 0.0744 h -0.957046 v -0.0744 q 0.157096,0 0.214973,-0.0372 0.05994,-0.0372 0.08268,-0.11162 0.01033,-0.0351 0.01033,-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.171565,0.0909 -0.264583,0.20464 v 1.01492 q 0,0.18604 0.02481,0.24185 0.02687,0.0558 0.07648,0.0847 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.31212 -0.0186,-0.40307 -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.031,-0.0744 0.570507,-0.23151 h 0.08888 z" />
      <path
         id="path5456"
         style="font-size:4.23333px;fill:#808080"
         d="m 60.251416,174.68583 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.138492,-0.10335 0.23151,-0.3514 l 0.06408,0.0413 q -0.04341,0.28319 -0.252181,0.51677 -0.208773,0.23151 -0.522965,0.23151 -0.341064,0 -0.584977,-0.26458 -0.241845,-0.26665 -0.241845,-0.71521 0,-0.48575 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.01034,-0.1819 -0.04341,-0.25631 -0.05168,-0.11576 -0.155029,-0.1819 -0.101286,-0.0662 -0.212907,-0.0662 -0.171566,0 -0.307991,0.13436 -0.134359,0.13229 -0.157096,0.37 z" />
      <path
         id="path5458"
         style="font-size:4.23333px;fill:#808080"
         d="m 62.363946,173.91689 v 0.42581 q 0.237712,-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.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0724 -0.132291,-0.0724 -0.03721,0 -0.08062,0.0413 -0.09302,0.0848 -0.192236,0.27905 v 0.90744 q 0,0.1571 0.03927,0.23771 0.02687,0.0558 0.09509,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.2005 v -0.73381 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" />
      <path
         id="path5460"
         style="font-size:4.23333px;fill:#808080"
         d="m 63.777812,173.91689 v 0.42581 q 0.237712,-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.128157,0.0558 -0.07235,0 -0.163298,-0.0703 -0.08888,-0.0724 -0.132291,-0.0724 -0.03721,0 -0.08062,0.0413 -0.09302,0.0848 -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.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.2005 v -0.73381 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" />
      <path
         id="path5462"
         style="font-size:4.23333px;fill:#808080"
         d="m 65.563748,173.91689 q 0.429948,0 0.690397,0.32659 0.221175,0.27905 0.221175,0.64079 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.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.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.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.374137,-0.19843 z" />
    </g>
    <path
       d="m -162.95117,-1.0449219 c -1.42986,0 -2.46289,0.88784556 -2.46289,1.8496094 v 0.5332031 c 0,0.9617638 1.03344,1.8515625 2.46289,1.8515625 h 5.86914 c 1.42944,0 2.46289,-0.8898013 2.46289,-1.8515625 V 0.8046875 c 0,-0.96176122 -1.03305,-1.8496094 -2.46289,-1.8496094 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-2" />
    <path
       d="m -162.95058,-1.5594417 h 5.86794 c 1.64902,0 2.97656,1.0541736 2.97656,2.36361791 V 1.3387202 c 0,1.3094443 -1.32754,2.3636179 -2.97656,2.3636179 h -5.86794 c -1.64901,0 -2.97656,-1.0541736 -2.97656,-2.3636179 V 0.80417621 c 0,-1.30944431 1.32755,-2.36361791 2.97656,-2.36361791 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-4" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times 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="flowRoot34623-8-9"
       transform="translate(-214.94837,-165.1811)"
       aria-label="FIM">
      <path
         id="path5467"
         style="font-size:4.23333px;fill:#808080"
         d="m 52.031703,164.71518 v 1.10174 h 0.510563 q 0.175699,0 0.256314,-0.0765 0.08268,-0.0786 0.109554,-0.30799 h 0.07648 v 0.94878 h -0.07648 q -0.0021,-0.1633 -0.04341,-0.23978 -0.03927,-0.0765 -0.111621,-0.11369 -0.07028,-0.0393 -0.210839,-0.0393 h -0.510563 v 0.88056 q 0,0.21291 0.02687,0.28112 0.02067,0.0517 0.08682,0.0889 0.09095,0.0496 0.190169,0.0496 h 0.101286 v 0.0765 h -1.203027 v -0.0765 h 0.09922 q 0.173633,0 0.252181,-0.10128 0.04961,-0.0661 0.04961,-0.31833 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.61598 h -0.07235 q -0.05374,-0.19637 -0.12609,-0.28732 -0.07028,-0.093 -0.1757,-0.13436 -0.103353,-0.0413 -0.322461,-0.0413 z" />
      <path
         id="path5469"
         style="font-size:4.23333px;fill:#808080"
         d="m 54.828429,167.28866 v 0.0765 H 53.62747 v -0.0765 h 0.09922 q 0.173633,0 0.252181,-0.10128 0.04961,-0.0661 0.04961,-0.31833 v -1.81074 q 0,-0.21291 -0.02687,-0.28112 -0.02067,-0.0517 -0.08475,-0.0889 -0.09095,-0.0496 -0.19017,-0.0496 h -0.09922 v -0.0765 h 1.200959 v 0.0765 h -0.101286 q -0.171565,0 -0.250113,0.10128 -0.05168,0.0661 -0.05168,0.31833 v 1.81074 q 0,0.21291 0.02687,0.28112 0.02067,0.0517 0.08682,0.0889 0.08888,0.0496 0.188102,0.0496 z" />
      <path
         id="path5471"
         style="font-size:4.23333px;fill:#808080"
         d="m 56.668109,167.36514 -1.083138,-2.35851 v 1.87276 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.177766,0 0.25218,-0.10748 0.04548,-0.0662 0.04548,-0.30179 v -1.83142 q 0,-0.18603 -0.04134,-0.26871 -0.02894,-0.0599 -0.107486,-0.0992 -0.07648,-0.0413 -0.248047,-0.0413 v -0.0765 h 0.793749 l 1.016992,2.19314 1.000454,-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.83142 q 0,0.25838 0.05788,0.32246 0.07648,0.0868 0.241845,0.0868 h 0.09715 v 0.0765 h -1.190624 v -0.0765 h 0.09922 q 0.179834,0 0.252181,-0.10748 0.04548,-0.0662 0.04548,-0.30179 v -1.87276 l -1.08107,2.35851 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-9"
       d="m -159.96431,-86.745963 v 2.834812"
       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-3"
       d="m -159.96431,-51.924451 v 2.83481"
       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-9)" />
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-6"
       d="m -159.96431,-33.876092 v 2.834812"
       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-60"
       d="m -159.96431,-24.33219 v 2.834809"
       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-91"
       d="m -159.96431,-9.645268 v 6.97749"
       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-72"
       d="M -188.76306,-14.401909 V -11.5671"
       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-17)" />
    <path
       d="m -159.37109,-8.4371672 h 7.09892 v 3.7014733 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-1" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-2-5-2-2-0"
       aria-label="Sim">
      <path
         id="path5475"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -157.2865,-7.9801829 v 0.9694491 h -0.0765 q -0.0372,-0.2790525 -0.13436,-0.444417 -0.0951,-0.1653644 -0.27285,-0.262516 -0.17777,-0.097152 -0.36793,-0.097152 -0.21498,0 -0.35554,0.1322915 -0.14056,0.1302245 -0.14056,0.297656 0,0.1281575 0.0889,0.2335773 0.12815,0.1550292 0.60978,0.4134111 0.39274,0.2108397 0.53536,0.3245277 0.1447,0.111621 0.22118,0.2645831 0.0786,0.1529622 0.0786,0.3203937 0,0.3183265 -0.24805,0.5498367 -0.24598,0.2294432 -0.63459,0.2294432 -0.12195,0 -0.22944,-0.018604 -0.0641,-0.010335 -0.26665,-0.074414 -0.2005,-0.066146 -0.25425,-0.066146 -0.0517,0 -0.0827,0.031006 -0.0289,0.031006 -0.0434,0.1281574 h -0.0765 v -0.9611808 h 0.0765 q 0.0538,0.3017901 0.1447,0.4526851 0.0909,0.148828 0.27698,0.2480467 0.1881,0.099219 0.41135,0.099219 0.25838,0 0.40721,-0.1364257 0.15089,-0.1364257 0.15089,-0.3224607 0,-0.1033527 -0.0579,-0.2087726 -0.0558,-0.1054198 -0.1757,-0.1963703 -0.0806,-0.062012 -0.44028,-0.262516 -0.35967,-0.2025715 -0.51263,-0.3224607 -0.15089,-0.1198892 -0.22944,-0.2645831 -0.0786,-0.1446939 -0.0786,-0.3183265 0,-0.3017902 0.23151,-0.518831 0.23151,-0.2191079 0.58911,-0.2191079 0.22324,0 0.47336,0.109554 0.11575,0.051676 0.16329,0.051676 0.0537,0 0.0868,-0.031006 0.0351,-0.033073 0.0558,-0.1302245 z" />
      <path
         id="path5477"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -156.2571,-8.0525298 q 0.0868,0 0.14676,0.062012 0.062,0.059945 0.062,0.146761 0,0.086816 -0.062,0.148828 -0.0599,0.062012 -0.14676,0.062012 -0.0868,0 -0.14883,-0.062012 -0.062,-0.062012 -0.062,-0.148828 0,-0.086816 0.0599,-0.146761 0.062,-0.062012 0.1509,-0.062012 z m 0.17156,0.9901196 v 1.5213529 q 0,0.1777668 0.0248,0.2377114 0.0269,0.057878 0.0765,0.086816 0.0517,0.028939 0.18603,0.028939 v 0.074414 h -0.91984 v -0.074414 q 0.1385,0 0.18604,-0.026872 0.0475,-0.026872 0.0744,-0.088883 0.0289,-0.062012 0.0289,-0.2377114 v -0.7296706 q 0,-0.3079913 -0.0186,-0.3989418 -0.0145,-0.066146 -0.0455,-0.09095 -0.031,-0.026872 -0.0847,-0.026872 -0.0579,0 -0.14056,0.031006 l -0.0289,-0.074414 0.57051,-0.2315102 z" />
      <path
         id="path5479"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -155.0024,-6.6593344 q 0.2067,-0.2067055 0.24391,-0.2377114 0.093,-0.078548 0.20051,-0.1219562 0.10748,-0.043408 0.2129,-0.043408 0.17777,0 0.30593,0.1033528 0.12815,0.1033527 0.17156,0.299723 0.21291,-0.2480466 0.35967,-0.3245277 0.14676,-0.078548 0.30179,-0.078548 0.1509,0 0.26665,0.078548 0.11782,0.076481 0.18604,0.2521808 0.0455,0.1198892 0.0455,0.3762041 v 0.8144199 q 0,0.1777668 0.0269,0.2439125 0.0207,0.045475 0.0765,0.078548 0.0558,0.031006 0.1819,0.031006 v 0.074414 h -0.9343 v -0.074414 h 0.0393 q 0.12196,0 0.19017,-0.047542 0.0475,-0.033073 0.0682,-0.1054198 0.008,-0.03514 0.008,-0.2005044 v -0.8144199 q 0,-0.2315102 -0.0558,-0.3265948 -0.0806,-0.1322915 -0.25838,-0.1322915 -0.10956,0 -0.22118,0.05581 -0.10955,0.053743 -0.26665,0.2025714 l -0.004,0.022738 0.004,0.088883 v 0.9033033 q 0,0.1943032 0.0207,0.2418455 0.0227,0.047542 0.0827,0.080615 0.06,0.031006 0.20464,0.031006 v 0.074414 h -0.95704 v -0.074414 q 0.15709,0 0.21497,-0.037207 0.0599,-0.037207 0.0827,-0.111621 0.0103,-0.03514 0.0103,-0.2046385 v -0.8144199 q 0,-0.2315102 -0.0682,-0.332796 -0.0909,-0.1322915 -0.25424,-0.1322915 -0.11162,0 -0.22118,0.059945 -0.17156,0.09095 -0.26458,0.2046385 v 1.0149243 q 0,0.186035 0.0248,0.2418455 0.0269,0.05581 0.0765,0.084749 0.0517,0.026872 0.20671,0.026872 v 0.074414 h -0.93638 v -0.074414 q 0.13023,0 0.1819,-0.026872 0.0517,-0.028939 0.0786,-0.088883 0.0269,-0.062012 0.0269,-0.2377114 v -0.7234695 q 0,-0.3121254 -0.0186,-0.4030758 -0.0145,-0.068213 -0.0455,-0.093017 -0.031,-0.026872 -0.0847,-0.026872 -0.0579,0 -0.1385,0.031006 l -0.031,-0.074414 0.57051,-0.2315102 h 0.0889 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cccc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-60-9"
       d="m -148.46345,-15.030559 h 10.83894 v -76.862753 h 3.2225"
       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-4)" />
    <path
       d="m -146.99756,-19.019459 h 7.09892 v 3.567837 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-3" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-1-0-5-9-7"
       aria-label="Não">
      <path
         id="path5483"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -146.90975,-18.632033 h 0.76067 l 1.71359,2.102196 v -1.616438 q 0,-0.258382 -0.0579,-0.32246 -0.0765,-0.08682 -0.24184,-0.08682 h -0.0971 v -0.07648 h 0.97565 v 0.07648 h -0.0992 q -0.17777,0 -0.25218,0.107487 -0.0455,0.06615 -0.0455,0.30179 v 2.362645 h -0.0744 l -1.84795,-2.257225 v 1.725992 q 0,0.258382 0.0558,0.32246 0.0785,0.08682 0.24185,0.08682 h 0.0992 v 0.07648 h -0.97565 v -0.07648 h 0.0971 q 0.17983,0 0.25425,-0.107487 0.0455,-0.06615 0.0455,-0.30179 v -1.949234 q -0.12196,-0.142627 -0.18603,-0.188102 -0.062,-0.04547 -0.18397,-0.08475 -0.06,-0.0186 -0.1819,-0.0186 z" />
      <path
         id="path5485"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -142.58961,-16.101957 q -0.29145,0.225309 -0.36587,0.260449 -0.11162,0.05168 -0.23771,0.05168 -0.19637,0 -0.32453,-0.134359 -0.12609,-0.134359 -0.12609,-0.353466 0,-0.138493 0.062,-0.239779 0.0848,-0.14056 0.29352,-0.264583 0.21084,-0.124023 0.69866,-0.30179 v -0.07441 q 0,-0.283187 -0.091,-0.388607 -0.0889,-0.105419 -0.26045,-0.105419 -0.13022,0 -0.2067,0.07028 -0.0786,0.07028 -0.0786,0.16123 l 0.004,0.119889 q 0,0.09509 -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.25219,0 0.41342,0.08475 0.12195,0.06408 0.17983,0.200504 0.0372,0.08888 0.0372,0.363802 v 0.642854 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.310059 -0.44235,0.310059 -0.10128,0 -0.16123,-0.07028 -0.0599,-0.07028 -0.062,-0.239779 z m 0,-0.134358 v -0.721403 q -0.31212,0.124024 -0.40307,0.1757 -0.1633,0.09095 -0.23358,0.190169 -0.0703,0.09922 -0.0703,0.217041 0,0.148828 0.0889,0.248047 0.0889,0.09715 0.20464,0.09715 0.1571,0 0.41341,-0.206705 z m -0.85162,-1.86035 h -0.0662 q 0.008,-0.283187 0.11782,-0.409277 0.10956,-0.126091 0.27079,-0.126091 0.0848,0 0.15503,0.02687 0.093,0.03514 0.26251,0.148828 0.17157,0.111621 0.25425,0.111621 0.0661,0 0.11575,-0.05581 0.0517,-0.05581 0.0806,-0.231511 h 0.0641 q 0.002,0.192236 -0.0517,0.305925 -0.0517,0.111621 -0.14883,0.175699 -0.0951,0.06201 -0.19223,0.06201 -0.1633,0 -0.40514,-0.165365 -0.13023,-0.08888 -0.1757,-0.107486 -0.0455,-0.0186 -0.0889,-0.0186 -0.0848,0 -0.13436,0.07441 -0.0227,0.03514 -0.0579,0.208773 z" />
      <path
         id="path5487"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -140.85948,-17.778339 q 0.42995,0 0.69039,0.326595 0.22118,0.279053 0.22118,0.640787 0,0.254248 -0.12196,0.514697 -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.287321 -0.21291,-0.644921 0,-0.260449 0.12816,-0.516764 0.13022,-0.258382 0.34106,-0.380338 0.21084,-0.124024 0.44649,-0.124024 z m -0.0641,0.134359 q -0.10955,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.1633,0.713134 0.16537,0.299723 0.43408,0.299723 0.20051,0 0.33073,-0.165364 0.13023,-0.165365 0.13023,-0.56844 0,-0.504362 -0.21704,-0.79375 -0.14676,-0.198437 -0.37414,-0.198437 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="ccc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-6-3"
       d="m -172.60468,-76.861051 h -16.30021 v 47.813991"
       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-7)" />
    <path
       d="m -133.26842,-100.74532 h 83.150401 v 52.81746 h -83.150401 z"
       style="opacity:1;fill:#c8c8c8;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;stroke-opacity:1"
       id="rect7253-2-7-7-4" />
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       inkscape:connector-curvature="0"
       id="rect13740-3-3-6-0-3-8"
       d="m -115.53336,-100.19471 17.734731,8.304341 -17.734731,8.304297 -17.73472,-8.304297 z"
       style="opacity:1;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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.74789px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-4-3-3-3-2-1"
       aria-label="|en - en-1|
&lt; 10-1?">
      <path
         id="path5491"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -122.60682,-95.513701 v 3.852991 h -0.17157 v -3.852991 z" />
      <path
         id="path5493"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -121.5981,-93.349494 q -0.0186,0.134358 -0.0186,0.221175 0,0.155029 0.0889,0.248046 0.091,0.09302 0.24184,0.09302 0.1447,0 0.28939,-0.07028 0.14676,-0.07028 0.339,-0.24598 l 0.062,0.05581 q -0.23771,0.287321 -0.46302,0.409277 -0.22531,0.121956 -0.49816,0.121956 -0.3452,0 -0.47749,-0.165364 -0.13229,-0.165365 -0.13229,-0.382406 0,-0.338997 0.19637,-0.677994 0.19844,-0.338997 0.53743,-0.543635 0.34107,-0.204639 0.6842,-0.204639 0.17363,0 0.26251,0.08268 0.0889,0.08268 0.0889,0.208773 0,0.150895 -0.0868,0.293522 -0.11989,0.194303 -0.30179,0.314192 -0.1819,0.117822 -0.40721,0.179834 -0.15089,0.04134 -0.40514,0.06201 z m 0.0186,-0.107487 q 0.1819,-0.02687 0.28112,-0.07235 0.10129,-0.04754 0.19637,-0.148828 0.0972,-0.103353 0.16743,-0.258382 0.0703,-0.157096 0.0703,-0.293522 0,-0.05788 -0.0331,-0.09095 -0.031,-0.03307 -0.0806,-0.03307 -0.0992,0 -0.22325,0.138492 -0.22737,0.252181 -0.37827,0.75861 z" />
      <path
         id="path5495"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -119.53466,-93.164804 -0.19224,0.665076 q 0.19379,-0.291455 0.28991,-0.398426 0.14107,-0.155029 0.24339,-0.210839 0.10232,-0.05581 0.19224,-0.05581 0.0806,0 0.13797,0.06046 0.0574,0.05891 0.0574,0.15503 0,0.08682 -0.0372,0.21084 l -0.19844,0.661975 q -0.0248,0.08682 -0.0248,0.113171 0,0.0155 0.0108,0.02791 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.0326,-0.0124 0.0543,-0.04496 0.11007,-0.127124 0.0139,-0.0217 0.045,-0.06511 l 0.0589,0.03566 q -0.22789,0.382922 -0.47904,0.382922 -0.0961,0 -0.15038,-0.04961 -0.0543,-0.04961 -0.0543,-0.124024 0,-0.06511 0.0372,-0.193786 l 0.19378,-0.661975 q 0.0202,-0.06511 0.0202,-0.09612 0,-0.01705 -0.014,-0.02945 -0.0139,-0.01395 -0.0326,-0.01395 -0.0589,0 -0.14263,0.08061 -0.21394,0.204639 -0.41393,0.609266 l -0.12712,0.460437 h -0.39533 l 0.28991,-0.995289 q 0.0419,-0.147277 0.0419,-0.209289 0,-0.02635 -0.0124,-0.04341 -0.0124,-0.0186 -0.0403,-0.02791 -0.0279,-0.01085 -0.10542,-0.01085 l 0.017,-0.05891 0.52245,-0.09147 z" />
      <path
         id="path5497"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -117.38544,-93.680223 h 1.06867 v 0.312125 h -1.06867 z" />
      <path
         id="path5499"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -114.42335,-93.349494 q -0.0186,0.134358 -0.0186,0.221175 0,0.155029 0.0889,0.248046 0.091,0.09302 0.24185,0.09302 0.14469,0 0.28938,-0.07028 0.14676,-0.07028 0.339,-0.24598 l 0.062,0.05581 q -0.23771,0.287321 -0.46302,0.409277 -0.22531,0.121956 -0.49816,0.121956 -0.3452,0 -0.47749,-0.165364 -0.13229,-0.165365 -0.13229,-0.382406 0,-0.338997 0.19637,-0.677994 0.19844,-0.338997 0.53743,-0.543635 0.34107,-0.204639 0.6842,-0.204639 0.17363,0 0.26252,0.08268 0.0889,0.08268 0.0889,0.208773 0,0.150895 -0.0868,0.293522 -0.11989,0.194303 -0.30179,0.314192 -0.1819,0.117822 -0.40721,0.179834 -0.15089,0.04134 -0.40514,0.06201 z m 0.0186,-0.107487 q 0.1819,-0.02687 0.28112,-0.07235 0.10129,-0.04754 0.19637,-0.148828 0.0972,-0.103353 0.16744,-0.258382 0.0703,-0.157096 0.0703,-0.293522 0,-0.05788 -0.0331,-0.09095 -0.031,-0.03307 -0.0806,-0.03307 -0.0992,0 -0.22324,0.138492 -0.22738,0.252181 -0.37828,0.75861 z" />
      <path
         id="path5501"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -112.35991,-93.164804 -0.19224,0.665076 q 0.19379,-0.291455 0.28991,-0.398426 0.14107,-0.155029 0.24339,-0.210839 0.10232,-0.05581 0.19224,-0.05581 0.0806,0 0.13798,0.06046 0.0574,0.05891 0.0574,0.15503 0,0.08682 -0.0372,0.21084 l -0.19844,0.661975 q -0.0248,0.08682 -0.0248,0.113171 0,0.0155 0.0109,0.02791 0.0124,0.0124 0.0248,0.0124 0.0155,0 0.0326,-0.0124 0.0543,-0.04496 0.11007,-0.127124 0.014,-0.0217 0.045,-0.06511 l 0.0589,0.03566 q -0.22789,0.382922 -0.47904,0.382922 -0.0961,0 -0.15038,-0.04961 -0.0543,-0.04961 -0.0543,-0.124024 0,-0.06511 0.0372,-0.193786 l 0.19379,-0.661975 q 0.0202,-0.06511 0.0202,-0.09612 0,-0.01705 -0.0139,-0.02945 -0.014,-0.01395 -0.0326,-0.01395 -0.0589,0 -0.14263,0.08061 -0.21394,0.204639 -0.41392,0.609266 l -0.12713,0.460437 h -0.39532 l 0.2899,-0.995289 q 0.0419,-0.147277 0.0419,-0.209289 0,-0.02635 -0.0124,-0.04341 -0.0124,-0.0186 -0.0403,-0.02791 -0.0279,-0.01085 -0.10542,-0.01085 l 0.017,-0.05891 0.52245,-0.09147 z" />
      <path
         id="path5503"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -111.31966,-92.584994 h 0.90227 l -0.0961,0.32246 h -0.90692 z" />
      <path
         id="path5505"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -108.96787,-93.873288 -0.51315,1.764233 q -0.0403,0.137977 -0.0403,0.175184 0,0.03721 0.0279,0.07751 0.0295,0.03876 0.062,0.05116 0.0341,0.01085 0.20154,0.02015 l -0.017,0.05736 h -1.05885 l 0.017,-0.05736 q 0.15813,-0.0031 0.22014,-0.02635 0.062,-0.02326 0.10077,-0.07596 0.0403,-0.05271 0.0899,-0.221692 l 0.30386,-1.047998 q 0.0698,-0.238745 0.0729,-0.252697 0.009,-0.04031 0.009,-0.07596 0,-0.06976 -0.0434,-0.11007 -0.0419,-0.04186 -0.12092,-0.04186 -0.0388,0 -0.15348,0.0124 l -0.0124,-0.05736 0.7891,-0.190686 z" />
      <path
         id="path5507"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -108.28833,-95.513701 v 3.852991 h -0.17156 v -3.852991 z" />
      <path
         id="path5509"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -121.55262,-88.723896 2.22415,-0.963248 v 0.179834 l -1.9141,0.830956 1.9141,0.839225 v 0.186035 l -2.22415,-0.971517 z" />
      <path
         id="path5511"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -117.68516,-89.792564 0.68212,-0.332796 h 0.0682 v 2.366779 q 0,0.235644 0.0186,0.293522 0.0207,0.05788 0.0827,0.08888 0.062,0.03101 0.25218,0.03514 v 0.07648 h -1.05419 v -0.07648 q 0.19843,-0.0041 0.25631,-0.03307 0.0579,-0.03101 0.0806,-0.08061 0.0227,-0.05168 0.0227,-0.303857 v -1.513085 q 0,-0.305924 -0.0207,-0.392741 -0.0145,-0.06615 -0.0537,-0.09715 -0.0372,-0.03101 -0.0909,-0.03101 -0.0765,0 -0.21291,0.06408 z" />
      <path
         id="path5513"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -115.91163,-88.649482 q 0,-0.479557 0.14469,-0.824755 0.1447,-0.347266 0.38448,-0.516764 0.18603,-0.134359 0.38447,-0.134359 0.32246,0 0.57877,0.328662 0.3204,0.40721 0.3204,1.103808 0,0.487825 -0.14056,0.828889 -0.14056,0.341064 -0.35967,0.496093 -0.21704,0.152962 -0.41961,0.152962 -0.40101,0 -0.66766,-0.473355 -0.22531,-0.398942 -0.22531,-0.961181 z m 0.40514,0.05168 q 0,0.578776 0.14263,0.944644 0.11782,0.307992 0.3514,0.307992 0.11162,0 0.23151,-0.09922 0.11989,-0.101286 0.1819,-0.33693 0.0951,-0.355534 0.0951,-1.002522 0,-0.479557 -0.0992,-0.79995 -0.0744,-0.237712 -0.19224,-0.33693 -0.0848,-0.06821 -0.20464,-0.06821 -0.14056,0 -0.25011,0.12609 -0.14883,0.171566 -0.20257,0.539502 -0.0537,0.367935 -0.0537,0.725536 z" />
      <path
         id="path5515"
         style="font-size:3.175px;line-height:1.25;baseline-shift:super;fill:#808080;stroke-width:0.264583"
         d="m -113.81925,-89.787294 h 0.8015 v 0.234094 h -0.8015 z" />
      <path
         id="path5517"
         style="font-size:3.175px;line-height:1.25;baseline-shift:super;fill:#808080;stroke-width:0.264583"
         d="m -112.51546,-90.853895 0.5116,-0.249597 h 0.0512 v 1.775085 q 0,0.176733 0.0139,0.220142 0.0155,0.04341 0.062,0.06666 0.0465,0.02325 0.18914,0.02635 v 0.05736 h -0.79065 v -0.05736 q 0.14883,-0.0031 0.19224,-0.02481 0.0434,-0.02325 0.0605,-0.06046 0.017,-0.03876 0.017,-0.227893 v -1.134815 q 0,-0.229443 -0.0155,-0.294555 -0.0108,-0.04961 -0.0403,-0.07286 -0.0279,-0.02325 -0.0682,-0.02325 -0.0574,0 -0.15968,0.04806 z" />
      <path
         id="path5519"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -110.36158,-87.926013 h -0.0847 q 0.0145,-0.260449 0.0641,-0.429947 0.0517,-0.171566 0.21084,-0.475423 0.12402,-0.233577 0.16123,-0.357601 0.0372,-0.12609 0.0372,-0.254248 0,-0.262516 -0.14056,-0.417545 -0.13849,-0.155029 -0.34106,-0.155029 -0.17984,0 -0.28319,0.08475 -0.10335,0.08475 -0.10335,0.183968 0,0.07648 0.062,0.188102 0.062,0.111621 0.062,0.169499 0,0.07441 -0.0475,0.12609 -0.0475,0.04961 -0.11575,0.04961 -0.0868,0 -0.15917,-0.08475 -0.0703,-0.08682 -0.0703,-0.239778 0,-0.233577 0.20051,-0.413411 0.2005,-0.179834 0.54363,-0.179834 0.42582,0 0.62632,0.248047 0.14883,0.1819 0.14883,0.403075 0,0.150895 -0.0682,0.310059 -0.0662,0.159163 -0.25425,0.374137 -0.29973,0.338997 -0.36794,0.481624 -0.0661,0.140559 -0.0806,0.388606 z m -0.0289,0.256315 q 0.0971,0 0.16329,0.06821 0.0682,0.06615 0.0682,0.163297 0,0.09508 -0.0682,0.163298 -0.0682,0.06615 -0.16329,0.06615 -0.0951,0 -0.1633,-0.06615 -0.0661,-0.06821 -0.0661,-0.163298 0,-0.09715 0.0661,-0.163297 0.0682,-0.06821 0.1633,-0.06821 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       inkscape:connector-curvature="0"
       id="rect13740-3-3-6-0-3-8-3"
       d="m -68.414989,-100.19471 17.73472,8.304341 -17.73472,8.304297 -17.73473,-8.304297 z"
       style="opacity:1;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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.74789px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-4-3-3-3-2-1-7"
       aria-label="|en - en-1|
&gt; 10?">
      <path
         id="path5522"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -75.488454,-95.513701 v 3.852991 h -0.171566 v -3.852991 z" />
      <path
         id="path5524"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -74.479731,-93.349494 q -0.0186,0.134358 -0.0186,0.221175 0,0.155029 0.08888,0.248046 0.09095,0.09302 0.241845,0.09302 0.144694,0 0.289388,-0.07028 0.146761,-0.07028 0.338997,-0.24598 l 0.06201,0.05581 q -0.237712,0.287321 -0.463021,0.409277 -0.225309,0.121956 -0.49816,0.121956 -0.345198,0 -0.47749,-0.165364 -0.132292,-0.165365 -0.132292,-0.382406 0,-0.338997 0.196371,-0.677994 0.198437,-0.338997 0.537434,-0.543635 0.341064,-0.204639 0.684196,-0.204639 0.173632,0 0.262516,0.08268 0.08888,0.08268 0.08888,0.208773 0,0.150895 -0.08682,0.293522 -0.11989,0.194303 -0.30179,0.314192 -0.181901,0.117822 -0.40721,0.179834 -0.150895,0.04134 -0.405143,0.06201 z m 0.0186,-0.107487 q 0.181901,-0.02687 0.28112,-0.07235 0.101286,-0.04754 0.19637,-0.148828 0.09715,-0.103353 0.167432,-0.258382 0.07028,-0.157096 0.07028,-0.293522 0,-0.05788 -0.03307,-0.09095 -0.03101,-0.03307 -0.08062,-0.03307 -0.09922,0 -0.223242,0.138492 -0.227376,0.252181 -0.378271,0.75861 z" />
      <path
         id="path5526"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -72.416292,-93.164804 -0.192237,0.665076 q 0.193787,-0.291455 0.289905,-0.398426 0.141077,-0.155029 0.243396,-0.210839 0.102319,-0.05581 0.192236,-0.05581 0.08062,0 0.137976,0.06046 0.05736,0.05891 0.05736,0.15503 0,0.08682 -0.03721,0.21084 l -0.198437,0.661975 q -0.02481,0.08682 -0.02481,0.113171 0,0.0155 0.01085,0.02791 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.04496 0.110071,-0.127124 0.01395,-0.0217 0.04496,-0.06511 l 0.05891,0.03566 q -0.227893,0.382922 -0.47904,0.382922 -0.09612,0 -0.150379,-0.04961 -0.05426,-0.04961 -0.05426,-0.124024 0,-0.06511 0.03721,-0.193786 l 0.193787,-0.661975 q 0.02015,-0.06511 0.02015,-0.09612 0,-0.01705 -0.01395,-0.02945 -0.01395,-0.01395 -0.03256,-0.01395 -0.05891,0 -0.142627,0.08061 -0.213941,0.204639 -0.413928,0.609266 l -0.127124,0.460437 h -0.395325 l 0.289905,-0.995289 q 0.04186,-0.147277 0.04186,-0.209289 0,-0.02635 -0.0124,-0.04341 -0.0124,-0.0186 -0.04031,-0.02791 -0.02791,-0.01085 -0.10542,-0.01085 l 0.01705,-0.05891 0.522449,-0.09147 z" />
      <path
         id="path5528"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -70.267071,-93.680223 h 1.068668 v 0.312125 h -1.068668 z" />
      <path
         id="path5530"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -67.304979,-93.349494 q -0.0186,0.134358 -0.0186,0.221175 0,0.155029 0.08888,0.248046 0.09095,0.09302 0.241846,0.09302 0.144694,0 0.289388,-0.07028 0.146761,-0.07028 0.338997,-0.24598 l 0.06201,0.05581 q -0.237711,0.287321 -0.46302,0.409277 -0.225309,0.121956 -0.49816,0.121956 -0.345199,0 -0.47749,-0.165364 -0.132292,-0.165365 -0.132292,-0.382406 0,-0.338997 0.196371,-0.677994 0.198437,-0.338997 0.537434,-0.543635 0.341064,-0.204639 0.684195,-0.204639 0.173633,0 0.262516,0.08268 0.08888,0.08268 0.08888,0.208773 0,0.150895 -0.08682,0.293522 -0.119889,0.194303 -0.30179,0.314192 -0.181901,0.117822 -0.40721,0.179834 -0.150895,0.04134 -0.405142,0.06201 z m 0.0186,-0.107487 q 0.181901,-0.02687 0.28112,-0.07235 0.101285,-0.04754 0.19637,-0.148828 0.09715,-0.103353 0.167431,-0.258382 0.07028,-0.157096 0.07028,-0.293522 0,-0.05788 -0.03307,-0.09095 -0.03101,-0.03307 -0.08062,-0.03307 -0.09922,0 -0.223242,0.138492 -0.227376,0.252181 -0.378271,0.75861 z" />
      <path
         id="path5532"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -65.241541,-93.164804 -0.192236,0.665076 q 0.193787,-0.291455 0.289905,-0.398426 0.141076,-0.155029 0.243396,-0.210839 0.102319,-0.05581 0.192236,-0.05581 0.08062,0 0.137976,0.06046 0.05736,0.05891 0.05736,0.15503 0,0.08682 -0.03721,0.21084 l -0.198437,0.661975 q -0.02481,0.08682 -0.02481,0.113171 0,0.0155 0.01085,0.02791 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.04496 0.110071,-0.127124 0.01395,-0.0217 0.04496,-0.06511 l 0.05891,0.03566 q -0.227893,0.382922 -0.47904,0.382922 -0.09612,0 -0.150379,-0.04961 -0.05426,-0.04961 -0.05426,-0.124024 0,-0.06511 0.03721,-0.193786 l 0.193787,-0.661975 q 0.02015,-0.06511 0.02015,-0.09612 0,-0.01705 -0.01395,-0.02945 -0.01395,-0.01395 -0.03256,-0.01395 -0.05891,0 -0.142627,0.08061 -0.213941,0.204639 -0.413929,0.609266 l -0.127124,0.460437 h -0.395324 l 0.289905,-0.995289 q 0.04186,-0.147277 0.04186,-0.209289 0,-0.02635 -0.0124,-0.04341 -0.0124,-0.0186 -0.04031,-0.02791 -0.02791,-0.01085 -0.105419,-0.01085 l 0.01705,-0.05891 0.522448,-0.09147 z" />
      <path
         id="path5534"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -64.201294,-92.584994 h 0.90227 l -0.09612,0.32246 h -0.906921 z" />
      <path
         id="path5536"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -61.8495,-93.873288 -0.513147,1.764233 q -0.04031,0.137977 -0.04031,0.175184 0,0.03721 0.02791,0.07751 0.02945,0.03876 0.06201,0.05116 0.03411,0.01085 0.201538,0.02015 l -0.01705,0.05736 h -1.05885 l 0.01705,-0.05736 q 0.15813,-0.0031 0.220142,-0.02635 0.06201,-0.02326 0.100769,-0.07596 0.04031,-0.05271 0.08992,-0.221692 l 0.303857,-1.047998 q 0.06976,-0.238745 0.07286,-0.252697 0.0093,-0.04031 0.0093,-0.07596 0,-0.06976 -0.04341,-0.11007 -0.04186,-0.04186 -0.120923,-0.04186 -0.03876,0 -0.153479,0.0124 l -0.0124,-0.05736 0.789099,-0.190686 z" />
      <path
         id="path5538"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -61.169956,-95.513701 v 3.852991 h -0.171565 v -3.852991 z" />
      <path
         id="path5540"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -70.886153,-88.614342 -2.224151,0.963248 v -0.177767 l 1.91616,-0.830957 -1.91616,-0.839224 v -0.188102 l 2.224151,0.971516 z" />
      <path
         id="path5542"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -69.242844,-89.792564 0.682129,-0.332796 h 0.06821 v 2.366779 q 0,0.235644 0.0186,0.293522 0.02067,0.05788 0.08268,0.08888 0.06201,0.03101 0.252181,0.03514 v 0.07648 h -1.054198 v -0.07648 q 0.198437,-0.0041 0.256315,-0.03307 0.05788,-0.03101 0.08062,-0.08061 0.02274,-0.05168 0.02274,-0.303857 v -1.513085 q 0,-0.305924 -0.02067,-0.392741 -0.01447,-0.06615 -0.05374,-0.09715 -0.03721,-0.03101 -0.09095,-0.03101 -0.07648,0 -0.212907,0.06408 z" />
      <path
         id="path5544"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -67.46931,-88.649482 q 0,-0.479557 0.144694,-0.824755 0.144694,-0.347266 0.384472,-0.516764 0.186035,-0.134359 0.384472,-0.134359 0.322461,0 0.578776,0.328662 0.320394,0.40721 0.320394,1.103808 0,0.487825 -0.14056,0.828889 -0.14056,0.341064 -0.359668,0.496093 -0.217041,0.152962 -0.419612,0.152962 -0.401009,0 -0.667659,-0.473355 -0.225309,-0.398942 -0.225309,-0.961181 z m 0.405143,0.05168 q 0,0.578776 0.142627,0.944644 0.117822,0.307992 0.351399,0.307992 0.111621,0 0.23151,-0.09922 0.119889,-0.101286 0.181901,-0.33693 0.09508,-0.355534 0.09508,-1.002522 0,-0.479557 -0.09922,-0.79995 -0.07441,-0.237712 -0.192236,-0.33693 -0.08475,-0.06821 -0.204639,-0.06821 -0.140559,0 -0.250113,0.12609 -0.148828,0.171566 -0.202572,0.539502 -0.05374,0.367935 -0.05374,0.725536 z" />
      <path
         id="path5546"
         style="font-size:4.23333px;line-height:1.25;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -64.567164,-87.926013 h -0.08475 q 0.01447,-0.260449 0.06408,-0.429947 0.05168,-0.171566 0.21084,-0.475423 0.124023,-0.233577 0.16123,-0.357601 0.03721,-0.12609 0.03721,-0.254248 0,-0.262516 -0.140559,-0.417545 -0.138493,-0.155029 -0.341065,-0.155029 -0.179833,0 -0.283186,0.08475 -0.103353,0.08475 -0.103353,0.183968 0,0.07648 0.06201,0.188102 0.06201,0.111621 0.06201,0.169499 0,0.07441 -0.04754,0.12609 -0.04754,0.04961 -0.115755,0.04961 -0.08682,0 -0.159163,-0.08475 -0.07028,-0.08682 -0.07028,-0.239778 0,-0.233577 0.200504,-0.413411 0.200505,-0.179834 0.543636,-0.179834 0.425813,0 0.626318,0.248047 0.148828,0.1819 0.148828,0.403075 0,0.150895 -0.06821,0.310059 -0.06615,0.159163 -0.254248,0.374137 -0.299723,0.338997 -0.367936,0.481624 -0.06615,0.140559 -0.08062,0.388606 z m -0.02894,0.256315 q 0.09715,0 0.163297,0.06821 0.06821,0.06615 0.06821,0.163297 0,0.09508 -0.06821,0.163298 -0.06821,0.06615 -0.163297,0.06615 -0.09508,0 -0.163297,-0.06615 -0.06615,-0.06821 -0.06615,-0.163298 0,-0.09715 0.06615,-0.163297 0.06821,-0.06821 0.163297,-0.06821 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       inkscape:connector-curvature="0"
       id="rect13740-3-3-6-0-3-5"
       d="m -115.53336,-75.427401 12.34357,5.77992 -12.34357,5.779889 -12.34356,-5.779889 z"
       style="opacity:1;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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.74789px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-4-3-3-3-2-4"
       aria-label="h &lt; hmax?">
      <path
         id="path5549"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -122.46832,-71.25876 -0.53743,1.862417 q 0.27905,-0.411344 0.40514,-0.556038 0.1881,-0.208773 0.32246,-0.28112 0.13643,-0.07441 0.26045,-0.07441 0.10542,0 0.17983,0.08062 0.0765,0.07855 0.0765,0.210839 0,0.111621 -0.0496,0.279053 l -0.26251,0.880565 q -0.0351,0.115755 -0.0351,0.15503 0,0.0186 0.0145,0.03514 0.0145,0.01447 0.0331,0.01447 0.0248,0 0.0496,-0.02067 0.0661,-0.05168 0.14056,-0.165364 0.0186,-0.02894 0.0599,-0.08682 l 0.0806,0.04547 q -0.17777,0.293522 -0.33693,0.403076 -0.15916,0.109554 -0.30179,0.109554 -0.12816,0 -0.2005,-0.06615 -0.0724,-0.06615 -0.0724,-0.165365 0,-0.09095 0.0496,-0.258382 l 0.25631,-0.880565 q 0.0248,-0.09095 0.0248,-0.132292 0,-0.02274 -0.0186,-0.03927 -0.0165,-0.0186 -0.0393,-0.0186 -0.0744,0 -0.20464,0.124023 -0.26872,0.254248 -0.53743,0.797883 l -0.18397,0.613916 h -0.51263 l 0.67799,-2.335773 q 0.0413,-0.148828 0.0413,-0.212907 0,-0.05168 -0.0413,-0.08062 -0.0537,-0.03927 -0.16536,-0.03307 l 0.0145,-0.08268 0.68833,-0.121956 z" />
      <path
         id="path5551"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -120.36819,-69.851095 2.22415,-0.963248 v 0.179834 l -1.91409,0.830956 1.91409,0.839224 v 0.186035 l -2.22415,-0.971516 z" />
      <path
         id="path5553"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -115.60569,-71.25876 -0.53744,1.862417 q 0.27905,-0.411344 0.40514,-0.556038 0.18811,-0.208773 0.32246,-0.28112 0.13643,-0.07441 0.26045,-0.07441 0.10542,0 0.17984,0.08062 0.0765,0.07855 0.0765,0.210839 0,0.111621 -0.0496,0.279053 l -0.26252,0.880565 q -0.0351,0.115755 -0.0351,0.15503 0,0.0186 0.0145,0.03514 0.0145,0.01447 0.0331,0.01447 0.0248,0 0.0496,-0.02067 0.0662,-0.05168 0.14056,-0.165364 0.0186,-0.02894 0.06,-0.08682 l 0.0806,0.04547 q -0.17776,0.293522 -0.33693,0.403076 -0.15916,0.109554 -0.30179,0.109554 -0.12815,0 -0.2005,-0.06615 -0.0724,-0.06615 -0.0724,-0.165365 0,-0.09095 0.0496,-0.258382 l 0.25632,-0.880565 q 0.0248,-0.09095 0.0248,-0.132292 0,-0.02274 -0.0186,-0.03927 -0.0165,-0.0186 -0.0393,-0.0186 -0.0744,0 -0.20463,0.124023 -0.26872,0.254248 -0.53744,0.797883 l -0.18397,0.613916 h -0.51263 l 0.678,-2.335773 q 0.0413,-0.148828 0.0413,-0.212907 0,-0.05168 -0.0413,-0.08062 -0.0537,-0.03927 -0.16537,-0.03307 l 0.0145,-0.08268 0.68833,-0.121956 z" />
      <path
         id="path5555"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -113.79702,-68.98221 -0.19844,0.666626 q 0.19999,-0.306958 0.29146,-0.413928 0.13487,-0.15658 0.22169,-0.204639 0.0884,-0.04806 0.17673,-0.04806 0.10077,0 0.14573,0.06046 0.045,0.06046 0.045,0.133325 0,0.07596 -0.0419,0.223242 l -0.0698,0.249597 q 0.20154,-0.310058 0.2899,-0.412378 0.13643,-0.15813 0.2372,-0.21394 0.0698,-0.04031 0.14883,-0.04031 0.0822,0 0.13642,0.05581 0.0558,0.05426 0.0558,0.142627 0,0.09922 -0.0465,0.257348 l -0.17208,0.57826 q -0.0388,0.128674 -0.0388,0.165881 0,0.0124 0.009,0.02325 0.0109,0.01085 0.0233,0.01085 0.017,0 0.0294,-0.01085 0.0558,-0.04496 0.11783,-0.131774 0.014,-0.0186 0.0419,-0.05736 l 0.0527,0.03411 q -0.10697,0.199988 -0.23564,0.293005 -0.12712,0.09302 -0.23564,0.09302 -0.0946,0 -0.15193,-0.05116 -0.0574,-0.05271 -0.0574,-0.122473 0,-0.06666 0.0388,-0.201538 l 0.17519,-0.604614 q 0.0357,-0.125574 0.0357,-0.15658 0,-0.01085 -0.0109,-0.02015 -0.0109,-0.01085 -0.0217,-0.01085 -0.0202,0 -0.0403,0.0093 -0.0295,0.0155 -0.0915,0.08061 -0.0605,0.06511 -0.17518,0.234095 -0.11472,0.167431 -0.15968,0.261999 -0.0434,0.09457 -0.0868,0.244946 l -0.0946,0.319361 h -0.39222 l 0.28991,-1.012341 q 0.0233,-0.08217 0.0233,-0.113172 0,-0.01085 -0.0109,-0.02015 -0.009,-0.0093 -0.0202,-0.0093 -0.0574,0 -0.18138,0.150378 -0.18914,0.232544 -0.34417,0.559656 l -0.12557,0.444934 h -0.39532 l 0.29145,-0.996839 q 0.0434,-0.147277 0.0434,-0.209289 0,-0.02481 -0.0124,-0.04186 -0.0124,-0.0186 -0.0403,-0.0279 -0.0279,-0.01085 -0.10697,-0.01085 l 0.0155,-0.05891 0.52865,-0.09147 z" />
      <path
         id="path5557"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -110.65148,-68.960506 -0.30075,1.030945 -0.031,0.125574 q -0.005,0.02325 -0.005,0.03411 0,0.0186 0.0124,0.03256 0.014,0.01395 0.0279,0.01395 0.0326,0 0.0899,-0.04961 0.0232,-0.02015 0.11162,-0.142627 l 0.0543,0.02791 q -0.11007,0.201538 -0.23565,0.294556 -0.12402,0.09147 -0.2682,0.09147 -0.0884,0 -0.13487,-0.04496 -0.0465,-0.04651 -0.0465,-0.116272 0,-0.06046 0.0496,-0.224793 l 0.0372,-0.125574 q -0.17983,0.308509 -0.34571,0.437183 -0.0961,0.07441 -0.20464,0.07441 -0.14263,0 -0.20619,-0.116272 -0.0636,-0.117822 -0.0636,-0.2651 0,-0.218591 0.13332,-0.500745 0.13333,-0.283703 0.35037,-0.455786 0.17828,-0.142627 0.33486,-0.142627 0.0868,0 0.13953,0.05116 0.0527,0.04961 0.0775,0.182935 l 0.0558,-0.190687 z m -0.49609,0.294556 q 0,-0.125574 -0.0388,-0.181384 -0.0279,-0.03876 -0.076,-0.03876 -0.0481,0 -0.0992,0.04651 -0.10387,0.09612 -0.22479,0.390674 -0.11938,0.293005 -0.11938,0.506946 0,0.08217 0.0264,0.119372 0.0279,0.03566 0.0605,0.03566 0.0698,0 0.14108,-0.08061 0.10232,-0.114722 0.18448,-0.280603 0.14573,-0.291455 0.14573,-0.517798 z" />
      <path
         id="path5559"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -110.44064,-68.889192 0.54106,-0.09302 q 0.14727,0.230994 0.20774,0.508496 0.15192,-0.224792 0.22944,-0.314709 0.10387,-0.120923 0.17053,-0.15658 0.0682,-0.03721 0.14418,-0.03721 0.0853,0 0.13022,0.04651 0.0465,0.04651 0.0465,0.125574 0,0.07441 -0.0465,0.122473 -0.045,0.04651 -0.11317,0.04651 -0.0496,0 -0.11472,-0.01705 -0.0636,-0.0186 -0.0884,-0.0186 -0.0651,0 -0.12402,0.04651 -0.0806,0.06356 -0.19844,0.271301 0.13178,0.465088 0.21084,0.567407 0.0465,0.06046 0.0946,0.06046 0.0403,0 0.0698,-0.02015 0.045,-0.03256 0.13798,-0.162781 l 0.0558,0.03256 q -0.13643,0.220142 -0.26665,0.310059 -0.0992,0.06976 -0.19534,0.06976 -0.0992,0 -0.16588,-0.04341 -0.0651,-0.04496 -0.11627,-0.144177 -0.0512,-0.100769 -0.12092,-0.320911 -0.18139,0.230994 -0.28526,0.337964 -0.10232,0.10542 -0.17053,0.137976 -0.0682,0.03256 -0.14573,0.03256 -0.0806,0 -0.12712,-0.04651 -0.0481,-0.04651 -0.0481,-0.120923 0,-0.07906 0.0512,-0.130224 0.0512,-0.05116 0.13022,-0.05116 0.0419,0 0.0946,0.02481 0.0775,0.03721 0.11162,0.03721 0.045,0 0.0806,-0.0186 0.0465,-0.02325 0.11782,-0.100769 0.0434,-0.04806 0.15968,-0.204638 -0.14883,-0.551905 -0.23254,-0.660425 -0.0527,-0.06976 -0.13333,-0.06976 -0.0419,0 -0.10232,0.0124 z" />
      <path
         id="path5561"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -108.05887,-69.053212 h -0.0847 q 0.0145,-0.260449 0.0641,-0.429947 0.0517,-0.171566 0.21084,-0.475423 0.12402,-0.233578 0.16123,-0.357601 0.0372,-0.12609 0.0372,-0.254248 0,-0.262516 -0.14056,-0.417545 -0.1385,-0.155029 -0.34107,-0.155029 -0.17983,0 -0.28318,0.08475 -0.10336,0.08475 -0.10336,0.183968 0,0.07648 0.062,0.188102 0.062,0.111621 0.062,0.169499 0,0.07441 -0.0476,0.12609 -0.0475,0.04961 -0.11575,0.04961 -0.0868,0 -0.15916,-0.08475 -0.0703,-0.08682 -0.0703,-0.239778 0,-0.233578 0.2005,-0.413411 0.2005,-0.179834 0.54364,-0.179834 0.42581,0 0.62631,0.248046 0.14883,0.181901 0.14883,0.403076 0,0.150895 -0.0682,0.310059 -0.0661,0.159163 -0.25425,0.374137 -0.29972,0.338997 -0.36793,0.481624 -0.0661,0.140559 -0.0806,0.388606 z m -0.0289,0.256315 q 0.0971,0 0.1633,0.06821 0.0682,0.06615 0.0682,0.163297 0,0.09508 -0.0682,0.163298 -0.0682,0.06615 -0.1633,0.06615 -0.0951,0 -0.1633,-0.06615 -0.0661,-0.06821 -0.0661,-0.163298 0,-0.09715 0.0661,-0.163297 0.0682,-0.06821 0.1633,-0.06821 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       inkscape:connector-curvature="0"
       id="rect13740-3-3-6-0-3-5-0"
       d="m -68.414989,-75.427401 12.34357,5.77992 -12.34357,5.779889 -12.34357,-5.779889 z"
       style="opacity:1;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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.74789px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-4-3-3-3-2-4-2"
       aria-label="h &gt; hmin?">
      <path
         id="path5564"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -75.086422,-71.25876 -0.537434,1.862417 q 0.279052,-0.411344 0.405143,-0.556038 0.188102,-0.208773 0.32246,-0.28112 0.136426,-0.07441 0.260449,-0.07441 0.10542,0 0.179834,0.08062 0.07648,0.07855 0.07648,0.210839 0,0.111621 -0.04961,0.279053 l -0.262516,0.880565 q -0.03514,0.115755 -0.03514,0.15503 0,0.0186 0.01447,0.03514 0.01447,0.01447 0.03307,0.01447 0.02481,0 0.04961,-0.02067 0.06615,-0.05168 0.140559,-0.165364 0.0186,-0.02894 0.05994,-0.08682 l 0.08061,0.04547 q -0.177767,0.293522 -0.33693,0.403076 -0.159163,0.109554 -0.30179,0.109554 -0.128158,0 -0.200504,-0.06615 -0.07235,-0.06615 -0.07235,-0.165365 0,-0.09095 0.04961,-0.258382 l 0.256315,-0.880565 q 0.0248,-0.09095 0.0248,-0.132292 0,-0.02274 -0.0186,-0.03927 -0.01654,-0.0186 -0.03927,-0.0186 -0.07441,0 -0.204639,0.124023 -0.268717,0.254248 -0.537434,0.797883 l -0.183968,0.613916 h -0.51263 l 0.677994,-2.335773 q 0.04134,-0.148828 0.04134,-0.212907 0,-0.05168 -0.04134,-0.08062 -0.05374,-0.03927 -0.165364,-0.03307 l 0.01447,-0.08268 0.68833,-0.121956 z" />
      <path
         id="path5566"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -70.762141,-69.741541 -2.224152,0.963247 v -0.177766 l 1.91616,-0.830957 -1.91616,-0.839224 v -0.188102 l 2.224152,0.971516 z" />
      <path
         id="path5568"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080;stroke-width:0.264583"
         d="m -68.223798,-71.25876 -0.537434,1.862417 q 0.279052,-0.411344 0.405143,-0.556038 0.188102,-0.208773 0.322461,-0.28112 0.136425,-0.07441 0.260449,-0.07441 0.105419,0 0.179833,0.08062 0.07648,0.07855 0.07648,0.210839 0,0.111621 -0.04961,0.279053 l -0.262516,0.880565 q -0.03514,0.115755 -0.03514,0.15503 0,0.0186 0.01447,0.03514 0.01447,0.01447 0.03307,0.01447 0.02481,0 0.04961,-0.02067 0.06614,-0.05168 0.140559,-0.165364 0.0186,-0.02894 0.05994,-0.08682 l 0.08061,0.04547 q -0.177767,0.293522 -0.33693,0.403076 -0.159163,0.109554 -0.30179,0.109554 -0.128157,0 -0.200504,-0.06615 -0.07235,-0.06615 -0.07235,-0.165365 0,-0.09095 0.04961,-0.258382 l 0.256315,-0.880565 q 0.02481,-0.09095 0.02481,-0.132292 0,-0.02274 -0.0186,-0.03927 -0.01654,-0.0186 -0.03927,-0.0186 -0.07441,0 -0.204638,0.124023 -0.268718,0.254248 -0.537435,0.797883 l -0.183968,0.613916 h -0.51263 l 0.677995,-2.335773 q 0.04134,-0.148828 0.04134,-0.212907 0,-0.05168 -0.04134,-0.08062 -0.05374,-0.03927 -0.165365,-0.03307 l 0.01447,-0.08268 0.688329,-0.121956 z" />
      <path
         id="path5570"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -66.415123,-68.98221 -0.198438,0.666626 q 0.199988,-0.306958 0.291455,-0.413928 0.134876,-0.15658 0.221692,-0.204639 0.08837,-0.04806 0.176734,-0.04806 0.100769,0 0.145727,0.06046 0.04496,0.06046 0.04496,0.133325 0,0.07596 -0.04186,0.223242 l -0.06976,0.249597 q 0.201538,-0.310058 0.289904,-0.412378 0.136426,-0.15813 0.237195,-0.21394 0.06976,-0.04031 0.148828,-0.04031 0.08217,0 0.136426,0.05581 0.05581,0.05426 0.05581,0.142627 0,0.09922 -0.04651,0.257348 l -0.172083,0.57826 q -0.03876,0.128674 -0.03876,0.165881 0,0.0124 0.0093,0.02325 0.01085,0.01085 0.02325,0.01085 0.01705,0 0.02946,-0.01085 0.05581,-0.04496 0.117822,-0.131774 0.01395,-0.0186 0.04186,-0.05736 l 0.05271,0.03411 q -0.10697,0.199988 -0.235645,0.293005 -0.127124,0.09302 -0.235644,0.09302 -0.09457,0 -0.151929,-0.05116 -0.05736,-0.05271 -0.05736,-0.122473 0,-0.06666 0.03876,-0.201538 l 0.175183,-0.604614 q 0.03566,-0.125574 0.03566,-0.15658 0,-0.01085 -0.01085,-0.02015 -0.01085,-0.01085 -0.0217,-0.01085 -0.02015,0 -0.04031,0.0093 -0.02946,0.0155 -0.09147,0.08061 -0.06046,0.06511 -0.175183,0.234095 -0.114721,0.167431 -0.15968,0.261999 -0.04341,0.09457 -0.08682,0.244946 l -0.09457,0.319361 h -0.392224 l 0.289905,-1.012341 q 0.02325,-0.08217 0.02325,-0.113172 0,-0.01085 -0.01085,-0.02015 -0.0093,-0.0093 -0.02015,-0.0093 -0.05736,0 -0.181384,0.150378 -0.189136,0.232544 -0.344165,0.559656 l -0.125574,0.444934 h -0.395325 l 0.291455,-0.996839 q 0.04341,-0.147277 0.04341,-0.209289 0,-0.02481 -0.0124,-0.04186 -0.0124,-0.0186 -0.04031,-0.0279 -0.02791,-0.01085 -0.106971,-0.01085 l 0.0155,-0.05891 0.52865,-0.09147 z" />
      <path
         id="path5572"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -64.077282,-69.695344 q 0.09612,0 0.161231,0.06666 0.06666,0.06666 0.06666,0.161231 0,0.09457 -0.06666,0.16123 -0.06666,0.06666 -0.161231,0.06666 -0.09302,0 -0.15968,-0.06666 -0.06666,-0.06666 -0.06666,-0.16123 0,-0.09457 0.06511,-0.161231 0.06666,-0.06666 0.16123,-0.06666 z m 0.09612,0.713134 -0.31781,1.102259 q -0.02635,0.09457 -0.02635,0.124023 0,0.01705 0.01395,0.03256 0.01395,0.01395 0.02946,0.01395 0.02635,0 0.05271,-0.02326 0.06976,-0.05736 0.167431,-0.207739 l 0.05271,0.03101 q -0.234094,0.407727 -0.497644,0.407727 -0.100769,0 -0.16123,-0.05581 -0.05891,-0.05736 -0.05891,-0.144177 0,-0.05736 0.02636,-0.145727 l 0.21549,-0.74104 q 0.03101,-0.106971 0.03101,-0.161231 0,-0.03411 -0.02945,-0.06046 -0.02946,-0.02636 -0.08062,-0.02636 -0.02325,0 -0.05581,0.0016 l 0.02015,-0.06201 0.525549,-0.08527 z" />
      <path
         id="path5574"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:3.175px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';baseline-shift:sub;fill:#808080;stroke-width:0.264583"
         d="m -63.061839,-68.98221 -0.192237,0.665076 q 0.193787,-0.291455 0.289905,-0.398425 0.141077,-0.15503 0.243396,-0.21084 0.102319,-0.05581 0.192236,-0.05581 0.08062,0 0.137976,0.06046 0.05736,0.05891 0.05736,0.155029 0,0.08682 -0.03721,0.21084 l -0.198437,0.661975 q -0.02481,0.08682 -0.02481,0.113171 0,0.0155 0.01085,0.02791 0.0124,0.0124 0.02481,0.0124 0.0155,0 0.03256,-0.0124 0.05426,-0.04496 0.110071,-0.127124 0.01395,-0.0217 0.04496,-0.06511 l 0.05891,0.03566 q -0.227893,0.382922 -0.47904,0.382922 -0.09612,0 -0.150379,-0.04961 -0.05426,-0.04961 -0.05426,-0.124023 0,-0.06511 0.03721,-0.193787 l 0.193787,-0.661975 q 0.02015,-0.06511 0.02015,-0.09612 0,-0.01705 -0.01395,-0.02946 -0.01395,-0.01395 -0.03256,-0.01395 -0.05891,0 -0.142627,0.08062 -0.213941,0.204638 -0.413928,0.609265 l -0.127124,0.460437 h -0.395325 l 0.289905,-0.995288 q 0.04186,-0.147278 0.04186,-0.20929 0,-0.02635 -0.0124,-0.04341 -0.0124,-0.0186 -0.04031,-0.0279 -0.02791,-0.01085 -0.10542,-0.01085 l 0.01705,-0.05891 0.522449,-0.09147 z" />
      <path
         id="path5576"
         style="font-size:4.23333px;line-height:1;text-align:center;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -61.204073,-69.053212 h -0.08475 q 0.01447,-0.260449 0.06408,-0.429947 0.05168,-0.171566 0.21084,-0.475423 0.124023,-0.233578 0.16123,-0.357601 0.03721,-0.12609 0.03721,-0.254248 0,-0.262516 -0.14056,-0.417545 -0.138493,-0.155029 -0.341064,-0.155029 -0.179834,0 -0.283187,0.08475 -0.103352,0.08475 -0.103352,0.183968 0,0.07648 0.06201,0.188102 0.06201,0.111621 0.06201,0.169499 0,0.07441 -0.04754,0.12609 -0.04754,0.04961 -0.115755,0.04961 -0.08682,0 -0.159164,-0.08475 -0.07028,-0.08682 -0.07028,-0.239778 0,-0.233578 0.200505,-0.413411 0.200504,-0.179834 0.543635,-0.179834 0.425814,0 0.626318,0.248046 0.148828,0.181901 0.148828,0.403076 0,0.150895 -0.06821,0.310059 -0.06614,0.159163 -0.254247,0.374137 -0.299724,0.338997 -0.367936,0.481624 -0.06615,0.140559 -0.08062,0.388606 z m -0.02894,0.256315 q 0.09715,0 0.163297,0.06821 0.06821,0.06615 0.06821,0.163297 0,0.09508 -0.06821,0.163298 -0.06821,0.06615 -0.163297,0.06615 -0.09509,0 -0.163298,-0.06615 -0.06614,-0.06821 -0.06614,-0.163298 0,-0.09715 0.06614,-0.163297 0.06821,-0.06821 0.163298,-0.06821 z" />
    </g>
    <path
       d="m -99.57402,-44.87886 h 14.853482 v 5.085359 H -99.57402 Z"
       style="opacity:1;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" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165-87"
       transform="matrix(1.0110396,0,0,1.0110396,-91.499432,-41.132389)"
       aria-label="it += 1">
      <path
         id="path5580"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -4.7294231,-2.8670061 q 0.1281574,0 0.2149738,0.088883 0.088883,0.088883 0.088883,0.2149738 0,0.1260904 -0.088883,0.2149738 -0.088883,0.088883 -0.2149738,0.088883 -0.1240233,0 -0.2129067,-0.088883 -0.088883,-0.088883 -0.088883,-0.2149738 0,-0.1260904 0.086816,-0.2149738 0.088883,-0.088883 0.2149738,-0.088883 z m 0.1281574,0.9508456 -0.4237463,1.4696765 q -0.03514,0.12609039 -0.03514,0.16536444 0,0.0227376 0.018604,0.0434082 0.018604,0.0186035 0.039274,0.0186035 0.03514,0 0.07028,-0.0310058 0.093017,-0.0764811 0.2232419,-0.27698545 l 0.07028,0.0413411 q -0.3121253,0.54363562 -0.6635248,0.54363562 -0.1343586,0 -0.2149738,-0.074414 -0.078548,-0.07648106 -0.078548,-0.19223617 0,-0.0764811 0.03514,-0.19430322 l 0.2873207,-0.98805257 q 0.041341,-0.1426268 0.041341,-0.2149738 0,-0.045475 -0.039274,-0.080615 -0.039274,-0.03514 -0.1074868,-0.03514 -0.031006,0 -0.074414,0.00207 l 0.026872,-0.082682 0.7007318,-0.1136881 z" />
      <path
         id="path5582"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -3.2928195,-2.4205221 -0.1653645,0.5622392 h 0.2707843 l -0.072347,0.2377113 h -0.2666502 l -0.3451983,1.19889227 q -0.033073,0.111621 -0.033073,0.16949855 0,0.0268717 0.018604,0.0475423 0.018603,0.0186035 0.041341,0.0186035 0.03514,0 0.072347,-0.0289388 0.095085,-0.0723469 0.2211749,-0.25218078 l 0.072347,0.0454752 q -0.1426269,0.24804666 -0.3141925,0.36380177 -0.1715656,0.11575512 -0.33693,0.11575512 -0.1405598,0 -0.2191079,-0.07027989 -0.076481,-0.07234695 -0.076481,-0.18190089 0,-0.11988922 0.053743,-0.30799128 l 0.3265948,-1.1182771 h -0.2811196 l 0.041341,-0.1529621 q 0.2645831,-0.097152 0.446484,-0.2273761 0.1819009,-0.1302245 0.4382158,-0.4196123 z" />
      <path
         id="path5584"
         style="font-size:4.23333px;fill:#808080"
         d="M -1.1678864,-0.29145483 V -1.3229156 h -1.0293937 v -0.1694985 h 1.0293937 v -1.0273266 h 0.1653644 v 1.0273266 h 1.03352777 v 0.1694985 H -1.002522 v 1.03146077 z" />
      <path
         id="path5586"
         style="font-size:4.23333px;fill:#808080"
         d="M 0.19223576,-1.8252101 H 2.4225887 v 0.1694986 H 0.19223576 Z m 0,0.6738602 H 2.4225887 v 0.16949851 H 0.19223576 Z" />
      <path
         id="path5588"
         style="font-size:4.23333px;fill:#808080"
         d="m 4.0596964,-2.5280089 0.6821283,-0.332796 h 0.068213 v 2.36677862 q 0,0.23564434 0.018604,0.29352189 0.020671,0.0578776 0.082682,0.0888834 0.062012,0.03100583 0.2521808,0.03513994 V 0 H 4.1093057 v -0.07648106 q 0.1984373,-0.0041341 0.2563149,-0.03307288 0.057878,-0.0310058 0.080615,-0.0806152 0.022738,-0.0516764 0.022738,-0.30385717 V -2.0071109 q 0,-0.3059243 -0.020671,-0.3927406 -0.014469,-0.066146 -0.053743,-0.097152 -0.037207,-0.031006 -0.09095,-0.031006 -0.076481,0 -0.2129067,0.064079 z" />
    </g>
    <path
       d="m -126.12339,-55.604965 h 21.18007 v 5.165846 h -21.18007 z"
       style="opacity:1;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-2" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165-87-1"
       transform="matrix(1.0110396,0,0,1.0110396,-115.53558,-51.877621)"
       aria-label="h =  h * 1,5">
      <path
         id="path5592"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -8.5100677,-2.8670061 -0.5374345,1.8624171 q 0.2790525,-0.4113441 0.4051429,-0.5560379 0.1881021,-0.2087727 0.3224607,-0.2811196 0.1364257,-0.074414 0.260449,-0.074414 0.1054198,0 0.1798338,0.080615 0.076481,0.078548 0.076481,0.2108396 0,0.111621 -0.049609,0.2790525 l -0.2625161,0.8805657 q -0.03514,0.11575511 -0.03514,0.15502917 0,0.0186035 0.014469,0.0351399 0.014469,0.0144694 0.033073,0.0144694 0.024805,0 0.049609,-0.0206706 0.066146,-0.0516764 0.1405597,-0.16536444 0.018604,-0.0289388 0.059945,-0.0868163 l 0.080615,0.0454752 q -0.1777668,0.29352189 -0.33693,0.40307583 -0.1591633,0.10955395 -0.3017901,0.10955395 -0.1281575,0 -0.2005044,-0.06614578 -0.072347,-0.06614578 -0.072347,-0.16536445 0,-0.0909504 0.049609,-0.25838194 l 0.2563148,-0.8805657 q 0.024805,-0.09095 0.024805,-0.1322915 0,-0.022738 -0.018603,-0.039274 -0.016536,-0.018603 -0.039274,-0.018603 -0.074414,0 -0.2046385,0.1240234 -0.2687173,0.2542478 -0.5374345,0.7978834 L -9.3368899,0 h -0.5126298 l 0.6779942,-2.3357728 q 0.041341,-0.148828 0.041341,-0.2129067 0,-0.051676 -0.041341,-0.080615 -0.053743,-0.039274 -0.1653644,-0.033073 l 0.014469,-0.082682 0.6883295,-0.1219563 z" />
      <path
         id="path5594"
         style="font-size:4.23333px;fill:#808080"
         d="m -6.4099392,-1.8252101 h 2.2303529 v 0.1694986 h -2.2303529 z m 0,0.6738602 h 2.2303529 v 0.16949851 h -2.2303529 z" />
      <path
         id="path5596"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -0.5891111,-2.8670061 -0.5374344,1.8624171 q 0.27905245,-0.4113441 0.40514284,-0.5560379 0.18810206,-0.2087727 0.32246067,-0.2811196 0.13642567,-0.074414 0.260449,-0.074414 0.10541983,0 0.17983383,0.080615 0.07648106,0.078548 0.07648106,0.2108396 0,0.111621 -0.04960933,0.2790525 l -0.26251606,0.8805657 q -0.0351399,0.11575511 -0.0351399,0.15502917 0,0.0186035 0.0144694,0.0351399 0.0144694,0.0144694 0.0330729,0.0144694 0.0248047,0 0.0496093,-0.0206706 0.06614577,-0.0516764 0.14055977,-0.16536444 0.0186035,-0.0289388 0.05994462,-0.0868163 l 0.08061516,0.0454752 q -0.17776678,0.29352189 -0.33693005,0.40307583 -0.15916328,0.10955395 -0.30179011,0.10955395 -0.12815745,0 -0.20050439,-0.06614578 -0.072347,-0.06614578 -0.072347,-0.16536445 0,-0.0909504 0.0496093,-0.25838194 l 0.25631488,-0.8805657 q 0.0248047,-0.09095 0.0248047,-0.1322915 0,-0.022738 -0.0186035,-0.039274 -0.0165364,-0.018603 -0.0392741,-0.018603 -0.074414,0 -0.2046385,0.1240234 -0.26871723,0.2542478 -0.53743447,0.7978834 L -1.4159333,0 h -0.5126298 l 0.6779942,-2.3357728 q 0.041341,-0.148828 0.041341,-0.2129067 0,-0.051676 -0.041341,-0.080615 -0.053743,-0.039274 -0.1653644,-0.033073 l 0.014469,-0.082682 0.68832947,-0.1219563 z" />
      <path
         id="path5598"
         style="font-size:4.23333px;fill:#808080"
         d="m 2.4556618,-2.158006 q -0.00827,-0.1426268 -0.057878,-0.2831866 -0.07028,-0.2025715 -0.07028,-0.2790525 0,-0.1074869 0.049609,-0.1632974 0.051676,-0.055811 0.1260904,-0.055811 0.064079,0 0.111621,0.055811 0.047542,0.05581 0.047542,0.1591633 0,0.093018 -0.05581,0.260449 -0.053744,0.1653644 -0.066146,0.3059242 0.113688,-0.072347 0.2046385,-0.1756997 0.1405598,-0.1632974 0.2087726,-0.2025715 0.068213,-0.039274 0.1384927,-0.039274 0.068213,0 0.1136881,0.047542 0.047542,0.045475 0.047542,0.1095539 0,0.076481 -0.068213,0.1364257 -0.068213,0.059945 -0.3410642,0.1198892 -0.1591632,0.03514 -0.2645831,0.080615 0.1074869,0.05581 0.2625161,0.084749 0.2501137,0.045475 0.3265948,0.1136881 0.078548,0.068213 0.078548,0.148828 0,0.062012 -0.047542,0.1074869 -0.045475,0.045475 -0.1074869,0.045475 -0.062012,0 -0.1384927,-0.043408 -0.074414,-0.043408 -0.2025715,-0.1943032 -0.084749,-0.1012857 -0.2108396,-0.1901691 0.00413,0.1178222 0.047542,0.2563149 0.074414,0.2439125 0.074414,0.3327959 0,0.082682 -0.049609,0.1405598 -0.049609,0.05581 -0.1054198,0.05581 -0.076481,0 -0.1384927,-0.059945 -0.043408,-0.043408 -0.043408,-0.1384927 0,-0.099219 0.047542,-0.2377114 0.047542,-0.1405598 0.059945,-0.1922362 0.012402,-0.053743 0.022738,-0.1570962 -0.1219563,0.080615 -0.2129067,0.1798338 -0.1508951,0.1694986 -0.2273761,0.2149738 -0.053743,0.033073 -0.111621,0.033073 -0.07028,0 -0.1198893,-0.047542 -0.049609,-0.047542 -0.049609,-0.1054198 0,-0.051676 0.041341,-0.1074869 0.043408,-0.057878 0.1281575,-0.095085 0.05581,-0.024805 0.2542478,-0.066146 0.1281574,-0.026872 0.2501137,-0.078548 -0.111621,-0.055811 -0.2666501,-0.086816 -0.2542479,-0.053743 -0.3141925,-0.097152 -0.093017,-0.068213 -0.093017,-0.1653644 0,-0.055811 0.045475,-0.1012858 0.047542,-0.047542 0.109554,-0.047542 0.068213,0 0.1446939,0.043408 0.076481,0.043408 0.1901691,0.1756998 0.113688,0.1302245 0.2315102,0.2025714 z" />
      <path
         id="path5600"
         style="font-size:4.23333px;fill:#808080"
         d="m 5.105627,-2.5280089 0.6821284,-0.332796 h 0.068213 v 2.36677862 q 0,0.23564434 0.018603,0.29352189 0.020671,0.0578776 0.082682,0.0888834 0.062012,0.03100583 0.2521808,0.03513994 V 0 H 5.1552364 v -0.07648106 q 0.1984373,-0.0041341 0.2563148,-0.03307288 0.057878,-0.0310058 0.080615,-0.0806152 0.022738,-0.0516764 0.022738,-0.30385717 V -2.0071109 q 0,-0.3059243 -0.02067,-0.3927406 -0.014469,-0.066146 -0.053744,-0.097152 -0.037207,-0.031006 -0.09095,-0.031006 -0.076481,0 -0.2129067,0.064079 z" />
      <path
         id="path5602"
         style="font-size:4.23333px;fill:#808080"
         d="M 6.9535756,0.70486594 V 0.6139155 Q 7.1664824,0.54363561 7.2822375,0.39480761 7.4000596,0.24804667 7.4000596,0.08268222 q 0,-0.03927405 -0.018603,-0.06614578 -0.014469,-0.0186035 -0.028939,-0.0186035 -0.022738,0 -0.099219,0.04134112 -0.037207,0.0186035 -0.078548,0.0186035 -0.1012857,0 -0.1612303,-0.05994462 -0.059945,-0.05994461 -0.059945,-0.16536444 0,-0.10128572 0.076481,-0.17363267 0.078548,-0.0723469 0.1901691,-0.0723469 0.1364257,0 0.2418455,0.11988922 0.1074869,0.11782217 0.1074869,0.31419245 0,0.21290672 -0.148828,0.39480761 -0.1467609,0.18396794 -0.4671546,0.28938777 z" />
      <path
         id="path5604"
         style="font-size:4.23333px;fill:#808080"
         d="M 9.6221444,-2.8029273 9.460914,-2.4515279 H 8.6175554 l -0.183968,0.3762041 q 0.5477697,0.080615 0.8681633,0.40721 0.2749184,0.2811195 0.2749184,0.6614577 0,0.22117499 -0.09095,0.40927705 -0.088883,0.18810205 -0.2253091,0.32039361 -0.1364256,0.13229155 -0.3038571,0.21290672 -0.2377114,0.11368805 -0.4878251,0.11368805 -0.2521808,0 -0.3679359,-0.08474927 -0.1136881,-0.08681634 -0.1136881,-0.19016912 0,-0.0578775 0.047542,-0.10128572 0.047542,-0.0454752 0.1198892,-0.0454752 0.053743,0 0.093018,0.0165364 0.041341,0.0165365 0.1384927,0.0847493 0.1550292,0.10748689 0.3141925,0.10748689 0.2418455,0 0.4237464,-0.18190089 0.1839679,-0.18396794 0.1839679,-0.446484 0,-0.25424782 -0.1632974,-0.47335572 -0.1632974,-0.2211749 -0.4506181,-0.3410642 -0.225309,-0.093017 -0.6139155,-0.1074869 l 0.5374345,-1.0893382 z" />
    </g>
    <path
       d="m -79.00502,-55.604965 h 21.180067 v 5.165846 H -79.00502 Z"
       style="opacity:1;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-2-4" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.747889px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="flowRoot34165-87-1-4"
       transform="matrix(1.0110396,0,0,1.0110396,-67.897043,-51.877621)"
       aria-label="h =  h / 1,5">
      <path
         id="path5608"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -8.038779,-2.8670061 -0.5374345,1.8624171 q 0.2790525,-0.4113441 0.4051429,-0.5560379 0.1881021,-0.2087727 0.3224607,-0.2811196 0.1364256,-0.074414 0.260449,-0.074414 0.1054198,0 0.1798338,0.080615 0.076481,0.078548 0.076481,0.2108396 0,0.111621 -0.049609,0.2790525 l -0.262516,0.8805657 q -0.03514,0.11575511 -0.03514,0.15502917 0,0.0186035 0.014469,0.0351399 0.014469,0.0144694 0.033073,0.0144694 0.024805,0 0.049609,-0.0206706 0.066146,-0.0516764 0.1405598,-0.16536444 0.018604,-0.0289388 0.059945,-0.0868163 l 0.080615,0.0454752 q -0.1777668,0.29352189 -0.3369301,0.40307583 -0.1591632,0.10955395 -0.3017901,0.10955395 -0.1281574,0 -0.2005044,-0.06614578 -0.072347,-0.06614578 -0.072347,-0.16536445 0,-0.0909504 0.049609,-0.25838194 l 0.2563149,-0.8805657 q 0.024805,-0.09095 0.024805,-0.1322915 0,-0.022738 -0.018604,-0.039274 -0.016536,-0.018603 -0.039274,-0.018603 -0.074414,0 -0.2046385,0.1240234 -0.2687172,0.2542478 -0.5374344,0.7978834 L -8.8656013,0 H -9.378231 l 0.6779942,-2.3357728 q 0.041341,-0.148828 0.041341,-0.2129067 0,-0.051676 -0.041341,-0.080615 -0.053743,-0.039274 -0.1653645,-0.033073 l 0.014469,-0.082682 0.6883295,-0.1219563 z" />
      <path
         id="path5610"
         style="font-size:4.23333px;fill:#808080"
         d="m -5.9386505,-1.8252101 h 2.2303529 v 0.1694986 h -2.2303529 z m 0,0.6738602 h 2.2303529 v 0.16949851 h -2.2303529 z" />
      <path
         id="path5612"
         style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold Italic';fill:#808080"
         d="m -0.11782243,-2.8670061 -0.53743445,1.8624171 q 0.2790525,-0.4113441 0.40514289,-0.5560379 0.18810206,-0.2087727 0.32246067,-0.2811196 0.13642566,-0.074414 0.260449,-0.074414 0.10541983,0 0.17983383,0.080615 0.076481,0.078548 0.076481,0.2108396 0,0.111621 -0.0496093,0.2790525 l -0.26251605,0.8805657 q -0.03514,0.11575511 -0.03514,0.15502917 0,0.0186035 0.0144694,0.0351399 0.0144694,0.0144694 0.0330729,0.0144694 0.0248047,0 0.0496093,-0.0206706 0.0661458,-0.0516764 0.14055978,-0.16536444 0.0186035,-0.0289388 0.0599446,-0.0868163 l 0.0806152,0.0454752 q -0.17776678,0.29352189 -0.33693006,0.40307583 -0.15916328,0.10955395 -0.30179011,0.10955395 -0.12815744,0 -0.20050439,-0.06614578 -0.0723469,-0.06614578 -0.0723469,-0.16536445 0,-0.0909504 0.0496093,-0.25838194 l 0.25631489,-0.8805657 q 0.02480467,-0.09095 0.02480467,-0.1322915 0,-0.022738 -0.0186035,-0.039274 -0.01653645,-0.018603 -0.03927406,-0.018603 -0.074414,0 -0.2046385,0.1240234 -0.26871722,0.2542478 -0.53743444,0.7978834 L -0.94464466,0 H -1.4572744 l 0.67799419,-2.3357728 q 0.0413411,-0.148828 0.0413411,-0.2129067 0,-0.051676 -0.0413411,-0.080615 -0.0537435,-0.039274 -0.16536445,-0.033073 l 0.0144694,-0.082682 0.6883295,-0.1219563 z" />
      <path
         id="path5614"
         style="font-size:4.23333px;fill:#808080"
         d="M 3.0923149,-2.939353 2.0773906,0.05787756 H 1.9120262 L 2.9269505,-2.939353 Z" />
      <path
         id="path5616"
         style="font-size:4.23333px;fill:#808080"
         d="m 4.6343383,-2.5280089 0.6821284,-0.332796 h 0.068213 v 2.36677862 q 0,0.23564434 0.018604,0.29352189 0.02067,0.0578776 0.082682,0.0888834 0.062012,0.03100583 0.2521808,0.03513994 V 0 H 4.6839477 v -0.07648106 q 0.1984373,-0.0041341 0.2563148,-0.03307288 0.057878,-0.0310058 0.080615,-0.0806152 0.022738,-0.0516764 0.022738,-0.30385717 V -2.0071109 q 0,-0.3059243 -0.02067,-0.3927406 -0.014469,-0.066146 -0.053744,-0.097152 -0.037207,-0.031006 -0.09095,-0.031006 -0.076481,0 -0.2129067,0.064079 z" />
      <path
         id="path5618"
         style="font-size:4.23333px;fill:#808080"
         d="M 6.482286,0.70486594 V 0.6139155 Q 6.6951927,0.54363561 6.8109478,0.39480761 6.92877,0.24804667 6.92877,0.08268222 q 0,-0.03927405 -0.018604,-0.06614578 -0.014469,-0.0186035 -0.028939,-0.0186035 -0.022738,0 -0.099219,0.04134112 -0.037207,0.0186035 -0.078548,0.0186035 -0.1012857,0 -0.1612303,-0.05994462 -0.059945,-0.05994461 -0.059945,-0.16536444 0,-0.10128572 0.076481,-0.17363267 0.078548,-0.0723469 0.1901692,-0.0723469 0.1364256,0 0.2418455,0.11988922 0.1074868,0.11782217 0.1074868,0.31419245 0,0.21290672 -0.148828,0.39480761 Q 6.8026796,0.59944611 6.482286,0.70486594 Z" />
      <path
         id="path5620"
         style="font-size:4.23333px;fill:#808080"
         d="M 9.1508557,-2.8029273 8.9896253,-2.4515279 H 8.1462667 l -0.183968,0.3762041 q 0.5477697,0.080615 0.8681634,0.40721 0.2749183,0.2811195 0.2749183,0.6614577 0,0.22117499 -0.09095,0.40927705 -0.088883,0.18810205 -0.2253091,0.32039361 -0.1364256,0.13229155 -0.3038571,0.21290672 -0.2377114,0.11368805 -0.4878251,0.11368805 -0.2521808,0 -0.3679359,-0.08474927 -0.1136881,-0.08681634 -0.1136881,-0.19016912 0,-0.0578775 0.047542,-0.10128572 0.047542,-0.0454752 0.1198892,-0.0454752 0.053743,0 0.093018,0.0165364 0.041341,0.0165365 0.1384927,0.0847493 0.1550292,0.10748689 0.3141925,0.10748689 0.2418455,0 0.4237464,-0.18190089 0.1839679,-0.18396794 0.1839679,-0.446484 0,-0.25424782 -0.1632974,-0.47335572 -0.1632974,-0.2211749 -0.4506181,-0.3410642 -0.225309,-0.093017 -0.6139155,-0.1074869 l 0.5374345,-1.0893382 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-1-5"
       d="m -97.791909,-91.890389 h 10.34709"
       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-98-4)" />
    <path
       d="m -96.172096,-93.96534 h 7.098922 v 3.567837 h -7.098922 z"
       style="opacity:1;fill:#c8c8c8;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-4" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-1-0-5-9-4"
       aria-label="Não">
      <path
         id="path5624"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -96.084276,-93.577914 h 0.760677 l 1.713589,2.102196 v -1.616438 q 0,-0.258381 -0.05788,-0.32246 -0.07648,-0.08682 -0.241845,-0.08682 h -0.09715 v -0.07648 h 0.97565 v 0.07648 h -0.09922 q -0.177767,0 -0.252181,0.107487 -0.04548,0.06615 -0.04548,0.30179 v 2.362645 h -0.07441 l -1.847948,-2.257225 v 1.725992 q 0,0.258382 0.05581,0.32246 0.07855,0.08682 0.241846,0.08682 h 0.09922 v 0.07648 h -0.975651 v -0.07648 h 0.09715 q 0.179834,0 0.254248,-0.107487 0.04548,-0.06615 0.04548,-0.30179 v -1.949234 q -0.121956,-0.142627 -0.186035,-0.188102 -0.06201,-0.04548 -0.183968,-0.08475 -0.05994,-0.0186 -0.181901,-0.0186 z" />
      <path
         id="path5626"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -91.76413,-91.047838 q -0.291454,0.225309 -0.365868,0.260449 -0.111621,0.05168 -0.237712,0.05168 -0.19637,0 -0.324528,-0.134359 -0.12609,-0.134358 -0.12609,-0.353466 0,-0.138493 0.06201,-0.239779 0.08475,-0.14056 0.293522,-0.264583 0.210839,-0.124023 0.698664,-0.30179 v -0.07441 q 0,-0.283187 -0.09095,-0.388606 -0.08888,-0.10542 -0.260449,-0.10542 -0.130225,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.177767 0.181901,-0.326595 0.181901,-0.148828 0.510563,-0.148828 0.25218,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.270784 0.01033,0.332796 0.01033,0.05994 0.03307,0.08061 0.0248,0.02067 0.05581,0.02067 0.03307,0 0.05788,-0.01447 0.04341,-0.02687 0.167431,-0.150895 v 0.115755 q -0.23151,0.310059 -0.44235,0.310059 -0.101285,0 -0.16123,-0.07028 -0.05994,-0.07028 -0.06201,-0.239779 z m 0,-0.134358 v -0.721403 q -0.312125,0.124024 -0.403075,0.1757 -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.157096,0 0.413411,-0.206705 z m -0.851627,-1.86035 h -0.06614 q 0.0083,-0.283187 0.117822,-0.409277 0.109554,-0.126091 0.270784,-0.126091 0.08475,0 0.155029,0.02687 0.09302,0.03514 0.262516,0.148828 0.171566,0.111621 0.254248,0.111621 0.06615,0 0.115755,-0.05581 0.05168,-0.05581 0.08061,-0.231511 h 0.06408 q 0.0021,0.192237 -0.05168,0.305925 -0.05168,0.111621 -0.148828,0.175699 -0.09508,0.06201 -0.192236,0.06201 -0.163298,0 -0.405143,-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" />
      <path
         id="path5628"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -90.034004,-92.72422 q 0.429947,0 0.690396,0.326595 0.221175,0.279053 0.221175,0.640787 0,0.254248 -0.121956,0.514697 -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.287321 -0.212907,-0.644921 0,-0.260449 0.128158,-0.516764 0.130224,-0.258382 0.341064,-0.380338 0.210839,-0.124024 0.446484,-0.124024 z m -0.06408,0.134359 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.299723 0.434082,0.299723 0.200504,0 0.330728,-0.165364 0.130225,-0.165365 0.130225,-0.56844 0,-0.504362 -0.217041,-0.79375 -0.146761,-0.198437 -0.374137,-0.198437 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-7"
       d="m -115.53336,-83.586072 v 6.977491"
       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-8)" />
    <path
       d="m -119.08282,-82.377968 h 7.09893 v 3.701473 h -7.09893 z"
       style="opacity:1;fill:#c8c8c8;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-1-2" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-2-5-2-2-0-8"
       aria-label="Sim">
      <path
         id="path5632"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -116.99821,-81.920999 v 0.969449 h -0.0765 q -0.0372,-0.279053 -0.13436,-0.444417 -0.0951,-0.165365 -0.27285,-0.262516 -0.17777,-0.09715 -0.36794,-0.09715 -0.21497,0 -0.35553,0.132292 -0.14056,0.130224 -0.14056,0.297656 0,0.128157 0.0889,0.233577 0.12816,0.155029 0.60978,0.413411 0.39274,0.21084 0.53537,0.324528 0.14469,0.111621 0.22117,0.264583 0.0786,0.152962 0.0786,0.320394 0,0.318326 -0.24804,0.549836 -0.24598,0.229443 -0.63459,0.229443 -0.12196,0 -0.22944,-0.0186 -0.0641,-0.01033 -0.26665,-0.07441 -0.20051,-0.06615 -0.25425,-0.06615 -0.0517,0 -0.0827,0.03101 -0.0289,0.03101 -0.0434,0.128157 h -0.0765 v -0.96118 h 0.0765 q 0.0537,0.30179 0.14469,0.452685 0.091,0.148828 0.27699,0.248046 0.1881,0.09922 0.41134,0.09922 0.25838,0 0.40721,-0.136426 0.1509,-0.136425 0.1509,-0.32246 0,-0.103353 -0.0579,-0.208773 -0.0558,-0.10542 -0.1757,-0.19637 -0.0806,-0.06201 -0.44028,-0.262516 -0.35967,-0.202572 -0.51263,-0.322461 -0.1509,-0.119889 -0.22945,-0.264583 -0.0785,-0.144694 -0.0785,-0.318326 0,-0.301791 0.23151,-0.518831 0.23152,-0.219108 0.58912,-0.219108 0.22324,0 0.47335,0.109554 0.11576,0.05168 0.1633,0.05168 0.0537,0 0.0868,-0.03101 0.0351,-0.03307 0.0558,-0.130224 z" />
      <path
         id="path5634"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -115.96882,-81.993346 q 0.0868,0 0.14676,0.06201 0.062,0.05994 0.062,0.146761 0,0.08682 -0.062,0.148828 -0.0599,0.06201 -0.14676,0.06201 -0.0868,0 -0.14883,-0.06201 -0.062,-0.06201 -0.062,-0.148828 0,-0.08682 0.06,-0.146761 0.062,-0.06201 0.15089,-0.06201 z m 0.17157,0.990119 v 1.521353 q 0,0.177767 0.0248,0.237712 0.0269,0.05788 0.0765,0.08682 0.0517,0.02894 0.18604,0.02894 v 0.07441 h -0.91984 v -0.07441 q 0.13849,0 0.18603,-0.02687 0.0475,-0.02687 0.0744,-0.08888 0.0289,-0.06201 0.0289,-0.237712 v -0.72967 q 0,-0.307992 -0.0186,-0.398942 -0.0145,-0.06615 -0.0455,-0.09095 -0.031,-0.02687 -0.0847,-0.02687 -0.0579,0 -0.14056,0.03101 l -0.0289,-0.07441 0.57051,-0.231511 z" />
      <path
         id="path5636"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -114.71412,-80.600151 q 0.20671,-0.206705 0.24392,-0.237711 0.093,-0.07855 0.2005,-0.121956 0.10749,-0.04341 0.21291,-0.04341 0.17776,0 0.30592,0.103353 0.12816,0.103353 0.17157,0.299723 0.2129,-0.248046 0.35966,-0.324528 0.14677,-0.07855 0.30179,-0.07855 0.1509,0 0.26665,0.07855 0.11783,0.07648 0.18604,0.252181 0.0455,0.119889 0.0455,0.376204 v 0.81442 q 0,0.177767 0.0269,0.243913 0.0207,0.04547 0.0765,0.07855 0.0558,0.03101 0.1819,0.03101 v 0.07441 h -0.93431 v -0.07441 h 0.0393 q 0.12196,0 0.19017,-0.04754 0.0475,-0.03307 0.0682,-0.105419 0.008,-0.03514 0.008,-0.200505 v -0.81442 q 0,-0.23151 -0.0558,-0.326594 -0.0806,-0.132292 -0.25838,-0.132292 -0.10955,0 -0.22117,0.05581 -0.10956,0.05374 -0.26665,0.202571 l -0.004,0.02274 0.004,0.08888 v 0.903303 q 0,0.194303 0.0207,0.241846 0.0227,0.04754 0.0827,0.08061 0.0599,0.03101 0.20464,0.03101 v 0.07441 h -0.95705 v -0.07441 q 0.1571,0 0.21497,-0.03721 0.06,-0.03721 0.0827,-0.111621 0.0103,-0.03514 0.0103,-0.204639 v -0.81442 q 0,-0.23151 -0.0682,-0.332796 -0.091,-0.132291 -0.25425,-0.132291 -0.11162,0 -0.22117,0.05994 -0.17157,0.09095 -0.26459,0.204639 v 1.014924 q 0,0.186035 0.0248,0.241846 0.0269,0.05581 0.0765,0.08475 0.0517,0.02687 0.2067,0.02687 v 0.07441 h -0.93637 v -0.07441 q 0.13022,0 0.1819,-0.02687 0.0517,-0.02894 0.0786,-0.08888 0.0269,-0.06201 0.0269,-0.237712 v -0.723469 q 0,-0.312126 -0.0186,-0.403076 -0.0145,-0.06821 -0.0455,-0.09302 -0.031,-0.02687 -0.0847,-0.02687 -0.0579,0 -0.13849,0.03101 l -0.031,-0.07441 0.57051,-0.231511 h 0.0889 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-9"
       d="M -115.53336,-63.867592 V -56.8901"
       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-2)" />
    <path
       d="m -119.08282,-62.659492 h 7.09893 v 3.701473 h -7.09893 z"
       style="opacity:1;fill:#c8c8c8;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-1-8" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-2-5-2-2-0-9"
       aria-label="Sim">
      <path
         id="path5640"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -116.99821,-62.202509 v 0.969449 h -0.0765 q -0.0372,-0.279052 -0.13436,-0.444417 -0.0951,-0.165364 -0.27285,-0.262516 -0.17777,-0.09715 -0.36794,-0.09715 -0.21497,0 -0.35553,0.132291 -0.14056,0.130225 -0.14056,0.297656 0,0.128158 0.0889,0.233578 0.12816,0.155029 0.60978,0.413411 0.39274,0.210839 0.53537,0.324527 0.14469,0.111621 0.22117,0.264584 0.0786,0.152962 0.0786,0.320393 0,0.318327 -0.24804,0.549837 -0.24598,0.229443 -0.63459,0.229443 -0.12196,0 -0.22944,-0.0186 -0.0641,-0.01034 -0.26665,-0.07441 -0.20051,-0.06615 -0.25425,-0.06615 -0.0517,0 -0.0827,0.03101 -0.0289,0.03101 -0.0434,0.128157 h -0.0765 v -0.961181 h 0.0765 q 0.0537,0.30179 0.14469,0.452685 0.091,0.148828 0.27699,0.248047 0.1881,0.09922 0.41134,0.09922 0.25838,0 0.40721,-0.136426 0.1509,-0.136426 0.1509,-0.322461 0,-0.103352 -0.0579,-0.208772 -0.0558,-0.10542 -0.1757,-0.19637 -0.0806,-0.06201 -0.44028,-0.262517 -0.35967,-0.202571 -0.51263,-0.32246 -0.1509,-0.119889 -0.22945,-0.264583 -0.0785,-0.144694 -0.0785,-0.318327 0,-0.30179 0.23151,-0.518831 0.23152,-0.219108 0.58912,-0.219108 0.22324,0 0.47335,0.109554 0.11576,0.05168 0.1633,0.05168 0.0537,0 0.0868,-0.03101 0.0351,-0.03307 0.0558,-0.130225 z" />
      <path
         id="path5642"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -115.96882,-62.274856 q 0.0868,0 0.14676,0.06201 0.062,0.05994 0.062,0.146761 0,0.08682 -0.062,0.148828 -0.0599,0.06201 -0.14676,0.06201 -0.0868,0 -0.14883,-0.06201 -0.062,-0.06201 -0.062,-0.148828 0,-0.08682 0.06,-0.146761 0.062,-0.06201 0.15089,-0.06201 z m 0.17157,0.99012 v 1.521353 q 0,0.177767 0.0248,0.237711 0.0269,0.05788 0.0765,0.08682 0.0517,0.02894 0.18604,0.02894 v 0.07441 h -0.91984 v -0.07441 q 0.13849,0 0.18603,-0.02687 0.0475,-0.02687 0.0744,-0.08888 0.0289,-0.06201 0.0289,-0.237711 v -0.729671 q 0,-0.307991 -0.0186,-0.398941 -0.0145,-0.06615 -0.0455,-0.09095 -0.031,-0.02687 -0.0847,-0.02687 -0.0579,0 -0.14056,0.03101 l -0.0289,-0.07441 0.57051,-0.23151 z" />
      <path
         id="path5644"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -114.71412,-60.88166 q 0.20671,-0.206706 0.24392,-0.237712 0.093,-0.07855 0.2005,-0.121956 0.10749,-0.04341 0.21291,-0.04341 0.17776,0 0.30592,0.103353 0.12816,0.103353 0.17157,0.299723 0.2129,-0.248047 0.35966,-0.324528 0.14677,-0.07855 0.30179,-0.07855 0.1509,0 0.26665,0.07855 0.11783,0.07648 0.18604,0.252181 0.0455,0.119889 0.0455,0.376204 v 0.81442 q 0,0.177767 0.0269,0.243912 0.0207,0.04548 0.0765,0.07855 0.0558,0.03101 0.1819,0.03101 v 0.07441 h -0.93431 v -0.07441 h 0.0393 q 0.12196,0 0.19017,-0.04754 0.0475,-0.03307 0.0682,-0.10542 0.008,-0.03514 0.008,-0.200504 v -0.81442 q 0,-0.23151 -0.0558,-0.326595 -0.0806,-0.132291 -0.25838,-0.132291 -0.10955,0 -0.22117,0.05581 -0.10956,0.05374 -0.26665,0.202572 l -0.004,0.02274 0.004,0.08888 v 0.903303 q 0,0.194303 0.0207,0.241845 0.0227,0.04754 0.0827,0.08062 0.0599,0.03101 0.20464,0.03101 v 0.07441 h -0.95705 v -0.07441 q 0.1571,0 0.21497,-0.03721 0.06,-0.03721 0.0827,-0.111621 0.0103,-0.03514 0.0103,-0.204638 v -0.81442 q 0,-0.23151 -0.0682,-0.332796 -0.091,-0.132292 -0.25425,-0.132292 -0.11162,0 -0.22117,0.05994 -0.17157,0.09095 -0.26459,0.204639 v 1.014924 q 0,0.186035 0.0248,0.241845 0.0269,0.05581 0.0765,0.08475 0.0517,0.02687 0.2067,0.02687 v 0.07441 h -0.93637 v -0.07441 q 0.13022,0 0.1819,-0.02687 0.0517,-0.02894 0.0786,-0.08888 0.0269,-0.06201 0.0269,-0.237711 v -0.72347 q 0,-0.312125 -0.0186,-0.403075 -0.0145,-0.06821 -0.0455,-0.09302 -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" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-7-6"
       d="m -68.414989,-83.602082 v 6.977491"
       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-8-2)" />
    <path
       d="m -71.964455,-82.393982 h 7.098923 v 3.701473 h -7.098923 z"
       style="opacity:1;fill:#c8c8c8;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-1-2-4" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-2-5-2-2-0-8-4"
       aria-label="Sim">
      <path
         id="path5648"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -69.879874,-81.936998 v 0.969449 h -0.07648 q -0.03721,-0.279053 -0.134358,-0.444417 -0.09509,-0.165364 -0.272852,-0.262516 -0.177767,-0.09715 -0.367936,-0.09715 -0.214973,0 -0.355533,0.132292 -0.14056,0.130224 -0.14056,0.297656 0,0.128157 0.08888,0.233577 0.128158,0.155029 0.609782,0.413411 0.39274,0.21084 0.535367,0.324528 0.144694,0.111621 0.221175,0.264583 0.07855,0.152962 0.07855,0.320394 0,0.318326 -0.248046,0.549836 -0.24598,0.229444 -0.634586,0.229444 -0.121957,0 -0.229444,-0.0186 -0.06408,-0.01033 -0.26665,-0.07441 -0.200504,-0.06615 -0.254248,-0.06615 -0.05168,0 -0.08268,0.03101 -0.02894,0.03101 -0.04341,0.128158 h -0.07648 v -0.961181 h 0.07648 q 0.05374,0.30179 0.144694,0.452685 0.09095,0.148828 0.276985,0.248047 0.188102,0.09922 0.411344,0.09922 0.258382,0 0.40721,-0.136425 0.150895,-0.136426 0.150895,-0.322461 0,-0.103353 -0.05788,-0.208773 -0.05581,-0.105419 -0.1757,-0.19637 -0.08062,-0.06201 -0.440283,-0.262516 -0.359667,-0.202571 -0.51263,-0.322461 -0.150895,-0.119889 -0.229443,-0.264583 -0.07855,-0.144694 -0.07855,-0.318326 0,-0.30179 0.23151,-0.518831 0.231511,-0.219108 0.589111,-0.219108 0.223242,0 0.473356,0.109554 0.115755,0.05168 0.163297,0.05168 0.05374,0 0.08682,-0.03101 0.03514,-0.03307 0.05581,-0.130224 z" />
      <path
         id="path5650"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -68.85048,-82.009345 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.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.04547,-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" />
      <path
         id="path5652"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -67.595777,-80.61615 q 0.206705,-0.206705 0.243912,-0.237711 0.09302,-0.07855 0.200505,-0.121956 0.107486,-0.04341 0.212906,-0.04341 0.177767,0 0.305925,0.103352 0.128157,0.103353 0.171565,0.299723 0.212907,-0.248046 0.359668,-0.324527 0.146761,-0.07855 0.30179,-0.07855 0.150895,0 0.26665,0.07855 0.117822,0.07648 0.186035,0.25218 0.04548,0.11989 0.04548,0.376205 v 0.814419 q 0,0.177767 0.02687,0.243913 0.02067,0.04548 0.07648,0.07855 0.05581,0.03101 0.181901,0.03101 v 0.07441 h -0.934309 v -0.07441 h 0.03927 q 0.121956,0 0.190169,-0.04754 0.04754,-0.03307 0.06821,-0.10542 0.0083,-0.03514 0.0083,-0.200505 v -0.814419 q 0,-0.231511 -0.05581,-0.326595 -0.08062,-0.132292 -0.258382,-0.132292 -0.109554,0 -0.221175,0.05581 -0.109554,0.05374 -0.26665,0.202571 l -0.0041,0.02274 0.0041,0.08888 v 0.903303 q 0,0.194304 0.02067,0.241846 0.02274,0.04754 0.08268,0.08062 0.05994,0.03101 0.204639,0.03101 v 0.07441 h -0.957047 v -0.07441 q 0.157096,0 0.214974,-0.03721 0.05994,-0.03721 0.08268,-0.111621 0.01033,-0.03514 0.01033,-0.204639 v -0.814419 q 0,-0.231511 -0.06821,-0.332796 -0.09095,-0.132292 -0.254248,-0.132292 -0.111621,0 -0.221175,0.05994 -0.171566,0.09095 -0.264583,0.204638 v 1.014924 q 0,0.186035 0.0248,0.241846 0.02687,0.05581 0.07648,0.08475 0.05168,0.02687 0.206706,0.02687 v 0.07441 h -0.936376 v -0.07441 q 0.130224,0 0.181901,-0.02687 0.05168,-0.02894 0.07855,-0.08888 0.02687,-0.06201 0.02687,-0.237712 v -0.723469 q 0,-0.312125 -0.0186,-0.403076 -0.01447,-0.06821 -0.04547,-0.09302 -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" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-7-3"
       d="m -68.414989,-63.85283 v 6.977488"
       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-8-3)" />
    <path
       d="m -71.964455,-62.644722 h 7.098923 v 3.701473 h -7.098923 z"
       style="opacity:1;fill:#c8c8c8;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-1-2-3" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-2-5-2-2-0-8-0"
       aria-label="Sim">
      <path
         id="path5656"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -69.879874,-62.187738 v 0.969449 h -0.07648 q -0.03721,-0.279053 -0.134358,-0.444417 -0.09509,-0.165365 -0.272852,-0.262516 -0.177767,-0.09715 -0.367936,-0.09715 -0.214973,0 -0.355533,0.132292 -0.14056,0.130224 -0.14056,0.297656 0,0.128157 0.08888,0.233577 0.128158,0.155029 0.609782,0.413411 0.39274,0.21084 0.535367,0.324528 0.144694,0.111621 0.221175,0.264583 0.07855,0.152962 0.07855,0.320394 0,0.318326 -0.248046,0.549836 -0.24598,0.229444 -0.634586,0.229444 -0.121957,0 -0.229444,-0.0186 -0.06408,-0.01033 -0.26665,-0.07441 -0.200504,-0.06615 -0.254248,-0.06615 -0.05168,0 -0.08268,0.03101 -0.02894,0.03101 -0.04341,0.128158 h -0.07648 v -0.961181 h 0.07648 q 0.05374,0.30179 0.144694,0.452685 0.09095,0.148828 0.276985,0.248047 0.188102,0.09922 0.411344,0.09922 0.258382,0 0.40721,-0.136425 0.150895,-0.136426 0.150895,-0.322461 0,-0.103353 -0.05788,-0.208773 -0.05581,-0.10542 -0.1757,-0.19637 -0.08062,-0.06201 -0.440283,-0.262516 -0.359667,-0.202571 -0.51263,-0.322461 -0.150895,-0.119889 -0.229443,-0.264583 -0.07855,-0.144694 -0.07855,-0.318326 0,-0.30179 0.23151,-0.518831 0.231511,-0.219108 0.589111,-0.219108 0.223242,0 0.473356,0.109554 0.115755,0.05168 0.163297,0.05168 0.05374,0 0.08682,-0.03101 0.03514,-0.03307 0.05581,-0.130224 z" />
      <path
         id="path5658"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -68.85048,-62.260085 q 0.08682,0 0.146761,0.06201 0.06201,0.05994 0.06201,0.14676 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.14676 0.06201,-0.06201 0.150895,-0.06201 z m 0.171566,0.990119 v 1.521353 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.307992 -0.0186,-0.398942 -0.01447,-0.06615 -0.04547,-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.231511 z" />
      <path
         id="path5660"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -67.595777,-60.86689 q 0.206705,-0.206705 0.243912,-0.237711 0.09302,-0.07855 0.200505,-0.121956 0.107486,-0.04341 0.212906,-0.04341 0.177767,0 0.305925,0.103353 0.128157,0.103353 0.171565,0.299723 0.212907,-0.248046 0.359668,-0.324527 0.146761,-0.07855 0.30179,-0.07855 0.150895,0 0.26665,0.07855 0.117822,0.07648 0.186035,0.25218 0.04548,0.11989 0.04548,0.376204 v 0.81442 q 0,0.177767 0.02687,0.243913 0.02067,0.04547 0.07648,0.07855 0.05581,0.03101 0.181901,0.03101 v 0.07441 h -0.934309 v -0.07441 h 0.03927 q 0.121956,0 0.190169,-0.04754 0.04754,-0.03307 0.06821,-0.10542 0.0083,-0.03514 0.0083,-0.200505 v -0.81442 q 0,-0.23151 -0.05581,-0.326594 -0.08062,-0.132292 -0.258382,-0.132292 -0.109554,0 -0.221175,0.05581 -0.109554,0.05374 -0.26665,0.202571 l -0.0041,0.02274 0.0041,0.08888 v 0.903303 q 0,0.194304 0.02067,0.241846 0.02274,0.04754 0.08268,0.08062 0.05994,0.03101 0.204639,0.03101 v 0.07441 h -0.957047 v -0.07441 q 0.157096,0 0.214974,-0.03721 0.05994,-0.03721 0.08268,-0.111621 0.01033,-0.03514 0.01033,-0.204639 v -0.81442 q 0,-0.23151 -0.06821,-0.332795 -0.09095,-0.132292 -0.254248,-0.132292 -0.111621,0 -0.221175,0.05994 -0.171566,0.09095 -0.264583,0.204638 v 1.014924 q 0,0.186035 0.0248,0.241846 0.02687,0.05581 0.07648,0.08475 0.05168,0.02687 0.206706,0.02687 v 0.07441 h -0.936376 v -0.07441 q 0.130224,0 0.181901,-0.02687 0.05168,-0.02894 0.07855,-0.08888 0.02687,-0.06201 0.02687,-0.237712 v -0.723469 q 0,-0.312125 -0.0186,-0.403076 -0.01447,-0.06821 -0.04547,-0.09302 -0.03101,-0.02687 -0.08475,-0.02687 -0.05788,0 -0.138493,0.03101 l -0.03101,-0.07441 0.570507,-0.231511 h 0.08888 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-1-5-6"
       d="m -103.18979,-69.647481 h 10.948241"
       style="fill:none;stroke:#808080;stroke-width:0.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
    <path
       d="m -101.56996,-71.722427 h 7.098921 v 3.567836 h -7.098921 z"
       style="opacity:1;fill:#c8c8c8;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-4-0" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-1-0-5-9-4-3"
       aria-label="Não">
      <path
         id="path5664"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -101.48216,-71.335009 h 0.76067 l 1.713592,2.102196 v -1.616438 q 0,-0.258382 -0.05788,-0.322461 -0.07648,-0.08682 -0.241846,-0.08682 h -0.09715 v -0.07648 h 0.97565 v 0.07648 h -0.09922 q -0.177766,0 -0.25218,0.107487 -0.04548,0.06615 -0.04548,0.30179 v 2.362645 h -0.07441 l -1.847948,-2.257225 v 1.725991 q 0,0.258382 0.0558,0.322461 0.0785,0.08682 0.24185,0.08682 h 0.0992 v 0.07648 h -0.97565 v -0.07648 h 0.0971 q 0.17983,0 0.25424,-0.107487 0.0455,-0.06615 0.0455,-0.30179 v -1.949233 q -0.12196,-0.142627 -0.18604,-0.188102 -0.062,-0.04547 -0.18396,-0.08475 -0.06,-0.0186 -0.1819,-0.0186 z" />
      <path
         id="path5666"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -97.162018,-68.804933 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.293521,-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.181901,-0.148828 0.510562,-0.148828 0.252181,0 0.413412,0.08475 0.121956,0.06408 0.179833,0.200505 0.03721,0.08888 0.03721,0.363801 v 0.642855 q 0,0.270784 0.01034,0.332796 0.01034,0.05994 0.03307,0.08062 0.0248,0.02067 0.05581,0.02067 0.03307,0 0.05788,-0.01447 0.04341,-0.02687 0.167431,-0.150895 v 0.115755 q -0.23151,0.310058 -0.44235,0.310058 -0.101286,0 -0.16123,-0.07028 -0.05995,-0.07028 -0.06201,-0.239779 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.204638,0.09715 0.157096,0 0.413411,-0.206706 z m -0.851627,-1.86035 h -0.06615 q 0.0083,-0.283186 0.117822,-0.409277 0.109554,-0.12609 0.270784,-0.12609 0.08475,0 0.155029,0.02687 0.09302,0.03514 0.262516,0.148828 0.171566,0.111621 0.254248,0.111621 0.06615,0 0.115755,-0.05581 0.05168,-0.05581 0.08062,-0.23151 h 0.06408 q 0.0021,0.192236 -0.05168,0.305924 -0.05168,0.111621 -0.148828,0.1757 -0.09508,0.06201 -0.192237,0.06201 -0.163297,0 -0.405142,-0.165365 -0.130225,-0.08888 -0.1757,-0.107487 -0.04548,-0.0186 -0.08888,-0.0186 -0.08475,0 -0.134358,0.07441 -0.02274,0.03514 -0.05788,0.208772 z" />
      <path
         id="path5668"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -95.431892,-70.481315 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.427881,0 -0.680061,-0.341064 -0.212907,-0.287321 -0.212907,-0.644922 0,-0.260449 0.128157,-0.516763 0.130225,-0.258382 0.341065,-0.380339 0.210839,-0.124023 0.446484,-0.124023 z m -0.06408,0.134359 q -0.109554,0 -0.221175,0.06615 -0.109554,0.06408 -0.177767,0.227377 -0.06821,0.163297 -0.06821,0.419612 0,0.413411 0.163298,0.713134 0.165364,0.299723 0.434081,0.299723 0.200505,0 0.330729,-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" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="ccc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-1-5-7"
       d="m -80.758559,-69.647481 h -11.48299 v 23.553121"
       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-98-4-73)" />
    <path
       d="m -89.440994,-71.722427 h 7.098922 v 3.567836 h -7.098922 z"
       style="opacity:1;fill:#c8c8c8;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-4-7" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-1-0-5-9-4-5"
       aria-label="Não">
      <path
         id="path5672"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -89.353197,-71.335009 h 0.760677 l 1.713589,2.102196 v -1.616438 q 0,-0.258382 -0.05788,-0.322461 -0.07648,-0.08682 -0.241845,-0.08682 h -0.09715 v -0.07648 h 0.97565 v 0.07648 h -0.09922 q -0.177767,0 -0.252181,0.107487 -0.04547,0.06615 -0.04547,0.30179 v 2.362645 h -0.07441 l -1.847948,-2.257225 v 1.725991 q 0,0.258382 0.05581,0.322461 0.07855,0.08682 0.241845,0.08682 h 0.09922 v 0.07648 h -0.975651 v -0.07648 h 0.09715 q 0.179834,0 0.254248,-0.107487 0.04547,-0.06615 0.04547,-0.30179 v -1.949233 q -0.121956,-0.142627 -0.186035,-0.188102 -0.06201,-0.04547 -0.183968,-0.08475 -0.05994,-0.0186 -0.181901,-0.0186 z" />
      <path
         id="path5674"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -85.033051,-68.804933 q -0.291454,0.225309 -0.365868,0.260449 -0.111621,0.05168 -0.237712,0.05168 -0.19637,0 -0.324527,-0.134358 -0.126091,-0.134359 -0.126091,-0.353467 0,-0.138492 0.06201,-0.239778 0.08475,-0.14056 0.293522,-0.264583 0.210839,-0.124024 0.698664,-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.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.12609,0.05168 -0.07648,0 -0.126091,-0.05374 -0.04754,-0.05374 -0.04754,-0.146761 0,-0.177767 0.181901,-0.326595 0.181901,-0.148828 0.510563,-0.148828 0.25218,0 0.413411,0.08475 0.121956,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.01033,0.05994 0.03307,0.08062 0.0248,0.02067 0.05581,0.02067 0.03307,0 0.05788,-0.01447 0.04341,-0.02687 0.167431,-0.150895 v 0.115755 q -0.23151,0.310058 -0.44235,0.310058 -0.101285,0 -0.16123,-0.07028 -0.05994,-0.07028 -0.06201,-0.239779 z m 0,-0.134359 v -0.721402 q -0.312125,0.124023 -0.403075,0.1757 -0.163298,0.09095 -0.233578,0.190169 -0.07028,0.09922 -0.07028,0.217041 0,0.148828 0.08888,0.248046 0.08888,0.09715 0.204638,0.09715 0.157097,0 0.413411,-0.206706 z m -0.851626,-1.86035 h -0.06615 q 0.0083,-0.283186 0.117822,-0.409277 0.109554,-0.12609 0.270784,-0.12609 0.08475,0 0.155029,0.02687 0.09302,0.03514 0.262516,0.148828 0.171566,0.111621 0.254248,0.111621 0.06615,0 0.115755,-0.05581 0.05168,-0.05581 0.08062,-0.23151 h 0.06408 q 0.0021,0.192236 -0.05168,0.305924 -0.05168,0.111621 -0.148828,0.1757 -0.09508,0.06201 -0.192236,0.06201 -0.163298,0 -0.405143,-0.165365 -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.208772 z" />
      <path
         id="path5676"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -83.302925,-70.481315 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.21084,-0.124023 0.446484,-0.124023 z m -0.06408,0.134359 q -0.109554,0 -0.221175,0.06615 -0.109554,0.06408 -0.177767,0.227377 -0.06821,0.163297 -0.06821,0.419612 0,0.413411 0.163297,0.713134 0.165364,0.299723 0.434082,0.299723 0.200504,0 0.330729,-0.165364 0.130224,-0.165365 0.130224,-0.568441 0,-0.504361 -0.217041,-0.793749 -0.146761,-0.198437 -0.374137,-0.198437 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="ccc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-7-8"
       d="m -115.53336,-50.36334 v 8.13009 h 14.83346"
       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-8-5)" />
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="ccc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-7-8-5"
       d="m -68.726239,-50.36334 v 8.196911 h -14.83346"
       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-8-5-0)" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.74789px;line-height:1;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#808080;fill-opacity:1;stroke:none;stroke-width:0.264583"
       id="text6088-8-8-1-9"
       aria-label="Ajuste do passo de integração">
      <path
         id="path5679"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -101.68369,-103.56255 h -0.99012 l -0.11782,0.27285 q -0.0579,0.13642 -0.0579,0.22531 0,0.11782 0.0951,0.17363 0.0558,0.0331 0.27492,0.0496 v 0.0765 h -0.93225 v -0.0765 q 0.1509,-0.0227 0.24805,-0.12403 0.0971,-0.10335 0.23978,-0.42374 l 1.00252,-2.23656 h 0.0393 l 1.01079,2.29857 q 0.14469,0.32659 0.23771,0.41134 0.0703,0.0641 0.19843,0.0744 v 0.0765 h -1.35598 v -0.0765 h 0.0558 q 0.16329,0 0.22944,-0.0455 0.0455,-0.0331 0.0455,-0.0951 0,-0.0372 -0.0124,-0.0765 -0.004,-0.0186 -0.062,-0.15503 z m -0.0703,-0.15297 -0.41754,-0.96531 -0.42995,0.96531 z" />
      <path
         id="path5681"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -99.649704,-105.63168 q 0.132291,0 0.223242,0.093 0.09302,0.0909 0.09302,0.22118 0,0.13229 -0.09302,0.2253 -0.09302,0.093 -0.223242,0.093 -0.130225,0 -0.223242,-0.093 -0.09302,-0.093 -0.09302,-0.2253 0,-0.13023 0.09095,-0.22118 0.09302,-0.093 0.225309,-0.093 z m 0.289387,0.93431 v 2.00091 q 0,0.28112 -0.03514,0.41548 -0.05168,0.1943 -0.206705,0.31213 -0.152962,0.11782 -0.405148,0.11782 -0.25424,0 -0.3762,-0.10336 -0.11989,-0.10335 -0.11989,-0.25011 0,-0.091 0.0641,-0.15916 0.062,-0.0662 0.14676,-0.0662 0.0785,0 0.12402,0.0455 0.0455,0.0475 0.0455,0.14056 0,0.0248 -0.002,0.0579 -0.004,0.0434 -0.004,0.06 0,0.0724 0.0331,0.10749 0.0331,0.0351 0.0848,0.0351 0.04754,0 0.08062,-0.0413 0.03514,-0.0413 0.03514,-0.11782 0,-0.0413 -0.0124,-0.16743 -0.02067,-0.22944 -0.02274,-0.27698 l -0.0062,-0.4899 v -1.19475 l 0.0021,-0.10749 q 0,-0.13023 -0.04548,-0.17777 -0.04341,-0.0496 -0.186037,-0.0641 v -0.0765 z" />
      <path
         id="path5683"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -96.962532,-104.69737 v 1.51309 q 0,0.22117 0.04134,0.27698 0.04134,0.0538 0.167431,0.0682 v 0.0744 h -0.787548 v -0.25838 q -0.138492,0.16536 -0.276985,0.24184 -0.138493,0.0744 -0.310058,0.0744 -0.163298,0 -0.291455,-0.0992 -0.126091,-0.10129 -0.169499,-0.23565 -0.04341,-0.13436 -0.04341,-0.46922 v -0.76688 q 0,-0.2191 -0.04134,-0.27285 -0.03927,-0.0537 -0.167432,-0.0703 v -0.0765 h 0.787549 v 1.32085 q 0,0.20671 0.0186,0.26665 0.02067,0.06 0.06201,0.091 0.04341,0.031 0.09922,0.031 0.07441,0 0.134359,-0.0393 0.08268,-0.0537 0.198437,-0.21704 v -1.03353 q 0,-0.2191 -0.04134,-0.27285 -0.03927,-0.0537 -0.167431,-0.0703 v -0.0765 z" />
      <path
         id="path5685"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -95.25101,-104.75111 0.03101,0.65939 h -0.07028 q -0.126091,-0.29352 -0.262516,-0.40101 -0.134359,-0.10749 -0.268717,-0.10749 -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.0847 0.370003,0.29146 0.303857,0.20464 0.398942,0.34933 0.09715,0.14263 0.09715,0.32039 0,0.16123 -0.08061,0.31626 -0.08062,0.15503 -0.227376,0.23771 -0.146761,0.0827 -0.324528,0.0827 -0.138492,0 -0.370002,-0.0868 -0.06201,-0.0227 -0.08475,-0.0227 -0.06821,0 -0.113688,0.10336 h -0.06821 l -0.03307,-0.69454 h 0.07028 q 0.09302,0.27286 0.254248,0.40928 0.163298,0.13643 0.307991,0.13643 0.09922,0 0.161231,-0.06 0.06408,-0.062 0.06408,-0.14883 0,-0.0992 -0.06201,-0.17156 -0.06201,-0.0724 -0.276986,-0.21911 -0.316259,-0.21911 -0.409277,-0.33486 -0.136425,-0.1695 -0.136425,-0.37414 0,-0.22324 0.152962,-0.40307 0.155029,-0.18191 0.446484,-0.18191 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" />
      <path
         id="path5687"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -94.060386,-105.4043 v 0.70693 h 0.458886 v 0.20464 h -0.458886 v 1.19269 q 0,0.16743 0.01447,0.21704 0.01654,0.0475 0.05581,0.0785 0.03927,0.0289 0.07235,0.0289 0.134358,0 0.254248,-0.20464 l 0.06201,0.0455 q -0.167431,0.39687 -0.543635,0.39687 -0.183968,0 -0.312126,-0.10129 -0.12609,-0.10335 -0.16123,-0.22944 -0.02067,-0.0703 -0.02067,-0.38034 v -1.04386 h -0.25218 v -0.0724 q 0.260449,-0.18396 0.442349,-0.38654 0.183968,-0.20257 0.320394,-0.45268 z" />
      <path
         id="path5689"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -91.77629,-103.80027 h -1.060399 q 0.0186,0.38448 0.204638,0.60772 0.142627,0.17156 0.343132,0.17156 0.124023,0 0.225309,-0.0682 0.101285,-0.0703 0.21704,-0.25011 l 0.07028,0.0455 q -0.157096,0.3204 -0.347265,0.45475 -0.190169,0.1323 -0.440283,0.1323 -0.429947,0 -0.651122,-0.33073 -0.177767,-0.26665 -0.177767,-0.66146 0,-0.48369 0.260449,-0.76895 0.262516,-0.28732 0.613915,-0.28732 0.293522,0 0.508496,0.24185 0.217041,0.23978 0.233577,0.71313 z m -0.508495,-0.13849 q 0,-0.33279 -0.03721,-0.45682 -0.03514,-0.12402 -0.111621,-0.1881 -0.04341,-0.0372 -0.115755,-0.0372 -0.107487,0 -0.1757,0.10542 -0.121956,0.18397 -0.121956,0.50436 v 0.0724 z" />
      <path
         id="path5691"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -88.599225,-105.5676 v 2.22415 q 0,0.22531 0.0124,0.26665 0.01654,0.0682 0.06201,0.10129 0.04754,0.0331 0.163297,0.0413 v 0.0682 l -0.816487,0.15917 v -0.30593 q -0.146761,0.17777 -0.262516,0.24185 -0.113688,0.0641 -0.258382,0.0641 -0.370003,0 -0.584977,-0.33073 -0.173632,-0.26872 -0.173632,-0.65939 0,-0.31213 0.107487,-0.55811 0.107486,-0.24805 0.293521,-0.37414 0.188103,-0.12609 0.403076,-0.12609 0.138493,0 0.24598,0.0538 0.107487,0.0537 0.229443,0.1881 v -0.58291 q 0,-0.22117 -0.0186,-0.26665 -0.02481,-0.0599 -0.07441,-0.0889 -0.04961,-0.0289 -0.186035,-0.0289 v -0.0868 z m -0.578776,1.31051 q -0.152962,-0.29352 -0.374137,-0.29352 -0.07648,0 -0.12609,0.0413 -0.07648,0.0641 -0.126091,0.22531 -0.04754,0.16123 -0.04754,0.49403 0,0.36587 0.05374,0.54157 0.05374,0.1757 0.146761,0.25425 0.04754,0.0393 0.130225,0.0393 0.181901,0 0.343131,-0.28525 z" />
      <path
         id="path5693"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -87.210164,-104.75525 q 0.252181,0 0.469222,0.13023 0.21704,0.13022 0.328661,0.37 0.113689,0.23978 0.113689,0.52503 0,0.41135 -0.208773,0.68833 -0.252181,0.33487 -0.696598,0.33487 -0.436149,0 -0.671793,-0.30593 -0.235644,-0.30592 -0.235644,-0.709 0,-0.41548 0.239778,-0.72347 0.241846,-0.31006 0.661458,-0.31006 z m 0.0083,0.14677 q -0.10542,0 -0.181901,0.0806 -0.07441,0.0785 -0.09922,0.31419 -0.02274,0.23358 -0.02274,0.65113 0,0.22117 0.02894,0.41341 0.02274,0.14676 0.09715,0.22324 0.07441,0.0765 0.169499,0.0765 0.09302,0 0.155029,-0.0517 0.08062,-0.0703 0.107487,-0.19637 0.04134,-0.19637 0.04134,-0.79375 0,-0.3514 -0.03927,-0.48162 -0.03927,-0.13229 -0.115755,-0.19224 -0.05374,-0.0434 -0.14056,-0.0434 z" />
      <path
         id="path5695"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -84.198464,-102.96104 v 0.71933 q 0,0.14883 0.02274,0.20258 0.0248,0.0537 0.07441,0.0785 0.04961,0.0248 0.194303,0.0248 v 0.0765 h -1.101741 v -0.0765 q 0.128158,-0.004 0.190169,-0.0724 0.04134,-0.0475 0.04134,-0.24598 v -2.04018 q 0,-0.20464 -0.04754,-0.26045 -0.04754,-0.0579 -0.183968,-0.0662 v -0.0765 h 0.810286 v 0.25425 q 0.101286,-0.14883 0.206706,-0.21497 0.150895,-0.0972 0.328661,-0.0972 0.212907,0 0.38654,0.13436 0.175699,0.13436 0.26665,0.37207 0.09095,0.23565 0.09095,0.5085 0,0.29352 -0.09508,0.53743 -0.09302,0.24185 -0.272852,0.37001 -0.177766,0.12609 -0.396874,0.12609 -0.159163,0 -0.297656,-0.0703 -0.103353,-0.0538 -0.217041,-0.18397 z m 0,-0.20877 q 0.177767,0.25218 0.380338,0.25218 0.111621,0 0.183968,-0.11783 0.107487,-0.17363 0.107487,-0.66145 0,-0.50023 -0.117822,-0.6842 -0.07855,-0.12196 -0.21084,-0.12196 -0.208772,0 -0.343131,0.3018 z" />
      <path
         id="path5697"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -81.523694,-103.04992 q -0.353467,0.31212 -0.634586,0.31212 -0.165365,0 -0.274919,-0.10749 -0.109553,-0.10955 -0.109553,-0.27285 0,-0.22117 0.190169,-0.39687 0.190169,-0.17777 0.828889,-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.17156 0,0.10129 -0.07648,0.17364 -0.07441,0.0703 -0.19637,0.0703 -0.130225,0 -0.219108,-0.0785 -0.08682,-0.0786 -0.08682,-0.18397 0,-0.14883 0.117822,-0.28319 0.117822,-0.13642 0.328662,-0.20877 0.210839,-0.0724 0.438215,-0.0724 0.274919,0 0.434082,0.11783 0.16123,0.11575 0.208773,0.25218 0.02894,0.0868 0.02894,0.39894 v 0.75034 q 0,0.13229 0.01034,0.16743 0.01033,0.0331 0.03101,0.0496 0.02067,0.0165 0.04754,0.0165 0.05374,0 0.109554,-0.0765 l 0.06201,0.0496 q -0.103352,0.15296 -0.214973,0.22324 -0.109554,0.0682 -0.250114,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.31419 -0.08061,0.11163 -0.08061,0.22531 0,0.0951 0.06821,0.16743 0.05168,0.0558 0.144693,0.0558 0.103353,0 0.239779,-0.11576 z" />
      <path
         id="path5699"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -79.252,-104.75111 0.03101,0.65939 h -0.07028 q -0.12609,-0.29352 -0.262516,-0.40101 -0.134359,-0.10749 -0.268717,-0.10749 -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.0847 0.370003,0.29146 0.303857,0.20464 0.398942,0.34933 0.09715,0.14263 0.09715,0.32039 0,0.16123 -0.08062,0.31626 -0.08062,0.15503 -0.227376,0.23771 -0.146761,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.113688,0.10336 h -0.06821 l -0.03307,-0.69454 h 0.07028 q 0.09302,0.27286 0.254248,0.40928 0.163298,0.13643 0.307992,0.13643 0.09922,0 0.16123,-0.06 0.06408,-0.062 0.06408,-0.14883 0,-0.0992 -0.06201,-0.17156 -0.06201,-0.0724 -0.276986,-0.21911 -0.316259,-0.21911 -0.409277,-0.33486 -0.136425,-0.1695 -0.136425,-0.37414 0,-0.22324 0.152962,-0.40307 0.155029,-0.18191 0.446484,-0.18191 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" />
      <path
         id="path5701"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -77.606624,-104.75111 0.03101,0.65939 h -0.07028 q -0.12609,-0.29352 -0.262516,-0.40101 -0.134359,-0.10749 -0.268717,-0.10749 -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.0847 0.370003,0.29146 0.303858,0.20464 0.398942,0.34933 0.09715,0.14263 0.09715,0.32039 0,0.16123 -0.08061,0.31626 -0.08062,0.15503 -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.69454 h 0.07028 q 0.09302,0.27286 0.254247,0.40928 0.163298,0.13643 0.307992,0.13643 0.09922,0 0.16123,-0.06 0.06408,-0.062 0.06408,-0.14883 0,-0.0992 -0.06201,-0.17156 -0.06201,-0.0724 -0.276985,-0.21911 -0.31626,-0.21911 -0.409277,-0.33486 -0.136426,-0.1695 -0.136426,-0.37414 0,-0.22324 0.152962,-0.40307 0.155029,-0.18191 0.446484,-0.18191 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" />
      <path
         id="path5703"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -76.271306,-104.75525 q 0.252181,0 0.469222,0.13023 0.217041,0.13022 0.328662,0.37 0.113688,0.23978 0.113688,0.52503 0,0.41135 -0.208773,0.68833 -0.252181,0.33487 -0.696598,0.33487 -0.436148,0 -0.671793,-0.30593 -0.235644,-0.30592 -0.235644,-0.709 0,-0.41548 0.239778,-0.72347 0.241846,-0.31006 0.661458,-0.31006 z m 0.0083,0.14677 q -0.10542,0 -0.181901,0.0806 -0.07441,0.0785 -0.09922,0.31419 -0.02274,0.23358 -0.02274,0.65113 0,0.22117 0.02894,0.41341 0.02274,0.14676 0.09715,0.22324 0.07441,0.0765 0.169498,0.0765 0.09302,0 0.155029,-0.0517 0.08061,-0.0703 0.107487,-0.19637 0.04134,-0.19637 0.04134,-0.79375 0,-0.3514 -0.03927,-0.48162 -0.03927,-0.13229 -0.115755,-0.19224 -0.05374,-0.0434 -0.14056,-0.0434 z" />
      <path
         id="path5705"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -72.128927,-105.5676 v 2.22415 q 0,0.22531 0.0124,0.26665 0.01654,0.0682 0.06201,0.10129 0.04754,0.0331 0.163298,0.0413 v 0.0682 l -0.816487,0.15917 v -0.30593 q -0.146761,0.17777 -0.262516,0.24185 -0.113688,0.0641 -0.258382,0.0641 -0.370003,0 -0.584977,-0.33073 -0.173633,-0.26872 -0.173633,-0.65939 0,-0.31213 0.107487,-0.55811 0.107487,-0.24805 0.293522,-0.37414 0.188102,-0.12609 0.403076,-0.12609 0.138493,0 0.24598,0.0538 0.107487,0.0537 0.229443,0.1881 v -0.58291 q 0,-0.22117 -0.0186,-0.26665 -0.0248,-0.0599 -0.07441,-0.0889 -0.04961,-0.0289 -0.186035,-0.0289 v -0.0868 z m -0.578775,1.31051 q -0.152962,-0.29352 -0.374137,-0.29352 -0.07648,0 -0.126091,0.0413 -0.07648,0.0641 -0.12609,0.22531 -0.04754,0.16123 -0.04754,0.49403 0,0.36587 0.05374,0.54157 0.05374,0.1757 0.146761,0.25425 0.04754,0.0393 0.130225,0.0393 0.181901,0 0.343131,-0.28525 z" />
      <path
         id="path5707"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -70.014329,-103.80027 h -1.060399 q 0.0186,0.38448 0.204638,0.60772 0.142627,0.17156 0.343132,0.17156 0.124023,0 0.225309,-0.0682 0.101285,-0.0703 0.21704,-0.25011 l 0.07028,0.0455 q -0.157096,0.3204 -0.347265,0.45475 -0.190169,0.1323 -0.440283,0.1323 -0.429947,0 -0.651122,-0.33073 -0.177767,-0.26665 -0.177767,-0.66146 0,-0.48369 0.260449,-0.76895 0.262516,-0.28732 0.613915,-0.28732 0.293522,0 0.508496,0.24185 0.217041,0.23978 0.233577,0.71313 z m -0.508495,-0.13849 q 0,-0.33279 -0.03721,-0.45682 -0.03514,-0.12402 -0.111621,-0.1881 -0.04341,-0.0372 -0.115755,-0.0372 -0.107487,0 -0.1757,0.10542 -0.121956,0.18397 -0.121956,0.50436 v 0.0724 z" />
      <path
         id="path5709"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -68.251128,-105.63374 q 0.134358,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.132292,0 -0.22531,-0.093 -0.09302,-0.093 -0.09302,-0.22531 0,-0.13229 0.09302,-0.22531 0.09302,-0.0951 0.22531,-0.0951 z m 0.289387,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.128157,-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.183967,-0.0662 v -0.0765 z" />
      <path
         id="path5711"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -66.752513,-104.69737 v 0.25012 q 0.148828,-0.16123 0.285253,-0.23358 0.136426,-0.0744 0.293522,-0.0744 0.188102,0 0.312126,0.10542 0.124023,0.10336 0.165364,0.25839 0.03307,0.11782 0.03307,0.45268 v 0.75241 q 0,0.22324 0.03927,0.27905 0.04134,0.0538 0.169499,0.0682 v 0.0744 h -0.977718 v -0.0744 q 0.109554,-0.0145 0.157097,-0.091 0.03307,-0.0517 0.03307,-0.25631 v -0.8599 q 0,-0.23771 -0.0186,-0.29972 -0.0186,-0.062 -0.06408,-0.0951 -0.04341,-0.0351 -0.09715,-0.0351 -0.177767,0 -0.330729,0.25424 v 1.0356 q 0,0.21704 0.03927,0.27492 0.04134,0.0579 0.150895,0.0723 v 0.0744 h -0.977717 v -0.0744 q 0.121956,-0.0124 0.173632,-0.0785 0.03514,-0.0455 0.03514,-0.26872 v -1.09141 q 0,-0.2191 -0.04134,-0.27285 -0.03927,-0.0537 -0.167431,-0.0703 v -0.0765 z" />
      <path
         id="path5713"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -64.418809,-105.4043 v 0.70693 h 0.458886 v 0.20464 h -0.458886 v 1.19269 q 0,0.16743 0.01447,0.21704 0.01654,0.0475 0.05581,0.0785 0.03927,0.0289 0.07235,0.0289 0.134359,0 0.254248,-0.20464 l 0.06201,0.0455 q -0.167432,0.39687 -0.543636,0.39687 -0.183968,0 -0.312125,-0.10129 -0.12609,-0.10335 -0.16123,-0.22944 -0.02067,-0.0703 -0.02067,-0.38034 v -1.04386 h -0.252181 v -0.0724 q 0.260449,-0.18396 0.44235,-0.38654 0.183968,-0.20257 0.320394,-0.45268 z" />
      <path
         id="path5715"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -62.134711,-103.80027 h -1.060399 q 0.0186,0.38448 0.204638,0.60772 0.142627,0.17156 0.343131,0.17156 0.124024,0 0.225309,-0.0682 0.101286,-0.0703 0.217041,-0.25011 l 0.07028,0.0455 q -0.157096,0.3204 -0.347265,0.45475 -0.190169,0.1323 -0.440283,0.1323 -0.429948,0 -0.651123,-0.33073 -0.177766,-0.26665 -0.177766,-0.66146 0,-0.48369 0.260449,-0.76895 0.262516,-0.28732 0.613915,-0.28732 0.293522,0 0.508496,0.24185 0.217041,0.23978 0.233577,0.71313 z m -0.508496,-0.13849 q 0,-0.33279 -0.03721,-0.45682 -0.03514,-0.12402 -0.111621,-0.1881 -0.04341,-0.0372 -0.115755,-0.0372 -0.107487,0 -0.175699,0.10542 -0.121957,0.18397 -0.121957,0.50436 v 0.0724 z" />
      <path
         id="path5717"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -60.654701,-104.67463 h 0.651122 v 0.22738 h -0.370003 q 0.101286,0.10128 0.14056,0.18396 0.04961,0.11162 0.04961,0.23358 0,0.20671 -0.115755,0.35967 -0.113688,0.15089 -0.312125,0.23771 -0.19637,0.0847 -0.349332,0.0847 -0.0124,0 -0.248047,-0.0103 -0.09302,0 -0.157096,0.062 -0.06201,0.0599 -0.06201,0.14469 0,0.0744 0.05581,0.12196 0.05788,0.0475 0.186035,0.0475 l 0.3576,-0.004 q 0.434082,0 0.597379,0.0951 0.233577,0.13229 0.233577,0.40721 0,0.1757 -0.107486,0.31832 -0.107487,0.1447 -0.283187,0.21291 -0.26665,0.10129 -0.613916,0.10129 -0.260449,0 -0.475422,-0.0517 -0.214974,-0.0496 -0.307992,-0.14056 -0.09302,-0.0889 -0.09302,-0.1881 0,-0.0951 0.07028,-0.17157 0.07235,-0.0744 0.26665,-0.12609 -0.268717,-0.13229 -0.268717,-0.36793 0,-0.14263 0.109554,-0.27699 0.109554,-0.13436 0.347265,-0.23358 -0.276985,-0.10128 -0.401009,-0.26665 -0.124023,-0.16536 -0.124023,-0.3824 0,-0.28319 0.23151,-0.48989 0.23151,-0.20878 0.595312,-0.20878 0.192236,0 0.396875,0.0806 z m -0.357601,0.0475 q -0.119889,0 -0.202571,0.12196 -0.08268,0.11989 -0.08268,0.50023 0,0.30799 0.08062,0.42374 0.08268,0.11369 0.194303,0.11369 0.124023,0 0.206705,-0.11369 0.08268,-0.11369 0.08268,-0.44235 0,-0.37 -0.09302,-0.50436 -0.06615,-0.0992 -0.186035,-0.0992 z m -0.121956,2.14767 q -0.21084,0 -0.279053,0.0351 -0.117822,0.0641 -0.117822,0.17363 0,0.10542 0.121957,0.19017 0.121956,0.0868 0.458886,0.0868 0.287321,0 0.450618,-0.0765 0.165364,-0.0765 0.165364,-0.21497 0,-0.0517 -0.03101,-0.0868 -0.05581,-0.062 -0.169499,-0.0847 -0.111621,-0.0227 -0.599446,-0.0227 z" />
      <path
         id="path5719"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -58.976252,-104.69737 v 0.43822 q 0.192236,-0.29973 0.33693,-0.39688 0.144694,-0.0992 0.279052,-0.0992 0.115756,0 0.183968,0.0724 0.07028,0.0703 0.07028,0.20051 0,0.13849 -0.06821,0.21497 -0.06614,0.0765 -0.16123,0.0765 -0.109554,0 -0.190169,-0.0703 -0.08062,-0.0703 -0.09509,-0.0786 -0.02067,-0.0124 -0.04754,-0.0124 -0.05994,0 -0.113688,0.0455 -0.08475,0.0703 -0.128157,0.2005 -0.06615,0.2005 -0.06615,0.44235 v 0.44442 l 0.0021,0.11575 q 0,0.11782 0.01447,0.1509 0.02481,0.0558 0.07235,0.0827 0.04961,0.0248 0.165365,0.031 v 0.0744 h -1.043863 v -0.0744 q 0.12609,-0.0103 0.169498,-0.0682 0.04548,-0.0599 0.04548,-0.31212 v -1.06867 q 0,-0.16537 -0.01654,-0.21084 -0.02067,-0.0579 -0.05994,-0.0847 -0.03927,-0.0269 -0.138492,-0.0372 v -0.0765 z" />
      <path
         id="path5721"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -56.834781,-103.04992 q -0.353466,0.31212 -0.634586,0.31212 -0.165364,0 -0.274918,-0.10749 -0.109554,-0.10955 -0.109554,-0.27285 0,-0.22117 0.190169,-0.39687 0.190169,-0.17777 0.828889,-0.47129 v -0.1943 q 0,-0.21911 -0.0248,-0.27492 -0.02274,-0.0579 -0.08888,-0.0992 -0.06615,-0.0434 -0.148828,-0.0434 -0.134358,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.17156 0,0.10129 -0.07648,0.17364 -0.07441,0.0703 -0.19637,0.0703 -0.130224,0 -0.219108,-0.0785 -0.08682,-0.0786 -0.08682,-0.18397 0,-0.14883 0.117822,-0.28319 0.117822,-0.13642 0.328662,-0.20877 0.21084,-0.0724 0.438216,-0.0724 0.274918,0 0.434081,0.11783 0.161231,0.11575 0.208773,0.25218 0.02894,0.0868 0.02894,0.39894 v 0.75034 q 0,0.13229 0.01033,0.16743 0.01033,0.0331 0.03101,0.0496 0.02067,0.0165 0.04754,0.0165 0.05374,0 0.109554,-0.0765 l 0.06201,0.0496 q -0.103353,0.15296 -0.214974,0.22324 -0.109554,0.0682 -0.250114,0.0682 -0.165364,0 -0.258382,-0.0765 -0.09302,-0.0786 -0.113688,-0.23564 z m 0,-0.1509 v -0.64699 q -0.250113,0.14676 -0.37207,0.31419 -0.08062,0.11163 -0.08062,0.22531 0,0.0951 0.06821,0.16743 0.05168,0.0558 0.144694,0.0558 0.103353,0 0.239778,-0.11576 z" />
      <path
         id="path5723"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -54.207553,-103.26283 0.06408,0.0496 q -0.136426,0.25631 -0.341065,0.3824 -0.202571,0.12403 -0.432014,0.12403 -0.38654,0 -0.61805,-0.29146 -0.23151,-0.29145 -0.23151,-0.70073 0,-0.39481 0.21084,-0.69453 0.254248,-0.36174 0.700732,-0.36174 0.299723,0 0.475422,0.1509 0.177767,0.15089 0.177767,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.18191 -0.04754,-0.0517 -0.111621,-0.0517 -0.09922,0 -0.169498,0.10542 -0.107487,0.15916 -0.107487,0.48782 0,0.27285 0.08682,0.52297 0.08682,0.24804 0.237712,0.37 0.113688,0.0889 0.268717,0.0889 0.101286,0 0.192236,-0.0475 0.09095,-0.0475 0.214974,-0.17983 z m -0.727604,0.47335 h 0.136426 l -0.09715,0.1509 q 0.124024,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.475423,0.0496 v -0.0972 q 0.206706,-0.008 0.279053,-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" />
      <path
         id="path5725"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -52.841231,-103.04992 q -0.353467,0.31212 -0.634586,0.31212 -0.165365,0 -0.274919,-0.10749 -0.109554,-0.10955 -0.109554,-0.27285 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.17156 0,0.10129 -0.07648,0.17364 -0.07441,0.0703 -0.19637,0.0703 -0.130225,0 -0.219108,-0.0785 -0.08682,-0.0786 -0.08682,-0.18397 0,-0.14883 0.117822,-0.28319 0.117823,-0.13642 0.328662,-0.20877 0.21084,-0.0724 0.438216,-0.0724 0.274918,0 0.434082,0.11783 0.16123,0.11575 0.208772,0.25218 0.02894,0.0868 0.02894,0.39894 v 0.75034 q 0,0.13229 0.01033,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.31419 -0.08062,0.11163 -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 m 0.398941,-2.39572 h 0.109554 q 0.0021,0.0413 0.0021,0.0703 0,0.22738 -0.128157,0.36587 -0.128158,0.13849 -0.310058,0.13849 -0.134359,0 -0.338998,-0.0971 -0.202571,-0.0971 -0.270784,-0.0971 -0.06201,0 -0.103353,0.0413 -0.04134,0.0413 -0.05788,0.14883 h -0.119889 q -0.0083,-0.26872 0.121956,-0.42168 0.132291,-0.15296 0.324528,-0.15296 0.06201,0 0.103352,0.0124 0.05788,0.0165 0.198438,0.0827 0.212906,0.0971 0.303857,0.0971 0.04547,0 0.08682,-0.0372 0.04134,-0.0372 0.07855,-0.1509 z" />
      <path
         id="path5727"
         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;text-anchor:middle;fill:#808080;stroke-width:0.264583"
         d="m -50.879596,-104.75525 q 0.252181,0 0.469222,0.13023 0.217041,0.13022 0.328662,0.37 0.113688,0.23978 0.113688,0.52503 0,0.41135 -0.208773,0.68833 -0.252181,0.33487 -0.696597,0.33487 -0.436149,0 -0.671794,-0.30593 -0.235644,-0.30592 -0.235644,-0.709 0,-0.41548 0.239779,-0.72347 0.241845,-0.31006 0.661457,-0.31006 z m 0.0083,0.14677 q -0.10542,0 -0.181901,0.0806 -0.07441,0.0785 -0.09922,0.31419 -0.02274,0.23358 -0.02274,0.65113 0,0.22117 0.02894,0.41341 0.02274,0.14676 0.09715,0.22324 0.07441,0.0765 0.169498,0.0765 0.09302,0 0.15503,-0.0517 0.08062,-0.0703 0.107486,-0.19637 0.04134,-0.19637 0.04134,-0.79375 0,-0.3514 -0.03927,-0.48162 -0.03927,-0.13229 -0.115755,-0.19224 -0.05374,-0.0434 -0.140559,-0.0434 z" />
    </g>
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="ccccccc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-7-0"
       d="m -92.147269,-39.87359 v 2.926019 h -44.323441 m -2.33872,0 h -2.65032 v -39.91347 h -4.53058"
       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-8-8)" />
    <path
       d="m -138.82166,-36.747192 a 1.1920018,1.1920018 0 0 1 1.19201,-1.192002 1.1920018,1.1920018 0 0 1 1.192,1.192002"
       style="opacity:1;fill:none;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"
       id="path39045" />
    <path
       inkscape:export-ydpi="200"
       inkscape:export-xdpi="200"
       sodipodi:nodetypes="cc"
       inkscape:connector-curvature="0"
       id="path9106-8-1-91-2"
       d="m -159.96432,-70.81871 v 6.97749"
       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-5)" />
    <path
       d="m -159.17065,-69.610603 h 7.09892 v 3.701473 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-1-7" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-2-5-2-2-0-4"
       aria-label="Sim">
      <path
         id="path5732"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -157.08606,-69.15362 v 0.96945 h -0.0765 q -0.0372,-0.279053 -0.13436,-0.444417 -0.0951,-0.165365 -0.27285,-0.262516 -0.17777,-0.09715 -0.36794,-0.09715 -0.21497,0 -0.35553,0.132291 -0.14056,0.130225 -0.14056,0.297656 0,0.128158 0.0889,0.233578 0.12815,0.155029 0.60978,0.413411 0.39274,0.21084 0.53536,0.324528 0.1447,0.111621 0.22118,0.264583 0.0785,0.152962 0.0785,0.320393 0,0.318327 -0.24805,0.549837 -0.24598,0.229443 -0.63459,0.229443 -0.12195,0 -0.22944,-0.0186 -0.0641,-0.01034 -0.26665,-0.07441 -0.2005,-0.06615 -0.25425,-0.06615 -0.0517,0 -0.0827,0.03101 -0.0289,0.03101 -0.0434,0.128157 h -0.0765 v -0.961181 h 0.0765 q 0.0537,0.301791 0.1447,0.452686 0.0909,0.148828 0.27698,0.248046 0.1881,0.09922 0.41135,0.09922 0.25838,0 0.40721,-0.136426 0.15089,-0.136425 0.15089,-0.32246 0,-0.103353 -0.0579,-0.208773 -0.0558,-0.10542 -0.1757,-0.19637 -0.0806,-0.06201 -0.44028,-0.262516 -0.35967,-0.202572 -0.51263,-0.322461 -0.15089,-0.119889 -0.22944,-0.264583 -0.0786,-0.144694 -0.0786,-0.318327 0,-0.30179 0.23151,-0.518831 0.23151,-0.219108 0.58911,-0.219108 0.22324,0 0.47336,0.109554 0.11575,0.05168 0.16329,0.05168 0.0538,0 0.0868,-0.03101 0.0351,-0.03307 0.0558,-0.130225 z" />
      <path
         id="path5734"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -156.05666,-69.225966 q 0.0868,0 0.14676,0.06201 0.062,0.05994 0.062,0.146761 0,0.08682 -0.062,0.148828 -0.06,0.06201 -0.14676,0.06201 -0.0868,0 -0.14883,-0.06201 -0.062,-0.06201 -0.062,-0.148828 0,-0.08682 0.0599,-0.146761 0.062,-0.06201 0.1509,-0.06201 z m 0.17156,0.990119 v 1.521353 q 0,0.177767 0.0248,0.237711 0.0269,0.05788 0.0765,0.08682 0.0517,0.02894 0.18603,0.02894 v 0.07441 h -0.91984 v -0.07441 q 0.13849,0 0.18604,-0.02687 0.0475,-0.02687 0.0744,-0.08888 0.0289,-0.06201 0.0289,-0.237711 v -0.729671 q 0,-0.307991 -0.0186,-0.398941 -0.0145,-0.06615 -0.0455,-0.09095 -0.031,-0.02687 -0.0848,-0.02687 -0.0579,0 -0.14056,0.031 l -0.0289,-0.07441 0.57051,-0.23151 z" />
      <path
         id="path5736"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -154.80196,-67.832771 q 0.2067,-0.206706 0.24391,-0.237711 0.093,-0.07855 0.20051,-0.121957 0.10748,-0.04341 0.2129,-0.04341 0.17777,0 0.30593,0.103353 0.12815,0.103353 0.17156,0.299723 0.21291,-0.248047 0.35967,-0.324528 0.14676,-0.07855 0.30179,-0.07855 0.15089,0 0.26665,0.07855 0.11782,0.07648 0.18603,0.252181 0.0455,0.119889 0.0455,0.376204 v 0.81442 q 0,0.177767 0.0269,0.243913 0.0207,0.04547 0.0765,0.07855 0.0558,0.03101 0.1819,0.03101 v 0.07441 h -0.93431 v -0.07441 h 0.0393 q 0.12195,0 0.19017,-0.04754 0.0475,-0.03307 0.0682,-0.10542 0.008,-0.03514 0.008,-0.200504 v -0.81442 q 0,-0.23151 -0.0558,-0.326595 -0.0806,-0.132291 -0.25838,-0.132291 -0.10956,0 -0.22118,0.05581 -0.10955,0.05374 -0.26665,0.202572 l -0.004,0.02274 0.004,0.08888 v 0.903303 q 0,0.194303 0.0207,0.241846 0.0227,0.04754 0.0827,0.08062 0.0599,0.03101 0.20464,0.03101 v 0.07441 h -0.95704 v -0.07441 q 0.15709,0 0.21497,-0.03721 0.0599,-0.03721 0.0827,-0.111621 0.0103,-0.03514 0.0103,-0.204639 v -0.81442 q 0,-0.23151 -0.0682,-0.332796 -0.0909,-0.132291 -0.25424,-0.132291 -0.11162,0 -0.22118,0.05994 -0.17156,0.09095 -0.26458,0.204639 v 1.014924 q 0,0.186035 0.0248,0.241846 0.0269,0.05581 0.0765,0.08475 0.0517,0.02687 0.20671,0.02687 v 0.07441 h -0.93638 v -0.07441 q 0.13023,0 0.1819,-0.02687 0.0517,-0.02894 0.0785,-0.08888 0.0269,-0.06201 0.0269,-0.237711 v -0.723469 q 0,-0.312126 -0.0186,-0.403076 -0.0145,-0.06821 -0.0455,-0.09302 -0.031,-0.02687 -0.0848,-0.02687 -0.0579,0 -0.1385,0.031 l -0.031,-0.07441 0.5705,-0.23151 h 0.0889 z" />
    </g>
    <path
       d="m -181.55289,-81.201302 h 7.09893 v 3.567837 h -7.09893 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-3-6" />
    <g
       style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:0.705556px;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="text14836-1-0-5-9-7-9"
       aria-label="Não">
      <path
         id="path5740"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -181.46508,-80.813876 h 0.76067 l 1.71359,2.102196 v -1.616437 q 0,-0.258382 -0.0579,-0.322461 -0.0765,-0.08682 -0.24185,-0.08682 h -0.0971 v -0.07648 h 0.97565 v 0.07648 h -0.0992 q -0.17777,0 -0.25218,0.107486 -0.0455,0.06615 -0.0455,0.301791 v 2.362644 h -0.0744 l -1.84795,-2.257225 v 1.725992 q 0,0.258382 0.0558,0.32246 0.0785,0.08682 0.24185,0.08682 h 0.0992 v 0.07648 h -0.97565 v -0.07648 h 0.0971 q 0.17983,0 0.25425,-0.107487 0.0455,-0.06615 0.0455,-0.30179 v -1.949234 q -0.12195,-0.142626 -0.18603,-0.188102 -0.062,-0.04548 -0.18397,-0.08475 -0.06,-0.0186 -0.1819,-0.0186 z" />
      <path
         id="path5742"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -177.14494,-78.2838 q -0.29145,0.22531 -0.36586,0.260449 -0.11163,0.05168 -0.23772,0.05168 -0.19637,0 -0.32452,-0.134359 -0.12609,-0.134358 -0.12609,-0.353466 0,-0.138493 0.062,-0.239779 0.0848,-0.140559 0.29352,-0.264583 0.21084,-0.124023 0.69866,-0.30179 v -0.07441 q 0,-0.283187 -0.091,-0.388606 -0.0889,-0.10542 -0.26045,-0.10542 -0.13022,0 -0.2067,0.07028 -0.0786,0.07028 -0.0786,0.16123 l 0.004,0.119889 q 0,0.09508 -0.0496,0.146761 -0.0476,0.05168 -0.12609,0.05168 -0.0765,0 -0.12609,-0.05374 -0.0476,-0.05374 -0.0476,-0.146761 0,-0.177767 0.1819,-0.326595 0.1819,-0.148828 0.51057,-0.148828 0.25218,0 0.41341,0.08475 0.12195,0.06408 0.17983,0.200504 0.0372,0.08888 0.0372,0.363802 v 0.642854 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.16744,-0.150895 v 0.115755 q -0.23151,0.310059 -0.44235,0.310059 -0.10129,0 -0.16123,-0.07028 -0.0599,-0.07028 -0.062,-0.239779 z m 0,-0.134358 v -0.721403 q -0.31212,0.124024 -0.40307,0.1757 -0.1633,0.09095 -0.23358,0.190169 -0.0703,0.09922 -0.0703,0.217041 0,0.148828 0.0889,0.248047 0.0889,0.09715 0.20464,0.09715 0.1571,0 0.41341,-0.206705 z m -0.85162,-1.86035 h -0.0662 q 0.008,-0.283187 0.11782,-0.409277 0.10956,-0.126091 0.27079,-0.126091 0.0848,0 0.15503,0.02687 0.093,0.03514 0.26251,0.148828 0.17157,0.111621 0.25425,0.111621 0.0661,0 0.11576,-0.05581 0.0517,-0.05581 0.0806,-0.231511 h 0.0641 q 0.002,0.192237 -0.0517,0.305925 -0.0517,0.111621 -0.14882,0.175699 -0.0951,0.06201 -0.19224,0.06201 -0.1633,0 -0.40514,-0.165364 -0.13023,-0.08888 -0.1757,-0.107487 -0.0455,-0.0186 -0.0889,-0.0186 -0.0848,0 -0.13435,0.07441 -0.0227,0.03514 -0.0579,0.208773 z" />
      <path
         id="path5744"
         style="font-size:4.23333px;fill:#808080;stroke-width:0.264583"
         d="m -175.41481,-79.960182 q 0.42995,0 0.6904,0.326595 0.22117,0.279053 0.22117,0.640787 0,0.254248 -0.12195,0.514697 -0.12196,0.260449 -0.33694,0.392741 -0.2129,0.132291 -0.47542,0.132291 -0.42788,0 -0.68006,-0.341064 -0.21291,-0.287321 -0.21291,-0.644921 0,-0.260449 0.12816,-0.516764 0.13023,-0.258382 0.34107,-0.380338 0.21084,-0.124024 0.44648,-0.124024 z m -0.0641,0.134359 q -0.10955,0 -0.22117,0.06615 -0.10956,0.06408 -0.17777,0.227376 -0.0682,0.163297 -0.0682,0.419612 0,0.413411 0.16329,0.713134 0.16537,0.299723 0.43409,0.299723 0.2005,0 0.33072,-0.165364 0.13023,-0.165364 0.13023,-0.56844 0,-0.504362 -0.21704,-0.79375 -0.14676,-0.198437 -0.37414,-0.198437 z" />
    </g>
  </g>
</svg>