1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:ns1="http://www.iki.fi/pav/software/textext/"
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"
viewBox="0 0 385.74307 339.6848"
inkscape:export-ydpi="1200"
inkscape:export-xdpi="1200"
inkscape:export-filename="D:\Users\winkler\Uni\Institut\Dokumente\Institutsposter\poster12\Mathematik.png"
sodipodi:docname="textext-complex-example.svg"
inkscape:version="1.0rc1 (09960d6, 2020-04-09)"
version="1.1"
id="svg4561"
height="95.8666mm"
width="108.86526mm">
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:zoom="1.6483216"
inkscape:cx="208.81483"
inkscape:cy="252.62877"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:snap-global="false"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-left="1"
fit-margin-top="1"
fit-margin-right="1"
fit-margin-bottom="1"
inkscape:document-rotation="0" />
<defs
id="defs4563">
<marker
inkscape:stockid="Arrow1Mend"
orient="auto"
refY="0.0"
refX="0.0"
id="marker22364"
style="overflow:visible;"
inkscape:isstock="true">
<path
id="path22362"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
style="fill-rule:evenodd;stroke:#ff0000;stroke-width:1pt;stroke-opacity:1;fill:#ff0000;fill-opacity:1"
transform="scale(0.4) rotate(180) translate(10,0)" />
</marker>
<marker
inkscape:collect="always"
inkscape:isstock="true"
style="overflow:visible;"
id="Arrow1Mend"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
transform="scale(0.4) rotate(180) translate(10,0)"
style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1;fill:#008000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path22019" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible;"
id="Arrow1Lend"
refX="0.0"
refY="0.0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
transform="scale(0.8) rotate(180) translate(12.5,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1"
d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
id="path22013" />
</marker>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3064">
<path
inkscape:connector-curvature="0"
d="M 122.4,43.2 H 468 V 388.8 H 122.4 Z"
id="path3066" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3106">
<path
inkscape:connector-curvature="0"
d="M 122.4,43.2 H 468 V 388.8 H 122.4 Z"
id="path3108" />
</clipPath>
</defs>
<metadata
id="metadata4566">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-202.24012,-156.89542)"
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1">
<g
transform="matrix(1.25,0,0,-1.25,146.94998,581.88758)"
id="g3102"
style="display:inline;fill:#0000ff;fill-opacity:0.22186495;stroke:#0000ff">
<g
style="fill:#0000ff;fill-opacity:0.22186495;stroke:#0000ff"
clip-path="url(#clipPath3106)"
id="g3104">
<path
id="path3110"
style="fill:#0000ff;fill-opacity:0.22186495;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 250.98882,185.61972 79.60852,-44.91471 0.28599,105.4493 -79.97225,41.27954 z"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</g>
<g
transform="matrix(-0.79565609,1.0919877,-1.0919877,-0.79565609,160.46715,232.32192)"
id="g10882">
<path
id="path10884"
style="fill:none;stroke:#000000;stroke-width:0.74013078;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -43.047,-91.541 -15.107,11.047"
inkscape:connector-curvature="0" />
</g>
<path
id="path10886"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 292.82807,237.2446 1.7996,-4.92268 1.81706,4.91831 c -1.07014,-0.78513 -2.52904,-0.7764 -3.61666,0.004 z"
inkscape:connector-curvature="0" />
<g
style="stroke:#0000ff;stroke-width:1.83152246;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10892" />
<g
style="stroke:#0000ff;stroke-width:1.83152246;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10896" />
<g
style="stroke:#ff0000;stroke-width:1.79285681;stroke-miterlimit:4;stroke-dasharray:3.58571364, 1.79285682;stroke-dashoffset:0"
transform="matrix(1.0919877,-0.3652273,0.41197748,1.0018059,160.46715,232.32192)"
id="g10900">
<path
id="path10902"
style="fill:none;stroke:#ff0000;stroke-width:1.79285681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.58571364, 1.79285682;stroke-dashoffset:0;stroke-opacity:1"
d="m 123.057,176.994 c 0,14.97 -6.13,27.11 -13.689,27.109 -7.561,-0.002 -13.691,-12.136 -13.689,-27.11 -0.001,-14.971 6.129,-27.107 13.687,-27.106 7.562,0.002 13.691,12.136 13.691,27.107 z"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#ff0000;stroke-width:1.79285681;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,-0.3652273,0.41197748,1.0018059,160.46715,232.32192)"
id="g10904">
<path
id="path10906"
style="fill:none;stroke:#ff0000;stroke-width:1.79285681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 109.703,149.895 c 7.56,0.367 13.534,12.798 13.349,27.765 -0.163,13.085 -5.024,24.074 -11.555,26.112"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10908">
<path
id="path10910"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.14470148;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 133.566,173.488 95.903,51.707 z"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(-0.53139943,-1.0919877,1.0919877,-0.53139943,160.46715,232.32192)"
id="g10912">
<path
id="path10914"
style="fill:none;stroke:#000000;stroke-width:0.82343638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -275.664,98.926 -16.806,12.291"
inkscape:connector-curvature="0" />
</g>
<path
id="path10916"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 434.31255,488.93908 3.502,3.8983 -5.19458,-0.6988 c 1.19354,-0.5766 1.87166,-1.8728 1.69258,-3.1995 z"
inkscape:connector-curvature="0" />
<g
style="stroke:#0000ff;stroke-width:1.83152246;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10924">
<path
id="path10926"
style="fill:none;stroke:#0000ff;stroke-width:1.83152246;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 102.711,187.086 264.863,115.98"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#0000ff;stroke-width:1.79285681;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,-0.3652273,0.41197748,1.0018059,160.46715,232.32192)"
id="g10928">
<path
id="path10930"
style="fill:none;stroke:#0000ff;stroke-width:1.79285681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 36.374,185.007 c 0,14.971 -6.129,27.107 -13.688,27.106 -7.561,-0.002 -13.69,-12.136 -13.691,-27.107 0,-14.971 6.129,-27.107 13.692,-27.108 7.559,0 13.686,12.138 13.687,27.109 z"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#0000ff;stroke-width:1.83152246;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10932">
<path
id="path10934"
style="fill:none;stroke:#0000ff;stroke-width:1.83152246;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 81.914,137.223 242.77,67.148"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#0000ff;stroke-width:1.79285681;stroke-miterlimit:4;stroke-dasharray:3.58571364, 1.79285682;stroke-dashoffset:0"
transform="matrix(1.0919877,-0.3652273,0.41197748,1.0018059,160.46715,232.32192)"
id="g10936">
<path
id="path10938"
style="fill:none;stroke:#0000ff;stroke-width:1.79285681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:3.58571364, 1.79285682;stroke-dashoffset:0;stroke-opacity:1"
d="m 202.314,169.262 c 0,14.971 -6.13,27.11 -13.689,27.109 -7.561,-0.001 -13.691,-12.136 -13.69,-27.11 0,-14.971 6.129,-27.107 13.691,-27.105 7.558,0.001 13.688,12.135 13.688,27.106 z"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#0000ff;stroke-width:1.79285681;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,-0.3652273,0.41197748,1.0018059,160.46715,232.32192)"
id="g10940">
<path
id="path10942"
style="fill:none;stroke:#0000ff;stroke-width:1.79285681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 188.963,142.164 c 7.557,0.366 13.531,12.797 13.346,27.764 -0.163,13.085 -5.024,24.074 -11.552,26.114"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10994">
<path
id="path10996"
style="fill:none;stroke:#000000;stroke-width:0.59524471;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 195.172,139.305 h 59.035 v 27.34542"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccc" />
</g>
<g
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g10998">
<path
id="path11000"
style="fill:none;stroke:#000000;stroke-width:0.54945672;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 50.559,115.352 v 13.589 h 59.214"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g11002">
<path
id="path11004"
style="fill:none;stroke:#000000;stroke-width:0.54945672;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 51.203,69.418 v 13.594 h 91.578"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke-width:0.85852621;stroke-miterlimit:4;stroke-dasharray:none;fill:#008000;stroke:#008000"
transform="matrix(1.0919877,0,0,1.0919877,162.4068,195.9535)"
id="g11026">
<path
sodipodi:nodetypes="cc"
id="path11028"
style="fill:#008000;stroke:#008000;stroke-width:0.85852621;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 299.77089,90.918554 210.07,40.41"
inkscape:connector-curvature="0" />
</g>
<g
style="stroke:#0000ff;stroke-width:1.83152246;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g11030" />
<g
transform="matrix(1.0919877,0.24774471,-0.24774471,1.0919877,160.46715,232.32192)"
id="g11034">
<path
id="path11036"
style="fill:none;stroke:#000000;stroke-width:0.89306515;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 108.852,147.386 -18.225,13.33"
inkscape:connector-curvature="0" />
</g>
<path
id="path11038"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 224.3528,430.20647 -5.2339,0.28938 3.79684,-3.6123 c -0.2992,1.29183 0.28938,2.6317 1.43706,3.32292 z"
inkscape:connector-curvature="0" />
<g
style="fill:none;stroke:#0000ff;stroke-width:1.83152246;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g11066">
<path
id="path11068"
style="fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:1.83152246;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 123.438,119.078 -0.1315,-91.41 106.1585,56.73 0.2125,141.1995 -96.82203,-51.87611"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
<g
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)"
id="g11110">
<path
id="path11112"
style="fill:none;stroke:#000000;stroke-width:0.91576117;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.83152232, 3.66304463;stroke-dashoffset:0;stroke-opacity:1"
d="M 123.445,119.191 V 167.93"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.2499959,-0.00318857,-0.00318857,-1.2499959,138.71482,588.20318)"
id="g3060"
style="display:inline">
<g
clip-path="url(#clipPath3064)"
id="g3062">
<path
id="path3068"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 322.44896,207.21615 -0.0595,-1.89274 -0.15106,-1.82782 -0.24187,-1.75542 -0.33147,-1.67587 -0.4195,-1.58958 -0.50558,-1.49691 -0.58936,-1.3983 -0.67052,-1.29418 -0.74869,-1.18505 -0.8236,-1.07136 -0.89493,-0.95361 -0.96243,-0.83231 -1.02581,-0.708 -1.08487,-0.58118 -1.13938,-0.45239 -1.18915,-0.32215 -1.234,-0.191 -1.27378,-0.0595 -1.30839,0.0719 -1.33768,0.20265 -1.3616,0.33222 -1.38007,0.46012 -1.39303,0.58587 -1.40051,0.709 -1.40246,0.82904 -1.39891,0.94556 -1.38992,1.05812 -1.37554,1.16633 -1.35582,1.26979 -1.33088,1.36813 -1.30083,1.461 -1.2658,1.54808 -1.22592,1.62905 -1.18136,1.70366 -1.1323,1.7716 -1.07891,1.83268 -1.02142,1.88666 -0.96003,1.93336 -0.89497,1.9726 -0.82647,2.00427 -0.7548,2.02822 -0.68022,2.0444 -0.60297,2.0527 -0.52338,2.05313 -0.44171,2.04563 -0.35825,2.03025 -0.27332,2.00702 -0.18722,1.97599 -0.10029,1.93729 -0.0128,1.891 0.0749,1.83729 0.1624,1.77634 0.24949,1.70833 0.3358,1.6335 0.42098,1.55211 0.50471,1.46442 0.58668,1.37076 0.66652,1.27143 0.74396,1.16682 0.81865,1.05729 0.89029,0.94325 0.95858,0.82511 1.02324,0.70333 1.08397,0.57837 1.14052,0.45072 1.19264,0.32088 1.24007,0.18934 1.2826,0.0567 1.32004,-0.0766 1.35219,-0.20998 1.37889,-0.34284 1.4,-0.47467 1.41541,-0.60487 1.42501,-0.73292 1.42873,-0.85825 1.42655,-0.98032 1.41842,-1.09857 1.40438,-1.2125 1.38444,-1.3216 1.35869,-1.42537 1.32721,-1.52334 1.29011,-1.61508 1.24754,-1.70015 1.19969,-1.77818 1.14673,-1.84881 1.08892,-1.91171 1.02647,-1.96659 0.95968,-2.01322 0.88882,-2.05136 0.8142,-2.08086 0.73617,-2.10159 0.65507,-2.11345 0.57123,-2.11641 0.48506,-2.11045 0.39692,-2.09564 0.3072,-2.07202 0.21631,-2.03974 0.12463,-1.99896 0.0326,-1.94989"
inkscape:connector-curvature="0" />
<path
id="path3070"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 317.76821,206.26353 -0.0541,-1.80875 -0.14142,-1.74675 -0.22804,-1.6776 -0.31354,-1.60165 -0.39754,-1.51923 -0.47973,-1.43071 -0.55974,-1.33653 -0.63724,-1.23707 -0.71195,-1.1328 -0.78355,-1.02417 -0.85176,-0.91165 -0.91632,-0.79574 -0.97699,-0.6769 -1.03353,-0.55568 -1.08576,-0.43254 -1.13346,-0.30801 -1.17649,-0.18259 -1.2147,-0.0568 -1.24795,0.0689 -1.27615,0.19396 -1.29921,0.31792 -1.31708,0.4403 -1.32969,0.56065 -1.33706,0.67848 -1.33913,0.79339 -1.33598,0.90491 -1.32759,1.01268 -1.31405,1.11626 -1.29541,1.2153 -1.27177,1.30945 -1.24323,1.39836 -1.20993,1.48173 -1.17197,1.55924 -1.12954,1.63065 -1.08278,1.69569 -1.03189,1.75412 -0.97706,1.80576 -0.91848,1.85042 -0.85639,1.88793 -0.791,1.91817 -0.72257,1.94102 -0.65135,1.9564 -0.57757,1.96424 -0.50155,1.96451 -0.42352,1.95722 -0.34379,1.94234 -0.26265,1.91994 -0.18038,1.89009 -0.0973,1.85286 -0.0137,1.80839 0.07,1.7568 0.15368,1.69828 0.23688,1.63301 0.31934,1.56122 0.40073,1.48315 0.48071,1.39907 0.55901,1.30928 0.63528,1.2141 0.70924,1.11386 0.78057,1.00894 0.84899,0.89973 0.9142,0.78661 0.97593,0.67005 1.03392,0.55046 1.08791,0.42832 1.13766,0.30412 1.18294,0.17833 1.22355,0.0515 1.25928,-0.076 1.28998,-0.20341 1.31547,-0.33037 1.33564,-0.45631 1.35036,-0.58069 1.35954,-0.70297 1.36315,-0.82264 1.36109,-0.93917 1.3534,-1.05204 1.34006,-1.16077 1.32112,-1.26486 1.29661,-1.36386 1.26667,-1.45731 1.23137,-1.5448 1.19086,-1.62593 1.14533,-1.70032 1.09493,-1.76765 1.03989,-1.82761 0.98046,-1.8799 0.91687,-1.92432 0.84941,-1.96065 0.77838,-1.98874 0.70406,-2.00845 0.62683,-2.01972 0.54699,-2.02248 0.4649,-2.01675 0.38093,-2.00257 0.29546,-1.97998 0.20883,-1.94915 0.12145,-1.91019 0.0337,-1.86332"
inkscape:connector-curvature="0" />
<path
id="path3072"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 312.85971,206.90744 -0.0448,-1.5861 -0.12125,-1.53201 -0.19705,-1.47166 -0.27188,-1.40536 -0.34546,-1.33338 -0.41747,-1.25604 -0.48761,-1.17372 -0.55561,-1.08676 -0.62118,-0.99554 -0.68406,-0.90048 -0.74401,-0.80197 -0.8008,-0.70043 -0.85421,-0.59631 -0.90403,-0.49003 -0.95007,-0.38203 -0.9922,-0.27277 -1.03023,-0.16267 -1.06405,-0.0522 -1.09354,0.0582 -1.1186,0.16814 -1.13915,0.27715 -1.15515,0.3848 -1.16654,0.49069 -1.17329,0.59442 -1.17542,0.69559 -1.17291,0.79382 -1.16582,0.88877 -1.15416,0.98006 -1.13801,1.06736 -1.11745,1.15037 -1.09256,1.22876 -1.06344,1.30228 -1.03022,1.37065 -0.99305,1.43362 -0.95203,1.49097 -0.90738,1.5425 -0.85921,1.58803 -0.80775,1.62737 -0.75317,1.6604 -0.69568,1.68701 -0.63549,1.70707 -0.57284,1.72054 -0.50794,1.72733 -0.44105,1.72744 -0.37239,1.72084 -0.30224,1.70757 -0.23086,1.68763 -0.15848,1.66112 -0.0854,1.62811 -0.0119,1.58869 0.0617,1.54303 0.13527,1.49123 0.2084,1.43352 0.28084,1.37008 0.35231,1.30111 0.42254,1.22688 0.49125,1.14765 0.55816,1.06371 0.623,0.97535 0.68553,0.88291 0.74545,0.78674 0.80255,0.68718 0.85658,0.58464 0.90728,0.47949 0.95447,0.37217 0.99792,0.26306 1.03744,0.15262 1.07285,0.0413 1.10397,-0.0704 1.13069,-0.18219 1.15283,-0.29344 1.17032,-0.40375 1.18303,-0.51264 1.19092,-0.61966 1.19392,-0.72434 1.19198,-0.82624 1.18512,-0.92492 1.17334,-1.01992 1.15668,-1.11087 1.13517,-1.19733 1.10892,-1.27893 1.07801,-1.35531 1.04258,-1.42611 1.00275,-1.49104 0.95871,-1.54979 0.91063,-1.6021 0.85872,-1.64773 0.80318,-1.6865 0.74429,-1.7182 0.68227,-1.74273 0.6174,-1.75995 0.54997,-1.76982 0.48027,-1.77226 0.4086,-1.76732 0.33527,-1.75498 0.26061,-1.73533 0.18495,-1.70848 0.10859,-1.67454 0.0319,-1.63368"
inkscape:connector-curvature="0" />
<path
id="path3074"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 309.65121,208.89259 -0.0357,-1.31206 -0.0988,-1.26765 -0.16136,-1.2181 -0.22319,-1.16359 -0.28401,-1.10441 -0.34356,-1.04079 -0.40161,-0.973 -0.45791,-0.90138 -0.51224,-0.82621 -0.56438,-0.7478 -0.61412,-0.66653 -0.66129,-0.5827 -0.70566,-0.49668 -0.74712,-0.40883 -0.78546,-0.31951 -0.82057,-0.22909 -0.85232,-0.13793 -0.88059,-0.0464 -0.90527,0.0451 -0.9263,0.13629 -0.94359,0.22675 -0.95711,0.31612 -0.9668,0.40408 -0.97264,0.49028 -0.97463,0.5744 -0.97276,0.65612 -0.96707,0.73511 -0.95757,0.81109 -0.94433,0.8838 -0.9274,0.95293 -0.90685,1.01825 -0.88278,1.0795 -0.85526,1.13649 -0.82444,1.18897 -0.79042,1.23677 -0.75332,1.27973 -0.71332,1.31766 -0.67053,1.35044 -0.62516,1.37795 -0.57733,1.40008 -0.52728,1.41677 -0.47514,1.42791 -0.42114,1.4335 -0.36548,1.4335 -0.30836,1.4279 -0.25,1.41672 -0.19061,1.39998 -0.13043,1.37777 -0.0697,1.35012 -0.009,1.31715 0.0526,1.27897 0.1137,1.23572 0.17441,1.18752 0.23453,1.13459 0.29382,1.07708 0.35205,1.01521 0.40897,0.94922 0.46439,0.87933 0.51805,0.80582 0.56975,0.72896 0.61927,0.64903 0.66643,0.56635 0.71099,0.48123 0.7528,0.39401 0.79166,0.30503 0.8274,0.21462 0.85987,0.12317 0.88893,0.031 0.91443,-0.0614 0.93627,-0.15379 0.95433,-0.24572 0.96854,-0.33682 0.9788,-0.42671 0.98507,-0.51501 0.98733,-0.60134 0.98551,-0.68535 0.97964,-0.76666 0.96972,-0.84493 0.9558,-0.91981 0.93789,-0.991 0.9161,-1.05816 0.89047,-1.12102 0.86115,-1.17927 0.82821,-1.23269 0.79183,-1.28102 0.75213,-1.32407 0.70929,-1.36162 0.66348,-1.39353 0.61492,-1.41965 0.56379,-1.43988 0.51033,-1.4541 0.45475,-1.4623 0.3973,-1.4644 0.33824,-1.46042 0.2778,-1.4504 0.21626,-1.43435 0.15387,-1.41238 0.0909,-1.38458 0.0276,-1.35109"
inkscape:connector-curvature="0" />
<path
id="path3076"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 309.38861,211.4368 -0.0296,-1.09375 -0.0822,-1.057 -0.13432,-1.01597 -0.18585,-0.9708 -0.23656,-0.92174 -0.28622,-0.86897 -0.33465,-0.81272 -0.38165,-0.75325 -0.42701,-0.6908 -0.47056,-0.62564 -0.51215,-0.55806 -0.55159,-0.48831 -0.58872,-0.41671 -0.62342,-0.34356 -0.65555,-0.26914 -0.68499,-0.19375 -0.71162,-0.11774 -0.73535,-0.0414 -0.75611,0.0351 -0.7738,0.1112 -0.78839,0.18677 -0.7998,0.26148 -0.80801,0.33504 -0.81301,0.40717 -0.81478,0.47756 -0.81331,0.54598 -0.80863,0.61215 -0.80075,0.67581 -0.78974,0.73674 -0.77562,0.79469 -0.75845,0.84946 -0.73833,0.90085 -0.7153,0.94864 -0.6895,0.99267 -0.661,1.03279 -0.62991,1.06883 -0.59638,1.10066 -0.56051,1.12817 -0.52246,1.15126 -0.48235,1.16981 -0.44036,1.1838 -0.39664,1.19314 -0.35135,1.19781 -0.30466,1.19778 -0.25677,1.19304 -0.20783,1.18362 -0.15805,1.16955 -0.10761,1.15087 -0.0567,1.12763 -0.006,1.09995 0.0457,1.06788 0.0969,1.03158 0.14765,0.99115 0.19794,0.94675 0.2475,0.89853 0.29615,0.84669 0.3437,0.79141 0.38995,0.73289 0.43472,0.67136 0.47782,0.60705 0.51908,0.54021 0.55833,0.4711 0.59541,0.39998 0.63015,0.32713 0.66242,0.25284 0.69208,0.1774 0.71898,0.10112 0.74302,0.0243 0.76409,-0.0527 0.78209,-0.12969 0.79695,-0.20626 0.80857,-0.28208 0.81692,-0.35688 0.82195,-0.43033 0.82361,-0.50213 0.82191,-0.57196 0.81683,-0.63954 0.8084,-0.70457 0.79663,-0.76679 0.78157,-0.8259 0.76328,-0.88168 0.74182,-0.93386 0.71729,-0.98224 0.68978,-1.0266 0.6594,-1.06673 0.6263,-1.10249 0.59057,-1.13368 0.55242,-1.16022 0.51196,-1.18194 0.46938,-1.19879 0.42487,-1.21067 0.37862,-1.21755 0.3308,-1.21939 0.28164,-1.21619 0.23134,-1.20798 0.18013,-1.19478 0.12819,-1.17666 0.0758,-1.15372 0.0231,-1.12603"
inkscape:connector-curvature="0" />
<path
id="path3078"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 311.95843,213.46722 -0.0284,-1.01571 -0.0772,-0.98172 -0.12564,-0.94373 -0.17354,-0.90193 -0.22066,-0.85649 -0.26683,-0.80762 -0.31184,-0.7555 -0.35552,-0.7004 -0.3977,-0.64251 -0.43819,-0.5821 -0.47686,-0.51942 -0.51352,-0.45474 -0.54806,-0.38831 -0.58032,-0.32043 -0.61021,-0.25136 -0.63758,-0.18138 -0.66236,-0.11079 -0.68443,-0.0399 -0.70374,0.0311 -0.72019,0.10186 -0.73375,0.17209 -0.74436,0.24153 -0.752,0.30991 -0.75663,0.37696 -0.75825,0.44244 -0.75687,0.50607 -0.75248,0.56762 -0.74513,0.62685 -0.73484,0.68355 -0.72166,0.73749 -0.70564,0.78847 -0.68686,0.8363 -0.66539,0.8808 -0.64131,0.92182 -0.61472,0.95917 -0.58573,0.99274 -0.55446,1.0224 -0.521,1.04804 -0.48551,1.06954 -0.44812,1.08686 -0.40896,1.0999 -0.3682,1.10862 -0.32597,1.11299 -0.28246,1.11299 -0.23782,1.10861 -0.19222,1.09987 -0.14583,1.08679 -0.0988,1.06942 -0.0514,1.04784 -0.004,1.02208 0.044,0.99228 0.0916,0.95851 0.13885,0.92093 0.18564,0.87964 0.23175,0.83481 0.277,0.78662 0.32122,0.73523 0.3642,0.68083 0.40581,0.62365 0.44586,0.56388 0.48417,0.50177 0.52061,0.43756 0.55501,0.37149 0.58724,0.30382 0.61716,0.23482 0.64463,0.16476 0.66954,0.0939 0.69179,0.0226 0.71126,-0.0489 0.72788,-0.12035 0.74156,-0.19139 0.75226,-0.26177 0.75989,-0.33118 0.76444,-0.39933 0.76586,-0.46594 0.76417,-0.53073 0.75933,-0.59342 0.75138,-0.65374 0.74033,-0.71146 0.72623,-0.76629 0.70914,-0.81803 0.68911,-0.86644 0.66623,-0.91131 0.64059,-0.95247 0.61229,-0.98972 0.58146,-1.02289 0.54821,-1.05187 0.51271,-1.0765 0.47507,-1.09669 0.43547,-1.11237 0.39408,-1.12344 0.35107,-1.12988 0.30663,-1.13166 0.26093,-1.12876 0.21418,-1.12123 0.16658,-1.10906 0.11831,-1.09235 0.0696,-1.07114 0.0206,-1.04556"
inkscape:connector-curvature="0" />
<path
id="path3080"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 322.44896,207.21615 -0.19795,-0.0821 -0.2031,-0.0789 -0.20804,-0.0756 -0.21276,-0.0722 -0.21728,-0.0687 -0.22156,-0.0651 -0.22564,-0.0616 -0.22946,-0.0579 -0.23308,-0.0542 -0.23644,-0.0504 -0.23957,-0.0465 -0.24246,-0.0426 -0.24509,-0.0387 -0.24748,-0.0348 -0.24962,-0.0307 -0.25151,-0.0267 -0.25313,-0.0226 -0.2545,-0.0186 -0.25561,-0.0145 -0.25647,-0.0103 -0.25705,-0.006 -0.25738,-0.002 -0.25745,0.002 -0.25725,0.006 -0.25679,0.0103 -0.25607,0.0145 -0.2551,0.0186 -0.25385,0.0226 -0.25235,0.0267 -0.2506,0.0307 -0.24859,0.0348 -0.24632,0.0387 -0.24382,0.0426 -0.24105,0.0465 -0.23804,0.0504 -0.2348,0.0542 -0.23131,0.0579 -0.22759,0.0616 -0.22363,0.0651 -0.21946,0.0687 -0.21506,0.0722 -0.21044,0.0756 -0.20561,0.0789 -0.20057,0.0821 -0.19533,0.0853 -0.18989,0.0883 -0.18426,0.0913 -0.17844,0.0942 -0.17245,0.097 -0.16628,0.0997 -0.15995,0.10224 -0.15345,0.10472 -0.14679,0.1071 -0.14001,0.10936 -0.13306,0.11151 -0.126,0.11355 -0.11881,0.11547 -0.11149,0.11727 -0.10407,0.11897 -0.0965,0.12053 -0.0889,0.12197 -0.0812,0.12329 -0.0734,0.12449 -0.0656,0.12555 -0.0576,0.1265 -0.0497,0.12731 -0.0417,0.12799 -0.0336,0.12855 -0.0255,0.12897 -0.0174,0.12927 -0.009,0.12944 -10e-4,0.12946 0.007,0.12938 0.0152,0.12914 0.0233,0.12879 0.0314,0.12831 0.0394,0.12769 0.0474,0.12695 0.0554,0.12608 0.0633,0.12508 0.0711,0.12396 0.0789,0.12272 0.0865,0.12135 0.0941,0.11986 0.1016,0.11825 0.10898,0.11652 0.11626,0.11468 0.12341,0.11273 0.13044,0.11065 0.13734,0.10848 0.14409,0.10619 0.1507,0.10379 0.15717,0.1013 0.16345,0.0987 0.1696,0.096 0.17555,0.0932 0.18134,0.0903 0.18694,0.0874 0.19236,0.0843"
inkscape:connector-curvature="0" />
<path
id="path3082"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 317.90786,192.02892 -0.1962,-0.0808 -0.20025,-0.0741 -0.20408,-0.0673 -0.20772,-0.0603 -0.21115,-0.0534 -0.21436,-0.0464 -0.21735,-0.0393 -0.22014,-0.0322 -0.22269,-0.0251 -0.22502,-0.0179 -0.22712,-0.0107 -0.229,-0.004 -0.23064,0.004 -0.23205,0.0109 -0.23323,0.0181 -0.23416,0.0253 -0.23487,0.0324 -0.23533,0.0396 -0.23555,0.0466 -0.23554,0.0537 -0.23529,0.0607 -0.2348,0.0676 -0.23406,0.0744 -0.2331,0.0812 -0.2319,0.0879 -0.23046,0.0945 -0.22879,0.10102 -0.22688,0.10743 -0.22475,0.11373 -0.22238,0.11991 -0.2198,0.12598 -0.21698,0.13192 -0.21396,0.13773 -0.2107,0.14339 -0.20724,0.14891 -0.20357,0.15427 -0.19968,0.15949 -0.1956,0.16454 -0.19133,0.16943 -0.18684,0.17413 -0.18218,0.17867 -0.17733,0.18302 -0.1723,0.18719 -0.1671,0.19117 -0.16173,0.19495 -0.15618,0.19853 -0.1505,0.20192 -0.14464,0.20509 -0.13865,0.20807 -0.13252,0.21082 -0.12625,0.21337 -0.11986,0.21569 -0.11334,0.21781 -0.10671,0.21969 -0.1,0.22136 -0.0931,0.2228 -0.0862,0.22401 -0.0792,0.225 -0.0721,0.22576 -0.0649,0.22629 -0.0577,0.22659 -0.0504,0.22666 -0.0431,0.2265 -0.0357,0.22612 -0.0283,0.2255 -0.0208,0.22465 -0.0134,0.22359 -0.006,0.22229 0.002,0.22077 0.009,0.21902 0.0165,0.21706 0.024,0.21487 0.0314,0.21247 0.0388,0.20986 0.0461,0.20703 0.0534,0.20399 0.0607,0.20076 0.0679,0.19731 0.075,0.19368 0.082,0.18984 0.089,0.18581 0.0958,0.18161 0.10258,0.1772 0.10924,0.17264 0.11578,0.1679 0.1222,0.16298 0.1285,0.15791 0.13468,0.15268 0.1407,0.14729 0.14659,0.14176 0.15233,0.13608 0.15792,0.13028 0.16334,0.12434 0.1686,0.11828 0.17369,0.11211 0.1786,0.10581 0.18333,0.0994 0.18788,0.0929 0.19224,0.0863"
inkscape:connector-curvature="0" />
<path
id="path3084"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 306.45744,188.20338 -0.19387,-0.0799 -0.19522,-0.0723 -0.19638,-0.0647 -0.19734,-0.057 -0.19812,-0.0492 -0.19868,-0.0414 -0.19905,-0.0335 -0.19922,-0.0256 -0.19919,-0.0177 -0.19895,-0.01 -0.19853,-0.002 -0.19789,0.006 -0.19706,0.0142 -0.19604,0.0221 -0.1948,0.0301 -0.19338,0.038 -0.19177,0.0458 -0.18995,0.0536 -0.18795,0.0614 -0.18575,0.0691 -0.18337,0.0768 -0.1808,0.0843 -0.17805,0.0918 -0.17513,0.0992 -0.17201,0.10651 -0.16873,0.11371 -0.16528,0.12078 -0.16165,0.12773 -0.15787,0.13456 -0.15393,0.14126 -0.14982,0.14781 -0.14556,0.15421 -0.14116,0.16046 -0.13662,0.16655 -0.13193,0.17248 -0.12711,0.17822 -0.12216,0.18379 -0.11708,0.18918 -0.1119,0.19437 -0.10658,0.19936 -0.10116,0.20417 -0.0956,0.20875 -0.09,0.21314 -0.0843,0.2173 -0.0785,0.22125 -0.0726,0.22497 -0.0667,0.22846 -0.0607,0.23173 -0.0546,0.23475 -0.0485,0.23755 -0.0423,0.24009 -0.036,0.24241 -0.0298,0.24446 -0.0235,0.24628 -0.0171,0.24785 -0.0108,0.24915 -0.004,0.25022 0.002,0.25102 0.008,0.25157 0.0146,0.25187 0.021,0.25191 0.0273,0.2517 0.0336,0.25122 0.0398,0.2505 0.046,0.24952 0.0522,0.24828 0.0583,0.2468 0.0643,0.24507 0.0703,0.24308 0.0763,0.24085 0.0821,0.23837 0.0878,0.23566 0.0935,0.2327 0.0991,0.22951 0.10454,0.22609 0.10991,0.22243 0.11515,0.21855 0.12028,0.21446 0.1253,0.21013 0.13018,0.20561 0.13492,0.20086 0.13954,0.19593 0.14401,0.19079 0.14834,0.18546 0.1525,0.17993 0.15653,0.17424 0.16038,0.16836 0.16407,0.16232 0.16761,0.15611 0.17096,0.14974 0.17415,0.14322 0.17715,0.13657 0.17999,0.12977 0.18262,0.12284 0.18509,0.1158 0.18736,0.10862 0.18944,0.10136 0.19133,0.094 0.19303,0.0865"
inkscape:connector-curvature="0" />
<path
id="path3086"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 292.6687,196.92756 -0.19186,-0.0797 -0.19004,-0.0742 -0.18803,-0.0686 -0.18584,-0.0629 -0.18347,-0.0572 -0.18089,-0.0514 -0.17816,-0.0455 -0.17522,-0.0397 -0.17213,-0.0337 -0.16886,-0.0278 -0.16541,-0.0218 -0.1618,-0.0158 -0.15802,-0.01 -0.1541,-0.004 -0.15,0.002 -0.14577,0.008 -0.14137,0.0144 -0.13685,0.0205 -0.13218,0.0265 -0.12737,0.0325 -0.12244,0.0384 -0.11738,0.0443 -0.1122,0.0502 -0.10691,0.056 -0.10151,0.0618 -0.096,0.0675 -0.0904,0.0732 -0.0847,0.0788 -0.0789,0.0843 -0.0731,0.0897 -0.0671,0.095 -0.0611,0.10023 -0.055,0.10538 -0.0489,0.1104 -0.0427,0.11532 -0.0365,0.12013 -0.0302,0.12482 -0.0239,0.12937 -0.0176,0.13382 -0.0112,0.13811 -0.005,0.14227 0.001,0.14629 0.008,0.15016 0.0142,0.15388 0.0206,0.15745 0.0269,0.16086 0.0332,0.1641 0.0395,0.16718 0.0457,0.1701 0.0519,0.17284 0.0581,0.1754 0.0642,0.17779 0.0702,0.18 0.0761,0.18203 0.082,0.18387 0.0878,0.18553 0.0935,0.187 0.0991,0.18827 0.10462,0.18936 0.11003,0.19026 0.11532,0.19096 0.1205,0.19147 0.12556,0.19178 0.1305,0.1919 0.13529,0.19182 0.13995,0.19155 0.14447,0.19109 0.14885,0.19042 0.15307,0.18957 0.15714,0.18852 0.16104,0.18728 0.16479,0.18584 0.16837,0.18423 0.17177,0.18242 0.175,0.18043 0.17806,0.17825 0.18092,0.17589 0.18361,0.17335 0.18612,0.17063 0.18842,0.16775 0.19055,0.16469 0.19246,0.16146 0.1942,0.15807 0.19573,0.15452 0.19706,0.1508 0.19818,0.14695 0.19912,0.14294 0.19985,0.13877 0.20036,0.13449 0.20069,0.13004 0.2008,0.12548 0.20071,0.12079 0.20042,0.11598 0.19991,0.11104 0.19922,0.106 0.19832,0.10085 0.19721,0.0956 0.1959,0.0902 0.1944,0.0848"
inkscape:connector-curvature="0" />
<path
id="path3088"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 281.78069,214.67052 -0.19093,-0.0802 -0.18663,-0.0787 -0.18214,-0.0772 -0.17746,-0.0756 -0.17262,-0.0739 -0.16759,-0.0722 -0.1624,-0.0704 -0.15705,-0.0685 -0.15153,-0.0665 -0.14586,-0.0645 -0.14005,-0.0624 -0.1341,-0.0602 -0.128,-0.058 -0.12178,-0.0557 -0.11543,-0.0534 -0.10896,-0.051 -0.1024,-0.0486 -0.0957,-0.0461 -0.0889,-0.0436 -0.0821,-0.041 -0.0751,-0.0384 -0.0681,-0.0357 -0.061,-0.033 -0.0538,-0.0303 -0.0466,-0.0275 -0.0393,-0.0247 -0.032,-0.0219 -0.0246,-0.0191 -0.0172,-0.0162 -0.01,-0.0134 -0.002,-0.0104 0.005,-0.008 0.0124,-0.005 0.0198,-0.002 0.0272,10e-4 0.0346,0.004 0.0419,0.007 0.0492,0.01 0.0564,0.0129 0.0636,0.0158 0.0708,0.0186 0.0778,0.0215 0.0848,0.0243 0.0917,0.0271 0.0985,0.0299 0.10525,0.0327 0.11186,0.0354 0.11836,0.0381 0.12474,0.0408 0.131,0.0434 0.13713,0.046 0.14312,0.0485 0.14897,0.051 0.15466,0.0534 0.16022,0.0558 0.16559,0.0581 0.17081,0.0603 0.17585,0.0625 0.18071,0.0647 0.18541,0.0667 0.18989,0.0687 0.1942,0.0707 0.19831,0.0725 0.20221,0.0743 0.20592,0.076 0.20941,0.0777 0.21268,0.0792 0.21575,0.0807 0.2186,0.0821 0.22121,0.0834 0.22362,0.0846 0.22578,0.0858 0.22772,0.0868 0.22943,0.0878 0.2309,0.0887 0.23214,0.0894 0.23314,0.0901 0.23391,0.0908 0.23443,0.0913 0.23472,0.0917 0.23477,0.092 0.23457,0.0922 0.23414,0.0924 0.23347,0.0924 0.23257,0.0923 0.23141,0.0922 0.23004,0.092 0.22842,0.0916 0.22657,0.0912 0.2245,0.0907 0.22218,0.0901 0.21966,0.0893 0.21689,0.0885 0.21392,0.0877 0.21072,0.0867 0.20731,0.0856 0.2037,0.0845 0.19986,0.0832 0.19584,0.0819"
inkscape:connector-curvature="0" />
<path
id="path3090"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 277.84572,234.73615 -0.19142,-0.0812 -0.18619,-0.0844 -0.18078,-0.0875 -0.1752,-0.0905 -0.16943,-0.0934 -0.16349,-0.0962 -0.15739,-0.0989 -0.15113,-0.10151 -0.14471,-0.10402 -0.13816,-0.10643 -0.13145,-0.10874 -0.12462,-0.11093 -0.11765,-0.11302 -0.11058,-0.11499 -0.10338,-0.11685 -0.0961,-0.1186 -0.0887,-0.12022 -0.0812,-0.12172 -0.0736,-0.1231 -0.066,-0.12436 -0.0582,-0.1255 -0.0505,-0.12651 -0.0426,-0.12738 -0.0348,-0.12814 -0.0268,-0.12877 -0.0189,-0.12926 -0.0109,-0.12963 -0.003,-0.12987 0.005,-0.12997 0.0131,-0.12994 0.021,-0.12979 0.029,-0.1295 0.0369,-0.12908 0.0448,-0.12853 0.0527,-0.12786 0.0605,-0.12704 0.0682,-0.12611 0.0759,-0.12505 0.0835,-0.12385 0.091,-0.12254 0.0985,-0.12109 0.10578,-0.11953 0.11302,-0.11785 0.12013,-0.11604 0.12713,-0.11412 0.134,-0.11208 0.14074,-0.10992 0.14734,-0.10766 0.15379,-0.10529 0.16009,-0.1028 0.16622,-0.10021 0.17219,-0.0975 0.17798,-0.0947 0.1836,-0.0918 0.18904,-0.0889 0.19427,-0.0858 0.19931,-0.0826 0.20416,-0.0794 0.20879,-0.0761 0.21322,-0.0727 0.21743,-0.0692 0.22141,-0.0656 0.22518,-0.062 0.22871,-0.0584 0.23202,-0.0546 0.23509,-0.0508 0.23791,-0.047 0.2405,-0.0431 0.24285,-0.0391 0.24494,-0.0351 0.24679,-0.0311 0.24838,-0.0271 0.24973,-0.023 0.25081,-0.0189 0.25165,-0.0148 0.25223,-0.0107 0.25254,-0.007 0.25261,-0.002 0.25242,0.002 0.25197,0.006 0.25126,0.0101 0.2503,0.0142 0.24908,0.0183 0.24761,0.0224 0.24589,0.0265 0.24391,0.0306 0.2417,0.0346 0.23923,0.0386 0.23652,0.0425 0.23357,0.0464 0.23038,0.0503 0.22696,0.0541 0.22332,0.0578 0.21943,0.0615 0.21534,0.0651 0.21102,0.0687 0.20649,0.0722 0.20175,0.0756 0.19681,0.0789"
inkscape:connector-curvature="0" />
<path
id="path3092"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 282.40976,249.57444 -0.19314,-0.0825 -0.18893,-0.0891 -0.18453,-0.0957 -0.17995,-0.10208 -0.17518,-0.10842 -0.17024,-0.11465 -0.16512,-0.12076 -0.15984,-0.12676 -0.1544,-0.13263 -0.14879,-0.13837 -0.14304,-0.14396 -0.13715,-0.14942 -0.1311,-0.15473 -0.12493,-0.15988 -0.11864,-0.16488 -0.11222,-0.1697 -0.10568,-0.17436 -0.099,-0.17884 -0.0923,-0.18314 -0.0855,-0.18727 -0.0785,-0.19119 -0.0715,-0.19494 -0.0645,-0.19848 -0.0573,-0.20182 -0.0501,-0.20497 -0.0428,-0.2079 -0.0355,-0.21062 -0.0282,-0.21314 -0.0208,-0.21544 -0.0134,-0.21752 -0.006,-0.21938 10e-4,-0.22102 0.009,-0.22243 0.0162,-0.22363 0.0236,-0.2246 0.031,-0.22533 0.0383,-0.22584 0.0457,-0.22613 0.0529,-0.22618 0.0601,-0.226 0.0673,-0.2256 0.0743,-0.22496 0.0813,-0.22411 0.0883,-0.22301 0.0951,-0.2217 0.10184,-0.22016 0.10849,-0.2184 0.11501,-0.21641 0.12143,-0.2142 0.12771,-0.21179 0.13387,-0.20915 0.1399,-0.2063 0.14579,-0.20324 0.15152,-0.19997 0.1571,-0.19651 0.16253,-0.19284 0.16779,-0.18898 0.17287,-0.18492 0.17779,-0.18068 0.18253,-0.17625 0.18707,-0.17165 0.19143,-0.16687 0.19559,-0.16192 0.19956,-0.1568 0.20333,-0.15154 0.20688,-0.14611 0.21023,-0.14053 0.21336,-0.13482 0.21628,-0.12897 0.21898,-0.12298 0.22145,-0.11688 0.2237,-0.11065 0.22572,-0.10432 0.22752,-0.0979 0.22909,-0.0913 0.23041,-0.0847 0.23151,-0.078 0.23238,-0.0712 0.233,-0.0643 0.23339,-0.0574 0.23354,-0.0504 0.23347,-0.0434 0.23314,-0.0363 0.23259,-0.0291 0.2318,-0.022 0.23077,-0.0148 0.22951,-0.008 0.22803,-4.8e-4 0.2263,0.007 0.22435,0.0139 0.22218,0.0211 0.21977,0.0282 0.21716,0.0353 0.21431,0.0424 0.21126,0.0494 0.20798,0.0564 0.2045,0.0633 0.20082,0.0702 0.19694,0.0769"
inkscape:connector-curvature="0" />
<path
id="path3094"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 293.8939,253.35551 -0.19547,-0.0834 -0.19391,-0.091 -0.19214,-0.0985 -0.19019,-0.10587 -0.18804,-0.11314 -0.1857,-0.1203 -0.18317,-0.12734 -0.18046,-0.13426 -0.17756,-0.14103 -0.17449,-0.14767 -0.17123,-0.15416 -0.1678,-0.16049 -0.1642,-0.16666 -0.16043,-0.17267 -0.15651,-0.1785 -0.15241,-0.18414 -0.14818,-0.18962 -0.14377,-0.19488 -0.13924,-0.19996 -0.13455,-0.20483 -0.12974,-0.2095 -0.12478,-0.21395 -0.1197,-0.21819 -0.1145,-0.2222 -0.10918,-0.226 -0.10375,-0.22955 -0.0982,-0.23289 -0.0926,-0.23598 -0.0869,-0.23883 -0.081,-0.24145 -0.0751,-0.24381 -0.0692,-0.24593 -0.0631,-0.2478 -0.057,-0.24941 -0.0508,-0.25078 -0.0446,-0.25189 -0.0383,-0.25275 -0.0321,-0.25334 -0.0257,-0.25368 -0.0193,-0.25377 -0.013,-0.25359 -0.007,-0.25316 -1.7e-4,-0.25247 0.006,-0.25153 0.0126,-0.25032 0.019,-0.24887 0.0254,-0.24716 0.0317,-0.24521 0.038,-0.243 0.0443,-0.24055 0.0505,-0.23785 0.0566,-0.23492 0.0627,-0.23174 0.0688,-0.22834 0.0748,-0.22469 0.0807,-0.22083 0.0865,-0.21674 0.0922,-0.21243 0.0978,-0.20791 0.10335,-0.20317 0.10877,-0.19824 0.11407,-0.1931 0.11928,-0.18777 0.12434,-0.18225 0.12929,-0.17655 0.13411,-0.17066 0.13879,-0.16461 0.14332,-0.1584 0.14771,-0.15202 0.15195,-0.14549 0.15604,-0.13881 0.15996,-0.13201 0.16373,-0.12506 0.16733,-0.11799 0.17075,-0.11081 0.17401,-0.10351 0.17709,-0.0961 0.18,-0.0886 0.1827,-0.081 0.18524,-0.0734 0.18759,-0.0657 0.18974,-0.0579 0.19171,-0.05 0.19347,-0.0421 0.19505,-0.0342 0.19643,-0.0262 0.19761,-0.0182 0.19859,-0.0102 0.19938,-0.002 0.19995,0.006 0.20033,0.0139 0.20052,0.0219 0.20049,0.0299 0.20026,0.0378 0.19984,0.0457 0.19921,0.0536 0.19839,0.0614 0.19736,0.0691 0.19614,0.0768"
inkscape:connector-curvature="0" />
<path
id="path3096"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 307.93442,244.3036 -0.19751,-0.0837 -0.19924,-0.0892 -0.20077,-0.0946 -0.20209,-0.0999 -0.20321,-0.10511 -0.20411,-0.11022 -0.20483,-0.1152 -0.20531,-0.12007 -0.20561,-0.12483 -0.20567,-0.12946 -0.20555,-0.13395 -0.20521,-0.13831 -0.20465,-0.14253 -0.2039,-0.1466 -0.20292,-0.15053 -0.20176,-0.1543 -0.20037,-0.15792 -0.19879,-0.16137 -0.19701,-0.16466 -0.19502,-0.16779 -0.19283,-0.17074 -0.19045,-0.17351 -0.18788,-0.17612 -0.18511,-0.17854 -0.18215,-0.18078 -0.17901,-0.18283 -0.17569,-0.18471 -0.17218,-0.18638 -0.16851,-0.18788 -0.16466,-0.18917 -0.16065,-0.19029 -0.15646,-0.1912 -0.15213,-0.19191 -0.14764,-0.19244 -0.14299,-0.19276 -0.13821,-0.1929 -0.13328,-0.19283 -0.12822,-0.19257 -0.12304,-0.19211 -0.11771,-0.19146 -0.11229,-0.19062 -0.10673,-0.18957 -0.10109,-0.18834 -0.0953,-0.18691 -0.0895,-0.1853 -0.0835,-0.1835 -0.0775,-0.18152 -0.0714,-0.17934 -0.0652,-0.17699 -0.059,-0.17446 -0.0527,-0.17175 -0.0464,-0.16887 -0.04,-0.16582 -0.0336,-0.1626 -0.0271,-0.15922 -0.0206,-0.15568 -0.0141,-0.15198 -0.008,-0.14813 -10e-4,-0.14414 0.005,-0.13998 0.012,-0.13571 0.0185,-0.13128 0.0249,-0.12674 0.0314,-0.12206 0.0378,-0.11726 0.0442,-0.11234 0.0505,-0.10732 0.0568,-0.10219 0.063,-0.097 0.0692,-0.0916 0.0752,-0.0862 0.0812,-0.0807 0.0872,-0.0751 0.093,-0.0695 0.0987,-0.0637 0.10433,-0.0579 0.10985,-0.0521 0.11527,-0.0462 0.12055,-0.0403 0.12573,-0.0343 0.13077,-0.0283 0.13567,-0.0223 0.14045,-0.0162 0.14507,-0.0101 0.14956,-0.004 0.15389,0.002 0.15806,0.008 0.16207,0.0142 0.16593,0.0202 0.16961,0.0262 0.17313,0.0322 0.17646,0.0382 0.17963,0.0441 0.18261,0.05 0.18541,0.0558 0.18802,0.0616 0.19044,0.0673 0.19268,0.073 0.19471,0.0785"
inkscape:connector-curvature="0" />
<path
id="path3098"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 318.92379,225.8143 -0.19843,-0.0831 -0.20275,-0.0843 -0.20688,-0.0853 -0.21078,-0.0863 -0.21448,-0.0872 -0.21797,-0.088 -0.22121,-0.0887 -0.22425,-0.0893 -0.22705,-0.0898 -0.22963,-0.0902 -0.23197,-0.0906 -0.23406,-0.0908 -0.23594,-0.091 -0.23755,-0.091 -0.23894,-0.091 -0.24007,-0.0909 -0.24097,-0.0907 -0.24162,-0.0904 -0.24201,-0.09 -0.24217,-0.0895 -0.24208,-0.0889 -0.24174,-0.0882 -0.24115,-0.0874 -0.24032,-0.0866 -0.23924,-0.0857 -0.23792,-0.0846 -0.23636,-0.0835 -0.23455,-0.0823 -0.23251,-0.081 -0.23023,-0.0797 -0.22771,-0.0782 -0.22497,-0.0767 -0.22199,-0.0751 -0.21879,-0.0734 -0.21537,-0.0716 -0.21172,-0.0698 -0.20787,-0.0679 -0.20381,-0.0659 -0.19953,-0.0639 -0.19505,-0.0618 -0.19038,-0.0597 -0.18552,-0.0574 -0.18047,-0.0551 -0.17523,-0.0528 -0.16982,-0.0504 -0.16423,-0.048 -0.15849,-0.0455 -0.15259,-0.043 -0.14653,-0.0404 -0.14032,-0.0378 -0.13397,-0.0351 -0.1275,-0.0324 -0.12089,-0.0297 -0.11417,-0.027 -0.10732,-0.0242 -0.10038,-0.0214 -0.0933,-0.0186 -0.0862,-0.0158 -0.079,-0.0129 -0.0717,-0.01 -0.0643,-0.007 -0.0569,-0.004 -0.0494,-0.001 -0.0419,0.001 -0.0343,0.004 -0.0267,0.007 -0.0191,0.0101 -0.0114,0.0129 -0.004,0.0158 0.004,0.0186 0.0115,0.0214 0.0191,0.0242 0.0267,0.0269 0.0343,0.0297 0.0419,0.0324 0.0493,0.035 0.0568,0.0376 0.0642,0.0402 0.0715,0.0428 0.0787,0.0453 0.0859,0.0477 0.0929,0.0501 0.0999,0.0525 0.10678,0.0548 0.11354,0.057 0.12019,0.0592 0.1267,0.0614 0.1331,0.0634 0.13936,0.0654 0.14548,0.0674 0.15144,0.0692 0.15726,0.071 0.16292,0.0728 0.16841,0.0744 0.17374,0.076 0.17889,0.0775 0.18385,0.0789 0.18864,0.0803 0.19324,0.0815"
inkscape:connector-curvature="0" />
<path
id="path3100"
style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
d="m 322.44896,207.21615 -0.19795,-0.0821 -0.2031,-0.0789 -0.20804,-0.0756 -0.21276,-0.0722 -0.21728,-0.0687 -0.22156,-0.0651 -0.22564,-0.0616 -0.22946,-0.0579 -0.23308,-0.0542 -0.23644,-0.0504 -0.23957,-0.0465 -0.24246,-0.0426 -0.24509,-0.0387 -0.24748,-0.0348 -0.24962,-0.0307 -0.25151,-0.0267 -0.25313,-0.0226 -0.2545,-0.0186 -0.25561,-0.0145 -0.25647,-0.0103 -0.25705,-0.006 -0.25738,-0.002 -0.25745,0.002 -0.25725,0.006 -0.25679,0.0103 -0.25607,0.0145 -0.2551,0.0186 -0.25385,0.0226 -0.25235,0.0267 -0.2506,0.0307 -0.24859,0.0348 -0.24632,0.0387 -0.24382,0.0426 -0.24105,0.0465 -0.23804,0.0504 -0.2348,0.0542 -0.23131,0.0579 -0.22759,0.0616 -0.22363,0.0651 -0.21946,0.0687 -0.21506,0.0722 -0.21044,0.0756 -0.20561,0.0789 -0.20057,0.0821 -0.19533,0.0853 -0.18989,0.0883 -0.18426,0.0913 -0.17844,0.0942 -0.17245,0.097 -0.16628,0.0997 -0.15995,0.10224 -0.15345,0.10472 -0.14679,0.1071 -0.14001,0.10936 -0.13306,0.11151 -0.126,0.11355 -0.11881,0.11547 -0.11149,0.11727 -0.10407,0.11897 -0.0965,0.12053 -0.0889,0.12197 -0.0812,0.12329 -0.0734,0.12449 -0.0656,0.12555 -0.0576,0.1265 -0.0497,0.12731 -0.0417,0.12799 -0.0336,0.12855 -0.0255,0.12897 -0.0174,0.12927 -0.009,0.12944 -10e-4,0.12946 0.007,0.12938 0.0152,0.12914 0.0233,0.12879 0.0314,0.12831 0.0394,0.12769 0.0474,0.12695 0.0554,0.12608 0.0633,0.12508 0.0711,0.12396 0.0789,0.12272 0.0865,0.12135 0.0941,0.11986 0.1016,0.11825 0.10898,0.11652 0.11626,0.11468 0.12341,0.11273 0.13044,0.11065 0.13734,0.10848 0.14409,0.10619 0.1507,0.10379 0.15717,0.1013 0.16345,0.0987 0.1696,0.096 0.17555,0.0932 0.18134,0.0903 0.18694,0.0874 0.19236,0.0843"
inkscape:connector-curvature="0" />
</g>
</g>
<g
transform="matrix(-0.68787051,0.9440588,-0.9440588,-0.68787051,458.356,194.51802)"
id="g11253">
<path
id="path11255"
style="fill:none;stroke:#000000;stroke-width:0.85610521;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 14.641,-12.367 -0.464,-1.318"
inkscape:connector-curvature="0" />
</g>
<path
id="path11257"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 458.356,198.77383 1.55581,-4.25581 1.57091,4.25204 c -0.9214,-0.67878 -2.18644,-0.67123 -3.12672,0.004 z"
inkscape:connector-curvature="0" />
<g
style="fill:#ffffff;stroke:#ff00ff;stroke-width:2.07378769;stroke-miterlimit:4;stroke-dasharray:4.14757531, 2.07378764999999987;stroke-dashoffset:0"
transform="matrix(0.9440588,-0.31575085,0.3561679,0.8660937,458.356,194.51802)"
id="g11271">
<path
id="path11273"
style="fill:#ffffff;stroke:#ff00ff;stroke-width:2.07378769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.14757531, 2.07378764999999987;stroke-dashoffset:0;stroke-opacity:1"
d="m 16.502,138.147 c 0,14.971 -6.13,27.11 -13.689,27.11 -7.558,-0.001 -13.687,-12.135 -13.686,-27.11 0,-14.971 6.125,-27.108 13.687,-27.106 7.558,0.001 13.688,12.135 13.688,27.106 z"
inkscape:connector-curvature="0" />
</g>
<g
style="fill:#ffffff;stroke:#ff00ff;stroke-width:2.07378769;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(0.9440588,-0.31575085,0.3561679,0.8660937,458.356,194.51802)"
id="g11275">
<path
id="path11277"
style="fill:#ffffff;stroke:#ff00ff;stroke-width:2.07378769;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 3.151,111.049 c 7.557,0.367 13.535,12.799 13.346,27.764 -0.16,13.086 -5.024,24.074 -11.552,26.114"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(-0.45941205,-0.9440588,0.9440588,-0.45941205,458.356,194.51802)"
id="g11283">
<path
id="path11285"
style="fill:none;stroke:#000000;stroke-width:0.95246446;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -227.973,0.924 -16.805,12.29"
inkscape:connector-curvature="0" />
</g>
<path
id="path11287"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 580.67392,416.37183 3.0276,3.37029 -4.48711,-0.60419 c 1.02808,-0.49847 1.61811,-1.61907 1.45951,-2.7661 z"
inkscape:connector-curvature="0" />
<g
style="stroke:#ff00ff;stroke-width:1.62239146"
transform="matrix(-0.58189333,0,0,0.58189333,549.79529,207.85005)"
id="g11489">
<path
sodipodi:nodetypes="cc"
id="path11491"
style="fill:none;stroke:#ff00ff;stroke-width:1.03111684;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 59.605,147.59408 V 36.812"
inkscape:connector-curvature="0" />
</g>
<g
style="display:inline;stroke-width:2.10552835;stroke-miterlimit:4;stroke-dasharray:none;stroke:#ff00ff"
id="g5532"
transform="matrix(0.44525643,0,0,0.44525643,369.12725,162.37622)">
<g
style="stroke-width:2.10552835;stroke-miterlimit:4;stroke-dasharray:none;stroke:#ff00ff"
id="g5536">
<circle
r="22.080509"
cy="117.76271"
cx="323.43857"
style="fill:none;stroke:#ff00ff;stroke-width:2.10552835;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path5328"
transform="translate(0,-5e-6)" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#ff00ff;stroke-width:2.10552835;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 300.58592,140.94531 346.09373,95.242183"
id="path5529-9"
sodipodi:nodetypes="cc" />
</g>
</g>
<g
id="g16003"
ns1:jacobian_sqrt="1.641491"
inkscapeversion="0.48.5"
ns1:alignment="middle center"
ns1:scale="1.23111859711"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\default_packages.tex"
ns1:text="Desired periodic orbit"
ns1:pdfconverter="pdf2svg"
ns1:texconverter="pdflatex"
ns1:version="0.8.0"
transform="matrix(1.641491,0,0,1.641491,169.38218,207.23369)">
<g
id="g16001">
<g
id="g15965"
style="fill:#000000;fill-opacity:1">
<path
id="path15951"
transform="translate(148.712,134.765)"
d="M 0.34375,-6.8125 V -6.5 h 0.25 c 0.765625,0 0.78125,0.109375 0.78125,0.46875 v 5.25 c 0,0.359375 -0.015625,0.46875 -0.78125,0.46875 h -0.25 V 0 H 4 C 5.671875,0 7.046875,-1.46875 7.046875,-3.34375 7.046875,-5.25 5.703125,-6.8125 4,-6.8125 Z m 2.375,6.5 C 2.25,-0.3125 2.234375,-0.375 2.234375,-0.703125 V -6.09375 C 2.234375,-6.4375 2.25,-6.5 2.71875,-6.5 h 1 c 0.625,0 1.3125,0.21875 1.8125,0.921875 0.4375,0.59375 0.515625,1.453125 0.515625,2.234375 0,1.09375 -0.1875,1.703125 -0.546875,2.1875 -0.203125,0.265625 -0.765625,0.84375 -1.765625,0.84375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15953"
transform="translate(156.32243,134.765)"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15955"
transform="translate(160.74981,134.765)"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15957"
transform="translate(164.67906,134.765)"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15959"
transform="translate(167.44667,134.765)"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15961"
transform="translate(171.34902,134.765)"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15963"
transform="translate(175.7764,134.765)"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
<g
id="g15969"
style="fill:#000000;fill-opacity:1">
<path
id="path15967"
transform="translate(184.62917,134.765)"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
<g
id="g15979"
style="fill:#000000;fill-opacity:1">
<path
id="path15971"
transform="translate(190.44334,134.765)"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15973"
transform="translate(194.87072,134.765)"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15975"
transform="translate(198.77307,134.765)"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15977"
transform="translate(201.54068,134.765)"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
<g
id="g15987"
style="fill:#000000;fill-opacity:1">
<path
id="path15981"
transform="translate(206.80093,134.765)"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15983"
transform="translate(212.33615,134.765)"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15985"
transform="translate(215.10376,134.765)"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
<g
id="g15999"
style="fill:#000000;fill-opacity:1">
<path
id="path15989"
transform="translate(222.84869,134.765)"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15991"
transform="translate(227.82999,134.765)"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15993"
transform="translate(231.73234,134.765)"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15995"
transform="translate(237.26756,134.765)"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path15997"
transform="translate(240.03517,134.765)"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
transform="matrix(1.641491,0,0,1.641491,181.57951,258.59547)"
ns1:version="0.8.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="$\\tilde{y}_1$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
inkscapeversion="0.48.5"
ns1:jacobian_sqrt="1.641491"
id="g17398">
<g
id="g17396">
<g
style="fill:#000000;fill-opacity:1"
id="g17386">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 4.140625,-6.515625 3.984375,-6.65625 c 0,0 -0.375,0.46875 -0.8125,0.46875 -0.234375,0 -0.484375,-0.140625 -0.65625,-0.25 C 2.25,-6.59375 2.078125,-6.65625 1.90625,-6.65625 c -0.375,0 -0.578125,0.21875 -1.078125,0.78125 l 0.15625,0.140625 c 0,0 0.375,-0.46875 0.8125,-0.46875 0.234375,0 0.484375,0.140625 0.65625,0.234375 0.265625,0.171875 0.453125,0.234375 0.625,0.234375 0.375,0 0.5625,-0.21875 1.0625,-0.78125 z m 0,0"
transform="translate(149.396,134.765)"
id="path17384" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g17390">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
transform="translate(148.712,134.765)"
id="path17388" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g17394">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0"
transform="translate(153.597,136.259)"
id="path17392" />
</g>
</g>
</g>
<g
id="g17676"
ns1:jacobian_sqrt="1.641491"
inkscapeversion="0.48.5"
ns1:alignment="middle center"
ns1:scale="1.23111859711"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\default_packages.tex"
ns1:text="$\\tilde{y}_1$"
ns1:pdfconverter="pdf2svg"
ns1:texconverter="pdflatex"
ns1:version="0.8.0"
transform="matrix(1.641491,0,0,1.641491,326.9,185.72215)">
<g
id="g17674">
<g
id="g17664"
style="fill:#000000;fill-opacity:1">
<path
id="path17662"
transform="translate(149.396,134.765)"
d="M 4.140625,-6.515625 3.984375,-6.65625 c 0,0 -0.375,0.46875 -0.8125,0.46875 -0.234375,0 -0.484375,-0.140625 -0.65625,-0.25 C 2.25,-6.59375 2.078125,-6.65625 1.90625,-6.65625 c -0.375,0 -0.578125,0.21875 -1.078125,0.78125 l 0.15625,0.140625 c 0,0 0.375,-0.46875 0.8125,-0.46875 0.234375,0 0.484375,0.140625 0.65625,0.234375 0.265625,0.171875 0.453125,0.234375 0.625,0.234375 0.375,0 0.5625,-0.21875 1.0625,-0.78125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
<g
id="g17668"
style="fill:#000000;fill-opacity:1">
<path
id="path17666"
transform="translate(148.712,134.765)"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
<g
id="g17672"
style="fill:#000000;fill-opacity:1">
<path
id="path17670"
transform="translate(153.597,136.259)"
d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
id="g17936"
ns1:jacobian_sqrt="1.641491"
inkscapeversion="0.48.5"
ns1:alignment="middle center"
ns1:scale="1.23111859711"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\default_packages.tex"
ns1:text="$\\tilde{y}_2$"
ns1:pdfconverter="pdf2svg"
ns1:texconverter="pdflatex"
ns1:version="0.8.0"
transform="matrix(1.641491,0,0,1.641491,43.750357,2.899597)">
<g
id="g17934">
<g
id="g17924"
style="fill:#000000;fill-opacity:1">
<path
inkscape:connector-curvature="0"
id="path17922"
transform="translate(149.396,134.765)"
d="M 4.140625,-6.515625 3.984375,-6.65625 c 0,0 -0.375,0.46875 -0.8125,0.46875 -0.234375,0 -0.484375,-0.140625 -0.65625,-0.25 C 2.25,-6.59375 2.078125,-6.65625 1.90625,-6.65625 c -0.375,0 -0.578125,0.21875 -1.078125,0.78125 l 0.15625,0.140625 c 0,0 0.375,-0.46875 0.8125,-0.46875 0.234375,0 0.484375,0.140625 0.65625,0.234375 0.265625,0.171875 0.453125,0.234375 0.625,0.234375 0.375,0 0.5625,-0.21875 1.0625,-0.78125 z m 0,0"
style="stroke:none;stroke-width:0" />
</g>
<g
id="g17928"
style="fill:#000000;fill-opacity:1">
<path
inkscape:connector-curvature="0"
id="path17926"
transform="translate(148.712,134.765)"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:none;stroke-width:0" />
</g>
<g
id="g17932"
style="fill:#000000;fill-opacity:1">
<path
inkscape:connector-curvature="0"
id="path17930"
transform="translate(153.597,136.259)"
d="M 3.515625,-1.265625 H 3.28125 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 C 3.046875,-0.59375 2.515625,-0.59375 2.40625,-0.59375 H 1.125 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 h 2.875 z m 0,0"
style="stroke:none;stroke-width:0" />
</g>
</g>
</g>
<g
transform="matrix(1.641491,0,0,1.641491,221.03283,-15.425275)"
ns1:version="0.8.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="$\\tilde{y}_2$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
inkscapeversion="0.48.5"
ns1:jacobian_sqrt="1.641491"
id="g18450">
<g
id="g18448">
<g
style="fill:#000000;fill-opacity:1"
id="g18438">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 4.140625,-6.515625 3.984375,-6.65625 c 0,0 -0.375,0.46875 -0.8125,0.46875 -0.234375,0 -0.484375,-0.140625 -0.65625,-0.25 C 2.25,-6.59375 2.078125,-6.65625 1.90625,-6.65625 c -0.375,0 -0.578125,0.21875 -1.078125,0.78125 l 0.15625,0.140625 c 0,0 0.375,-0.46875 0.8125,-0.46875 0.234375,0 0.484375,0.140625 0.65625,0.234375 0.265625,0.171875 0.453125,0.234375 0.625,0.234375 0.375,0 0.5625,-0.21875 1.0625,-0.78125 z m 0,0"
transform="translate(149.396,134.765)"
id="path18436" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g18442">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
transform="translate(148.712,134.765)"
id="path18440" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g18446">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 3.515625,-1.265625 H 3.28125 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 C 3.046875,-0.59375 2.515625,-0.59375 2.40625,-0.59375 H 1.125 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 h 2.875 z m 0,0"
transform="translate(153.597,136.259)"
id="path18444" />
</g>
</g>
</g>
<g
transform="matrix(1.641491,0,0,1.641491,-38.813299,204.08725)"
ns1:version="0.8.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="$\\bar{y}$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
inkscapeversion="0.92.3"
ns1:jacobian_sqrt="1.641491"
id="g21623">
<g
id="g21621">
<g
style="fill:#000000;fill-opacity:1"
id="g21615">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 4.28125,-5.578125 V -5.875 H 0.6875 v 0.296875 z m 0,0"
transform="translate(149.396,134.765)"
id="path21613" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g21619">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
transform="translate(148.712,134.765)"
id="path21617" />
</g>
</g>
</g>
<path
inkscape:connector-curvature="0"
id="path21998"
d="m 305.98273,422.07185 -11.08015,-8.09704"
style="fill:none;stroke:#000000;stroke-width:0.9375;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1.875, 5.62500001;stroke-dashoffset:0;stroke-opacity:1" />
<g
style="stroke-width:1.24498105;fill:#ff00ff;stroke:#ff00ff"
transform="matrix(0.80129144,0,0,0.80516338,199.17,28.788737)"
id="g22006">
<g
style="stroke-width:1.24498105;fill:#ff00ff;stroke:#ff00ff"
id="g10982"
transform="matrix(1.0919877,0,0,1.0919877,160.46715,232.32192)">
<path
inkscape:connector-curvature="0"
d="M 221.309,134.328 194.223,89.133"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0.6840632;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path10984" />
</g>
<g
style="stroke-width:1.24498105;fill:#ff00ff;stroke:#ff00ff"
id="g10986"
transform="matrix(-0.65437691,-1.0919877,1.0919877,-0.65437691,160.46715,232.32192)">
<path
inkscape:connector-curvature="0"
d="m -192.297,103.605 1.647,-1.646 -5.765,1.648 5.764,1.645 z"
style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#ff00ff;stroke-width:0.58677226;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path10988" />
</g>
<g
style="stroke-width:1.24498105;fill:#ff00ff;stroke:#ff00ff"
id="g10990"
transform="matrix(0.65437691,1.0919877,-1.0919877,0.65437691,160.46715,232.32192)">
<path
inkscape:connector-curvature="0"
d="m 155.336,-103.606 1.647,-1.646 -5.765,1.647 5.764,1.646 z"
style="fill:#ff00ff;fill-opacity:1;fill-rule:evenodd;stroke:#ff00ff;stroke-width:0.58677226;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path10992" />
</g>
</g>
<path
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0"
id="path22008"
d="M 327.24743,315.57871 310.81666,290.79854"
style="fill:#008000;stroke:#008000;stroke-width:0.93750006px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#Arrow1Mend)" />
<path
sodipodi:nodetypes="cc"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0.93750006px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;marker-end:url(#marker22364)"
d="m 327.24743,315.57871 14.1187,-16.53666"
id="path22360"
inkscape:connector-curvature="0" />
<g
transform="matrix(1.64149 0 0 1.64149 205.783 160.439)"
ns1:version="1.0.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="inkscape"
ns1:text="\\noindent Mathematical abstraction using the example \\\\\nof generation of periodic oscillations"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\textext\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
ns1:inkscapeversion="1.0rc1"
ns1:jacobian_sqrt="1.64149"
id="g939">
<defs
id="id-78cb02b0-e4e2-4a9b-a839-80798010dc96">
<g
id="id-4e0b2947-4b1c-46c3-ab7e-0f5afe950ca5">
<symbol
id="id-4e78385b-8860-47b0-b3cb-deab84135fc5"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-c0673014-90fb-44f2-bc3e-bdd13234a684"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-b78dd795-dcc3-49dd-94a7-1e99954662aa"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-c3d0ea90-1e41-45bb-9125-d5fbf4840f9f"
d="M 2.40625,-6.59375 C 2.3125,-6.8125 2.28125,-6.8125 2.046875,-6.8125 H 0.375 V -6.5 h 0.234375 c 0.765625,0 0.78125,0.109375 0.78125,0.46875 v 4.984375 c 0,0.265625 0,0.734375 -1.015625,0.734375 V 0 c 0.34375,-0.015625 0.828125,-0.03125 1.15625,-0.03125 0.328125,0 0.828125,0.015625 1.171875,0.03125 v -0.3125 c -1.03125,0 -1.03125,-0.46875 -1.03125,-0.734375 v -5.375 H 1.6875 L 4.09375,-0.21875 C 4.140625,-0.09375 4.1875,0 4.28125,0 4.390625,0 4.421875,-0.078125 4.46875,-0.1875 L 6.921875,-6.5 v 5.71875 c 0,0.359375 -0.015625,0.46875 -0.78125,0.46875 H 5.90625 V 0 c 0.359375,-0.03125 1.046875,-0.03125 1.4375,-0.03125 0.375,0 1.046875,0 1.421875,0.03125 v -0.3125 h -0.25 c -0.765625,0 -0.78125,-0.109375 -0.78125,-0.46875 v -5.25 C 7.734375,-6.390625 7.75,-6.5 8.515625,-6.5 h 0.25 v -0.3125 h -1.6875 C 6.8125,-6.8125 6.8125,-6.796875 6.75,-6.625 L 4.5625,-1 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-96321c27-d69e-49e2-9a1b-ae6368099e95"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-b567e6fd-f391-4d42-b33a-44893b452060"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-d7983b15-0f5c-4304-a595-2f662c3ec1a5"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-aa62da92-118a-44c9-ae1c-9a30dd1ffd8d"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-6408af09-b070-4a92-9d60-a5840a80e118"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-14a59372-552a-4bc1-82e0-0c6a008b0e29"
d="m 1.09375,-0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.84375,0 -1.28125,0.59375 -1.453125,0.984375 v -3.5 L 0.3125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-68fc925b-b206-4953-acea-fa7a3e9f389c"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-ed0c1652-47a2-45b1-82f2-63db04e03b91"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-35d93371-58a0-47ca-9e78-317b9743c12f"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-a53bffa3-a6dc-46eb-8015-e3447a676d2c"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-3318a12a-9d03-46c4-a1a2-529389656369"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-8f781a45-7ea4-4c94-b7b8-8c40bb49971b"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-7afe315a-e05f-43d4-9ae0-fa1df2586c1d"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-c33246c8-c96a-48f9-8afc-0f31f3456872"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-3e34788f-dd2f-468a-b8e5-563748b302e5"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-90e89a3d-e28a-45c7-a300-da534e425e3b"
d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-80eee0da-2a19-4c65-bd44-d59a572d43e8"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-2499869b-b277-44a6-8344-d59bc3de267b"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-e98fbe2b-adae-4bda-b4a0-bb9e1103ec38"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-17d289ce-14d4-4f32-b97f-37cc5e3ee675"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-4966b886-031a-4ca0-9062-1b7d21c4fa9e"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-e69cee7b-5e66-4c4e-9d97-160e0a71cbd6"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-411595b5-1ab5-4e08-b2b7-6bd93ec06f9c"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-1b43e8d5-f1fc-426e-a6b7-46c00500d3dd"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-7d3be0b9-0d01-4f64-a45b-451ae0216ac3"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-66831938-ced3-4604-9e34-71a9d77ca5e8"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-fe99fc12-e0d7-4a22-91a2-b38eed1e3829"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-72c5ac30-8c1b-4f8f-9b93-534df5f43b83"
d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-7343325b-68a5-4a1e-bcce-9c15a2f17cbc"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-b4a11ca0-6293-42df-9eb1-75eb15033902"
d="m 2.21875,-1.71875 c -0.875,0 -0.875,-1 -0.875,-1.21875 0,-0.265625 0.015625,-0.59375 0.15625,-0.84375 0.078125,-0.109375 0.3125,-0.390625 0.71875,-0.390625 0.859375,0 0.859375,0.984375 0.859375,1.21875 0,0.265625 0,0.59375 -0.15625,0.84375 C 2.84375,-2 2.609375,-1.71875 2.21875,-1.71875 Z M 1.0625,-1.328125 c 0,-0.03125 0,-0.265625 0.15625,-0.46875 0.390625,0.28125 0.8125,0.3125 1,0.3125 0.921875,0 1.609375,-0.6875 1.609375,-1.453125 0,-0.375 -0.15625,-0.734375 -0.40625,-0.96875 C 3.78125,-4.25 4.140625,-4.296875 4.3125,-4.296875 c 0.03125,0 0.078125,0 0.109375,0.015625 C 4.3125,-4.25 4.25,-4.140625 4.25,-4.015625 c 0,0.171875 0.140625,0.28125 0.296875,0.28125 0.09375,0 0.28125,-0.0625 0.28125,-0.296875 0,-0.171875 -0.109375,-0.484375 -0.5,-0.484375 -0.203125,0 -0.640625,0.0625 -1.0625,0.46875 C 2.84375,-4.375 2.4375,-4.40625 2.21875,-4.40625 c -0.9375,0 -1.625,0.6875 -1.625,1.453125 0,0.4375 0.21875,0.8125 0.46875,1.03125 -0.125,0.140625 -0.3125,0.46875 -0.3125,0.828125 0,0.3125 0.140625,0.6875 0.453125,0.890625 -0.609375,0.15625 -0.921875,0.59375 -0.921875,0.984375 0,0.71875 0.984375,1.265625 2.203125,1.265625 1.171875,0 2.203125,-0.5 2.203125,-1.28125 0,-0.34375 -0.125,-0.859375 -0.640625,-1.140625 -0.53125,-0.265625 -1.109375,-0.265625 -1.71875,-0.265625 -0.25,0 -0.671875,0 -0.75,-0.015625 C 1.265625,-0.703125 1.0625,-1 1.0625,-1.328125 Z M 2.5,1.828125 c -1.015625,0 -1.703125,-0.515625 -1.703125,-1.046875 0,-0.453125 0.375,-0.828125 0.8125,-0.84375 h 0.59375 c 0.859375,0 1.96875,0 1.96875,0.84375 0,0.546875 -0.703125,1.046875 -1.671875,1.046875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-02f77bf1-83d7-4f7f-828e-ba6ad5d00dda"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-4509e190-3096-4e43-a59f-8b948dbed939"
d="M 2.859375,-2.34375 C 3.15625,-2.71875 3.53125,-3.203125 3.78125,-3.46875 4.09375,-3.828125 4.5,-3.984375 4.96875,-3.984375 v -0.3125 c -0.265625,0.015625 -0.5625,0.03125 -0.828125,0.03125 -0.296875,0 -0.828125,-0.015625 -0.953125,-0.03125 v 0.3125 c 0.21875,0.015625 0.296875,0.140625 0.296875,0.3125 0,0.15625 -0.109375,0.28125 -0.15625,0.34375 L 2.71875,-2.546875 1.9375,-3.5625 C 1.84375,-3.65625 1.84375,-3.671875 1.84375,-3.734375 c 0,-0.15625 0.15625,-0.25 0.34375,-0.25 v -0.3125 c -0.25,0.015625 -0.90625,0.03125 -1.078125,0.03125 -0.203125,0 -0.671875,-0.015625 -0.9375,-0.03125 v 0.3125 c 0.703125,0 0.703125,0 1.171875,0.609375 l 0.984375,1.28125 -0.9375,1.1875 C 0.921875,-0.328125 0.328125,-0.3125 0.125,-0.3125 V 0 c 0.25,-0.015625 0.5625,-0.03125 0.828125,-0.03125 0.28125,0 0.703125,0.015625 0.9375,0.03125 v -0.3125 c -0.21875,-0.03125 -0.28125,-0.15625 -0.28125,-0.3125 0,-0.21875 0.28125,-0.546875 0.890625,-1.265625 l 0.765625,1 C 3.34375,-0.78125 3.46875,-0.625 3.46875,-0.5625 c 0,0.09375 -0.09375,0.25 -0.359375,0.25 V 0 C 3.40625,-0.015625 3.96875,-0.03125 4.1875,-0.03125 c 0.265625,0 0.65625,0.015625 0.953125,0.03125 v -0.3125 c -0.53125,0 -0.71875,-0.015625 -0.9375,-0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-d318aa36-10b4-415d-b316-9e5a05734d97"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-417ac211-cda7-420d-8442-c328735458cd"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-26e44af5-42b6-4690-bb41-ff09a8963fbe"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-28820815-4c1b-4103-85e5-b684774e1ee0"
d="m 1.75,-4.296875 v -1.15625 c 0,-0.875 0.46875,-1.359375 0.90625,-1.359375 0.03125,0 0.1875,0 0.328125,0.078125 C 2.875,-6.703125 2.6875,-6.5625 2.6875,-6.3125 c 0,0.21875 0.15625,0.421875 0.4375,0.421875 0.28125,0 0.4375,-0.203125 0.4375,-0.4375 0,-0.375 -0.375,-0.703125 -0.90625,-0.703125 -0.6875,0 -1.546875,0.53125 -1.546875,1.59375 v 1.140625 h -0.78125 v 0.3125 h 0.78125 V -0.75 C 1.109375,-0.3125 1,-0.3125 0.34375,-0.3125 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.40625,0 0.875,0 1.265625,0.03125 V -0.3125 H 2.53125 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 v -3.203125 h 1.125 v -0.3125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-e8de228c-61fc-4cb3-a247-c27ae0811017"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-9219483a-9a6e-4d23-8ce5-f03afd7a3a7b"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:none" />
</symbol>
</g>
</defs>
<g
transform="translate(-134.049, -127.843)"
id="id-39a0d064-d1b2-4175-9d77-7ad971c64c46">
<g
id="id-d26c113d-7edd-45c3-a5f3-97cf5d61c6fc"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(133.768, 134.765)"
id="g711">
<path
inkscape:connector-curvature="0"
id="id-8b68024d-fd64-4441-9895-2c8ed438a424"
d="M 2.40625,-6.59375 C 2.3125,-6.8125 2.28125,-6.8125 2.046875,-6.8125 H 0.375 V -6.5 h 0.234375 c 0.765625,0 0.78125,0.109375 0.78125,0.46875 v 4.984375 c 0,0.265625 0,0.734375 -1.015625,0.734375 V 0 c 0.34375,-0.015625 0.828125,-0.03125 1.15625,-0.03125 0.328125,0 0.828125,0.015625 1.171875,0.03125 v -0.3125 c -1.03125,0 -1.03125,-0.46875 -1.03125,-0.734375 v -5.375 H 1.6875 L 4.09375,-0.21875 C 4.140625,-0.09375 4.1875,0 4.28125,0 4.390625,0 4.421875,-0.078125 4.46875,-0.1875 L 6.921875,-6.5 v 5.71875 c 0,0.359375 -0.015625,0.46875 -0.78125,0.46875 H 5.90625 V 0 c 0.359375,-0.03125 1.046875,-0.03125 1.4375,-0.03125 0.375,0 1.046875,0 1.421875,0.03125 v -0.3125 h -0.25 c -0.765625,0 -0.78125,-0.109375 -0.78125,-0.46875 v -5.25 C 7.734375,-6.390625 7.75,-6.5 8.515625,-6.5 h 0.25 v -0.3125 h -1.6875 C 6.8125,-6.8125 6.8125,-6.796875 6.75,-6.625 L 4.5625,-1 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(142.901, 134.765)"
id="g714">
<path
inkscape:connector-curvature="0"
id="id-f487cba3-c088-48d7-b814-13563750b893"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(147.882, 134.765)"
id="g717">
<path
inkscape:connector-curvature="0"
id="id-c0853d71-4bb1-4bc7-b425-e2bd29b9998c"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(151.756, 134.765)"
id="g720">
<path
inkscape:connector-curvature="0"
id="id-e180fdf5-c218-41c1-879e-064f411de412"
d="m 1.09375,-0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.84375,0 -1.28125,0.59375 -1.453125,0.984375 v -3.5 L 0.3125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(157.292, 134.765)"
id="g723">
<path
inkscape:connector-curvature="0"
id="id-773ab95d-8c99-42b5-8e1d-c25855493a51"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(161.719, 134.765)"
id="g726">
<path
inkscape:connector-curvature="0"
id="id-37180dcf-873d-400f-a38a-7f67b7f249f9"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(170.021, 134.765)"
id="g729">
<path
inkscape:connector-curvature="0"
id="id-32677d48-da78-4e7c-ab90-8c581a8d212f"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(175.002, 134.765)"
id="g732">
<path
inkscape:connector-curvature="0"
id="id-1e23747d-bf5e-4849-b5cb-dfced4219204"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(178.877, 134.765)"
id="g735">
<path
inkscape:connector-curvature="0"
id="id-fdb51ccd-827a-40fc-819a-5f14dd8f1d09"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(181.644, 134.765)"
id="g738">
<path
inkscape:connector-curvature="0"
id="id-09235e9c-7209-472a-8331-49718d3c4fdf"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(186.072, 134.765)"
id="g741">
<path
inkscape:connector-curvature="0"
id="id-b91d2b47-771f-402f-95b2-c7e6a5efd765"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(191.053, 134.765)"
id="g744">
<path
inkscape:connector-curvature="0"
id="id-4e080a5d-4252-4cc0-b1b8-de2eeac1a710"
d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-407ed47e-3d92-4c97-ab38-e40780031b0e"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(197.138, 134.765)"
id="g748">
<path
inkscape:connector-curvature="0"
id="id-8b26c35f-b16e-4fc9-90a4-24595a67c075"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(202.119, 134.765)"
id="g751">
<path
inkscape:connector-curvature="0"
id="id-79ba701a-4f8b-4516-8379-75e3612afc8d"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(207.655, 134.765)"
id="g754">
<path
inkscape:connector-curvature="0"
id="id-93ba55c2-fb87-4a7e-b903-59eca5d3c6c6"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(211.584, 134.765)"
id="g757">
<path
inkscape:connector-curvature="0"
id="id-72efaf26-bc34-4b35-9abc-39f44e6833be"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(215.458, 134.765)"
id="g760">
<path
inkscape:connector-curvature="0"
id="id-7506a36b-6ede-4aa4-8e60-9af1327ebcc2"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(219.361, 134.765)"
id="g763">
<path
inkscape:connector-curvature="0"
id="id-2ad433b8-4769-4344-b66d-2a9c5b5b6ce0"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(224.342, 134.765)"
id="g766">
<path
inkscape:connector-curvature="0"
id="id-00fea27d-40dd-4fcf-b34d-067005a3869d"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(228.769, 134.765)"
id="g769">
<path
inkscape:connector-curvature="0"
id="id-074cc772-a68d-4c20-ae25-ceb4006980b9"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(232.644, 134.765)"
id="g772">
<path
inkscape:connector-curvature="0"
id="id-a1e09402-06f6-4edf-9eaa-52bbe8d8aee2"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(235.411, 134.765)"
id="g775">
<path
inkscape:connector-curvature="0"
id="id-aa855a0c-3b76-4fa2-b00c-cf145236b5c7"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(240.393, 134.765)"
id="g778">
<path
inkscape:connector-curvature="0"
id="id-60877ae3-664d-4543-a77f-73b8c87a6a20"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-6e2773d5-d33a-4590-ae8f-f6d2e6bdca69"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(249.255, 134.765)"
id="g782">
<path
inkscape:connector-curvature="0"
id="id-879445a1-4c14-4d4e-a52f-0aeffd215ed8"
d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(254.791, 134.765)"
id="g785">
<path
inkscape:connector-curvature="0"
id="id-21c67489-0831-4b4a-9738-d90a3a7c61e0"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(258.72, 134.765)"
id="g788">
<path
inkscape:connector-curvature="0"
id="id-b15799ff-d464-4c17-8869-cd77a04ed7b1"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(261.488, 134.765)"
id="g791">
<path
inkscape:connector-curvature="0"
id="id-cdf4c4a3-0c3c-4954-805a-1011545ba6de"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(267.023, 134.765)"
id="g794">
<path
inkscape:connector-curvature="0"
id="id-58fe3f51-4826-4419-9af6-be9da110613e"
d="m 2.21875,-1.71875 c -0.875,0 -0.875,-1 -0.875,-1.21875 0,-0.265625 0.015625,-0.59375 0.15625,-0.84375 0.078125,-0.109375 0.3125,-0.390625 0.71875,-0.390625 0.859375,0 0.859375,0.984375 0.859375,1.21875 0,0.265625 0,0.59375 -0.15625,0.84375 C 2.84375,-2 2.609375,-1.71875 2.21875,-1.71875 Z M 1.0625,-1.328125 c 0,-0.03125 0,-0.265625 0.15625,-0.46875 0.390625,0.28125 0.8125,0.3125 1,0.3125 0.921875,0 1.609375,-0.6875 1.609375,-1.453125 0,-0.375 -0.15625,-0.734375 -0.40625,-0.96875 C 3.78125,-4.25 4.140625,-4.296875 4.3125,-4.296875 c 0.03125,0 0.078125,0 0.109375,0.015625 C 4.3125,-4.25 4.25,-4.140625 4.25,-4.015625 c 0,0.171875 0.140625,0.28125 0.296875,0.28125 0.09375,0 0.28125,-0.0625 0.28125,-0.296875 0,-0.171875 -0.109375,-0.484375 -0.5,-0.484375 -0.203125,0 -0.640625,0.0625 -1.0625,0.46875 C 2.84375,-4.375 2.4375,-4.40625 2.21875,-4.40625 c -0.9375,0 -1.625,0.6875 -1.625,1.453125 0,0.4375 0.21875,0.8125 0.46875,1.03125 -0.125,0.140625 -0.3125,0.46875 -0.3125,0.828125 0,0.3125 0.140625,0.6875 0.453125,0.890625 -0.609375,0.15625 -0.921875,0.59375 -0.921875,0.984375 0,0.71875 0.984375,1.265625 2.203125,1.265625 1.171875,0 2.203125,-0.5 2.203125,-1.28125 0,-0.34375 -0.125,-0.859375 -0.640625,-1.140625 -0.53125,-0.265625 -1.109375,-0.265625 -1.71875,-0.265625 -0.25,0 -0.671875,0 -0.75,-0.015625 C 1.265625,-0.703125 1.0625,-1 1.0625,-1.328125 Z M 2.5,1.828125 c -1.015625,0 -1.703125,-0.515625 -1.703125,-1.046875 0,-0.453125 0.375,-0.828125 0.8125,-0.84375 h 0.59375 c 0.859375,0 1.96875,0 1.96875,0.84375 0,0.546875 -0.703125,1.046875 -1.671875,1.046875 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-a8cf917e-d7ff-40a0-9e28-25ae46c8bdc9"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(275.322, 134.765)"
id="g798">
<path
inkscape:connector-curvature="0"
id="id-14017e21-49a4-4a15-b4a3-525d4a8600ef"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(279.196, 134.765)"
id="g801">
<path
inkscape:connector-curvature="0"
id="id-4ba66242-09a0-4f9b-a05f-6cdf5209b88e"
d="m 1.09375,-0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.84375,0 -1.28125,0.59375 -1.453125,0.984375 v -3.5 L 0.3125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(284.731, 134.765)"
id="g804">
<path
inkscape:connector-curvature="0"
id="id-ccc80a03-f9a6-4506-8116-6663b7434227"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-a624d24b-31c1-4414-8aa4-62abd1a24882"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(292.476, 134.765)"
id="g808">
<path
inkscape:connector-curvature="0"
id="id-6546b79c-c8b7-49fb-a0ae-d3d4ef50cee0"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(296.904, 134.765)"
id="g811">
<path
inkscape:connector-curvature="0"
id="id-24c34454-8f67-465d-9c50-873b4a3e9252"
d="M 2.859375,-2.34375 C 3.15625,-2.71875 3.53125,-3.203125 3.78125,-3.46875 4.09375,-3.828125 4.5,-3.984375 4.96875,-3.984375 v -0.3125 c -0.265625,0.015625 -0.5625,0.03125 -0.828125,0.03125 -0.296875,0 -0.828125,-0.015625 -0.953125,-0.03125 v 0.3125 c 0.21875,0.015625 0.296875,0.140625 0.296875,0.3125 0,0.15625 -0.109375,0.28125 -0.15625,0.34375 L 2.71875,-2.546875 1.9375,-3.5625 C 1.84375,-3.65625 1.84375,-3.671875 1.84375,-3.734375 c 0,-0.15625 0.15625,-0.25 0.34375,-0.25 v -0.3125 c -0.25,0.015625 -0.90625,0.03125 -1.078125,0.03125 -0.203125,0 -0.671875,-0.015625 -0.9375,-0.03125 v 0.3125 c 0.703125,0 0.703125,0 1.171875,0.609375 l 0.984375,1.28125 -0.9375,1.1875 C 0.921875,-0.328125 0.328125,-0.3125 0.125,-0.3125 V 0 c 0.25,-0.015625 0.5625,-0.03125 0.828125,-0.03125 0.28125,0 0.703125,0.015625 0.9375,0.03125 v -0.3125 c -0.21875,-0.03125 -0.28125,-0.15625 -0.28125,-0.3125 0,-0.21875 0.28125,-0.546875 0.890625,-1.265625 l 0.765625,1 C 3.34375,-0.78125 3.46875,-0.625 3.46875,-0.5625 c 0,0.09375 -0.09375,0.25 -0.359375,0.25 V 0 C 3.40625,-0.015625 3.96875,-0.03125 4.1875,-0.03125 c 0.265625,0 0.65625,0.015625 0.953125,0.03125 v -0.3125 c -0.53125,0 -0.71875,-0.015625 -0.9375,-0.3125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(302.162, 134.765)"
id="g814">
<path
inkscape:connector-curvature="0"
id="id-7483965b-b34d-4572-9230-f5ded6a9124d"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(307.143, 134.765)"
id="g817">
<path
inkscape:connector-curvature="0"
id="id-faa24493-f7ca-4751-b584-e4a04fbb919f"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(315.445, 134.765)"
id="g820">
<path
inkscape:connector-curvature="0"
id="id-6e2f0c5b-766d-40f1-a163-2386860923e6"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(320.98, 134.765)"
id="g823">
<path
inkscape:connector-curvature="0"
id="id-d7ed8733-fe25-4085-83bb-dd4a7e59b91b"
d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(323.748, 134.765)"
id="g826">
<path
inkscape:connector-curvature="0"
id="id-39a49cb5-6fe2-480e-83e9-ecd63ddbef77"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-db34308b-2a37-4a43-b274-c6226663d3c3"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(133.768, 146.72)"
id="g830">
<path
inkscape:connector-curvature="0"
id="id-6e658223-6c29-482f-a802-2cd5e3ee57c2"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(138.749, 146.72)"
id="g833">
<path
inkscape:connector-curvature="0"
id="id-13ee41d5-1927-47f5-bba4-ce88570c7dd5"
d="m 1.75,-4.296875 v -1.15625 c 0,-0.875 0.46875,-1.359375 0.90625,-1.359375 0.03125,0 0.1875,0 0.328125,0.078125 C 2.875,-6.703125 2.6875,-6.5625 2.6875,-6.3125 c 0,0.21875 0.15625,0.421875 0.4375,0.421875 0.28125,0 0.4375,-0.203125 0.4375,-0.4375 0,-0.375 -0.375,-0.703125 -0.90625,-0.703125 -0.6875,0 -1.546875,0.53125 -1.546875,1.59375 v 1.140625 h -0.78125 v 0.3125 h 0.78125 V -0.75 C 1.109375,-0.3125 1,-0.3125 0.34375,-0.3125 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.40625,0 0.875,0 1.265625,0.03125 V -0.3125 H 2.53125 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 v -3.203125 h 1.125 v -0.3125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-d9c7b5c6-d32e-4e81-8ae0-0bfa341202c5"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(145.111, 146.72)"
id="g837">
<path
inkscape:connector-curvature="0"
id="id-e0d908b3-96f6-45b9-9c19-0ffd44d4cf5f"
d="m 2.21875,-1.71875 c -0.875,0 -0.875,-1 -0.875,-1.21875 0,-0.265625 0.015625,-0.59375 0.15625,-0.84375 0.078125,-0.109375 0.3125,-0.390625 0.71875,-0.390625 0.859375,0 0.859375,0.984375 0.859375,1.21875 0,0.265625 0,0.59375 -0.15625,0.84375 C 2.84375,-2 2.609375,-1.71875 2.21875,-1.71875 Z M 1.0625,-1.328125 c 0,-0.03125 0,-0.265625 0.15625,-0.46875 0.390625,0.28125 0.8125,0.3125 1,0.3125 0.921875,0 1.609375,-0.6875 1.609375,-1.453125 0,-0.375 -0.15625,-0.734375 -0.40625,-0.96875 C 3.78125,-4.25 4.140625,-4.296875 4.3125,-4.296875 c 0.03125,0 0.078125,0 0.109375,0.015625 C 4.3125,-4.25 4.25,-4.140625 4.25,-4.015625 c 0,0.171875 0.140625,0.28125 0.296875,0.28125 0.09375,0 0.28125,-0.0625 0.28125,-0.296875 0,-0.171875 -0.109375,-0.484375 -0.5,-0.484375 -0.203125,0 -0.640625,0.0625 -1.0625,0.46875 C 2.84375,-4.375 2.4375,-4.40625 2.21875,-4.40625 c -0.9375,0 -1.625,0.6875 -1.625,1.453125 0,0.4375 0.21875,0.8125 0.46875,1.03125 -0.125,0.140625 -0.3125,0.46875 -0.3125,0.828125 0,0.3125 0.140625,0.6875 0.453125,0.890625 -0.609375,0.15625 -0.921875,0.59375 -0.921875,0.984375 0,0.71875 0.984375,1.265625 2.203125,1.265625 1.171875,0 2.203125,-0.5 2.203125,-1.28125 0,-0.34375 -0.125,-0.859375 -0.640625,-1.140625 -0.53125,-0.265625 -1.109375,-0.265625 -1.71875,-0.265625 -0.25,0 -0.671875,0 -0.75,-0.015625 C 1.265625,-0.703125 1.0625,-1 1.0625,-1.328125 Z M 2.5,1.828125 c -1.015625,0 -1.703125,-0.515625 -1.703125,-1.046875 0,-0.453125 0.375,-0.828125 0.8125,-0.84375 h 0.59375 c 0.859375,0 1.96875,0 1.96875,0.84375 0,0.546875 -0.703125,1.046875 -1.671875,1.046875 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(150.093, 146.72)"
id="g840">
<path
inkscape:connector-curvature="0"
id="id-9a7a2052-737b-4cdf-9a41-9a3f718105ac"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(154.52, 146.72)"
id="g843">
<path
inkscape:connector-curvature="0"
id="id-f46bf574-6de8-46f2-8912-4bcb029b86a1"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(160.055, 146.72)"
id="g846">
<path
inkscape:connector-curvature="0"
id="id-f82e1b92-4a6b-4d84-a9b1-5ef9a45bb49b"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(164.483, 146.72)"
id="g849">
<path
inkscape:connector-curvature="0"
id="id-6adaeec3-6844-4404-90ec-54ac5613b1df"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(168.385, 146.72)"
id="g852">
<path
inkscape:connector-curvature="0"
id="id-baa5f0dc-ab6a-4824-abf8-70b833503f5b"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(173.366, 146.72)"
id="g855">
<path
inkscape:connector-curvature="0"
id="id-de7d21b5-9651-4fa9-a351-a95af4c93a35"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(177.241, 146.72)"
id="g858">
<path
inkscape:connector-curvature="0"
id="id-617bbae6-3350-4f19-a948-43008881f18d"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(180.008, 146.72)"
id="g861">
<path
inkscape:connector-curvature="0"
id="id-bb3ffaa7-0cab-476a-8a14-2ffd8df4cee1"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(184.99, 146.72)"
id="g864">
<path
inkscape:connector-curvature="0"
id="id-adef580f-7ec5-48ff-9068-2c9a413222fe"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-79887eaa-0d20-4384-b0dc-ea41dafceffb"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(193.852, 146.72)"
id="g868">
<path
inkscape:connector-curvature="0"
id="id-1f29313a-2b1b-4bd3-8aee-34a59b52f08d"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(198.834, 146.72)"
id="g871">
<path
inkscape:connector-curvature="0"
id="id-b2df230b-bf14-422c-abaa-2913ab9f1228"
d="m 1.75,-4.296875 v -1.15625 c 0,-0.875 0.46875,-1.359375 0.90625,-1.359375 0.03125,0 0.1875,0 0.328125,0.078125 C 2.875,-6.703125 2.6875,-6.5625 2.6875,-6.3125 c 0,0.21875 0.15625,0.421875 0.4375,0.421875 0.28125,0 0.4375,-0.203125 0.4375,-0.4375 0,-0.375 -0.375,-0.703125 -0.90625,-0.703125 -0.6875,0 -1.546875,0.53125 -1.546875,1.59375 v 1.140625 h -0.78125 v 0.3125 h 0.78125 V -0.75 C 1.109375,-0.3125 1,-0.3125 0.34375,-0.3125 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.40625,0 0.875,0 1.265625,0.03125 V -0.3125 H 2.53125 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 v -3.203125 h 1.125 v -0.3125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-5918c46c-fb93-451c-8708-20bf0e2ebd5a"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(205.196, 146.72)"
id="g875">
<path
inkscape:connector-curvature="0"
id="id-3c69e46d-c002-47a0-acdf-efb7a8df4fd8"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-75229e65-1e81-4923-8cb6-d313d9f15d64"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(211.01, 146.72)"
id="g879">
<path
inkscape:connector-curvature="0"
id="id-c5a2ab59-9bfe-4b4f-b8f6-7e125760f5d4"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(215.437, 146.72)"
id="g882">
<path
inkscape:connector-curvature="0"
id="id-589d8f59-129a-428a-b1b1-e77be85f219c"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(219.34, 146.72)"
id="g885">
<path
inkscape:connector-curvature="0"
id="id-948f7920-b1bc-4321-8813-586a9a12b1f9"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(222.107, 146.72)"
id="g888">
<path
inkscape:connector-curvature="0"
id="id-e8e71035-228d-4700-a420-4f355a808226"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-532dbdde-95c0-4b97-80f3-b62de6feb0c6"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(227.358, 146.72)"
id="g892">
<path
inkscape:connector-curvature="0"
id="id-6d12b872-a2ca-439d-96a5-5e5287db32bb"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(232.893, 146.72)"
id="g895">
<path
inkscape:connector-curvature="0"
id="id-982e058d-9764-40ef-bc18-db51386fe17d"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(235.66, 146.72)"
id="g898">
<path
inkscape:connector-curvature="0"
id="id-97d90252-2426-47a6-981f-75a8045f1d75"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-0132a269-dd99-4c5b-b3c3-dd35b9fc9cf5"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(243.415, 146.72)"
id="g902">
<path
inkscape:connector-curvature="0"
id="id-f3786227-cd01-4af5-bac3-94777d242755"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(248.397, 146.72)"
id="g905">
<path
inkscape:connector-curvature="0"
id="id-eec1be98-bc4b-4550-9eb5-a68423ff5b97"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(252.326, 146.72)"
id="g908">
<path
inkscape:connector-curvature="0"
id="id-16db2f4f-53f9-4ed4-94ef-a656ab799dcd"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(256.753, 146.72)"
id="g911">
<path
inkscape:connector-curvature="0"
id="id-6ea74347-82d7-49b8-bef5-8847a46665a5"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(259.521, 146.72)"
id="g914">
<path
inkscape:connector-curvature="0"
id="id-36a48255-3d7d-4981-a5c5-ede057b27ea6"
d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(262.289, 146.72)"
id="g917">
<path
inkscape:connector-curvature="0"
id="id-c1f3e8e4-ff95-481d-bf11-b6e4dc530649"
d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(265.056, 146.72)"
id="g920">
<path
inkscape:connector-curvature="0"
id="id-44b67ae2-ecac-4f6b-9809-8062a0f2616c"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(270.037, 146.72)"
id="g923">
<path
inkscape:connector-curvature="0"
id="id-779b7233-11c6-4fc9-90ec-615af56b6cb2"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(273.912, 146.72)"
id="g926">
<path
inkscape:connector-curvature="0"
id="id-2ab156ff-d213-440b-b485-c9def7671138"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(276.68, 146.72)"
id="g929">
<path
inkscape:connector-curvature="0"
id="id-09f918e1-c882-4294-9f8c-c31edd23ade6"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(281.661, 146.72)"
id="g932">
<path
inkscape:connector-curvature="0"
id="id-612e97bf-4224-44c9-8d21-734396bc456d"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(287.196, 146.72)"
id="g935">
<path
inkscape:connector-curvature="0"
id="id-4db066e8-d779-4d3d-8d8a-008c400a082e"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
</g>
</g>
</g>
<g
transform="matrix(1.64149 0 0 1.64149 325.835 219.648)"
ns1:version="1.0.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="inkscape"
ns1:text="$\\{y:V(y) = \\text{const}\\}$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\textext\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
ns1:inkscapeversion="1.0rc1"
ns1:jacobian_sqrt="1.64149"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1692">
<defs
id="id-96c24178-8c7e-4091-a6e6-6e9796946120"
style="fill:#008000;stroke:#008000;stroke-width:0">
<g
id="id-51084dd3-a6a0-45c0-9e12-d07c0f1d7948"
style="fill:#008000;stroke:#008000;stroke-width:0">
<symbol
id="id-822850ea-0a3d-4ddf-a676-4e6b8f59f596"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-c1752510-47a0-470e-9f35-8be0f876fd84"
d=""
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-f531b77c-301d-45e8-affc-fb6d92126a3f"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-fc7618e8-5365-4991-af5e-db1cf4d43294"
d="m 2.828125,-6.15625 c 0,-0.390625 0.25,-1.03125 1.34375,-1.09375 C 4.21875,-7.265625 4.25,-7.3125 4.25,-7.359375 c 0,-0.125 -0.078125,-0.125 -0.1875,-0.125 -0.984375,0 -1.90625,0.515625 -1.90625,1.25 v 2.28125 c 0,0.390625 0,0.703125 -0.40625,1.03125 -0.34375,0.296875 -0.71875,0.3125 -0.9375,0.3125 C 0.75,-2.59375 0.71875,-2.546875 0.71875,-2.5 c 0,0.109375 0.0625,0.109375 0.15625,0.125 0.65625,0.03125 1.140625,0.390625 1.25,0.875 0.03125,0.109375 0.03125,0.140625 0.03125,0.5 v 1.96875 c 0,0.421875 0,0.734375 0.46875,1.109375 C 3.015625,2.375 3.671875,2.5 4.0625,2.5 4.171875,2.5 4.25,2.5 4.25,2.375 4.25,2.28125 4.203125,2.28125 4.09375,2.265625 3.46875,2.234375 2.984375,1.90625 2.84375,1.40625 2.828125,1.3125 2.828125,1.296875 2.828125,0.9375 v -2.09375 c 0,-0.453125 -0.09375,-0.625 -0.40625,-0.953125 C 2.21875,-2.3125 1.921875,-2.40625 1.640625,-2.5 c 0.828125,-0.21875 1.1875,-0.6875 1.1875,-1.265625 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-1edfad17-ec3b-444e-a04c-a8c32642acfe"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-c4a893d4-44ed-4a56-ac69-d4383dc60b55"
d="m 2.15625,1.171875 c 0,0.390625 -0.265625,1.03125 -1.34375,1.09375 C 0.75,2.28125 0.71875,2.328125 0.71875,2.375 0.71875,2.5 0.828125,2.5 0.921875,2.5 1.890625,2.5 2.8125,2 2.828125,1.25 v -2.28125 c 0,-0.390625 0,-0.703125 0.390625,-1.03125 C 3.5625,-2.359375 3.953125,-2.375 4.171875,-2.375 4.21875,-2.390625 4.25,-2.4375 4.25,-2.5 4.25,-2.59375 4.203125,-2.59375 4.09375,-2.609375 3.4375,-2.640625 2.953125,-3 2.84375,-3.484375 2.828125,-3.59375 2.828125,-3.625 2.828125,-3.984375 v -1.96875 c 0,-0.421875 0,-0.734375 -0.484375,-1.109375 C 1.9375,-7.375 1.25,-7.484375 0.921875,-7.484375 c -0.09375,0 -0.203125,0 -0.203125,0.125 0,0.09375 0.0625,0.09375 0.15625,0.109375 0.625,0.03125 1.125,0.359375 1.25,0.859375 0.03125,0.09375 0.03125,0.109375 0.03125,0.46875 v 2.09375 c 0,0.453125 0.078125,0.625 0.390625,0.953125 0.21875,0.203125 0.5,0.296875 0.78125,0.375 -0.8125,0.234375 -1.171875,0.703125 -1.171875,1.28125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-50d5f163-cbc3-4b4f-9c44-28ab2b0cb7db"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-34dafc8e-f334-402a-b989-6360849a6c9a"
d=""
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-0dcd03d4-1c5c-4335-ba5f-0a5e355a287f"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-55f1477c-b78b-4c6e-a02c-36cb3b814877"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-b9acd159-cc02-4e47-af4a-adb4d79101a3"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-22d8e259-c4cd-4e15-b2c3-45f2e3e74020"
d="M 6.265625,-5.671875 C 6.75,-6.453125 7.171875,-6.484375 7.53125,-6.5 c 0.125,-0.015625 0.140625,-0.171875 0.140625,-0.1875 0,-0.078125 -0.0625,-0.125 -0.140625,-0.125 -0.25,0 -0.546875,0.03125 -0.8125,0.03125 -0.328125,0 -0.671875,-0.03125 -0.984375,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.1875 0,0.109375 0.078125,0.125 0.15625,0.125 0.265625,0.015625 0.453125,0.125 0.453125,0.328125 0,0.15625 -0.140625,0.375 -0.140625,0.375 l -3.0625,4.875 -0.6875,-5.28125 C 2.265625,-6.375 2.5,-6.5 2.953125,-6.5 c 0.140625,0 0.25,0 0.25,-0.203125 0,-0.078125 -0.078125,-0.109375 -0.125,-0.109375 -0.40625,0 -0.828125,0.03125 -1.25,0.03125 -0.171875,0 -0.359375,0 -0.546875,0 -0.171875,0 -0.359375,-0.03125 -0.53125,-0.03125 -0.078125,0 -0.1875,0 -0.1875,0.1875 0,0.125 0.078125,0.125 0.25,0.125 0.546875,0 0.5625,0.09375 0.59375,0.34375 L 2.1875,-0.015625 C 2.21875,0.1875 2.265625,0.21875 2.390625,0.21875 c 0.15625,0 0.203125,-0.046875 0.28125,-0.171875 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-68a679e2-fa0e-4863-9d70-eff1d8f95f9a"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-24c15537-598e-4c17-a66b-636cfe40fc01"
d=""
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-5b8a2bf8-30ee-43ce-a510-c654e9ce77ab"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-4ca4ef8b-cbd4-47eb-8b67-b9dd179ddf81"
d="m 1.90625,-3.765625 c 0,-0.296875 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.25 0.515625,-0.53125 z m 0,3.234375 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-b170aa76-038e-454e-82a8-dcb8c540e579"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-83b1bfa2-26cc-4868-81e7-d495abc9b295"
d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-16c89bbf-b6db-4bab-b3ac-1f06ded1301c"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-fe581ff5-c894-474d-9659-131caabf8b78"
d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-b6692d42-7f54-4c76-8e2b-a24cf845feca"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-a85f7591-f59c-4692-9740-b9bc41ba2fc7"
d="m 6.84375,-3.265625 c 0.15625,0 0.34375,0 0.34375,-0.1875 C 7.1875,-3.65625 7,-3.65625 6.859375,-3.65625 h -5.96875 c -0.140625,0 -0.328125,0 -0.328125,0.203125 0,0.1875 0.1875,0.1875 0.328125,0.1875 z m 0.015625,1.9375 c 0.140625,0 0.328125,0 0.328125,-0.203125 0,-0.1875 -0.1875,-0.1875 -0.34375,-0.1875 H 0.890625 c -0.140625,0 -0.328125,0 -0.328125,0.1875 0,0.203125 0.1875,0.203125 0.328125,0.203125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-d5cf321a-b472-4a3d-baf6-5d0239745c5f"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-a697be8c-aa73-429d-9bc8-5dce7c80589e"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-c780afc4-ab77-4e98-beff-963feabf8b13"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-3aa66482-6537-4f5b-9185-641fe43f4521"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-29917690-d124-4cb8-a3e7-525d852a7e71"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-8c463972-c05f-439f-8e20-4c26a24e3793"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-56ec6674-935d-42c8-a145-39cd96c8664c"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-e2e1a419-298b-418c-8634-4d11803a606e"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
<symbol
id="id-6ce4fbd2-9c76-4e43-b9de-fa249941a497"
overflow="visible"
style="fill:#008000;stroke:#008000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-c0a09dd5-d31e-42a4-99ef-3c62074d9644"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</symbol>
</g>
</defs>
<g
transform="translate(-149.431, -127.281)"
id="id-44569d2e-6deb-4bee-962d-a10003b24d06"
style="fill:#008000;stroke:#008000;stroke-width:0">
<g
id="id-6b20392d-d676-4a91-b371-f97c91882c22"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(148.712, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1640">
<path
inkscape:connector-curvature="0"
id="id-38309666-e500-4225-8077-0969b6a994b4"
d="m 2.828125,-6.15625 c 0,-0.390625 0.25,-1.03125 1.34375,-1.09375 C 4.21875,-7.265625 4.25,-7.3125 4.25,-7.359375 c 0,-0.125 -0.078125,-0.125 -0.1875,-0.125 -0.984375,0 -1.90625,0.515625 -1.90625,1.25 v 2.28125 c 0,0.390625 0,0.703125 -0.40625,1.03125 -0.34375,0.296875 -0.71875,0.3125 -0.9375,0.3125 C 0.75,-2.59375 0.71875,-2.546875 0.71875,-2.5 c 0,0.109375 0.0625,0.109375 0.15625,0.125 0.65625,0.03125 1.140625,0.390625 1.25,0.875 0.03125,0.109375 0.03125,0.140625 0.03125,0.5 v 1.96875 c 0,0.421875 0,0.734375 0.46875,1.109375 C 3.015625,2.375 3.671875,2.5 4.0625,2.5 4.171875,2.5 4.25,2.5 4.25,2.375 4.25,2.28125 4.203125,2.28125 4.09375,2.265625 3.46875,2.234375 2.984375,1.90625 2.84375,1.40625 2.828125,1.3125 2.828125,1.296875 2.828125,0.9375 v -2.09375 c 0,-0.453125 -0.09375,-0.625 -0.40625,-0.953125 C 2.21875,-2.3125 1.921875,-2.40625 1.640625,-2.5 c 0.828125,-0.21875 1.1875,-0.6875 1.1875,-1.265625 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-9e9837cc-d33f-4696-83f7-68e9e733e2d9"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(153.694, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1644">
<path
inkscape:connector-curvature="0"
id="id-bf12b61a-d49d-4fef-b62f-d7ebea4c61f6"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-a3388ecb-250e-4f9f-8541-fd72c67b0b89"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(161.703, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1648">
<path
inkscape:connector-curvature="0"
id="id-ac70aaba-d778-4818-95e0-cddb0d3e1f7b"
d="m 1.90625,-3.765625 c 0,-0.296875 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.25 0.515625,-0.53125 z m 0,3.234375 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-4a18227a-1370-42b0-b177-04b99b42fdc2"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(167.238, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1652">
<path
inkscape:connector-curvature="0"
id="id-fd009508-4537-4fb1-b31d-5b472b68a186"
d="M 6.265625,-5.671875 C 6.75,-6.453125 7.171875,-6.484375 7.53125,-6.5 c 0.125,-0.015625 0.140625,-0.171875 0.140625,-0.1875 0,-0.078125 -0.0625,-0.125 -0.140625,-0.125 -0.25,0 -0.546875,0.03125 -0.8125,0.03125 -0.328125,0 -0.671875,-0.03125 -0.984375,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.1875 0,0.109375 0.078125,0.125 0.15625,0.125 0.265625,0.015625 0.453125,0.125 0.453125,0.328125 0,0.15625 -0.140625,0.375 -0.140625,0.375 l -3.0625,4.875 -0.6875,-5.28125 C 2.265625,-6.375 2.5,-6.5 2.953125,-6.5 c 0.140625,0 0.25,0 0.25,-0.203125 0,-0.078125 -0.078125,-0.109375 -0.125,-0.109375 -0.40625,0 -0.828125,0.03125 -1.25,0.03125 -0.171875,0 -0.359375,0 -0.546875,0 -0.171875,0 -0.359375,-0.03125 -0.53125,-0.03125 -0.078125,0 -0.1875,0 -0.1875,0.1875 0,0.125 0.078125,0.125 0.25,0.125 0.546875,0 0.5625,0.09375 0.59375,0.34375 L 2.1875,-0.015625 C 2.21875,0.1875 2.265625,0.21875 2.390625,0.21875 c 0.15625,0 0.203125,-0.046875 0.28125,-0.171875 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-1e47fd3b-ee9f-4eb1-a75c-c2a1d82fb30c"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(175.263, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1656">
<path
inkscape:connector-curvature="0"
id="id-699f0744-c79b-4f80-a135-726147063ae3"
d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-aa12caa1-ea6a-43c3-a5c2-7fae4a7fcaf5"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(179.137, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1660">
<path
inkscape:connector-curvature="0"
id="id-63109866-223c-4469-802b-8c40b5ae7080"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-e528c489-e6d2-4585-a0af-8404660d3063"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(184.379, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1664">
<path
inkscape:connector-curvature="0"
id="id-4bf67411-7929-415e-a830-8a4211d87ad5"
d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-aec0001f-ea10-46ba-bf7b-5b6fccc53caa"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(191.023, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1668">
<path
inkscape:connector-curvature="0"
id="id-0099fe04-3585-46f6-b331-85699e9836d9"
d="m 6.84375,-3.265625 c 0.15625,0 0.34375,0 0.34375,-0.1875 C 7.1875,-3.65625 7,-3.65625 6.859375,-3.65625 h -5.96875 c -0.140625,0 -0.328125,0 -0.328125,0.203125 0,0.1875 0.1875,0.1875 0.328125,0.1875 z m 0.015625,1.9375 c 0.140625,0 0.328125,0 0.328125,-0.203125 0,-0.1875 -0.1875,-0.1875 -0.34375,-0.1875 H 0.890625 c -0.140625,0 -0.328125,0 -0.328125,0.1875 0,0.203125 0.1875,0.203125 0.328125,0.203125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-c8c2e641-5173-480d-942d-b4039ceda367"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(201.542, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1672">
<path
inkscape:connector-curvature="0"
id="id-b095b90d-e53e-4b9e-8581-6c0ba181262a"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
<g
transform="translate(205.969, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1675">
<path
inkscape:connector-curvature="0"
id="id-9666d2c7-6ea7-4f36-9d5e-2c19f054d5f8"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
<g
transform="translate(210.95, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1678">
<path
inkscape:connector-curvature="0"
id="id-438d81a2-455a-4125-bdd8-cad8737a9d5d"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
<g
transform="translate(216.485, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1681">
<path
inkscape:connector-curvature="0"
id="id-c9656a50-0185-467b-9608-f6280a070860"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
<g
transform="translate(220.415, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1684">
<path
inkscape:connector-curvature="0"
id="id-2ed81ace-bd0b-4e65-9c4d-4152f26671c6"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
<g
id="id-faa6aac1-e464-4a59-bc64-e581ec1d9d40"
style="fill:#008000;fill-opacity:1;stroke:#008000;stroke-width:0">
<g
transform="translate(224.285, 134.765)"
style="fill:#008000;stroke:#008000;stroke-width:0"
id="g1688">
<path
inkscape:connector-curvature="0"
id="id-1b8f3c2f-5702-4a8a-b8e4-016e43ea93f7"
d="m 2.15625,1.171875 c 0,0.390625 -0.265625,1.03125 -1.34375,1.09375 C 0.75,2.28125 0.71875,2.328125 0.71875,2.375 0.71875,2.5 0.828125,2.5 0.921875,2.5 1.890625,2.5 2.8125,2 2.828125,1.25 v -2.28125 c 0,-0.390625 0,-0.703125 0.390625,-1.03125 C 3.5625,-2.359375 3.953125,-2.375 4.171875,-2.375 4.21875,-2.390625 4.25,-2.4375 4.25,-2.5 4.25,-2.59375 4.203125,-2.59375 4.09375,-2.609375 3.4375,-2.640625 2.953125,-3 2.84375,-3.484375 2.828125,-3.59375 2.828125,-3.625 2.828125,-3.984375 v -1.96875 c 0,-0.421875 0,-0.734375 -0.484375,-1.109375 C 1.9375,-7.375 1.25,-7.484375 0.921875,-7.484375 c -0.09375,0 -0.203125,0 -0.203125,0.125 0,0.09375 0.0625,0.09375 0.15625,0.109375 0.625,0.03125 1.125,0.359375 1.25,0.859375 0.03125,0.09375 0.03125,0.109375 0.03125,0.46875 v 2.09375 c 0,0.453125 0.078125,0.625 0.390625,0.953125 0.21875,0.203125 0.5,0.296875 0.78125,0.375 -0.8125,0.234375 -1.171875,0.703125 -1.171875,1.28125 z m 0,0"
style="stroke:#008000;fill:#008000;stroke-width:0" />
</g>
</g>
</g>
</g>
<g
transform="matrix(1.64149 0 0 1.64149 205.783 266.671)"
ns1:version="1.0.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="inkscape"
ns1:text="\\definecolor{mygreen}{rgb}{0,.5,0} \n\\noindent subspace\\\\\nspan$\\{\\textcolor{red}{v_1}, \\textcolor{mygreen}{v_2}\\}$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\textext\\default_packages.tex"
ns1:scale="1.2311178471097886"
ns1:alignment="middle center"
ns1:inkscapeversion="1.0rc1"
ns1:jacobian_sqrt="1.64149"
id="g2379">
<defs
id="id-201183e6-62c4-4e40-baae-01efb89d33cc">
<g
id="id-557b5a71-a306-4cad-9d99-1d29e199d922">
<symbol
id="id-f832b485-8deb-45a8-b969-6a82cd73ecf1"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-f02e4874-51f1-4940-9e1c-61c17feb5bfa"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-51d46ad2-c2cf-4ca7-9db5-4e1168be22ff"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-1195c7c4-28d0-4cc7-8735-d839a0bd919f"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-af95c630-3e94-4715-ba8b-4295e7fa7d4a"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-759c62e8-c628-410c-8bb2-43860a1376fe"
d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-012ac43b-c56d-4f20-9c6b-ca928ff1a474"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-248d5f9a-e29a-4d5a-a22e-bfbaf0030e37"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-cd12cdfd-e238-4320-af55-09333db668a8"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-aeacf5c4-5048-4af3-bfff-7205ba27a8e6"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-f10b3f4d-6995-4fb7-81f5-e0ebe86410b0"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-0cbeee7c-c998-4de8-90e4-e66f14f51c99"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-459d0201-da3c-44a3-b99f-53d05217fa43"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-f3fa2407-3893-4887-9aa4-43b15177eb45"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-8e8be608-f93b-4da1-8f9b-2cbcaf989e3d"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-754d8c77-f58d-4a6b-8685-f54069c28c3f"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-ca07ee00-3e84-437f-a2a3-743314607856"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-3f1152aa-a859-41d8-99b5-f5b4d262df17"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-f40d7c2a-419b-40b4-adec-b3b3b3ba495b"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-81e07db6-2bea-408c-abf6-e36df1d846e2"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-e1ca698b-9453-47ff-a136-3d10c04b1977"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-f6b415c6-6c94-4e94-bfc1-024d188c6c36"
d="m 2.828125,-6.15625 c 0,-0.390625 0.25,-1.03125 1.34375,-1.09375 C 4.21875,-7.265625 4.25,-7.3125 4.25,-7.359375 c 0,-0.125 -0.078125,-0.125 -0.1875,-0.125 -0.984375,0 -1.90625,0.515625 -1.90625,1.25 v 2.28125 c 0,0.390625 0,0.703125 -0.40625,1.03125 -0.34375,0.296875 -0.71875,0.3125 -0.9375,0.3125 C 0.75,-2.59375 0.71875,-2.546875 0.71875,-2.5 c 0,0.109375 0.0625,0.109375 0.15625,0.125 0.65625,0.03125 1.140625,0.390625 1.25,0.875 0.03125,0.109375 0.03125,0.140625 0.03125,0.5 v 1.96875 c 0,0.421875 0,0.734375 0.46875,1.109375 C 3.015625,2.375 3.671875,2.5 4.0625,2.5 4.171875,2.5 4.25,2.5 4.25,2.375 4.25,2.28125 4.203125,2.28125 4.09375,2.265625 3.46875,2.234375 2.984375,1.90625 2.84375,1.40625 2.828125,1.3125 2.828125,1.296875 2.828125,0.9375 v -2.09375 c 0,-0.453125 -0.09375,-0.625 -0.40625,-0.953125 C 2.21875,-2.3125 1.921875,-2.40625 1.640625,-2.5 c 0.828125,-0.21875 1.1875,-0.6875 1.1875,-1.265625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-41ea3b7a-ad05-4824-91c2-522d7a93479b"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-730b6c1a-72d7-42e1-961d-e57abdf82295"
d="m 2.15625,1.171875 c 0,0.390625 -0.265625,1.03125 -1.34375,1.09375 C 0.75,2.28125 0.71875,2.328125 0.71875,2.375 0.71875,2.5 0.828125,2.5 0.921875,2.5 1.890625,2.5 2.8125,2 2.828125,1.25 v -2.28125 c 0,-0.390625 0,-0.703125 0.390625,-1.03125 C 3.5625,-2.359375 3.953125,-2.375 4.171875,-2.375 4.21875,-2.390625 4.25,-2.4375 4.25,-2.5 4.25,-2.59375 4.203125,-2.59375 4.09375,-2.609375 3.4375,-2.640625 2.953125,-3 2.84375,-3.484375 2.828125,-3.59375 2.828125,-3.625 2.828125,-3.984375 v -1.96875 c 0,-0.421875 0,-0.734375 -0.484375,-1.109375 C 1.9375,-7.375 1.25,-7.484375 0.921875,-7.484375 c -0.09375,0 -0.203125,0 -0.203125,0.125 0,0.09375 0.0625,0.09375 0.15625,0.109375 0.625,0.03125 1.125,0.359375 1.25,0.859375 0.03125,0.09375 0.03125,0.109375 0.03125,0.46875 v 2.09375 c 0,0.453125 0.078125,0.625 0.390625,0.953125 0.21875,0.203125 0.5,0.296875 0.78125,0.375 -0.8125,0.234375 -1.171875,0.703125 -1.171875,1.28125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-dfa10d39-7c73-4fff-b909-7cdaee838195"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-e79fb80d-9578-41f3-b7df-d834b665709d"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-bfa1df09-c8dd-4601-884a-cfdd4a2edc8c"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-18943262-6bdf-4533-9711-0f334152ccc0"
d="m 4.671875,-3.703125 c 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.046875,0.1875 0.15625,0.296875 0.21875,0.203125 0.34375,0.453125 0.34375,0.8125 0,0.421875 -0.609375,2.703125 -1.765625,2.703125 -0.515625,0 -0.75,-0.34375 -0.75,-0.875 0,-0.546875 0.28125,-1.28125 0.578125,-2.109375 0.078125,-0.171875 0.125,-0.3125 0.125,-0.5 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.9375,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.296875,-1 0.71875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.53125 -0.171875,0.703125 -0.4375,1.15625 -0.5625,1.609375 -0.5625,2.046875 0,1.078125 0.875,1.234375 1.328125,1.234375 1.671875,0 2.25,-3.296875 2.25,-3.8125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-456a9ae7-8212-499a-9920-830dac18f5c4"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-98b0a745-22ce-48bd-8eff-1ee8bf6edd69"
d="m 2.03125,-0.015625 c 0,-0.65625 -0.25,-1.046875 -0.640625,-1.046875 -0.328125,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.265625 1.0625,0 1.390625,0 1.5,0 1.640625,-0.046875 1.734375,-0.125 1.765625,-0.15625 1.78125,-0.15625 1.78125,-0.15625 c 0.015625,0 0.015625,0 0.015625,0.140625 0,0.75 -0.34375,1.34375 -0.671875,1.671875 -0.109375,0.109375 -0.109375,0.125 -0.109375,0.15625 0,0.078125 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.921875,-0.765625 0.921875,-1.9375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-f56c7c8e-45a2-4946-bb37-f5284b5d07b2"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-db790673-d0bc-4e65-bcae-2e55f1e78bd1"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-7aaefa14-2434-44f5-a057-4b602f694685"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-f5a49208-2442-4aa1-963c-91ef75dfd8cb"
d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-87e427c4-93d0-4af4-9786-a5593e75bcb9"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-3b6a41d2-06d4-44e2-b56e-515cc2ea8314"
d="M 3.515625,-1.265625 H 3.28125 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 C 3.046875,-0.59375 2.515625,-0.59375 2.40625,-0.59375 H 1.125 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 h 2.875 z m 0,0"
style="stroke:none" />
</symbol>
</g>
</defs>
<g
transform="translate(-134.096, -127.843)"
id="id-fa67d8ec-6358-4653-bdf8-034f4dde5b15">
<g
id="id-489ebfc1-e9dc-4415-8e33-d6f234d11364"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(133.768, 134.765)"
id="g2313">
<path
inkscape:connector-curvature="0"
id="id-89557677-c866-4cb2-b185-0aa4ca17ced2"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(137.697, 134.765)"
id="g2316">
<path
inkscape:connector-curvature="0"
id="id-91d9d0cc-5ba8-4b74-8a8b-242e2a73c1d5"
d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(143.232, 134.765)"
id="g2319">
<path
inkscape:connector-curvature="0"
id="id-2e967f4e-6bc7-4db3-ba00-36dc627a48f5"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(148.768, 134.765)"
id="g2322">
<path
inkscape:connector-curvature="0"
id="id-65db98a0-64d8-4246-92f3-a6316fcd6e02"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(152.697, 134.765)"
id="g2325">
<path
inkscape:connector-curvature="0"
id="id-3918ae20-9541-4552-9924-2b26c858316d"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(158.232, 134.765)"
id="g2328">
<path
inkscape:connector-curvature="0"
id="id-c3c83b2b-c44e-4636-a460-04b4d89ab376"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(163.213, 134.765)"
id="g2331">
<path
inkscape:connector-curvature="0"
id="id-b6374dea-ad60-44e5-af3f-4310053da75d"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(167.641, 134.765)"
id="g2334">
<path
inkscape:connector-curvature="0"
id="id-2ab7617e-88b3-4cc6-9567-dae4f23ffb35"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-f0f47fea-125b-49ef-97bd-dbff270fc280"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(133.768, 146.72)"
id="g2338">
<path
inkscape:connector-curvature="0"
id="id-a9e32d2e-d338-49fc-8440-60968cd10d6a"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(137.697, 146.72)"
id="g2341">
<path
inkscape:connector-curvature="0"
id="id-6c2fe3b8-f95f-4557-8ef6-860b7d944748"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(143.232, 146.72)"
id="g2344">
<path
inkscape:connector-curvature="0"
id="id-46208915-0af4-4079-aec3-7f77e3c3d68e"
d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0"
style="stroke:none" />
</g>
<g
transform="translate(148.214, 146.72)"
id="g2347">
<path
inkscape:connector-curvature="0"
id="id-42f94506-7893-4e4d-96eb-95d1b5c55aef"
d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-5d4644eb-091a-4265-abc5-aad8c0036fee"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(153.749, 146.72)"
id="g2351">
<path
inkscape:connector-curvature="0"
id="id-7ff3818f-a107-43a9-90de-1f83a96c77a8"
d="m 2.828125,-6.15625 c 0,-0.390625 0.25,-1.03125 1.34375,-1.09375 C 4.21875,-7.265625 4.25,-7.3125 4.25,-7.359375 c 0,-0.125 -0.078125,-0.125 -0.1875,-0.125 -0.984375,0 -1.90625,0.515625 -1.90625,1.25 v 2.28125 c 0,0.390625 0,0.703125 -0.40625,1.03125 -0.34375,0.296875 -0.71875,0.3125 -0.9375,0.3125 C 0.75,-2.59375 0.71875,-2.546875 0.71875,-2.5 c 0,0.109375 0.0625,0.109375 0.15625,0.125 0.65625,0.03125 1.140625,0.390625 1.25,0.875 0.03125,0.109375 0.03125,0.140625 0.03125,0.5 v 1.96875 c 0,0.421875 0,0.734375 0.46875,1.109375 C 3.015625,2.375 3.671875,2.5 4.0625,2.5 4.171875,2.5 4.25,2.5 4.25,2.375 4.25,2.28125 4.203125,2.28125 4.09375,2.265625 3.46875,2.234375 2.984375,1.90625 2.84375,1.40625 2.828125,1.3125 2.828125,1.296875 2.828125,0.9375 v -2.09375 c 0,-0.453125 -0.09375,-0.625 -0.40625,-0.953125 C 2.21875,-2.3125 1.921875,-2.40625 1.640625,-2.5 c 0.828125,-0.21875 1.1875,-0.6875 1.1875,-1.265625 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-a039ab67-c0f1-430b-be75-fefdc4a65e5c"
style="fill:#ff0000;fill-opacity:1">
<g
transform="translate(158.73, 146.72)"
id="g2355">
<path
inkscape:connector-curvature="0"
id="id-db50fede-8d3f-4a3d-8778-f27d1b67c07a"
d="m 4.671875,-3.703125 c 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.046875,0.1875 0.15625,0.296875 0.21875,0.203125 0.34375,0.453125 0.34375,0.8125 0,0.421875 -0.609375,2.703125 -1.765625,2.703125 -0.515625,0 -0.75,-0.34375 -0.75,-0.875 0,-0.546875 0.28125,-1.28125 0.578125,-2.109375 0.078125,-0.171875 0.125,-0.3125 0.125,-0.5 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.9375,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.296875,-1 0.71875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.53125 -0.171875,0.703125 -0.4375,1.15625 -0.5625,1.609375 -0.5625,2.046875 0,1.078125 0.875,1.234375 1.328125,1.234375 1.671875,0 2.25,-3.296875 2.25,-3.8125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-6bf44d83-c2c1-4ebd-a14a-b57035246eb7"
style="fill:#ff0000;fill-opacity:1">
<g
transform="translate(163.559, 148.214)"
id="g2359">
<path
inkscape:connector-curvature="0"
id="id-e8e7c045-4e7e-46d4-8a1b-8b58a42c24e9"
d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 v 0.25 c 0.15625,0 0.625,0 1,-0.1875 v 3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 H 0.8125 V 0 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 V -0.25 H 3.03125 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-4b635b68-b8d0-4558-b488-daaaa0b732f7"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(168.029, 146.72)"
id="g2363">
<path
inkscape:connector-curvature="0"
id="id-5f305888-fc9a-4722-812e-4ea6c03a32fb"
d="m 2.03125,-0.015625 c 0,-0.65625 -0.25,-1.046875 -0.640625,-1.046875 -0.328125,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.265625 1.0625,0 1.390625,0 1.5,0 1.640625,-0.046875 1.734375,-0.125 1.765625,-0.15625 1.78125,-0.15625 1.78125,-0.15625 c 0.015625,0 0.015625,0 0.015625,0.140625 0,0.75 -0.34375,1.34375 -0.671875,1.671875 -0.109375,0.109375 -0.109375,0.125 -0.109375,0.15625 0,0.078125 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.921875,-0.765625 0.921875,-1.9375 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-03018ca5-5730-4460-9408-c957f9608f80"
style="fill:#007f00;fill-opacity:1">
<g
transform="translate(172.46, 146.72)"
id="g2367">
<path
inkscape:connector-curvature="0"
id="id-5198a351-512f-4bb1-b263-26623b44d121"
d="m 4.671875,-3.703125 c 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.046875,0.1875 0.15625,0.296875 0.21875,0.203125 0.34375,0.453125 0.34375,0.8125 0,0.421875 -0.609375,2.703125 -1.765625,2.703125 -0.515625,0 -0.75,-0.34375 -0.75,-0.875 0,-0.546875 0.28125,-1.28125 0.578125,-2.109375 0.078125,-0.171875 0.125,-0.3125 0.125,-0.5 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.9375,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.296875,-1 0.71875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.53125 -0.171875,0.703125 -0.4375,1.15625 -0.5625,1.609375 -0.5625,2.046875 0,1.078125 0.875,1.234375 1.328125,1.234375 1.671875,0 2.25,-3.296875 2.25,-3.8125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-d55c8c14-84ee-4e02-915c-8c4c0071d4db"
style="fill:#007f00;fill-opacity:1">
<g
transform="translate(177.286, 148.214)"
id="g2371">
<path
inkscape:connector-curvature="0"
id="id-5bda64b4-8670-4385-aca9-a4d5196331da"
d="M 3.515625,-1.265625 H 3.28125 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 C 3.046875,-0.59375 2.515625,-0.59375 2.40625,-0.59375 H 1.125 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 h 2.875 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-a71c352e-2d66-4836-9fb1-4724bececdef"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(181.755, 146.72)"
id="g2375">
<path
inkscape:connector-curvature="0"
id="id-4c76ce84-89f5-4fee-9ea1-6337e6ec0194"
d="m 2.15625,1.171875 c 0,0.390625 -0.265625,1.03125 -1.34375,1.09375 C 0.75,2.28125 0.71875,2.328125 0.71875,2.375 0.71875,2.5 0.828125,2.5 0.921875,2.5 1.890625,2.5 2.8125,2 2.828125,1.25 v -2.28125 c 0,-0.390625 0,-0.703125 0.390625,-1.03125 C 3.5625,-2.359375 3.953125,-2.375 4.171875,-2.375 4.21875,-2.390625 4.25,-2.4375 4.25,-2.5 4.25,-2.59375 4.203125,-2.59375 4.09375,-2.609375 3.4375,-2.640625 2.953125,-3 2.84375,-3.484375 2.828125,-3.59375 2.828125,-3.625 2.828125,-3.984375 v -1.96875 c 0,-0.421875 0,-0.734375 -0.484375,-1.109375 C 1.9375,-7.375 1.25,-7.484375 0.921875,-7.484375 c -0.09375,0 -0.203125,0 -0.203125,0.125 0,0.09375 0.0625,0.09375 0.15625,0.109375 0.625,0.03125 1.125,0.359375 1.25,0.859375 0.03125,0.09375 0.03125,0.109375 0.03125,0.46875 v 2.09375 c 0,0.453125 0.078125,0.625 0.390625,0.953125 0.21875,0.203125 0.5,0.296875 0.78125,0.375 -0.8125,0.234375 -1.171875,0.703125 -1.171875,1.28125 z m 0,0"
style="stroke:none" />
</g>
</g>
</g>
</g>
<g
transform="matrix(1.64149 0 0 1.64149 205.783 333.067)"
ns1:version="1.0.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="inkscape"
ns1:text="$\\{y:W(y) = \\alpha^\\ast\\}$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\textext\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
ns1:inkscapeversion="1.0rc1"
ns1:jacobian_sqrt="1.64149"
id="g3113">
<defs
id="id-f8b9981d-7f18-4da7-969f-a8d58ffed9a1">
<g
id="id-18c30537-9fc1-45c0-b575-a3b4d35cc0e2">
<symbol
id="id-9b4eff03-4a96-40a9-ae57-878000d9dcef"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-4833e1dc-57a7-4696-bd01-d823dcde920c"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-64fd51eb-5154-44da-b4b3-59de374b232b"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-fe56dda6-9602-4905-9c5c-bbc2a4b69353"
d="m 2.828125,-6.15625 c 0,-0.390625 0.25,-1.03125 1.34375,-1.09375 C 4.21875,-7.265625 4.25,-7.3125 4.25,-7.359375 c 0,-0.125 -0.078125,-0.125 -0.1875,-0.125 -0.984375,0 -1.90625,0.515625 -1.90625,1.25 v 2.28125 c 0,0.390625 0,0.703125 -0.40625,1.03125 -0.34375,0.296875 -0.71875,0.3125 -0.9375,0.3125 C 0.75,-2.59375 0.71875,-2.546875 0.71875,-2.5 c 0,0.109375 0.0625,0.109375 0.15625,0.125 0.65625,0.03125 1.140625,0.390625 1.25,0.875 0.03125,0.109375 0.03125,0.140625 0.03125,0.5 v 1.96875 c 0,0.421875 0,0.734375 0.46875,1.109375 C 3.015625,2.375 3.671875,2.5 4.0625,2.5 4.171875,2.5 4.25,2.5 4.25,2.375 4.25,2.28125 4.203125,2.28125 4.09375,2.265625 3.46875,2.234375 2.984375,1.90625 2.84375,1.40625 2.828125,1.3125 2.828125,1.296875 2.828125,0.9375 v -2.09375 c 0,-0.453125 -0.09375,-0.625 -0.40625,-0.953125 C 2.21875,-2.3125 1.921875,-2.40625 1.640625,-2.5 c 0.828125,-0.21875 1.1875,-0.6875 1.1875,-1.265625 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-594107d6-39ec-4990-8971-f0d2d4b3a687"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-56ab4939-31c4-4d8a-8fd9-36ea21213f51"
d="m 2.15625,1.171875 c 0,0.390625 -0.265625,1.03125 -1.34375,1.09375 C 0.75,2.28125 0.71875,2.328125 0.71875,2.375 0.71875,2.5 0.828125,2.5 0.921875,2.5 1.890625,2.5 2.8125,2 2.828125,1.25 v -2.28125 c 0,-0.390625 0,-0.703125 0.390625,-1.03125 C 3.5625,-2.359375 3.953125,-2.375 4.171875,-2.375 4.21875,-2.390625 4.25,-2.4375 4.25,-2.5 4.25,-2.59375 4.203125,-2.59375 4.09375,-2.609375 3.4375,-2.640625 2.953125,-3 2.84375,-3.484375 2.828125,-3.59375 2.828125,-3.625 2.828125,-3.984375 v -1.96875 c 0,-0.421875 0,-0.734375 -0.484375,-1.109375 C 1.9375,-7.375 1.25,-7.484375 0.921875,-7.484375 c -0.09375,0 -0.203125,0 -0.203125,0.125 0,0.09375 0.0625,0.09375 0.15625,0.109375 0.625,0.03125 1.125,0.359375 1.25,0.859375 0.03125,0.09375 0.03125,0.109375 0.03125,0.46875 v 2.09375 c 0,0.453125 0.078125,0.625 0.390625,0.953125 0.21875,0.203125 0.5,0.296875 0.78125,0.375 -0.8125,0.234375 -1.171875,0.703125 -1.171875,1.28125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-63e8d549-af54-4940-8c79-6720c3a221a1"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-3914280f-0b88-4046-ae78-78b7a6d6f723"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-261e4624-087e-466e-b681-6b71aff1c51b"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-28e81327-e0be-42d3-9e01-dae1c1ef0462"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-c0150555-a66c-4d37-a426-11cdae1bef62"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-38b539e6-e6ce-407e-b7b8-5ac24a0588ee"
d="m 9.140625,-5.65625 c 0.25,-0.4375 0.484375,-0.796875 1.125,-0.84375 0.07813,-0.015625 0.1875,-0.015625 0.1875,-0.203125 0,-0.03125 -0.04687,-0.109375 -0.125,-0.109375 -0.234375,0 -0.515625,0.03125 -0.765625,0.03125 -0.34375,0 -0.703125,-0.03125 -1.046875,-0.03125 -0.046875,0 -0.1875,0 -0.1875,0.1875 0,0.109375 0.09375,0.125 0.15625,0.125 0.234375,0.015625 0.59375,0.09375 0.59375,0.390625 0,0.109375 -0.0625,0.1875 -0.140625,0.328125 L 6.25,-1.09375 5.875,-6.03125 c 0,-0.203125 -0.015625,-0.453125 0.703125,-0.46875 0.171875,0 0.265625,0 0.265625,-0.203125 0,-0.09375 -0.109375,-0.109375 -0.140625,-0.109375 -0.40625,0 -0.828125,0.03125 -1.21875,0.03125 -0.234375,0 -0.8125,-0.03125 -1.046875,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 C 4.25,-6.5 4.34375,-6.5 4.484375,-6.5 4.921875,-6.5 5,-6.4375 5.015625,-6.25 l 0.0625,0.765625 -2.53125,4.390625 -0.375,-5.046875 c 0,-0.125 0,-0.34375 0.765625,-0.359375 0.09375,0 0.203125,0 0.203125,-0.203125 C 3.140625,-6.8125 3.015625,-6.8125 3,-6.8125 c -0.390625,0 -0.8125,0.03125 -1.21875,0.03125 -0.359375,0 -0.71875,-0.03125 -1.046875,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.1875 0,0.125 0.09375,0.125 0.25,0.125 0.5,0 0.515625,0.09375 0.53125,0.375 l 0.453125,6.078125 c 0,0.1875 0.015625,0.265625 0.15625,0.265625 0.109375,0 0.140625,-0.0625 0.234375,-0.203125 l 2.9375,-5.09375 0.359375,5.03125 C 5.5,0.171875 5.515625,0.21875 5.625,0.21875 c 0.140625,0 0.203125,-0.09375 0.25,-0.1875 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-80390aee-a7fb-468d-ab08-6ff40c82722a"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-d2aced5a-118a-4e74-a9e2-c496e985e5b4"
d="m 4.75,-2.359375 c 0,-1.5625 -0.921875,-2.046875 -1.65625,-2.046875 -1.375,0 -2.6875,1.421875 -2.6875,2.828125 0,0.9375 0.59375,1.6875 1.625,1.6875 0.625,0 1.34375,-0.234375 2.09375,-0.84375 0.125,0.53125 0.453125,0.84375 0.90625,0.84375 0.53125,0 0.84375,-0.546875 0.84375,-0.703125 0,-0.078125 -0.0625,-0.109375 -0.125,-0.109375 -0.0625,0 -0.09375,0.03125 -0.125,0.109375 -0.1875,0.484375 -0.546875,0.484375 -0.5625,0.484375 -0.3125,0 -0.3125,-0.78125 -0.3125,-1.015625 0,-0.203125 0,-0.234375 0.109375,-0.34375 C 5.796875,-2.65625 6,-3.8125 6,-3.8125 6,-3.84375 5.984375,-3.921875 5.875,-3.921875 c -0.09375,0 -0.09375,0.03125 -0.140625,0.21875 -0.1875,0.625 -0.515625,1.375 -0.984375,1.96875 z m -0.65625,1.375 c -0.890625,0.765625 -1.65625,0.875 -2.046875,0.875 -0.59375,0 -0.90625,-0.453125 -0.90625,-1.09375 0,-0.484375 0.265625,-1.5625 0.578125,-2.0625 C 2.1875,-4 2.734375,-4.1875 3.078125,-4.1875 c 0.984375,0 0.984375,1.3125 0.984375,2.078125 0,0.375 0,0.953125 0.03125,1.125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-5ec286dc-044a-4934-811e-c364ce1e1ceb"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-4ca56b5f-d21f-4168-8e92-5a626ed0ebf5"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-3acce0b8-c7fe-4021-b51a-3bd1f456d49b"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-c776d74b-7798-4dbd-aa21-12704f4b8b15"
d="m 1.90625,-3.765625 c 0,-0.296875 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.25 0.515625,-0.53125 z m 0,3.234375 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-b111882a-8be0-4c97-b424-7dc920f33dcb"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-57619627-8426-411d-a76c-fda684af349c"
d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-e33d78f1-339b-4c38-ad08-5ef3a040e31a"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-7d846535-0d8c-49ec-9dcd-a126fa042452"
d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-1e7b2e70-7c71-4d62-bd0b-142294d51f0f"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-5fff29bf-e91a-40df-88b2-0454c57ca652"
d="m 6.84375,-3.265625 c 0.15625,0 0.34375,0 0.34375,-0.1875 C 7.1875,-3.65625 7,-3.65625 6.859375,-3.65625 h -5.96875 c -0.140625,0 -0.328125,0 -0.328125,0.203125 0,0.1875 0.1875,0.1875 0.328125,0.1875 z m 0.015625,1.9375 c 0.140625,0 0.328125,0 0.328125,-0.203125 0,-0.1875 -0.1875,-0.1875 -0.34375,-0.1875 H 0.890625 c -0.140625,0 -0.328125,0 -0.328125,0.1875 0,0.203125 0.1875,0.203125 0.328125,0.203125 z m 0,0"
style="stroke:none" />
</symbol>
<symbol
id="id-4d47eb9b-cab9-4584-af2f-c9db28aeeeaf"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-e36f0989-3eaa-49b5-8793-a8d46b37096c"
d=""
style="stroke:none" />
</symbol>
<symbol
id="id-023403b2-a7ef-4cc7-9eeb-2aae2193f896"
overflow="visible">
<path
inkscape:connector-curvature="0"
id="id-05a00a15-b824-4854-8469-8d6284d2566f"
d="m 2.25,-1.734375 c 0.578125,-0.25 0.828125,-0.34375 1,-0.4375 0.140625,-0.046875 0.203125,-0.078125 0.203125,-0.21875 0,-0.109375 -0.09375,-0.21875 -0.21875,-0.21875 -0.046875,0 -0.0625,0 -0.140625,0.0625 L 2.140625,-1.90625 2.25,-2.9375 c 0.015625,-0.125 0,-0.296875 -0.21875,-0.296875 -0.078125,0 -0.21875,0.046875 -0.21875,0.203125 0,0.0625 0.03125,0.265625 0.046875,0.34375 0.015625,0.109375 0.0625,0.625 0.078125,0.78125 L 0.984375,-2.546875 c -0.0625,-0.03125 -0.078125,-0.0625 -0.140625,-0.0625 -0.140625,0 -0.21875,0.109375 -0.21875,0.21875 0,0.140625 0.078125,0.1875 0.140625,0.203125 L 1.8125,-1.734375 c -0.5625,0.25 -0.828125,0.34375 -1,0.421875 -0.125,0.0625 -0.1875,0.09375 -0.1875,0.21875 0,0.125 0.078125,0.21875 0.21875,0.21875 0.046875,0 0.0625,0 0.140625,-0.0625 l 0.953125,-0.625 -0.125,1.109375 c 0,0.15625 0.140625,0.21875 0.21875,0.21875 0.09375,0 0.21875,-0.0625 0.21875,-0.21875 0,-0.0625 -0.03125,-0.265625 -0.03125,-0.328125 -0.015625,-0.125 -0.0625,-0.625 -0.078125,-0.78125 L 2.96875,-1.015625 C 3.15625,-0.875 3.171875,-0.875 3.234375,-0.875 c 0.125,0 0.21875,-0.09375 0.21875,-0.21875 0,-0.140625 -0.09375,-0.171875 -0.15625,-0.203125 z m 0,0"
style="stroke:none" />
</symbol>
</g>
</defs>
<g
transform="translate(-149.431, -127.281)"
id="id-abd056f1-211b-4864-a03d-7f1302f3efe9">
<g
id="id-38717f8f-36b9-4c49-9649-9ab3c6870923"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(148.712, 134.765)"
id="g3068">
<path
inkscape:connector-curvature="0"
id="id-8fe4e7c8-03ff-4e91-bedd-76bd47803862"
d="m 2.828125,-6.15625 c 0,-0.390625 0.25,-1.03125 1.34375,-1.09375 C 4.21875,-7.265625 4.25,-7.3125 4.25,-7.359375 c 0,-0.125 -0.078125,-0.125 -0.1875,-0.125 -0.984375,0 -1.90625,0.515625 -1.90625,1.25 v 2.28125 c 0,0.390625 0,0.703125 -0.40625,1.03125 -0.34375,0.296875 -0.71875,0.3125 -0.9375,0.3125 C 0.75,-2.59375 0.71875,-2.546875 0.71875,-2.5 c 0,0.109375 0.0625,0.109375 0.15625,0.125 0.65625,0.03125 1.140625,0.390625 1.25,0.875 0.03125,0.109375 0.03125,0.140625 0.03125,0.5 v 1.96875 c 0,0.421875 0,0.734375 0.46875,1.109375 C 3.015625,2.375 3.671875,2.5 4.0625,2.5 4.171875,2.5 4.25,2.5 4.25,2.375 4.25,2.28125 4.203125,2.28125 4.09375,2.265625 3.46875,2.234375 2.984375,1.90625 2.84375,1.40625 2.828125,1.3125 2.828125,1.296875 2.828125,0.9375 v -2.09375 c 0,-0.453125 -0.09375,-0.625 -0.40625,-0.953125 C 2.21875,-2.3125 1.921875,-2.40625 1.640625,-2.5 c 0.828125,-0.21875 1.1875,-0.6875 1.1875,-1.265625 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-4eae2881-0b32-43b2-8cf4-483e385f75e3"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(153.694, 134.765)"
id="g3072">
<path
inkscape:connector-curvature="0"
id="id-e79f7603-228f-48ac-9737-48836c5cf1ce"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-168a582d-6570-4dcc-84c9-b1a3ac09feab"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(161.703, 134.765)"
id="g3076">
<path
inkscape:connector-curvature="0"
id="id-71d0d799-e915-40e6-93a7-4e0cf8274e1e"
d="m 1.90625,-3.765625 c 0,-0.296875 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.234375,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.25 0.515625,-0.53125 z m 0,3.234375 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-1058d3be-6da4-4116-b19b-922d92765b9e"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(167.238, 134.765)"
id="g3080">
<path
inkscape:connector-curvature="0"
id="id-991734d5-c0fc-429f-9312-35cbde6f12f6"
d="m 9.140625,-5.65625 c 0.25,-0.4375 0.484375,-0.796875 1.125,-0.84375 0.07813,-0.015625 0.1875,-0.015625 0.1875,-0.203125 0,-0.03125 -0.04687,-0.109375 -0.125,-0.109375 -0.234375,0 -0.515625,0.03125 -0.765625,0.03125 -0.34375,0 -0.703125,-0.03125 -1.046875,-0.03125 -0.046875,0 -0.1875,0 -0.1875,0.1875 0,0.109375 0.09375,0.125 0.15625,0.125 0.234375,0.015625 0.59375,0.09375 0.59375,0.390625 0,0.109375 -0.0625,0.1875 -0.140625,0.328125 L 6.25,-1.09375 5.875,-6.03125 c 0,-0.203125 -0.015625,-0.453125 0.703125,-0.46875 0.171875,0 0.265625,0 0.265625,-0.203125 0,-0.09375 -0.109375,-0.109375 -0.140625,-0.109375 -0.40625,0 -0.828125,0.03125 -1.21875,0.03125 -0.234375,0 -0.8125,-0.03125 -1.046875,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 C 4.25,-6.5 4.34375,-6.5 4.484375,-6.5 4.921875,-6.5 5,-6.4375 5.015625,-6.25 l 0.0625,0.765625 -2.53125,4.390625 -0.375,-5.046875 c 0,-0.125 0,-0.34375 0.765625,-0.359375 0.09375,0 0.203125,0 0.203125,-0.203125 C 3.140625,-6.8125 3.015625,-6.8125 3,-6.8125 c -0.390625,0 -0.8125,0.03125 -1.21875,0.03125 -0.359375,0 -0.71875,-0.03125 -1.046875,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.1875 0,0.125 0.09375,0.125 0.25,0.125 0.5,0 0.515625,0.09375 0.53125,0.375 l 0.453125,6.078125 c 0,0.1875 0.015625,0.265625 0.15625,0.265625 0.109375,0 0.140625,-0.0625 0.234375,-0.203125 l 2.9375,-5.09375 0.359375,5.03125 C 5.5,0.171875 5.515625,0.21875 5.625,0.21875 c 0.140625,0 0.203125,-0.09375 0.25,-0.1875 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-619adc88-aa9d-45d8-a4c2-1e5741f8fab3"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(178.031, 134.765)"
id="g3084">
<path
inkscape:connector-curvature="0"
id="id-6fc4e850-b6f6-4326-9ef8-62543e9157d8"
d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-3993f18e-13bd-43b0-9048-825a9b8999b4"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(181.905, 134.765)"
id="g3088">
<path
inkscape:connector-curvature="0"
id="id-f45fc234-6e13-47ba-afc9-26368d23bf53"
d="m 4.84375,-3.796875 c 0.046875,-0.140625 0.046875,-0.15625 0.046875,-0.234375 0,-0.171875 -0.140625,-0.265625 -0.296875,-0.265625 -0.09375,0 -0.25,0.0625 -0.34375,0.203125 -0.015625,0.0625 -0.109375,0.359375 -0.140625,0.546875 -0.078125,0.25 -0.140625,0.53125 -0.203125,0.796875 l -0.453125,1.796875 c -0.03125,0.140625 -0.46875,0.84375 -1.125,0.84375 -0.5,0 -0.609375,-0.4375 -0.609375,-0.8125 C 1.71875,-1.375 1.890625,-2 2.21875,-2.875 2.375,-3.28125 2.421875,-3.390625 2.421875,-3.59375 c 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.28125,-0.9375 0.671875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.515625 -0.171875,0.703125 -0.40625,1.0625 -0.578125,1.625 -0.578125,2.09375 0,0.890625 0.625,1.1875 1.21875,1.1875 0.390625,0 0.71875,-0.171875 1,-0.453125 -0.125,0.515625 -0.25,1.015625 -0.640625,1.546875 -0.265625,0.328125 -0.640625,0.625 -1.09375,0.625 -0.140625,0 -0.59375,-0.03125 -0.765625,-0.421875 0.15625,0 0.296875,0 0.421875,-0.125 C 1.328125,1.203125 1.421875,1.0625 1.421875,0.875 1.421875,0.5625 1.15625,0.53125 1.0625,0.53125 0.828125,0.53125 0.5,0.6875 0.5,1.171875 c 0,0.5 0.4375,0.875 1.0625,0.875 1.015625,0 2.046875,-0.90625 2.328125,-2.03125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-7ebb04ac-cb9e-4cc6-8d65-e86e8829ae7c"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(187.147, 134.765)"
id="g3092">
<path
inkscape:connector-curvature="0"
id="id-23e4ed6e-aaec-43fc-a764-e864aac9c912"
d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-96fbdf64-ccd3-4b2d-9b10-369cbd796d36"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(193.791, 134.765)"
id="g3096">
<path
inkscape:connector-curvature="0"
id="id-901edc88-0505-4ce1-9768-e45bfc75c564"
d="m 6.84375,-3.265625 c 0.15625,0 0.34375,0 0.34375,-0.1875 C 7.1875,-3.65625 7,-3.65625 6.859375,-3.65625 h -5.96875 c -0.140625,0 -0.328125,0 -0.328125,0.203125 0,0.1875 0.1875,0.1875 0.328125,0.1875 z m 0.015625,1.9375 c 0.140625,0 0.328125,0 0.328125,-0.203125 0,-0.1875 -0.1875,-0.1875 -0.34375,-0.1875 H 0.890625 c -0.140625,0 -0.328125,0 -0.328125,0.1875 0,0.203125 0.1875,0.203125 0.328125,0.203125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-41aba798-ee5a-4016-8211-161dd56ead68"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(204.305, 134.765)"
id="g3100">
<path
inkscape:connector-curvature="0"
id="id-22da46bc-d2a2-4438-8633-33e19b6ede0c"
d="m 4.75,-2.359375 c 0,-1.5625 -0.921875,-2.046875 -1.65625,-2.046875 -1.375,0 -2.6875,1.421875 -2.6875,2.828125 0,0.9375 0.59375,1.6875 1.625,1.6875 0.625,0 1.34375,-0.234375 2.09375,-0.84375 0.125,0.53125 0.453125,0.84375 0.90625,0.84375 0.53125,0 0.84375,-0.546875 0.84375,-0.703125 0,-0.078125 -0.0625,-0.109375 -0.125,-0.109375 -0.0625,0 -0.09375,0.03125 -0.125,0.109375 -0.1875,0.484375 -0.546875,0.484375 -0.5625,0.484375 -0.3125,0 -0.3125,-0.78125 -0.3125,-1.015625 0,-0.203125 0,-0.234375 0.109375,-0.34375 C 5.796875,-2.65625 6,-3.8125 6,-3.8125 6,-3.84375 5.984375,-3.921875 5.875,-3.921875 c -0.09375,0 -0.09375,0.03125 -0.140625,0.21875 -0.1875,0.625 -0.515625,1.375 -0.984375,1.96875 z m -0.65625,1.375 c -0.890625,0.765625 -1.65625,0.875 -2.046875,0.875 -0.59375,0 -0.90625,-0.453125 -0.90625,-1.09375 0,-0.484375 0.265625,-1.5625 0.578125,-2.0625 C 2.1875,-4 2.734375,-4.1875 3.078125,-4.1875 c 0.984375,0 0.984375,1.3125 0.984375,2.078125 0,0.375 0,0.953125 0.03125,1.125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-e750bc4f-e394-40b6-8ba3-aa7fb49903fc"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(210.715, 131.149)"
id="g3105">
<path
inkscape:connector-curvature="0"
id="id-0396546f-1e97-442b-a194-ba30f8d7c60c"
d="m 2.25,-1.734375 c 0.578125,-0.25 0.828125,-0.34375 1,-0.4375 0.140625,-0.046875 0.203125,-0.078125 0.203125,-0.21875 0,-0.109375 -0.09375,-0.21875 -0.21875,-0.21875 -0.046875,0 -0.0625,0 -0.140625,0.0625 L 2.140625,-1.90625 2.25,-2.9375 c 0.015625,-0.125 0,-0.296875 -0.21875,-0.296875 -0.078125,0 -0.21875,0.046875 -0.21875,0.203125 0,0.0625 0.03125,0.265625 0.046875,0.34375 0.015625,0.109375 0.0625,0.625 0.078125,0.78125 L 0.984375,-2.546875 c -0.0625,-0.03125 -0.078125,-0.0625 -0.140625,-0.0625 -0.140625,0 -0.21875,0.109375 -0.21875,0.21875 0,0.140625 0.078125,0.1875 0.140625,0.203125 L 1.8125,-1.734375 c -0.5625,0.25 -0.828125,0.34375 -1,0.421875 -0.125,0.0625 -0.1875,0.09375 -0.1875,0.21875 0,0.125 0.078125,0.21875 0.21875,0.21875 0.046875,0 0.0625,0 0.140625,-0.0625 l 0.953125,-0.625 -0.125,1.109375 c 0,0.15625 0.140625,0.21875 0.21875,0.21875 0.09375,0 0.21875,-0.0625 0.21875,-0.21875 0,-0.0625 -0.03125,-0.265625 -0.03125,-0.328125 -0.015625,-0.125 -0.0625,-0.625 -0.078125,-0.78125 L 2.96875,-1.015625 C 3.15625,-0.875 3.171875,-0.875 3.234375,-0.875 c 0.125,0 0.21875,-0.09375 0.21875,-0.21875 0,-0.140625 -0.09375,-0.171875 -0.15625,-0.203125 z m 0,0"
style="stroke:none" />
</g>
</g>
<g
id="id-4e12a304-3ffa-4204-a61d-c53c6b35e357"
style="fill:#000000;fill-opacity:1">
<g
transform="translate(215.295, 134.765)"
id="g3109">
<path
inkscape:connector-curvature="0"
id="id-a8cd31e2-45c6-4b71-957a-d1934881e3e5"
d="m 2.15625,1.171875 c 0,0.390625 -0.265625,1.03125 -1.34375,1.09375 C 0.75,2.28125 0.71875,2.328125 0.71875,2.375 0.71875,2.5 0.828125,2.5 0.921875,2.5 1.890625,2.5 2.8125,2 2.828125,1.25 v -2.28125 c 0,-0.390625 0,-0.703125 0.390625,-1.03125 C 3.5625,-2.359375 3.953125,-2.375 4.171875,-2.375 4.21875,-2.390625 4.25,-2.4375 4.25,-2.5 4.25,-2.59375 4.203125,-2.59375 4.09375,-2.609375 3.4375,-2.640625 2.953125,-3 2.84375,-3.484375 2.828125,-3.59375 2.828125,-3.625 2.828125,-3.984375 v -1.96875 c 0,-0.421875 0,-0.734375 -0.484375,-1.109375 C 1.9375,-7.375 1.25,-7.484375 0.921875,-7.484375 c -0.09375,0 -0.203125,0 -0.203125,0.125 0,0.09375 0.0625,0.09375 0.15625,0.109375 0.625,0.03125 1.125,0.359375 1.25,0.859375 0.03125,0.09375 0.03125,0.109375 0.03125,0.46875 v 2.09375 c 0,0.453125 0.078125,0.625 0.390625,0.953125 0.21875,0.203125 0.5,0.296875 0.78125,0.375 -0.8125,0.234375 -1.171875,0.703125 -1.171875,1.28125 z m 0,0"
style="stroke:none" />
</g>
</g>
</g>
</g>
<g
transform="matrix(1.64149 0 0 1.64149 414.056 417.087)"
ns1:version="1.0.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="inkscape"
ns1:text="Desired periodic orbit"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\textext\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
ns1:inkscapeversion="1.0rc1"
ns1:jacobian_sqrt="1.64149"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3879">
<defs
id="id-6d0cf749-6df5-4a10-b32b-5f7c7f3e0e5f"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<g
id="id-6737f464-39e3-4f13-bfbf-2d6090ec6d64"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<symbol
id="id-bd94cf03-da24-4c16-9032-f1b5862f401f"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-48742d2f-875a-41e2-bf98-9d7582a10c60"
d=""
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-ab703e8f-f427-4e7d-8730-a72a41466de4"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-b6b6880b-aed1-4a2c-8f49-90c60cfb117f"
d="M 0.34375,-6.8125 V -6.5 h 0.25 c 0.765625,0 0.78125,0.109375 0.78125,0.46875 v 5.25 c 0,0.359375 -0.015625,0.46875 -0.78125,0.46875 h -0.25 V 0 H 4 C 5.671875,0 7.046875,-1.46875 7.046875,-3.34375 7.046875,-5.25 5.703125,-6.8125 4,-6.8125 Z m 2.375,6.5 C 2.25,-0.3125 2.234375,-0.375 2.234375,-0.703125 V -6.09375 C 2.234375,-6.4375 2.25,-6.5 2.71875,-6.5 h 1 c 0.625,0 1.3125,0.21875 1.8125,0.921875 0.4375,0.59375 0.515625,1.453125 0.515625,2.234375 0,1.09375 -0.1875,1.703125 -0.546875,2.1875 -0.203125,0.265625 -0.765625,0.84375 -1.765625,0.84375 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-096ed7f3-4527-42b6-9be4-743c5b082342"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-3d39e92d-fc68-44e8-bf93-0adf57d5788c"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-3735aaf7-8dc2-4350-80ec-e203dcb911b7"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-f5a419fa-2652-4416-9cfa-acc36740c271"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-30cba2bc-1ba5-484f-b47b-100ea1c53e49"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-93f3d4c9-b746-4deb-8fe5-e6afac351ca3"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-82b244e1-f2e8-429b-8a49-d4c48e622fb4"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-c049ed09-4ecc-42d0-a595-b0324d5cbe25"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-2fe82430-df61-42d5-9b18-cb058e9d35d1"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-42e3f75c-196e-40df-9a4d-3774c3c6f4bb"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-8b770c0f-9758-41cf-b7f9-bf942a96ed90"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-e2a324c1-72aa-479e-8b77-879359b46456"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-2c72fd33-6b30-473b-ae51-b552f0394d23"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-91666fc1-74ed-480b-9132-cb68a5a8de6c"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-2290a603-7f4a-451b-94ec-8743576821e0"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-f2ca5e25-c5aa-4801-8cfa-3c3621415efe"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-88e31aae-d363-458e-bcea-b48159b78656"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-94757273-26f4-40c1-b7fd-c6e2f170c209"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
<symbol
id="id-30ace23b-9286-4ee4-8306-4d3b77790dc1"
overflow="visible"
style="fill:#ff0000;stroke:#ff0000;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-948da0d6-d385-4d85-997c-7145bc64bafa"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:#ff0000;fill:#ff0000;stroke-width:0" />
</symbol>
</g>
</defs>
<g
transform="translate(-149.056, -127.843)"
id="id-735a9947-12b8-4c24-b8e3-3ca711d4330e"
style="fill:#ff0000;stroke:none;stroke-width:0">
<g
id="id-fb1f2453-31d6-4046-9591-41b72b5f2dd9"
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0">
<g
transform="translate(148.712, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3814">
<path
inkscape:connector-curvature="0"
id="id-be081d84-f9dc-4704-b931-21db459a3995"
d="M 0.34375,-6.8125 V -6.5 h 0.25 c 0.765625,0 0.78125,0.109375 0.78125,0.46875 v 5.25 c 0,0.359375 -0.015625,0.46875 -0.78125,0.46875 h -0.25 V 0 H 4 C 5.671875,0 7.046875,-1.46875 7.046875,-3.34375 7.046875,-5.25 5.703125,-6.8125 4,-6.8125 Z m 2.375,6.5 C 2.25,-0.3125 2.234375,-0.375 2.234375,-0.703125 V -6.09375 C 2.234375,-6.4375 2.25,-6.5 2.71875,-6.5 h 1 c 0.625,0 1.3125,0.21875 1.8125,0.921875 0.4375,0.59375 0.515625,1.453125 0.515625,2.234375 0,1.09375 -0.1875,1.703125 -0.546875,2.1875 -0.203125,0.265625 -0.765625,0.84375 -1.765625,0.84375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(156.322, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3817">
<path
inkscape:connector-curvature="0"
id="id-c94af05b-b4ec-4c92-97f0-c455e0ab111c"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(160.75, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3820">
<path
inkscape:connector-curvature="0"
id="id-fd2ddf1c-a83a-4d44-acd8-6ec768759e9e"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(164.679, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3823">
<path
inkscape:connector-curvature="0"
id="id-640b2cb1-5951-4086-a15e-b800bb73414d"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(167.447, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3826">
<path
inkscape:connector-curvature="0"
id="id-4352c578-9175-421e-a11b-3d08db5d8b43"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(171.349, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3829">
<path
inkscape:connector-curvature="0"
id="id-2529285d-9fea-419f-b254-3ed257b958d8"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(175.776, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3832">
<path
inkscape:connector-curvature="0"
id="id-8b2ff03c-4589-4db5-bea6-fc72fb9d524d"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
</g>
<g
id="id-688ee48c-c484-4264-a5ec-7f96704af8bb"
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0">
<g
transform="translate(184.629, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3836">
<path
inkscape:connector-curvature="0"
id="id-ee6ef8d0-22f3-4699-99ce-bf069a000515"
d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
</g>
<g
id="id-94eb4a11-a9fc-4372-a709-821a303f3447"
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0">
<g
transform="translate(190.443, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3840">
<path
inkscape:connector-curvature="0"
id="id-07d10a86-2940-47c1-a7de-ad9ce4a52cff"
d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(194.871, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3843">
<path
inkscape:connector-curvature="0"
id="id-752ded64-d40a-4759-b735-88739b2c0feb"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(198.773, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3846">
<path
inkscape:connector-curvature="0"
id="id-b12d6bb6-0d14-4479-b02e-176c16e45c86"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(201.541, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3849">
<path
inkscape:connector-curvature="0"
id="id-5886ec27-ae8c-40ea-83d8-0e179e74faad"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
</g>
<g
id="id-542e9770-c63d-40d7-bdd5-94b7ca3e1343"
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0">
<g
transform="translate(206.801, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3853">
<path
inkscape:connector-curvature="0"
id="id-d9c9d1c5-cf23-4fdf-8f71-f8c7a9e8c9ec"
d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(212.336, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3856">
<path
inkscape:connector-curvature="0"
id="id-bfef2944-631b-4e14-aef4-a86e57cfa85f"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(215.104, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3859">
<path
inkscape:connector-curvature="0"
id="id-2c5c7837-ed8b-430b-b7e4-76da88b2fa8c"
d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
</g>
<g
id="id-f6d77e5a-fb79-4ef1-acb9-43f0503fb351"
style="fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:0">
<g
transform="translate(222.849, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3863">
<path
inkscape:connector-curvature="0"
id="id-11cebf45-6864-4170-abe3-1bdcb890eb5d"
d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(227.83, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3866">
<path
inkscape:connector-curvature="0"
id="id-9239a2e0-d71c-48bc-8856-d34c222442f3"
d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(231.732, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3869">
<path
inkscape:connector-curvature="0"
id="id-7c940923-1bac-48cb-9975-3b8d8337d025"
d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(237.268, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3872">
<path
inkscape:connector-curvature="0"
id="id-ed6448f4-6224-409a-ba51-dab855bc7aef"
d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
<g
transform="translate(240.035, 134.765)"
style="fill:#ff0000;stroke:none;stroke-width:0"
id="g3875">
<path
inkscape:connector-curvature="0"
id="id-2a454eb6-9553-49cb-8c06-b1a9bb6956bb"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none;fill:#ff0000;stroke-width:0" />
</g>
</g>
</g>
</g>
<g
transform="matrix(1.64149 0 0 1.64149 530.383 206.561)"
ns1:version="1.0.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="inkscape"
ns1:text="$2\\sqrt{\\alpha^\\ast}$"
ns1:preamble="C:\\Users\\winkler\\AppData\\Roaming\\inkscape\\extensions\\textext\\default_packages.tex"
ns1:scale="1.23111859711"
ns1:alignment="middle center"
ns1:inkscapeversion="1.0rc1"
ns1:jacobian_sqrt="1.64149"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0"
id="g4659">
<defs
id="id-255f42e2-61cb-42a0-8e3f-87078babf303"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<g
id="id-b99e8157-1bf8-4f88-9d26-0c1d87fd4860"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<symbol
id="id-2910ec1e-906c-4857-95fd-04f4b1cd48c6"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-6f95dcb6-85e7-40f2-9587-6bd252c92120"
d=""
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-a4b34e20-1553-4c0b-8031-1bef8ce9e909"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-bf3163fd-b8d9-4d1a-ab62-701ef4251f02"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-4055a0a0-a0a4-4b73-b0b1-3045913c8c64"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-eea2e7c7-a238-4eda-af76-de2b15e15ed4"
d=""
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-a50c211d-2b40-47aa-bddd-f66440bd47e2"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-69f6e76a-94d7-4e59-9470-4f5de206a12e"
d="m 3.875,8.515625 -1.75,-3.875 C 2.046875,4.484375 2,4.484375 1.96875,4.484375 c 0,0 -0.0625,0 -0.171875,0.078125 l -0.9375,0.71875 c -0.125,0.109375 -0.125,0.125 -0.125,0.15625 0,0.0625 0.015625,0.109375 0.09375,0.109375 0.0625,0 0.234375,-0.140625 0.34375,-0.21875 C 1.21875,5.28125 1.375,5.171875 1.484375,5.09375 l 1.96875,4.3125 C 3.515625,9.5625 3.5625,9.5625 3.65625,9.5625 c 0.15625,0 0.1875,-0.046875 0.25,-0.1875 L 8.4375,0 C 8.5,-0.140625 8.5,-0.171875 8.5,-0.203125 8.5,-0.296875 8.421875,-0.40625 8.296875,-0.40625 c -0.078125,0 -0.140625,0.0625 -0.21875,0.21875 z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-48e86839-7843-4636-ae5e-37999350a841"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-f0bf3ac6-9066-41d5-9baa-8729f3b6579d"
d=""
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-30f538d7-ab20-4021-872f-2d7a15f3d1d0"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-3fb249da-fe15-44c5-9f2a-c7707af485db"
d="m 4.75,-2.359375 c 0,-1.5625 -0.921875,-2.046875 -1.65625,-2.046875 -1.375,0 -2.6875,1.421875 -2.6875,2.828125 0,0.9375 0.59375,1.6875 1.625,1.6875 0.625,0 1.34375,-0.234375 2.09375,-0.84375 0.125,0.53125 0.453125,0.84375 0.90625,0.84375 0.53125,0 0.84375,-0.546875 0.84375,-0.703125 0,-0.078125 -0.0625,-0.109375 -0.125,-0.109375 -0.0625,0 -0.09375,0.03125 -0.125,0.109375 -0.1875,0.484375 -0.546875,0.484375 -0.5625,0.484375 -0.3125,0 -0.3125,-0.78125 -0.3125,-1.015625 0,-0.203125 0,-0.234375 0.109375,-0.34375 C 5.796875,-2.65625 6,-3.8125 6,-3.8125 6,-3.84375 5.984375,-3.921875 5.875,-3.921875 c -0.09375,0 -0.09375,0.03125 -0.140625,0.21875 -0.1875,0.625 -0.515625,1.375 -0.984375,1.96875 z m -0.65625,1.375 c -0.890625,0.765625 -1.65625,0.875 -2.046875,0.875 -0.59375,0 -0.90625,-0.453125 -0.90625,-1.09375 0,-0.484375 0.265625,-1.5625 0.578125,-2.0625 C 2.1875,-4 2.734375,-4.1875 3.078125,-4.1875 c 0.984375,0 0.984375,1.3125 0.984375,2.078125 0,0.375 0,0.953125 0.03125,1.125 z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-51793620-1bd6-47ac-b59d-8cf37a12a279"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-07cd8d22-b243-4759-a826-2e6cbe1d088d"
d=""
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
<symbol
id="id-5b06e484-cf5d-4686-ab1f-0c267a67d323"
overflow="visible"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<path
inkscape:connector-curvature="0"
id="id-d11449b7-c35b-40b3-bf20-0652275081e5"
d="m 2.25,-1.734375 c 0.578125,-0.25 0.828125,-0.34375 1,-0.4375 0.140625,-0.046875 0.203125,-0.078125 0.203125,-0.21875 0,-0.109375 -0.09375,-0.21875 -0.21875,-0.21875 -0.046875,0 -0.0625,0 -0.140625,0.0625 L 2.140625,-1.90625 2.25,-2.9375 c 0.015625,-0.125 0,-0.296875 -0.21875,-0.296875 -0.078125,0 -0.21875,0.046875 -0.21875,0.203125 0,0.0625 0.03125,0.265625 0.046875,0.34375 0.015625,0.109375 0.0625,0.625 0.078125,0.78125 L 0.984375,-2.546875 c -0.0625,-0.03125 -0.078125,-0.0625 -0.140625,-0.0625 -0.140625,0 -0.21875,0.109375 -0.21875,0.21875 0,0.140625 0.078125,0.1875 0.140625,0.203125 L 1.8125,-1.734375 c -0.5625,0.25 -0.828125,0.34375 -1,0.421875 -0.125,0.0625 -0.1875,0.09375 -0.1875,0.21875 0,0.125 0.078125,0.21875 0.21875,0.21875 0.046875,0 0.0625,0 0.140625,-0.0625 l 0.953125,-0.625 -0.125,1.109375 c 0,0.15625 0.140625,0.21875 0.21875,0.21875 0.09375,0 0.21875,-0.0625 0.21875,-0.21875 0,-0.0625 -0.03125,-0.265625 -0.03125,-0.328125 -0.015625,-0.125 -0.0625,-0.625 -0.078125,-0.78125 L 2.96875,-1.015625 C 3.15625,-0.875 3.171875,-0.875 3.234375,-0.875 c 0.125,0 0.21875,-0.09375 0.21875,-0.21875 0,-0.140625 -0.09375,-0.171875 -0.15625,-0.203125 z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</symbol>
</g>
</defs>
<g
transform="translate(-149.212, -126.266)"
id="id-cd23694d-5456-437f-af30-3f0bbf183638"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0">
<g
id="id-3b53f8b8-e674-4f44-b0b0-c04031b3a799"
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:0">
<g
transform="translate(148.712, 134.765)"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0"
id="g4642">
<path
inkscape:connector-curvature="0"
id="id-f1305b1e-d9fa-4093-ae90-9ec4310b8b6e"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</g>
</g>
<g
id="id-3804446b-1742-41d9-b530-34394a01dc45"
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:0">
<g
transform="translate(153.694, 126.672)"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0"
id="g4646">
<path
inkscape:connector-curvature="0"
id="id-d0d47e84-f99c-4e74-b427-d53a6f0b5e6b"
d="m 3.875,8.515625 -1.75,-3.875 C 2.046875,4.484375 2,4.484375 1.96875,4.484375 c 0,0 -0.0625,0 -0.171875,0.078125 l -0.9375,0.71875 c -0.125,0.109375 -0.125,0.125 -0.125,0.15625 0,0.0625 0.015625,0.109375 0.09375,0.109375 0.0625,0 0.234375,-0.140625 0.34375,-0.21875 C 1.21875,5.28125 1.375,5.171875 1.484375,5.09375 l 1.96875,4.3125 C 3.515625,9.5625 3.5625,9.5625 3.65625,9.5625 c 0.15625,0 0.1875,-0.046875 0.25,-0.1875 L 8.4375,0 C 8.5,-0.140625 8.5,-0.171875 8.5,-0.203125 8.5,-0.296875 8.421875,-0.40625 8.296875,-0.40625 c -0.078125,0 -0.140625,0.0625 -0.21875,0.21875 z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</g>
</g>
<path
inkscape:connector-curvature="0"
id="id-9cceff4e-e1ba-403c-8dd5-8e59a698b955"
transform="matrix(1 0 0 -1 161.996 126.473)"
d="M 9.375e-5,3.4375e-4 H 10.988375"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0.398;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
<g
id="id-d9853fe2-a807-445c-9fd7-3464cd94b022"
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:0">
<g
transform="translate(161.996, 134.765)"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0"
id="g4651">
<path
inkscape:connector-curvature="0"
id="id-cf6d0f1b-6b34-49c3-95b9-6075e9fae8f5"
d="m 4.75,-2.359375 c 0,-1.5625 -0.921875,-2.046875 -1.65625,-2.046875 -1.375,0 -2.6875,1.421875 -2.6875,2.828125 0,0.9375 0.59375,1.6875 1.625,1.6875 0.625,0 1.34375,-0.234375 2.09375,-0.84375 0.125,0.53125 0.453125,0.84375 0.90625,0.84375 0.53125,0 0.84375,-0.546875 0.84375,-0.703125 0,-0.078125 -0.0625,-0.109375 -0.125,-0.109375 -0.0625,0 -0.09375,0.03125 -0.125,0.109375 -0.1875,0.484375 -0.546875,0.484375 -0.5625,0.484375 -0.3125,0 -0.3125,-0.78125 -0.3125,-1.015625 0,-0.203125 0,-0.234375 0.109375,-0.34375 C 5.796875,-2.65625 6,-3.8125 6,-3.8125 6,-3.84375 5.984375,-3.921875 5.875,-3.921875 c -0.09375,0 -0.09375,0.03125 -0.140625,0.21875 -0.1875,0.625 -0.515625,1.375 -0.984375,1.96875 z m -0.65625,1.375 c -0.890625,0.765625 -1.65625,0.875 -2.046875,0.875 -0.59375,0 -0.90625,-0.453125 -0.90625,-1.09375 0,-0.484375 0.265625,-1.5625 0.578125,-2.0625 C 2.1875,-4 2.734375,-4.1875 3.078125,-4.1875 c 0.984375,0 0.984375,1.3125 0.984375,2.078125 0,0.375 0,0.953125 0.03125,1.125 z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</g>
</g>
<g
id="id-4096f6d2-556e-4959-8cfe-41bded913f4c"
style="fill:#ff00ff;fill-opacity:1;stroke:#ff00ff;stroke-width:0">
<g
transform="translate(168.406, 131.887)"
style="fill:#ff00ff;stroke:#ff00ff;stroke-width:0"
id="g4655">
<path
inkscape:connector-curvature="0"
id="id-2d661989-4602-4fd3-9cc3-23f16649bc3a"
d="m 2.25,-1.734375 c 0.578125,-0.25 0.828125,-0.34375 1,-0.4375 0.140625,-0.046875 0.203125,-0.078125 0.203125,-0.21875 0,-0.109375 -0.09375,-0.21875 -0.21875,-0.21875 -0.046875,0 -0.0625,0 -0.140625,0.0625 L 2.140625,-1.90625 2.25,-2.9375 c 0.015625,-0.125 0,-0.296875 -0.21875,-0.296875 -0.078125,0 -0.21875,0.046875 -0.21875,0.203125 0,0.0625 0.03125,0.265625 0.046875,0.34375 0.015625,0.109375 0.0625,0.625 0.078125,0.78125 L 0.984375,-2.546875 c -0.0625,-0.03125 -0.078125,-0.0625 -0.140625,-0.0625 -0.140625,0 -0.21875,0.109375 -0.21875,0.21875 0,0.140625 0.078125,0.1875 0.140625,0.203125 L 1.8125,-1.734375 c -0.5625,0.25 -0.828125,0.34375 -1,0.421875 -0.125,0.0625 -0.1875,0.09375 -0.1875,0.21875 0,0.125 0.078125,0.21875 0.21875,0.21875 0.046875,0 0.0625,0 0.140625,-0.0625 l 0.953125,-0.625 -0.125,1.109375 c 0,0.15625 0.140625,0.21875 0.21875,0.21875 0.09375,0 0.21875,-0.0625 0.21875,-0.21875 0,-0.0625 -0.03125,-0.265625 -0.03125,-0.328125 -0.015625,-0.125 -0.0625,-0.625 -0.078125,-0.78125 L 2.96875,-1.015625 C 3.15625,-0.875 3.171875,-0.875 3.234375,-0.875 c 0.125,0 0.21875,-0.09375 0.21875,-0.21875 0,-0.140625 -0.09375,-0.171875 -0.15625,-0.203125 z m 0,0"
style="stroke:#ff00ff;fill:#ff00ff;stroke-width:0" />
</g>
</g>
</g>
</g>
</g>
</svg>
|