File size: 265,916 Bytes
d7d5499 | 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 | <?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="2138pt" height="678pt" viewBox="0 0 2138 678" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 7.859375 0 L 10.46875 0 L 10.46875 -9.328125 L 17.25 -21.453125 L 14.640625 -21.453125 L 9.234375 -11.484375 L 3.625 -21.453125 L 0.6875 -21.453125 L 7.859375 -9.359375 Z M 7.859375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 9.03125 0.265625 C 13.5 0.265625 16.765625 -3 16.765625 -7.734375 L 16.765625 -7.984375 C 16.765625 -12.6875 13.5 -15.953125 9.0625 -15.953125 C 4.625 -15.953125 1.34375 -12.65625 1.34375 -7.953125 L 1.34375 -7.703125 C 1.34375 -3.125 4.5625 0.265625 9.03125 0.265625 Z M 9.0625 -1.796875 C 5.875 -1.796875 3.9375 -4.140625 3.9375 -7.703125 L 3.9375 -7.953125 C 3.9375 -11.546875 5.90625 -13.890625 9.0625 -13.890625 C 12.1875 -13.890625 14.1875 -11.546875 14.1875 -7.921875 L 14.1875 -7.703125 C 14.1875 -4.171875 12.203125 -1.796875 9.0625 -1.796875 Z M 9.0625 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 7.828125 0.265625 C 10.34375 0.265625 12.09375 -1.015625 12.8125 -2.484375 L 12.8125 0 L 15.296875 0 L 15.296875 -15.6875 L 12.8125 -15.6875 L 12.8125 -6.1875 C 12.8125 -3.359375 10.703125 -1.890625 8.484375 -1.890625 C 6.03125 -1.890625 4.859375 -3.125 4.859375 -5.875 L 4.859375 -15.6875 L 2.375 -15.6875 L 2.375 -5.765625 C 2.375 -1.4375 4.703125 0.265625 7.828125 0.265625 Z M 7.828125 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 6.453125 0.265625 C 8.765625 0.265625 10.171875 -0.515625 11.34375 -1.984375 L 11.34375 0 L 13.828125 0 L 13.828125 -10.34375 C 13.828125 -14.734375 11.09375 -15.953125 8.09375 -15.953125 C 5.0625 -15.953125 2.21875 -14.640625 1.890625 -11.0625 L 4.375 -11.0625 C 4.625 -12.984375 5.8125 -13.890625 7.984375 -13.890625 C 10.375 -13.890625 11.34375 -12.84375 11.34375 -10.34375 L 11.34375 -9.203125 L 9.09375 -9.203125 C 5.0625 -9.203125 1.234375 -7.984375 1.234375 -4.34375 C 1.234375 -1.140625 3.546875 0.265625 6.453125 0.265625 Z M 6.6875 -1.703125 C 4.5 -1.703125 3.71875 -2.734375 3.71875 -4.34375 C 3.71875 -6.65625 6.03125 -7.4375 9.1875 -7.4375 L 11.34375 -7.4375 L 11.34375 -5.484375 C 11.34375 -3.0625 9.328125 -1.703125 6.6875 -1.703125 Z M 6.6875 -1.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 2.515625 0 L 5.015625 0 L 5.015625 -8.609375 C 5.015625 -12.484375 7.015625 -13.46875 10.171875 -13.625 L 10.171875 -15.953125 C 7.34375 -15.875 6 -14.640625 5.015625 -12.875 L 5.015625 -15.6875 L 2.515625 -15.6875 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 8.9375 0.265625 C 12.484375 0.265625 15.09375 -1.375 15.625 -4.53125 L 13.140625 -4.53125 C 12.8125 -2.703125 11.40625 -1.796875 8.96875 -1.796875 C 5.765625 -1.796875 4.046875 -3.78125 3.9375 -7.34375 L 15.75 -7.34375 L 15.75 -8.15625 C 15.75 -13.765625 12.328125 -15.953125 8.703125 -15.953125 C 4.375 -15.953125 1.34375 -12.65625 1.34375 -7.921875 L 1.34375 -7.6875 C 1.34375 -2.84375 4.5 0.265625 8.9375 0.265625 Z M 4.015625 -9.359375 C 4.4375 -12.15625 6.15625 -13.890625 8.703125 -13.890625 C 11.28125 -13.890625 12.953125 -12.59375 13.203125 -9.359375 Z M 4.015625 -9.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 5.671875 0 L 8.40625 0 L 12.0625 -11.765625 L 15.328125 0 L 18.09375 0 L 22.984375 -15.6875 L 20.4375 -15.6875 L 16.734375 -3.0625 L 13.171875 -15.6875 L 11.015625 -15.6875 L 7.203125 -3.0625 L 3.546875 -15.6875 L 0.84375 -15.6875 Z M 5.671875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 2.515625 0 L 5.015625 0 L 5.015625 -8.125 L 11.96875 0 L 15 0 L 7.703125 -8.40625 L 14.4375 -15.6875 L 11.515625 -15.6875 L 5.015625 -8.453125 L 5.015625 -23.1875 L 2.515625 -23.1875 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 3.78125 -18.953125 C 4.6875 -18.953125 5.4375 -19.703125 5.4375 -20.609375 C 5.4375 -21.515625 4.6875 -22.265625 3.78125 -22.265625 C 2.875 -22.265625 2.125 -21.515625 2.125 -20.609375 C 2.125 -19.703125 2.875 -18.953125 3.78125 -18.953125 Z M 2.578125 0 L 5.0625 0 L 5.0625 -15.6875 L 2.578125 -15.6875 Z M 2.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 2.515625 0 L 5.015625 0 L 5.015625 -9.515625 C 5.015625 -12.328125 7.078125 -13.796875 9.390625 -13.796875 C 11.90625 -13.796875 13.078125 -12.5625 13.078125 -9.8125 L 13.078125 0 L 15.5625 0 L 15.5625 -9.625 C 15.5625 -14.1875 13.296875 -15.953125 10.046875 -15.953125 C 7.46875 -15.953125 5.734375 -14.671875 5.015625 -13.203125 L 5.015625 -15.6875 L 2.515625 -15.6875 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 8.796875 5.734375 C 13.171875 5.734375 16.265625 3.515625 16.296875 -1.046875 L 16.296875 -15.6875 L 13.796875 -15.6875 L 13.796875 -13.171875 C 12.90625 -14.703125 11.28125 -15.953125 8.671875 -15.953125 C 4.34375 -15.953125 1.34375 -12.421875 1.34375 -8.15625 L 1.34375 -7.953125 C 1.34375 -3.625 4.375 -0.515625 8.484375 -0.515625 C 10.765625 -0.515625 12.90625 -1.953125 13.796875 -3.484375 L 13.796875 -1.203125 C 13.796875 2.15625 11.84375 3.625 8.765625 3.625 C 6.09375 3.625 4.59375 2.703125 4.234375 0.90625 L 1.6875 0.90625 C 2.09375 3.546875 4.140625 5.734375 8.796875 5.734375 Z M 8.765625 -2.578125 C 6.125 -2.578125 3.9375 -4.625 3.9375 -8.046875 L 3.9375 -8.28125 C 3.9375 -11.578125 5.796875 -13.890625 8.90625 -13.890625 C 11.96875 -13.890625 13.890625 -11.84375 13.890625 -8.34375 L 13.890625 -8.125 C 13.890625 -4.625 11.671875 -2.578125 8.765625 -2.578125 Z M 8.765625 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 7.296875 0.203125 C 8.3125 0.203125 8.90625 0.0625 9.421875 -0.125 L 9.421875 -2.21875 C 8.875 -2.015625 8.28125 -1.890625 7.5 -1.890625 C 6.234375 -1.890625 5.546875 -2.640625 5.546875 -4.171875 L 5.546875 -13.59375 L 9.203125 -13.59375 L 9.203125 -15.6875 L 5.546875 -15.6875 L 5.546875 -19.265625 L 3.0625 -19.265625 L 3.0625 -15.6875 L 0.8125 -15.6875 L 0.8125 -13.59375 L 3.0625 -13.59375 L 3.0625 -3.9375 C 3.0625 -1.46875 4.4375 0.203125 7.296875 0.203125 Z M 7.296875 0.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 2.578125 0 L 5.09375 0 L 5.09375 -23.1875 L 2.578125 -23.1875 Z M 2.578125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 2.515625 5.453125 L 5.015625 5.453125 L 5.015625 -2.578125 C 5.90625 -1.015625 7.734375 0.265625 10.3125 0.265625 C 14.640625 0.265625 17.453125 -3.03125 17.453125 -7.828125 L 17.453125 -8.0625 C 17.453125 -12.953125 14.4375 -15.953125 10.3125 -15.953125 C 8.046875 -15.953125 5.90625 -14.578125 5.015625 -13.046875 L 5.015625 -15.6875 L 2.515625 -15.6875 Z M 10.078125 -1.796875 C 7.015625 -1.796875 4.921875 -3.6875 4.921875 -7.703125 L 4.921875 -7.953125 C 4.921875 -11.96875 7.140625 -13.890625 10.046875 -13.890625 C 12.6875 -13.890625 14.875 -11.90625 14.875 -7.953125 L 14.875 -7.703125 C 14.875 -3.90625 13.203125 -1.796875 10.078125 -1.796875 Z M 10.078125 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-16">
<path style="stroke:none;" d="M 9.03125 0.265625 C 12.8125 0.265625 15.546875 -2.25 15.875 -5.640625 L 13.5625 -5.640625 C 13.296875 -3.09375 11.28125 -1.796875 9.0625 -1.796875 C 6.03125 -1.796875 3.9375 -3.84375 3.9375 -7.6875 L 3.9375 -7.921875 C 3.9375 -11.609375 6.125 -13.890625 8.96875 -13.890625 C 11.125 -13.890625 12.9375 -12.953125 13.3125 -10.46875 L 15.78125 -10.46875 C 15.296875 -14.453125 12.234375 -15.953125 8.96875 -15.953125 C 4.765625 -15.953125 1.34375 -12.71875 1.34375 -7.921875 L 1.34375 -7.6875 C 1.34375 -2.8125 4.65625 0.265625 9.03125 0.265625 Z M 9.03125 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-17">
<path style="stroke:none;" d="M 7.375 0.265625 C 11.1875 0.265625 13.140625 -1.65625 13.140625 -4.5 C 13.140625 -7.828125 10.859375 -8.546875 7.625 -9.15625 C 4.734375 -9.65625 3.953125 -10.234375 3.953125 -11.640625 C 3.953125 -12.984375 5.125 -13.890625 6.9375 -13.890625 C 8.90625 -13.890625 9.875 -13.140625 10.234375 -11.4375 L 12.625 -11.4375 C 12.203125 -14.8125 9.78125 -15.953125 6.953125 -15.953125 C 4.5 -15.953125 1.65625 -14.453125 1.65625 -11.546875 C 1.65625 -8.8125 3.03125 -7.6875 7.109375 -6.9375 C 9.546875 -6.484375 10.765625 -5.9375 10.765625 -4.296875 C 10.765625 -2.609375 9.71875 -1.796875 7.34375 -1.796875 C 4.828125 -1.796875 3.84375 -2.96875 3.65625 -4.828125 L 1.234375 -4.828125 C 1.375 -1.625 3.625 0.265625 7.375 0.265625 Z M 7.375 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-18">
<path style="stroke:none;" d="M 6.5625 4.4375 L 9.0625 4.4375 C 6.359375 1.078125 4.203125 -3.1875 4.203125 -9.359375 C 4.203125 -15.546875 6.359375 -19.828125 9.0625 -23.1875 L 6.5625 -23.1875 C 3.8125 -19.953125 1.59375 -15.328125 1.59375 -9.359375 C 1.59375 -3.390625 3.8125 1.203125 6.5625 4.4375 Z M 6.5625 4.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-19">
<path style="stroke:none;" d="M 2.703125 0 L 5.1875 0 L 5.1875 -18.390625 L 16.015625 0 L 19.015625 0 L 19.015625 -21.453125 L 16.53125 -21.453125 L 16.53125 -3.71875 L 6.09375 -21.453125 L 2.703125 -21.453125 Z M 2.703125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-20">
<path style="stroke:none;" d="M 2.703125 0 L 15.125 0 L 15.125 -2.125 L 5.3125 -2.125 L 5.3125 -21.453125 L 2.703125 -21.453125 Z M 2.703125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-21">
<path style="stroke:none;" d="M 2.703125 0 L 5.3125 0 L 5.3125 -8.734375 L 8.796875 -8.734375 C 12.875 -8.734375 16.296875 -10.5 16.296875 -15.0625 L 16.296875 -15.1875 C 16.296875 -19.65625 12.90625 -21.453125 8.796875 -21.453125 L 2.703125 -21.453125 Z M 5.3125 -10.796875 L 5.3125 -19.34375 L 8.96875 -19.34375 C 11.875 -19.34375 13.6875 -18.203125 13.6875 -15.1875 L 13.6875 -15.0625 C 13.6875 -12.296875 12.03125 -10.796875 8.96875 -10.796875 Z M 5.3125 -10.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-22">
<path style="stroke:none;" d="M 0.59375 4.34375 L 3.09375 4.34375 C 5.84375 1.109375 8.0625 -3.515625 8.0625 -9.484375 C 8.0625 -15.453125 5.84375 -20.046875 3.09375 -23.28125 L 0.59375 -23.28125 C 3.296875 -19.921875 5.453125 -15.65625 5.453125 -9.484375 C 5.453125 -3.296875 3.296875 0.984375 0.59375 4.34375 Z M 0.59375 4.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-23">
<path style="stroke:none;" d="M 3.78125 -18.953125 C 4.6875 -18.953125 5.4375 -19.703125 5.4375 -20.609375 C 5.4375 -21.515625 4.6875 -22.265625 3.78125 -22.265625 C 2.875 -22.265625 2.125 -21.515625 2.125 -20.609375 C 2.125 -19.703125 2.875 -18.953125 3.78125 -18.953125 Z M 0.265625 5.734375 C 3.75 5.609375 5.0625 3.984375 5.0625 0.984375 L 5.0625 -15.6875 L 2.578125 -15.6875 L 2.578125 1.203125 C 2.578125 2.578125 2.046875 3.484375 0.265625 3.625 Z M 0.265625 5.734375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-24">
<path style="stroke:none;" d="M 8.4375 0.265625 C 10.703125 0.265625 12.90625 -1.171875 13.796875 -2.703125 L 13.796875 0 L 16.296875 0 L 16.296875 -23.1875 L 13.796875 -23.1875 L 13.796875 -13.171875 C 12.90625 -14.703125 11.28125 -15.953125 8.671875 -15.953125 C 4.34375 -15.953125 1.34375 -12.5625 1.34375 -7.765625 L 1.34375 -7.53125 C 1.34375 -2.640625 4.3125 0.265625 8.4375 0.265625 Z M 8.703125 -1.796875 C 6.0625 -1.796875 3.9375 -3.6875 3.9375 -7.65625 L 3.9375 -7.890625 C 3.9375 -11.703125 5.796875 -13.890625 8.90625 -13.890625 C 11.96875 -13.890625 13.890625 -12 13.890625 -7.984375 L 13.890625 -7.734375 C 13.890625 -3.71875 11.609375 -1.796875 8.703125 -1.796875 Z M 8.703125 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-25">
<path style="stroke:none;" d="M 2.515625 0 L 5.015625 0 L 5.015625 -9.59375 C 5.015625 -12.421875 7.109375 -13.796875 9.15625 -13.796875 C 11.3125 -13.796875 12.484375 -12.65625 12.484375 -9.90625 L 12.484375 0 L 14.96875 0 L 14.96875 -9.59375 C 14.96875 -12.421875 17.0625 -13.796875 19.109375 -13.796875 C 21.265625 -13.796875 22.4375 -12.65625 22.4375 -9.90625 L 22.4375 0 L 24.9375 0 L 24.9375 -9.71875 C 24.9375 -14.28125 22.46875 -15.953125 19.65625 -15.953125 C 17.703125 -15.953125 15.359375 -15.0625 14.28125 -13.015625 C 13.46875 -15.125 11.703125 -15.953125 9.6875 -15.953125 C 7.4375 -15.953125 5.734375 -14.765625 5.015625 -13.296875 L 5.015625 -15.6875 L 2.515625 -15.6875 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-26">
<path style="stroke:none;" d="M 3.0625 0 L 5.546875 0 L 5.546875 -13.59375 L 9.390625 -13.59375 L 9.390625 -15.6875 L 5.546875 -15.6875 L 5.546875 -18.515625 C 5.546875 -20.09375 6.203125 -21.203125 7.828125 -21.203125 C 8.515625 -21.203125 9.15625 -21.0625 9.59375 -20.875 L 9.59375 -22.984375 C 8.96875 -23.1875 8.546875 -23.28125 7.734375 -23.28125 C 4.625 -23.28125 3.0625 -21.421875 3.0625 -18.234375 L 3.0625 -15.6875 L 0.8125 -15.6875 L 0.8125 -13.59375 L 3.0625 -13.59375 Z M 3.0625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-27">
<path style="stroke:none;" d="M 3.9375 5.453125 L 6.453125 5.453125 L 15.125 -15.6875 L 12.5625 -15.6875 L 8.21875 -4.4375 L 3.421875 -15.6875 L 0.75 -15.6875 L 6.90625 -1.625 Z M 3.9375 5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-28">
<path style="stroke:none;" d="M 6.453125 0 L 9.625 0 L 15.265625 -15.6875 L 12.6875 -15.6875 L 8.09375 -2.515625 L 3.453125 -15.6875 L 0.75 -15.6875 Z M 6.453125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-29">
<path style="stroke:none;" d="M 4.234375 0.15625 C 5.28125 0.15625 6.15625 -0.6875 6.15625 -1.765625 C 6.15625 -2.84375 5.28125 -3.6875 4.234375 -3.6875 C 3.1875 -3.6875 2.3125 -2.84375 2.3125 -1.765625 C 2.3125 -0.6875 3.1875 0.15625 4.234375 0.15625 Z M 4.234375 0.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-30">
<path style="stroke:none;" d="M 2.515625 0 L 5.015625 0 L 5.015625 -9.515625 C 5.015625 -12.328125 7.078125 -13.796875 9.390625 -13.796875 C 11.90625 -13.796875 13.078125 -12.5625 13.078125 -9.8125 L 13.078125 0 L 15.5625 0 L 15.5625 -9.625 C 15.5625 -14.1875 13.296875 -15.953125 10.046875 -15.953125 C 7.46875 -15.953125 5.734375 -14.671875 5.015625 -13.203125 L 5.015625 -23.1875 L 2.515625 -23.1875 Z M 2.515625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-31">
<path style="stroke:none;" d="M 10.3125 0.265625 C 14.640625 0.265625 17.453125 -3.03125 17.453125 -7.828125 L 17.453125 -8.0625 C 17.453125 -12.953125 14.4375 -15.953125 10.3125 -15.953125 C 8.046875 -15.953125 5.90625 -14.578125 5.015625 -13.046875 L 5.015625 -23.1875 L 2.515625 -23.1875 L 2.515625 0 L 5.015625 0 L 5.015625 -2.578125 C 5.90625 -1.015625 7.765625 0.265625 10.3125 0.265625 Z M 10.078125 -1.796875 C 7.015625 -1.796875 4.921875 -3.6875 4.921875 -7.703125 L 4.921875 -7.953125 C 4.921875 -11.96875 7.140625 -13.890625 10.046875 -13.890625 C 12.6875 -13.890625 14.875 -11.90625 14.875 -7.953125 L 14.875 -7.703125 C 14.875 -3.90625 13.203125 -1.796875 10.078125 -1.796875 Z M 10.078125 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-32">
<path style="stroke:none;" d="M 2.703125 3.6875 L 6.390625 -2.578125 L 3.953125 -3.71875 L 1.078125 2.84375 Z M 2.703125 3.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-33">
<path style="stroke:none;" d="M 12.03125 0.265625 C 17.515625 0.265625 21.328125 -3.03125 21.328125 -9.234375 L 21.328125 -10.828125 L 12.515625 -10.828125 L 12.515625 -8.671875 L 18.78125 -8.671875 C 18.6875 -4.859375 16.6875 -1.828125 12.03125 -1.828125 C 6.984375 -1.828125 4.34375 -5.3125 4.34375 -10.625 L 4.34375 -10.859375 C 4.34375 -16.109375 7.171875 -19.703125 12.09375 -19.703125 C 15.203125 -19.703125 17.546875 -18.390625 18.15625 -14.96875 L 20.765625 -14.96875 C 20.09375 -19.796875 16.296875 -21.78125 12.03125 -21.78125 C 5.875 -21.78125 1.65625 -17.09375 1.65625 -10.828125 L 1.65625 -10.59375 C 1.65625 -4.3125 5.4375 0.265625 12.03125 0.265625 Z M 12.03125 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-34">
<path style="stroke:none;" d="M 2.84375 0 L 5.453125 0 L 5.453125 -21.453125 L 2.84375 -21.453125 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph0-35">
<path style="stroke:none;" d="M 9.625 0.265625 C 13.890625 0.265625 17.046875 -2.453125 17.046875 -6.0625 C 17.046875 -10.109375 14.515625 -11.546875 9.75 -12.296875 C 5.375 -12.953125 4.59375 -14.046875 4.59375 -16.140625 C 4.59375 -18.15625 6.125 -19.625 9.0625 -19.625 C 12.03125 -19.625 13.59375 -18.515625 14.09375 -15.8125 L 16.4375 -15.8125 C 16.015625 -19.625 13.34375 -21.71875 9.0625 -21.71875 C 5.015625 -21.71875 2.15625 -19.203125 2.15625 -15.90625 C 2.15625 -12.09375 4.828125 -10.6875 9.328125 -9.984375 C 13.40625 -9.328125 14.515625 -8.3125 14.515625 -5.875 C 14.515625 -3.453125 12.390625 -1.828125 9.625 -1.828125 C 5.3125 -1.828125 4.296875 -3.984375 3.953125 -6.546875 L 1.4375 -6.546875 C 1.828125 -2.875 3.90625 0.265625 9.625 0.265625 Z M 9.625 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-36">
<path style="stroke:none;" d="M 4.234375 0.15625 C 5.28125 0.15625 6.15625 -0.6875 6.15625 -1.765625 C 6.15625 -2.84375 5.28125 -3.6875 4.234375 -3.6875 C 3.1875 -3.6875 2.3125 -2.84375 2.3125 -1.765625 C 2.3125 -0.6875 3.1875 0.15625 4.234375 0.15625 Z M 12.09375 0.15625 C 13.140625 0.15625 14.015625 -0.6875 14.015625 -1.765625 C 14.015625 -2.84375 13.140625 -3.6875 12.09375 -3.6875 C 11.046875 -3.6875 10.171875 -2.84375 10.171875 -1.765625 C 10.171875 -0.6875 11.046875 0.15625 12.09375 0.15625 Z M 19.953125 0.15625 C 21 0.15625 21.875 -0.6875 21.875 -1.765625 C 21.875 -2.84375 21 -3.6875 19.953125 -3.6875 C 18.90625 -3.6875 18.03125 -2.84375 18.03125 -1.765625 C 18.03125 -0.6875 18.90625 0.15625 19.953125 0.15625 Z M 19.953125 0.15625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-37">
<path style="stroke:none;" d="M 1.796875 -7.078125 L 8.21875 -7.078125 L 8.21875 -9.421875 L 1.796875 -9.421875 Z M 1.796875 -7.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-38">
<path style="stroke:none;" d="M 13.796875 5.453125 L 16.296875 5.453125 L 16.296875 -15.6875 L 13.796875 -15.6875 L 13.796875 -13.171875 C 12.90625 -14.703125 11.28125 -15.953125 8.671875 -15.953125 C 4.34375 -15.953125 1.34375 -12.5625 1.34375 -7.765625 L 1.34375 -7.53125 C 1.34375 -2.640625 4.3125 0.265625 8.4375 0.265625 C 10.703125 0.265625 12.90625 -1.171875 13.796875 -2.703125 Z M 8.703125 -1.796875 C 6.0625 -1.796875 3.9375 -3.6875 3.9375 -7.65625 L 3.9375 -7.890625 C 3.9375 -11.703125 5.796875 -13.890625 8.90625 -13.890625 C 11.96875 -13.890625 13.890625 -12 13.890625 -7.984375 L 13.890625 -7.734375 C 13.890625 -3.71875 11.609375 -1.796875 8.703125 -1.796875 Z M 8.703125 -1.796875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph1-1">
<path style="stroke:none;" d="M 4.765625 0.21875 C 4.441406 0.21875 4.164062 0.109375 3.9375 -0.109375 C 3.707031 -0.335938 3.59375 -0.609375 3.59375 -0.921875 C 3.59375 -1.222656 3.707031 -1.488281 3.9375 -1.71875 C 4.164062 -1.945312 4.441406 -2.0625 4.765625 -2.0625 C 5.066406 -2.0625 5.332031 -1.945312 5.5625 -1.71875 C 5.789062 -1.488281 5.90625 -1.222656 5.90625 -0.921875 C 5.90625 -0.609375 5.789062 -0.335938 5.5625 -0.109375 C 5.332031 0.109375 5.066406 0.21875 4.765625 0.21875 Z M 4.765625 0.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph1-2">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-1">
<path style="stroke:none;" d="M 12.125 0.328125 C 18.546875 0.328125 22.203125 -3.484375 22.203125 -9.203125 L 22.203125 -11.484375 L 12.5625 -11.484375 L 12.5625 -7.953125 L 17.40625 -7.953125 C 17.3125 -5.484375 15.84375 -3.421875 12.234375 -3.421875 C 8.046875 -3.421875 6.265625 -6.390625 6.265625 -10.53125 L 6.265625 -10.765625 C 6.265625 -15.15625 8.453125 -17.9375 12.1875 -17.9375 C 14.765625 -17.9375 16.40625 -16.796875 16.828125 -14.28125 L 21.65625 -14.28125 C 21.15625 -19.59375 16.890625 -21.78125 12.125 -21.78125 C 5.796875 -21.78125 1.203125 -17.28125 1.203125 -10.828125 L 1.203125 -10.59375 C 1.203125 -4.234375 5.09375 0.328125 12.125 0.328125 Z M 12.125 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-2">
<path style="stroke:none;" d="M 9.15625 0.328125 C 13.4375 0.328125 16.140625 -1.5625 16.65625 -4.953125 L 12.546875 -4.953125 C 12.265625 -3.625 11.28125 -2.765625 9.265625 -2.765625 C 6.90625 -2.765625 5.484375 -4.265625 5.375 -6.875 L 16.6875 -6.875 L 16.6875 -8.0625 C 16.6875 -13.6875 13.078125 -16.046875 9.03125 -16.046875 C 4.46875 -16.046875 0.953125 -12.84375 0.953125 -7.890625 L 0.953125 -7.65625 C 0.953125 -2.640625 4.40625 0.328125 9.15625 0.328125 Z M 5.4375 -9.546875 C 5.765625 -11.765625 7.078125 -13.046875 9.03125 -13.046875 C 11.09375 -13.046875 12.296875 -11.90625 12.453125 -9.546875 Z M 5.4375 -9.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-3">
<path style="stroke:none;" d="M 1.921875 0 L 6.265625 0 L 6.265625 -9.0625 C 6.265625 -11.375 7.6875 -12.515625 9.546875 -12.515625 C 11.453125 -12.515625 12.296875 -11.484375 12.296875 -9.359375 L 12.296875 0 L 16.65625 0 L 16.65625 -9.984375 C 16.65625 -14.1875 14.453125 -16.046875 11.375 -16.046875 C 8.765625 -16.046875 7.046875 -14.765625 6.265625 -13.203125 L 6.265625 -15.6875 L 1.921875 -15.6875 Z M 1.921875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-4">
<path style="stroke:none;" d="M 1.921875 0 L 6.265625 0 L 6.265625 -7.859375 C 6.265625 -10.859375 8.125 -11.90625 11.34375 -11.875 L 11.34375 -15.9375 C 8.796875 -15.90625 7.265625 -14.796875 6.265625 -12.6875 L 6.265625 -15.6875 L 1.921875 -15.6875 Z M 1.921875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-5">
<path style="stroke:none;" d="M 6.15625 0.328125 C 8.609375 0.328125 9.984375 -0.625 10.890625 -1.890625 L 10.890625 0 L 15.125 0 L 15.125 -10.234375 C 15.125 -14.484375 12.390625 -16.046875 8.546875 -16.046875 C 4.703125 -16.046875 1.765625 -14.40625 1.5 -10.6875 L 5.609375 -10.6875 C 5.796875 -12.03125 6.5625 -12.90625 8.28125 -12.90625 C 10.265625 -12.90625 10.828125 -11.875 10.828125 -10.015625 L 10.828125 -9.390625 L 9.0625 -9.390625 C 4.265625 -9.390625 0.90625 -8.015625 0.90625 -4.34375 C 0.90625 -1.046875 3.296875 0.328125 6.15625 0.328125 Z M 7.4375 -2.703125 C 5.84375 -2.703125 5.15625 -3.453125 5.15625 -4.59375 C 5.15625 -6.265625 6.625 -6.8125 9.15625 -6.8125 L 10.828125 -6.8125 L 10.828125 -5.484375 C 10.828125 -3.75 9.359375 -2.703125 7.4375 -2.703125 Z M 7.4375 -2.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-6">
<path style="stroke:none;" d="M 7.65625 0.296875 C 8.8125 0.296875 9.6875 0.09375 10.296875 -0.125 L 10.296875 -3.484375 C 9.78125 -3.265625 9.296875 -3.1875 8.640625 -3.1875 C 7.53125 -3.1875 6.90625 -3.78125 6.90625 -5.046875 L 6.90625 -12.59375 L 10.203125 -12.59375 L 10.203125 -15.6875 L 6.90625 -15.6875 L 6.90625 -19.078125 L 2.578125 -19.078125 L 2.578125 -15.6875 L 0.5625 -15.6875 L 0.5625 -12.59375 L 2.578125 -12.59375 L 2.578125 -4.65625 C 2.578125 -1.375 4.34375 0.296875 7.65625 0.296875 Z M 7.65625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-7">
<path style="stroke:none;" d="M 7.796875 0.328125 C 10.109375 0.328125 12.03125 -1.015625 12.84375 -2.609375 L 12.84375 0 L 17.15625 0 L 17.15625 -22.796875 L 12.84375 -22.796875 L 12.84375 -13.34375 C 11.96875 -14.9375 10.40625 -16.046875 7.890625 -16.046875 C 3.953125 -16.046875 0.984375 -13.015625 0.984375 -7.859375 L 0.984375 -7.625 C 0.984375 -2.40625 3.984375 0.328125 7.796875 0.328125 Z M 9.09375 -3.0625 C 6.9375 -3.0625 5.4375 -4.59375 5.4375 -7.703125 L 5.4375 -7.953125 C 5.4375 -11.0625 6.78125 -12.71875 9.203125 -12.71875 C 11.578125 -12.71875 12.953125 -11.125 12.953125 -8.015625 L 12.953125 -7.765625 C 12.953125 -4.59375 11.375 -3.0625 9.09375 -3.0625 Z M 9.09375 -3.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-8">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph2-9">
<path style="stroke:none;" d="M 1.921875 5.34375 L 6.265625 5.34375 L 6.265625 -2.40625 C 7.078125 -0.875 8.84375 0.328125 11.28125 0.328125 C 15.1875 0.328125 18.125 -2.578125 18.125 -7.765625 L 18.125 -8.015625 C 18.125 -13.203125 15.125 -16.046875 11.28125 -16.046875 C 8.96875 -16.046875 7.140625 -14.734375 6.265625 -13.234375 L 6.265625 -15.6875 L 1.921875 -15.6875 Z M 9.984375 -3.0625 C 7.625 -3.0625 6.125 -4.59375 6.125 -7.734375 L 6.125 -7.984375 C 6.125 -11.125 7.6875 -12.71875 9.953125 -12.71875 C 12.15625 -12.71875 13.703125 -11.15625 13.703125 -7.984375 L 13.703125 -7.734375 C 13.703125 -4.6875 12.390625 -3.0625 9.984375 -3.0625 Z M 9.984375 -3.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-10">
<path style="stroke:none;" d="M 9.203125 0.328125 C 13.921875 0.328125 17.484375 -2.8125 17.484375 -7.765625 L 17.484375 -8.015625 C 17.484375 -12.90625 13.953125 -16.046875 9.234375 -16.046875 C 4.53125 -16.046875 0.953125 -12.84375 0.953125 -7.921875 L 0.953125 -7.6875 C 0.953125 -2.796875 4.53125 0.328125 9.203125 0.328125 Z M 9.234375 -2.96875 C 6.78125 -2.96875 5.40625 -4.765625 5.40625 -7.765625 L 5.40625 -8.015625 C 5.40625 -11.015625 6.84375 -12.75 9.234375 -12.75 C 11.671875 -12.75 13.078125 -10.953125 13.078125 -7.953125 L 13.078125 -7.734375 C 13.078125 -4.765625 11.671875 -2.96875 9.234375 -2.96875 Z M 9.234375 -2.96875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-11">
<path style="stroke:none;" d="M 11.28125 0.328125 C 15.1875 0.328125 18.125 -2.578125 18.125 -7.765625 L 18.125 -8.015625 C 18.125 -13.203125 15.125 -16.046875 11.28125 -16.046875 C 8.96875 -16.046875 7.140625 -14.734375 6.265625 -13.234375 L 6.265625 -22.796875 L 1.921875 -22.796875 L 1.921875 0 L 6.265625 0 L 6.265625 -2.484375 C 7.078125 -0.875 8.84375 0.328125 11.28125 0.328125 Z M 9.984375 -3.0625 C 7.625 -3.0625 6.125 -4.59375 6.125 -7.734375 L 6.125 -7.984375 C 6.125 -11.125 7.6875 -12.71875 9.953125 -12.71875 C 12.15625 -12.71875 13.703125 -11.15625 13.703125 -7.984375 L 13.703125 -7.734375 C 13.703125 -4.6875 12.390625 -3.0625 9.984375 -3.0625 Z M 9.984375 -3.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-12">
<path style="stroke:none;" d="M 2.046875 0 L 6.359375 0 L 6.359375 -22.796875 L 2.046875 -22.796875 Z M 2.046875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-13">
<path style="stroke:none;" d="M 1.921875 0 L 6.265625 0 L 6.265625 -9.265625 C 6.265625 -11.40625 7.625 -12.484375 9.296875 -12.484375 C 10.828125 -12.484375 11.765625 -11.578125 11.765625 -9.5625 L 11.765625 0 L 16.078125 0 L 16.078125 -9.265625 C 16.078125 -11.40625 17.4375 -12.484375 19.109375 -12.484375 C 20.671875 -12.484375 21.5625 -11.578125 21.5625 -9.5625 L 21.5625 0 L 25.890625 0 L 25.890625 -10.046875 C 25.890625 -14.21875 23.640625 -16.046875 20.734375 -16.046875 C 18.75 -16.046875 16.703125 -15.203125 15.453125 -13.3125 C 14.703125 -15.1875 13.140625 -16.046875 11.0625 -16.046875 C 8.734375 -16.046875 7.046875 -14.765625 6.265625 -13.296875 L 6.265625 -15.6875 L 1.921875 -15.6875 Z M 1.921875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-14">
<path style="stroke:none;" d="M 6.296875 4.4375 L 9.875 4.4375 C 7.625 1.265625 5.515625 -3.15625 5.515625 -9.390625 C 5.515625 -15.625 7.625 -20.0625 9.875 -23.21875 L 6.296875 -23.21875 C 3.8125 -20.28125 1.296875 -15.8125 1.296875 -9.390625 C 1.296875 -2.96875 3.8125 1.5 6.296875 4.4375 Z M 6.296875 4.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-15">
<path style="stroke:none;" d="M 4.171875 -17.8125 C 5.578125 -17.8125 6.65625 -18.84375 6.65625 -20.1875 C 6.65625 -21.546875 5.578125 -22.5625 4.171875 -22.5625 C 2.796875 -22.5625 1.703125 -21.546875 1.703125 -20.1875 C 1.703125 -18.84375 2.796875 -17.8125 4.171875 -17.8125 Z M 2.046875 0 L 6.359375 0 L 6.359375 -15.6875 L 2.046875 -15.6875 Z M 2.046875 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-16">
<path style="stroke:none;" d="M 7.625 0.328125 C 11.765625 0.328125 14.21875 -1.4375 14.21875 -4.828125 C 14.21875 -8.1875 12.0625 -9.1875 8.125 -9.75 C 5.84375 -10.078125 5.09375 -10.46875 5.09375 -11.453125 C 5.09375 -12.421875 5.90625 -13.078125 7.3125 -13.078125 C 8.8125 -13.078125 9.546875 -12.484375 9.78125 -11.1875 L 13.765625 -11.1875 C 13.375 -14.796875 10.765625 -16.046875 7.296875 -16.046875 C 4.078125 -16.046875 1.078125 -14.4375 1.078125 -11.15625 C 1.078125 -8.09375 2.703125 -6.90625 6.875 -6.265625 C 9.125 -5.9375 10.046875 -5.484375 10.046875 -4.40625 C 10.046875 -3.328125 9.265625 -2.703125 7.59375 -2.703125 C 5.703125 -2.703125 5.015625 -3.515625 4.828125 -4.921875 L 0.78125 -4.921875 C 0.9375 -1.53125 3.390625 0.328125 7.625 0.328125 Z M 7.625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-17">
<path style="stroke:none;" d="M 0.453125 4.375 L 4.015625 4.375 C 6.484375 1.4375 9 -3.03125 9 -9.453125 C 9 -15.90625 6.484375 -20.34375 4.015625 -23.28125 L 0.453125 -23.28125 C 2.671875 -20.09375 4.765625 -15.6875 4.765625 -9.453125 C 4.765625 -3.203125 2.671875 1.234375 0.453125 4.375 Z M 0.453125 4.375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-18">
<path style="stroke:none;" d="M 2.3125 0 L 7.140625 0 L 7.140625 -7.796875 L 9.875 -7.796875 C 14.765625 -7.796875 17.90625 -9.953125 17.90625 -14.484375 L 17.90625 -14.609375 C 17.90625 -19.140625 14.9375 -21.453125 9.71875 -21.453125 L 2.3125 -21.453125 Z M 7.140625 -11.1875 L 7.140625 -17.765625 L 9.59375 -17.765625 C 11.90625 -17.765625 13.234375 -16.859375 13.234375 -14.578125 L 13.234375 -14.453125 C 13.234375 -12.328125 11.96875 -11.1875 9.59375 -11.1875 Z M 7.140625 -11.1875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-19">
<path style="stroke:none;" d="M 2.3125 0 L 6.625 0 L 6.625 -15.265625 L 15.5625 0 L 20.4375 0 L 20.4375 -21.453125 L 16.109375 -21.453125 L 16.109375 -7.3125 L 7.953125 -21.453125 L 2.3125 -21.453125 Z M 2.3125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph2-20">
<path style="stroke:none;" d="M 8.875 5.796875 C 14.046875 5.796875 17.125 3.421875 17.15625 -1.234375 L 17.15625 -15.6875 L 12.84375 -15.6875 L 12.84375 -13.34375 C 11.9375 -14.9375 10.40625 -16.046875 7.859375 -16.046875 C 3.953125 -16.046875 0.953125 -12.90625 0.953125 -8.40625 L 0.953125 -8.1875 C 0.953125 -3.546875 3.984375 -0.6875 7.796875 -0.6875 C 10.109375 -0.6875 11.96875 -2.0625 12.84375 -3.59375 L 12.84375 -1.234375 C 12.84375 1.234375 11.515625 2.609375 8.875 2.609375 C 6.65625 2.609375 5.671875 1.703125 5.40625 0.328125 L 1.078125 0.328125 C 1.5 3.5625 3.8125 5.796875 8.875 5.796875 Z M 9.09375 -3.953125 C 6.9375 -3.953125 5.40625 -5.578125 5.40625 -8.1875 L 5.40625 -8.4375 C 5.40625 -11.015625 6.75 -12.75 9.1875 -12.75 C 11.546875 -12.75 12.953125 -11.125 12.953125 -8.453125 L 12.953125 -8.25 C 12.953125 -5.578125 11.375 -3.953125 9.09375 -3.953125 Z M 9.09375 -3.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-21">
<path style="stroke:none;" d="M 4.375 0.265625 C 5.90625 0.265625 7.078125 -0.90625 7.078125 -2.375 C 7.078125 -3.8125 5.90625 -4.984375 4.375 -4.984375 C 2.875 -4.984375 1.703125 -3.8125 1.703125 -2.375 C 1.703125 -0.90625 2.875 0.265625 4.375 0.265625 Z M 4.375 0.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph2-22">
<path style="stroke:none;" d="M 3.90625 5.34375 L 8.09375 5.34375 L 16.59375 -15.6875 L 12.421875 -15.6875 L 8.90625 -6.265625 L 5.09375 -15.6875 L 0.421875 -15.6875 L 6.65625 -1.59375 Z M 3.90625 5.34375 "/>
</symbol>
<symbol overflow="visible" id="glyph2-23">
<path style="stroke:none;" d="M 12.203125 0.328125 C 18.90625 0.328125 23.28125 -4.3125 23.28125 -10.703125 L 23.28125 -10.953125 C 23.28125 -17.40625 18.6875 -21.75 12.234375 -21.75 C 5.875 -21.75 1.203125 -17.21875 1.203125 -10.828125 L 1.203125 -10.59375 C 1.203125 -4.3125 5.484375 0.328125 12.203125 0.328125 Z M 12.296875 -3.546875 C 8.796875 -3.546875 6.265625 -6.234375 6.265625 -10.625 L 6.265625 -10.859375 C 6.265625 -15.1875 8.515625 -17.90625 12.234375 -17.90625 C 15.984375 -17.90625 18.203125 -15.0625 18.203125 -10.890625 L 18.203125 -10.65625 C 18.203125 -6.328125 15.9375 -3.546875 12.296875 -3.546875 Z M 12.296875 -3.546875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-24">
<path style="stroke:none;" d="M 1.625 -6.71875 L 9.296875 -6.71875 L 9.296875 -10.171875 L 1.625 -10.171875 Z M 1.625 -6.71875 "/>
</symbol>
<symbol overflow="visible" id="glyph2-25">
<path style="stroke:none;" d="M 7.140625 0.328125 C 9.71875 0.328125 11.3125 -0.875 12.125 -2.453125 L 12.125 0 L 16.4375 0 L 16.4375 -15.6875 L 12.125 -15.6875 L 12.125 -6.484375 C 12.125 -4.171875 10.6875 -3.03125 8.84375 -3.03125 C 6.984375 -3.03125 6.125 -4.046875 6.125 -6.1875 L 6.125 -15.6875 L 1.796875 -15.6875 L 1.796875 -5.578125 C 1.796875 -1.46875 4.078125 0.328125 7.140625 0.328125 Z M 7.140625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-26">
<path style="stroke:none;" d="M 9.03125 0.328125 C 13.59375 0.328125 16.296875 -2.25 16.53125 -5.96875 L 12.59375 -5.96875 C 12.390625 -3.953125 10.984375 -2.9375 9.234375 -2.9375 C 6.8125 -2.9375 5.40625 -4.5625 5.40625 -7.703125 L 5.40625 -7.953125 C 5.40625 -10.953125 6.90625 -12.625 9.15625 -12.625 C 10.921875 -12.625 12.03125 -11.796875 12.328125 -9.953125 L 16.4375 -9.953125 C 16.046875 -14.453125 12.6875 -16.046875 9.0625 -16.046875 C 4.59375 -16.046875 0.953125 -12.953125 0.953125 -7.890625 L 0.953125 -7.65625 C 0.953125 -2.515625 4.4375 0.328125 9.03125 0.328125 Z M 9.03125 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph2-27">
<path style="stroke:none;" d="M 9.8125 0.328125 C 14.875 0.328125 18 -2.703125 18 -6.515625 C 18 -10.953125 15.328125 -12.359375 10.140625 -13.015625 C 6.84375 -13.5 6.15625 -14.21875 6.15625 -15.75 C 6.15625 -17.1875 7.234375 -18.1875 9.359375 -18.1875 C 11.484375 -18.1875 12.625 -17.28125 12.9375 -15.328125 L 17.40625 -15.328125 C 17.015625 -19.59375 14.1875 -21.75 9.359375 -21.75 C 4.625 -21.75 1.5625 -19.015625 1.5625 -15.359375 C 1.5625 -11.21875 3.8125 -9.5625 9.296875 -8.84375 C 12.453125 -8.375 13.34375 -7.765625 13.34375 -6.0625 C 13.34375 -4.375 11.9375 -3.203125 9.8125 -3.203125 C 6.625 -3.203125 5.8125 -4.796875 5.609375 -6.71875 L 0.953125 -6.71875 C 1.234375 -2.4375 3.9375 0.328125 9.8125 0.328125 Z M 9.8125 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-0">
<path style="stroke:none;" d="M 8.328125 0.046875 L 8.328125 -40 L 31.671875 -40 L 31.671875 0.046875 Z M 11.703125 -5.171875 L 19.078125 -20.046875 L 11.703125 -34.953125 Z M 28.375 -5.171875 L 28.375 -34.953125 L 20.875 -20.125 Z M 12.546875 -3.375 L 27.421875 -3.375 L 20.046875 -18.125 Z M 20.046875 -21.921875 L 27.375 -36.703125 L 12.625 -36.703125 Z M 20.046875 -21.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-1">
<path style="stroke:none;" d="M 23.375 -15.25 C 23.84375 -15.25 24.242188 -15.414062 24.578125 -15.75 C 24.910156 -16.082031 25.078125 -16.484375 25.078125 -16.953125 C 25.078125 -17.429688 24.910156 -17.835938 24.578125 -18.171875 C 24.242188 -18.503906 23.84375 -18.671875 23.375 -18.671875 C 22.90625 -18.671875 22.503906 -18.503906 22.171875 -18.171875 C 21.835938 -17.835938 21.671875 -17.429688 21.671875 -16.953125 C 21.671875 -16.484375 21.835938 -16.082031 22.171875 -15.75 C 22.503906 -15.414062 22.90625 -15.25 23.375 -15.25 Z M 22.25 -20.171875 L 24.421875 -20.171875 C 24.441406 -20.804688 24.550781 -21.332031 24.75 -21.75 C 24.945312 -22.164062 25.347656 -22.664062 25.953125 -23.25 C 26.703125 -24 27.222656 -24.644531 27.515625 -25.1875 C 27.804688 -25.726562 27.953125 -26.347656 27.953125 -27.046875 C 27.953125 -28.316406 27.519531 -29.347656 26.65625 -30.140625 C 25.800781 -30.929688 24.648438 -31.328125 23.203125 -31.328125 C 22.117188 -31.328125 21.160156 -31.035156 20.328125 -30.453125 C 19.492188 -29.867188 18.898438 -29.066406 18.546875 -28.046875 L 20.546875 -27.203125 C 20.816406 -27.867188 21.175781 -28.382812 21.625 -28.75 C 22.070312 -29.113281 22.597656 -29.296875 23.203125 -29.296875 C 24.015625 -29.296875 24.65625 -29.078125 25.125 -28.640625 C 25.59375 -28.210938 25.828125 -27.664062 25.828125 -27 C 25.828125 -26.5 25.707031 -26.046875 25.46875 -25.640625 C 25.238281 -25.242188 24.816406 -24.796875 24.203125 -24.296875 C 23.367188 -23.546875 22.832031 -22.910156 22.59375 -22.390625 C 22.363281 -21.878906 22.25 -21.140625 22.25 -20.171875 Z M 12.328125 -8.671875 C 11.328125 -8.671875 10.46875 -9.03125 9.75 -9.75 C 9.03125 -10.46875 8.671875 -11.328125 8.671875 -12.328125 L 8.671875 -34.078125 C 8.671875 -35.109375 9.03125 -35.984375 9.75 -36.703125 C 10.46875 -37.429688 11.328125 -37.796875 12.328125 -37.796875 L 34.078125 -37.796875 C 35.109375 -37.796875 35.984375 -37.429688 36.703125 -36.703125 C 37.429688 -35.984375 37.796875 -35.109375 37.796875 -34.078125 L 37.796875 -12.328125 C 37.796875 -11.328125 37.429688 -10.46875 36.703125 -9.75 C 35.984375 -9.03125 35.109375 -8.671875 34.078125 -8.671875 Z M 12.328125 -12.328125 L 34.078125 -12.328125 L 34.078125 -34.078125 L 12.328125 -34.078125 Z M 5.921875 -2.203125 C 4.890625 -2.203125 4.007812 -2.5625 3.28125 -3.28125 C 2.5625 -4.007812 2.203125 -4.890625 2.203125 -5.921875 L 2.203125 -31.328125 L 5.921875 -31.328125 L 5.921875 -5.921875 L 31.328125 -5.921875 L 31.328125 -2.203125 Z M 12.328125 -34.078125 L 12.328125 -12.328125 Z M 12.328125 -34.078125 "/>
</symbol>
<symbol overflow="visible" id="glyph3-2">
<path style="stroke:none;" d="M 13.296875 -10.203125 L 26.703125 -10.203125 L 26.703125 -13.296875 L 13.296875 -13.296875 Z M 13.296875 -17.171875 L 26.703125 -17.171875 L 26.703125 -20.25 L 13.296875 -20.25 Z M 9.671875 -2.671875 C 8.671875 -2.671875 7.804688 -3.03125 7.078125 -3.75 C 6.359375 -4.46875 6 -5.328125 6 -6.328125 L 6 -33.671875 C 6 -34.671875 6.359375 -35.53125 7.078125 -36.25 C 7.804688 -36.96875 8.671875 -37.328125 9.671875 -37.328125 L 24.203125 -37.328125 L 34 -27.546875 L 34 -6.328125 C 34 -5.328125 33.632812 -4.46875 32.90625 -3.75 C 32.1875 -3.03125 31.328125 -2.671875 30.328125 -2.671875 Z M 22.296875 -25.703125 L 22.296875 -33.671875 L 9.671875 -33.671875 L 9.671875 -6.328125 L 30.328125 -6.328125 L 30.328125 -25.703125 Z M 9.671875 -33.671875 L 9.671875 -25.703125 L 9.671875 -33.671875 L 9.671875 -6.328125 Z M 9.671875 -33.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph3-3">
<path style="stroke:none;" d="M 11.703125 -16.625 C 12.179688 -16.625 12.578125 -16.78125 12.890625 -17.09375 C 13.210938 -17.414062 13.375 -17.816406 13.375 -18.296875 C 13.375 -18.765625 13.210938 -19.15625 12.890625 -19.46875 C 12.578125 -19.789062 12.179688 -19.953125 11.703125 -19.953125 C 11.234375 -19.953125 10.835938 -19.789062 10.515625 -19.46875 C 10.203125 -19.15625 10.046875 -18.765625 10.046875 -18.296875 C 10.046875 -17.816406 10.203125 -17.414062 10.515625 -17.09375 C 10.835938 -16.78125 11.234375 -16.625 11.703125 -16.625 Z M 11.703125 -21.625 C 12.179688 -21.625 12.578125 -21.78125 12.890625 -22.09375 C 13.210938 -22.414062 13.375 -22.816406 13.375 -23.296875 C 13.375 -23.765625 13.210938 -24.15625 12.890625 -24.46875 C 12.578125 -24.789062 12.179688 -24.953125 11.703125 -24.953125 C 11.234375 -24.953125 10.835938 -24.789062 10.515625 -24.46875 C 10.203125 -24.15625 10.046875 -23.765625 10.046875 -23.296875 C 10.046875 -22.816406 10.203125 -22.414062 10.515625 -22.09375 C 10.835938 -21.78125 11.234375 -21.625 11.703125 -21.625 Z M 11.703125 -26.625 C 12.179688 -26.625 12.578125 -26.78125 12.890625 -27.09375 C 13.210938 -27.414062 13.375 -27.816406 13.375 -28.296875 C 13.375 -28.765625 13.210938 -29.15625 12.890625 -29.46875 C 12.578125 -29.789062 12.179688 -29.953125 11.703125 -29.953125 C 11.234375 -29.953125 10.835938 -29.789062 10.515625 -29.46875 C 10.203125 -29.15625 10.046875 -28.765625 10.046875 -28.296875 C 10.046875 -27.816406 10.203125 -27.414062 10.515625 -27.09375 C 10.835938 -26.78125 11.234375 -26.625 11.703125 -26.625 Z M 16.671875 -16.921875 L 25 -16.921875 L 25 -19.703125 L 16.671875 -19.703125 Z M 16.671875 -21.921875 L 30.046875 -21.921875 L 30.046875 -24.703125 L 16.671875 -24.703125 Z M 16.671875 -26.921875 L 30.046875 -26.921875 L 30.046875 -29.703125 L 16.671875 -29.703125 Z M 2.671875 -2.671875 L 2.671875 -33.671875 C 2.671875 -34.671875 3.03125 -35.53125 3.75 -36.25 C 4.46875 -36.96875 5.328125 -37.328125 6.328125 -37.328125 L 33.671875 -37.328125 C 34.671875 -37.328125 35.53125 -36.96875 36.25 -36.25 C 36.96875 -35.53125 37.328125 -34.671875 37.328125 -33.671875 L 37.328125 -13 C 37.328125 -12 36.96875 -11.132812 36.25 -10.40625 C 35.53125 -9.6875 34.671875 -9.328125 33.671875 -9.328125 L 9.328125 -9.328125 Z M 8.171875 -13 L 33.671875 -13 L 33.671875 -33.671875 L 6.328125 -33.671875 L 6.328125 -11.046875 Z M 6.328125 -13 L 6.328125 -33.671875 Z M 6.328125 -13 "/>
</symbol>
<symbol overflow="visible" id="glyph3-4">
<path style="stroke:none;" d="M 20 -2.125 C 19 -2.125 18.148438 -2.488281 17.453125 -3.21875 C 16.765625 -3.957031 16.421875 -4.867188 16.421875 -5.953125 L 23.578125 -5.953125 C 23.578125 -4.867188 23.226562 -3.957031 22.53125 -3.21875 C 21.84375 -2.488281 21 -2.125 20 -2.125 Z M 13.078125 -8.421875 L 13.078125 -11.5 L 26.921875 -11.5 L 26.921875 -8.421875 Z M 13.375 -13.875 C 11.40625 -15.125 9.820312 -16.71875 8.625 -18.65625 C 7.425781 -20.601562 6.828125 -22.785156 6.828125 -25.203125 C 6.828125 -28.785156 8.117188 -31.867188 10.703125 -34.453125 C 13.285156 -37.035156 16.382812 -38.328125 20 -38.328125 C 23.582031 -38.328125 26.671875 -37.035156 29.265625 -34.453125 C 31.867188 -31.867188 33.171875 -28.785156 33.171875 -25.203125 C 33.171875 -22.785156 32.578125 -20.601562 31.390625 -18.65625 C 30.210938 -16.71875 28.625 -15.125 26.625 -13.875 Z M 14.625 -17.578125 L 25.421875 -17.578125 C 26.691406 -18.441406 27.6875 -19.53125 28.40625 -20.84375 C 29.132812 -22.164062 29.5 -23.609375 29.5 -25.171875 C 29.5 -27.804688 28.566406 -30.046875 26.703125 -31.890625 C 24.847656 -33.742188 22.613281 -34.671875 20 -34.671875 C 17.382812 -34.671875 15.144531 -33.742188 13.28125 -31.890625 C 11.425781 -30.046875 10.5 -27.804688 10.5 -25.171875 C 10.5 -23.609375 10.859375 -22.164062 11.578125 -20.84375 C 12.304688 -19.53125 13.320312 -18.441406 14.625 -17.578125 Z M 20 -17.578125 Z M 20 -17.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph4-0">
<path style="stroke:none;" d="M 8.328125 0.046875 L 8.328125 -40 L 31.671875 -40 L 31.671875 0.046875 Z M 11.703125 -5.171875 L 19.078125 -20.046875 L 11.703125 -34.953125 Z M 28.375 -5.171875 L 28.375 -34.953125 L 20.875 -20.125 Z M 12.546875 -3.375 L 27.421875 -3.375 L 20.046875 -18.125 Z M 20.046875 -21.921875 L 27.375 -36.703125 L 12.625 -36.703125 Z M 20.046875 -21.921875 "/>
</symbol>
<symbol overflow="visible" id="glyph4-1">
<path style="stroke:none;" d="M 13.296875 -10.296875 L 26.703125 -10.296875 L 26.703125 -13.046875 L 13.296875 -13.046875 Z M 13.296875 -17.203125 L 26.703125 -17.203125 L 26.703125 -20 L 13.296875 -20 Z M 9.453125 -3.328125 C 8.703125 -3.328125 8.050781 -3.601562 7.5 -4.15625 C 6.945312 -4.71875 6.671875 -5.375 6.671875 -6.125 L 6.671875 -33.875 C 6.671875 -34.625 6.945312 -35.273438 7.5 -35.828125 C 8.050781 -36.390625 8.703125 -36.671875 9.453125 -36.671875 L 23.921875 -36.671875 L 33.328125 -27.25 L 33.328125 -6.125 C 33.328125 -5.375 33.050781 -4.71875 32.5 -4.15625 C 31.945312 -3.601562 31.296875 -3.328125 30.546875 -3.328125 Z M 22.546875 -25.953125 L 22.546875 -33.875 L 9.453125 -33.875 L 9.453125 -6.125 L 30.546875 -6.125 L 30.546875 -25.953125 Z M 9.453125 -33.875 L 9.453125 -25.953125 L 9.453125 -33.875 L 9.453125 -6.125 Z M 9.453125 -33.875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-1">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph5-2">
<path style="stroke:none;" d="M 11.84375 3.125 C 10.1875 2.34375 8.742188 1.296875 7.515625 -0.015625 C 6.285156 -1.328125 5.332031 -2.804688 4.65625 -4.453125 C 3.988281 -6.109375 3.65625 -7.820312 3.65625 -9.59375 C 3.65625 -11.375 3.984375 -13.066406 4.640625 -14.671875 C 5.304688 -16.285156 6.238281 -17.726562 7.4375 -19 C 8.632812 -20.269531 10.046875 -21.285156 11.671875 -22.046875 L 12.234375 -20.1875 C 11.273438 -19.664062 10.398438 -19.023438 9.609375 -18.265625 C 8.828125 -17.503906 8.148438 -16.664062 7.578125 -15.75 C 7.003906 -14.832031 6.5625 -13.84375 6.25 -12.78125 C 5.945312 -11.71875 5.796875 -10.628906 5.796875 -9.515625 C 5.796875 -8.390625 5.945312 -7.296875 6.25 -6.234375 C 6.5625 -5.179688 7.003906 -4.175781 7.578125 -3.21875 C 8.160156 -2.269531 8.859375 -1.410156 9.671875 -0.640625 C 10.484375 0.128906 11.398438 0.78125 12.421875 1.3125 Z M 11.84375 3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-3">
<path style="stroke:none;" d="M 5.96875 5.046875 L 4.953125 4.140625 C 5.515625 3.617188 5.976562 3.054688 6.34375 2.453125 C 6.71875 1.859375 6.90625 1.367188 6.90625 0.984375 C 6.90625 0.785156 6.828125 0.601562 6.671875 0.4375 C 6.523438 0.269531 6.34375 0.109375 6.125 -0.046875 C 5.914062 -0.210938 5.738281 -0.398438 5.59375 -0.609375 C 5.445312 -0.828125 5.375 -1.0625 5.375 -1.3125 C 5.375 -1.8125 5.535156 -2.234375 5.859375 -2.578125 C 6.191406 -2.921875 6.617188 -3.09375 7.140625 -3.09375 C 7.660156 -3.09375 8.128906 -2.859375 8.546875 -2.390625 C 8.972656 -1.929688 9.1875 -1.332031 9.1875 -0.59375 C 9.1875 -0.195312 9.117188 0.210938 8.984375 0.640625 C 8.859375 1.078125 8.660156 1.53125 8.390625 2 C 8.117188 2.46875 7.78125 2.957031 7.375 3.46875 C 6.976562 3.976562 6.507812 4.503906 5.96875 5.046875 Z M 5.96875 5.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-4">
<path style="stroke:none;" d="M 8.96875 0.203125 C 8.09375 0.203125 7.375 0.0546875 6.8125 -0.234375 C 6.25 -0.535156 5.816406 -1 5.515625 -1.625 C 5.210938 -2.257812 5.015625 -3.054688 4.921875 -4.015625 C 4.835938 -4.972656 4.816406 -6.113281 4.859375 -7.4375 L 5.21875 -17.21875 L 7.46875 -17.484375 L 7.765625 -17.515625 L 7.796875 -17.3125 C 7.703125 -17.164062 7.617188 -17.023438 7.546875 -16.890625 C 7.472656 -16.753906 7.414062 -16.515625 7.375 -16.171875 L 7.109375 -12.78125 L 7.203125 -12.234375 L 6.984375 -7.296875 C 6.929688 -5.773438 6.972656 -4.597656 7.109375 -3.765625 C 7.242188 -2.929688 7.492188 -2.359375 7.859375 -2.046875 C 8.222656 -1.742188 8.703125 -1.59375 9.296875 -1.59375 C 9.960938 -1.59375 10.546875 -1.722656 11.046875 -1.984375 C 11.554688 -2.242188 12.09375 -2.570312 12.65625 -2.96875 L 13.3125 -1.265625 C 12.632812 -0.765625 11.9375 -0.394531 11.21875 -0.15625 C 10.5 0.0820312 9.75 0.203125 8.96875 0.203125 Z M 2.09375 -13.703125 L 11.96875 -13.703125 L 11.96875 -11.9375 L 2.09375 -11.9375 Z M 2.09375 -13.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-5">
<path style="stroke:none;" d="M 6.328125 0.328125 C 4.765625 0.328125 3.5625 -0.0234375 2.71875 -0.734375 C 1.882812 -1.441406 1.46875 -2.347656 1.46875 -3.453125 C 1.46875 -4.191406 1.644531 -4.851562 2 -5.4375 C 2.363281 -6.03125 2.859375 -6.53125 3.484375 -6.9375 C 4.117188 -7.351562 4.851562 -7.671875 5.6875 -7.890625 C 6.53125 -8.109375 7.425781 -8.21875 8.375 -8.21875 C 8.707031 -8.21875 9.050781 -8.210938 9.40625 -8.203125 C 9.757812 -8.191406 10.128906 -8.171875 10.515625 -8.140625 C 10.898438 -8.109375 11.304688 -8.066406 11.734375 -8.015625 L 11.796875 -6.359375 C 11.429688 -6.421875 11.0625 -6.46875 10.6875 -6.5 C 10.320312 -6.53125 9.957031 -6.550781 9.59375 -6.5625 C 9.238281 -6.582031 8.890625 -6.59375 8.546875 -6.59375 C 7.828125 -6.59375 7.164062 -6.53125 6.5625 -6.40625 C 5.96875 -6.289062 5.445312 -6.113281 5 -5.875 C 4.5625 -5.632812 4.222656 -5.320312 3.984375 -4.9375 C 3.742188 -4.5625 3.625 -4.101562 3.625 -3.5625 C 3.625 -3.144531 3.695312 -2.789062 3.84375 -2.5 C 4 -2.207031 4.207031 -1.976562 4.46875 -1.8125 C 4.726562 -1.644531 5.03125 -1.519531 5.375 -1.4375 C 5.726562 -1.351562 6.117188 -1.3125 6.546875 -1.3125 C 7.316406 -1.3125 8.007812 -1.4375 8.625 -1.6875 C 9.238281 -1.9375 9.757812 -2.300781 10.1875 -2.78125 C 10.613281 -3.269531 10.9375 -3.863281 11.15625 -4.5625 C 11.375 -5.257812 11.484375 -6.054688 11.484375 -6.953125 C 11.484375 -8.316406 11.320312 -9.378906 11 -10.140625 C 10.6875 -10.898438 10.210938 -11.4375 9.578125 -11.75 C 8.953125 -12.070312 8.148438 -12.234375 7.171875 -12.234375 C 6.515625 -12.234375 5.863281 -12.109375 5.21875 -11.859375 C 4.582031 -11.609375 4.003906 -11.222656 3.484375 -10.703125 L 2.4375 -12.09375 C 3.070312 -12.726562 3.804688 -13.207031 4.640625 -13.53125 C 5.484375 -13.851562 6.375 -14.015625 7.3125 -14.015625 C 8.21875 -14.015625 9.039062 -13.898438 9.78125 -13.671875 C 10.519531 -13.453125 11.15625 -13.085938 11.6875 -12.578125 C 12.21875 -12.066406 12.625 -11.378906 12.90625 -10.515625 C 13.195312 -9.660156 13.34375 -8.585938 13.34375 -7.296875 L 13.34375 0 L 11.015625 0 L 11.015625 -2.09375 C 10.753906 -1.59375 10.4375 -1.179688 10.0625 -0.859375 C 9.695312 -0.546875 9.300781 -0.300781 8.875 -0.125 C 8.457031 0.0390625 8.03125 0.15625 7.59375 0.21875 C 7.15625 0.289062 6.734375 0.328125 6.328125 0.328125 Z M 6.328125 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-6">
<path style="stroke:none;" d="M 3.5625 -13.703125 L 5.8125 -13.703125 L 5.734375 -9.71875 L 5.453125 -10.171875 C 5.578125 -10.785156 5.789062 -11.332031 6.09375 -11.8125 C 6.394531 -12.300781 6.753906 -12.707031 7.171875 -13.03125 C 7.585938 -13.363281 8.046875 -13.613281 8.546875 -13.78125 C 9.046875 -13.957031 9.566406 -14.046875 10.109375 -14.046875 C 10.828125 -14.046875 11.488281 -13.921875 12.09375 -13.671875 C 12.707031 -13.421875 13.253906 -13.046875 13.734375 -12.546875 L 12.78125 -10.859375 L 12.65625 -10.59375 L 12.453125 -10.703125 C 12.410156 -10.867188 12.347656 -11.019531 12.265625 -11.15625 C 12.191406 -11.300781 12.023438 -11.472656 11.765625 -11.671875 C 11.441406 -11.867188 11.144531 -12.003906 10.875 -12.078125 C 10.601562 -12.148438 10.296875 -12.1875 9.953125 -12.1875 C 9.453125 -12.1875 8.953125 -12.085938 8.453125 -11.890625 C 7.953125 -11.703125 7.5 -11.40625 7.09375 -11 C 6.6875 -10.601562 6.363281 -10.09375 6.125 -9.46875 C 5.882812 -8.851562 5.765625 -8.117188 5.765625 -7.265625 L 5.765625 0.03125 L 3.5625 0.03125 Z M 3.5625 -13.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-7">
<path style="stroke:none;" d="M 7.40625 5.15625 C 6.445312 5.15625 5.582031 5.078125 4.8125 4.921875 C 4.039062 4.773438 3.378906 4.554688 2.828125 4.265625 C 2.285156 3.984375 1.867188 3.617188 1.578125 3.171875 C 1.285156 2.734375 1.140625 2.21875 1.140625 1.625 C 1.140625 1.0625 1.257812 0.554688 1.5 0.109375 C 1.738281 -0.328125 2.050781 -0.6875 2.4375 -0.96875 C 2.832031 -1.257812 3.257812 -1.476562 3.71875 -1.625 L 4.625 -1.078125 C 4.257812 -0.859375 3.96875 -0.640625 3.75 -0.421875 C 3.53125 -0.203125 3.367188 0.0507812 3.265625 0.34375 C 3.171875 0.632812 3.125 0.976562 3.125 1.375 C 3.125 1.71875 3.222656 2.023438 3.421875 2.296875 C 3.617188 2.566406 3.898438 2.789062 4.265625 2.96875 C 4.640625 3.144531 5.09375 3.285156 5.625 3.390625 C 6.15625 3.492188 6.757812 3.546875 7.4375 3.546875 C 8.351562 3.546875 9.097656 3.445312 9.671875 3.25 C 10.242188 3.0625 10.671875 2.800781 10.953125 2.46875 C 11.234375 2.144531 11.375 1.769531 11.375 1.34375 C 11.375 0.90625 11.289062 0.546875 11.125 0.265625 C 10.96875 -0.015625 10.640625 -0.222656 10.140625 -0.359375 C 9.640625 -0.492188 8.878906 -0.5625 7.859375 -0.5625 C 7.160156 -0.5625 6.519531 -0.59375 5.9375 -0.65625 C 5.351562 -0.71875 4.832031 -0.816406 4.375 -0.953125 C 3.914062 -1.097656 3.53125 -1.273438 3.21875 -1.484375 C 2.914062 -1.691406 2.679688 -1.945312 2.515625 -2.25 C 2.359375 -2.550781 2.28125 -2.898438 2.28125 -3.296875 C 2.28125 -3.816406 2.425781 -4.316406 2.71875 -4.796875 C 3.007812 -5.273438 3.40625 -5.738281 3.90625 -6.1875 L 4.921875 -5.375 C 4.722656 -5.15625 4.5625 -4.957031 4.4375 -4.78125 C 4.320312 -4.613281 4.238281 -4.453125 4.1875 -4.296875 C 4.132812 -4.148438 4.109375 -3.988281 4.109375 -3.8125 C 4.109375 -3.488281 4.234375 -3.226562 4.484375 -3.03125 C 4.734375 -2.832031 5.164062 -2.6875 5.78125 -2.59375 C 6.40625 -2.5 7.25 -2.453125 8.3125 -2.453125 C 9.375 -2.453125 10.234375 -2.367188 10.890625 -2.203125 C 11.546875 -2.035156 12.050781 -1.789062 12.40625 -1.46875 C 12.757812 -1.144531 13.003906 -0.773438 13.140625 -0.359375 C 13.273438 0.0546875 13.34375 0.515625 13.34375 1.015625 C 13.34375 1.554688 13.238281 2.070312 13.03125 2.5625 C 12.820312 3.050781 12.488281 3.488281 12.03125 3.875 C 11.570312 4.269531 10.960938 4.582031 10.203125 4.8125 C 9.441406 5.039062 8.507812 5.15625 7.40625 5.15625 Z M 6.78125 -4.65625 C 5.800781 -4.65625 4.953125 -4.867188 4.234375 -5.296875 C 3.515625 -5.722656 2.957031 -6.300781 2.5625 -7.03125 C 2.175781 -7.757812 1.984375 -8.566406 1.984375 -9.453125 C 1.984375 -10.328125 2.175781 -11.125 2.5625 -11.84375 C 2.957031 -12.570312 3.515625 -13.148438 4.234375 -13.578125 C 4.953125 -14.003906 5.800781 -14.21875 6.78125 -14.21875 C 7.78125 -14.21875 8.632812 -14.003906 9.34375 -13.578125 C 10.050781 -13.148438 10.597656 -12.570312 10.984375 -11.84375 C 11.378906 -11.125 11.578125 -10.328125 11.578125 -9.453125 C 11.578125 -8.566406 11.378906 -7.757812 10.984375 -7.03125 C 10.597656 -6.300781 10.050781 -5.722656 9.34375 -5.296875 C 8.632812 -4.867188 7.78125 -4.65625 6.78125 -4.65625 Z M 6.78125 -6.453125 C 7.363281 -6.453125 7.878906 -6.585938 8.328125 -6.859375 C 8.773438 -7.128906 9.128906 -7.492188 9.390625 -7.953125 C 9.648438 -8.410156 9.78125 -8.910156 9.78125 -9.453125 C 9.78125 -10.015625 9.648438 -10.519531 9.390625 -10.96875 C 9.128906 -11.414062 8.773438 -11.773438 8.328125 -12.046875 C 7.878906 -12.316406 7.363281 -12.453125 6.78125 -12.453125 C 6.195312 -12.453125 5.679688 -12.316406 5.234375 -12.046875 C 4.785156 -11.773438 4.429688 -11.414062 4.171875 -10.96875 C 3.910156 -10.519531 3.78125 -10.015625 3.78125 -9.453125 C 3.78125 -8.910156 3.910156 -8.410156 4.171875 -7.953125 C 4.429688 -7.492188 4.785156 -7.128906 5.234375 -6.859375 C 5.679688 -6.585938 6.195312 -6.453125 6.78125 -6.453125 Z M 10.765625 -11.484375 L 9.9375 -12.484375 C 10.507812 -13.054688 11.109375 -13.476562 11.734375 -13.75 C 12.367188 -14.019531 13.117188 -14.125 13.984375 -14.0625 L 14.25 -12.296875 C 13.59375 -12.359375 12.972656 -12.335938 12.390625 -12.234375 C 11.804688 -12.140625 11.265625 -11.890625 10.765625 -11.484375 Z M 10.765625 -11.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-8">
<path style="stroke:none;" d="M 8.15625 0.296875 C 7.15625 0.296875 6.242188 0.144531 5.421875 -0.15625 C 4.609375 -0.46875 3.90625 -0.925781 3.3125 -1.53125 C 2.726562 -2.132812 2.273438 -2.878906 1.953125 -3.765625 C 1.628906 -4.648438 1.46875 -5.664062 1.46875 -6.8125 C 1.46875 -7.96875 1.628906 -8.992188 1.953125 -9.890625 C 2.285156 -10.796875 2.738281 -11.550781 3.3125 -12.15625 C 3.882812 -12.769531 4.554688 -13.238281 5.328125 -13.5625 C 6.097656 -13.882812 6.910156 -14.046875 7.765625 -14.046875 C 8.546875 -14.046875 9.273438 -13.914062 9.953125 -13.65625 C 10.640625 -13.394531 11.234375 -13 11.734375 -12.46875 C 12.234375 -11.9375 12.625 -11.257812 12.90625 -10.4375 C 13.195312 -9.613281 13.34375 -8.644531 13.34375 -7.53125 C 13.34375 -7.375 13.335938 -7.207031 13.328125 -7.03125 C 13.316406 -6.863281 13.304688 -6.703125 13.296875 -6.546875 L 3.546875 -6.546875 C 3.578125 -5.660156 3.722656 -4.890625 3.984375 -4.234375 C 4.242188 -3.585938 4.582031 -3.0625 5 -2.65625 C 5.425781 -2.25 5.914062 -1.941406 6.46875 -1.734375 C 7.019531 -1.535156 7.601562 -1.4375 8.21875 -1.4375 C 8.695312 -1.4375 9.144531 -1.488281 9.5625 -1.59375 C 9.988281 -1.707031 10.382812 -1.878906 10.75 -2.109375 C 11.125 -2.335938 11.460938 -2.625 11.765625 -2.96875 L 12.953125 -1.796875 C 12.578125 -1.335938 12.144531 -0.945312 11.65625 -0.625 C 11.164062 -0.3125 10.628906 -0.0820312 10.046875 0.0625 C 9.472656 0.21875 8.84375 0.296875 8.15625 0.296875 Z M 3.625 -8.21875 L 11.15625 -8.21875 C 11.15625 -8.863281 11.070312 -9.4375 10.90625 -9.9375 C 10.738281 -10.445312 10.5 -10.882812 10.1875 -11.25 C 9.875 -11.625 9.503906 -11.90625 9.078125 -12.09375 C 8.648438 -12.289062 8.164062 -12.390625 7.625 -12.390625 C 7.144531 -12.390625 6.6875 -12.304688 6.25 -12.140625 C 5.820312 -11.984375 5.425781 -11.726562 5.0625 -11.375 C 4.707031 -11.03125 4.40625 -10.597656 4.15625 -10.078125 C 3.90625 -9.554688 3.726562 -8.9375 3.625 -8.21875 Z M 3.625 -8.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-9">
<path style="stroke:none;" d="M 3.984375 3.125 L 3.421875 1.3125 C 4.441406 0.78125 5.351562 0.128906 6.15625 -0.640625 C 6.96875 -1.410156 7.664062 -2.269531 8.25 -3.21875 C 8.832031 -4.175781 9.273438 -5.179688 9.578125 -6.234375 C 9.890625 -7.296875 10.046875 -8.390625 10.046875 -9.515625 C 10.046875 -10.628906 9.890625 -11.71875 9.578125 -12.78125 C 9.273438 -13.84375 8.835938 -14.832031 8.265625 -15.75 C 7.691406 -16.664062 7.007812 -17.503906 6.21875 -18.265625 C 5.4375 -19.023438 4.5625 -19.664062 3.59375 -20.1875 L 4.171875 -22.046875 C 5.785156 -21.285156 7.191406 -20.269531 8.390625 -19 C 9.597656 -17.726562 10.53125 -16.285156 11.1875 -14.671875 C 11.851562 -13.066406 12.1875 -11.375 12.1875 -9.59375 C 12.1875 -7.820312 11.847656 -6.109375 11.171875 -4.453125 C 10.503906 -2.804688 9.554688 -1.328125 8.328125 -0.015625 C 7.097656 1.296875 5.648438 2.34375 3.984375 3.125 Z M 3.984375 3.125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-10">
<path style="stroke:none;" d="M 7.015625 0.296875 C 6.316406 0.296875 5.628906 0.148438 4.953125 -0.140625 C 4.285156 -0.441406 3.675781 -0.894531 3.125 -1.5 C 2.582031 -2.101562 2.148438 -2.863281 1.828125 -3.78125 C 1.503906 -4.695312 1.34375 -5.765625 1.34375 -6.984375 C 1.34375 -8.242188 1.515625 -9.316406 1.859375 -10.203125 C 2.203125 -11.097656 2.648438 -11.832031 3.203125 -12.40625 C 3.765625 -12.976562 4.382812 -13.394531 5.0625 -13.65625 C 5.75 -13.925781 6.441406 -14.0625 7.140625 -14.0625 C 7.773438 -14.0625 8.347656 -13.960938 8.859375 -13.765625 C 9.367188 -13.566406 9.816406 -13.289062 10.203125 -12.9375 C 10.597656 -12.59375 10.90625 -12.179688 11.125 -11.703125 L 11.125 -19.953125 L 13.40625 -19.953125 L 13.40625 -19.734375 C 13.289062 -19.617188 13.21875 -19.488281 13.1875 -19.34375 C 13.15625 -19.207031 13.140625 -18.96875 13.140625 -18.625 L 13.171875 -2.125 C 13.171875 -1.769531 13.1875 -1.414062 13.21875 -1.0625 C 13.25 -0.71875 13.332031 -0.363281 13.46875 0 L 11.34375 0 C 11.238281 -0.238281 11.164062 -0.476562 11.125 -0.71875 C 11.082031 -0.957031 11.054688 -1.191406 11.046875 -1.421875 C 11.046875 -1.648438 11.046875 -1.882812 11.046875 -2.125 C 10.765625 -1.644531 10.421875 -1.21875 10.015625 -0.84375 C 9.617188 -0.476562 9.171875 -0.195312 8.671875 0 C 8.171875 0.195312 7.617188 0.296875 7.015625 0.296875 Z M 7.34375 -1.59375 C 8.007812 -1.59375 8.570312 -1.726562 9.03125 -2 C 9.488281 -2.269531 9.859375 -2.648438 10.140625 -3.140625 C 10.421875 -3.628906 10.625 -4.195312 10.75 -4.84375 C 10.882812 -5.488281 10.953125 -6.1875 10.953125 -6.9375 C 10.953125 -7.945312 10.820312 -8.859375 10.5625 -9.671875 C 10.300781 -10.484375 9.890625 -11.125 9.328125 -11.59375 C 8.765625 -12.0625 8.046875 -12.296875 7.171875 -12.296875 C 6.566406 -12.296875 6.03125 -12.179688 5.5625 -11.953125 C 5.09375 -11.722656 4.703125 -11.390625 4.390625 -10.953125 C 4.085938 -10.515625 3.851562 -9.988281 3.6875 -9.375 C 3.53125 -8.757812 3.453125 -8.070312 3.453125 -7.3125 C 3.453125 -6.175781 3.597656 -5.175781 3.890625 -4.3125 C 4.191406 -3.457031 4.632812 -2.789062 5.21875 -2.3125 C 5.800781 -1.832031 6.507812 -1.59375 7.34375 -1.59375 Z M 7.34375 -1.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-11">
<path style="stroke:none;" d="M 4.859375 -12 L 1.890625 -12 L 1.890625 -13.703125 L 4.859375 -13.703125 L 4.859375 -14.84375 C 4.859375 -16.070312 5.070312 -17.070312 5.5 -17.84375 C 5.9375 -18.625 6.535156 -19.195312 7.296875 -19.5625 C 8.054688 -19.9375 8.925781 -20.125 9.90625 -20.125 C 10.757812 -20.125 11.5625 -19.96875 12.3125 -19.65625 C 13.0625 -19.351562 13.6875 -18.878906 14.1875 -18.234375 L 13.046875 -16.65625 L 12.875 -16.40625 L 12.6875 -16.53125 C 12.664062 -16.6875 12.625 -16.84375 12.5625 -17 C 12.507812 -17.164062 12.375 -17.367188 12.15625 -17.609375 C 11.832031 -17.890625 11.507812 -18.085938 11.1875 -18.203125 C 10.863281 -18.328125 10.453125 -18.390625 9.953125 -18.390625 C 9.378906 -18.390625 8.859375 -18.273438 8.390625 -18.046875 C 7.929688 -17.816406 7.570312 -17.445312 7.3125 -16.9375 C 7.0625 -16.425781 6.9375 -15.726562 6.9375 -14.84375 L 6.9375 -13.703125 L 11.4375 -13.703125 L 11.4375 -12 L 6.9375 -12 L 6.9375 0 L 4.859375 0 Z M 4.859375 -12 "/>
</symbol>
<symbol overflow="visible" id="glyph5-12">
<path style="stroke:none;" d="M 7.140625 -9.234375 C 6.679688 -9.234375 6.269531 -9.40625 5.90625 -9.75 C 5.550781 -10.09375 5.375 -10.492188 5.375 -10.953125 C 5.375 -11.429688 5.550781 -11.835938 5.90625 -12.171875 C 6.269531 -12.515625 6.679688 -12.6875 7.140625 -12.6875 C 7.597656 -12.6875 8.007812 -12.515625 8.375 -12.171875 C 8.75 -11.835938 8.9375 -11.429688 8.9375 -10.953125 C 8.9375 -10.492188 8.753906 -10.09375 8.390625 -9.75 C 8.035156 -9.40625 7.617188 -9.234375 7.140625 -9.234375 Z M 7.140625 0.328125 C 6.640625 0.328125 6.21875 0.164062 5.875 -0.15625 C 5.539062 -0.488281 5.375 -0.894531 5.375 -1.375 C 5.375 -1.851562 5.550781 -2.265625 5.90625 -2.609375 C 6.269531 -2.953125 6.679688 -3.125 7.140625 -3.125 C 7.597656 -3.125 8.007812 -2.953125 8.375 -2.609375 C 8.75 -2.265625 8.9375 -1.851562 8.9375 -1.375 C 8.9375 -0.914062 8.757812 -0.515625 8.40625 -0.171875 C 8.0625 0.160156 7.640625 0.328125 7.140625 0.328125 Z M 7.140625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-13">
<path style="stroke:none;" d="M 2.375 0 L 2.375 -1.734375 L 6.421875 -1.734375 L 6.421875 -18.203125 L 2.546875 -18.203125 L 2.546875 -19.953125 L 8.609375 -19.953125 L 8.609375 -1.734375 L 12.625 -1.734375 L 12.625 0 Z M 2.375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-14">
<path style="stroke:none;" d="M 7.53125 0.296875 C 6.769531 0.296875 6.039062 0.210938 5.34375 0.046875 C 4.65625 -0.109375 4.003906 -0.34375 3.390625 -0.65625 C 2.785156 -0.976562 2.222656 -1.378906 1.703125 -1.859375 L 2.90625 -3.90625 L 3.09375 -4.171875 L 3.265625 -4.046875 C 3.304688 -3.890625 3.351562 -3.722656 3.40625 -3.546875 C 3.457031 -3.378906 3.59375 -3.175781 3.8125 -2.9375 C 4.226562 -2.519531 4.726562 -2.175781 5.3125 -1.90625 C 5.90625 -1.632812 6.664062 -1.5 7.59375 -1.5 C 8.332031 -1.5 8.957031 -1.585938 9.46875 -1.765625 C 9.976562 -1.953125 10.367188 -2.207031 10.640625 -2.53125 C 10.921875 -2.863281 11.0625 -3.25 11.0625 -3.6875 C 11.0625 -3.988281 11 -4.253906 10.875 -4.484375 C 10.757812 -4.710938 10.566406 -4.925781 10.296875 -5.125 C 10.035156 -5.332031 9.679688 -5.535156 9.234375 -5.734375 C 8.796875 -5.929688 8.257812 -6.128906 7.625 -6.328125 C 6.582031 -6.628906 5.671875 -6.976562 4.890625 -7.375 C 4.109375 -7.78125 3.503906 -8.242188 3.078125 -8.765625 C 2.660156 -9.296875 2.453125 -9.90625 2.453125 -10.59375 C 2.453125 -11.289062 2.640625 -11.894531 3.015625 -12.40625 C 3.398438 -12.914062 3.96875 -13.316406 4.71875 -13.609375 C 5.46875 -13.898438 6.394531 -14.046875 7.5 -14.046875 C 8.132812 -14.046875 8.710938 -14 9.234375 -13.90625 C 9.753906 -13.8125 10.234375 -13.675781 10.671875 -13.5 C 11.117188 -13.320312 11.523438 -13.097656 11.890625 -12.828125 C 12.265625 -12.554688 12.617188 -12.238281 12.953125 -11.875 L 11.734375 -10.375 L 11.515625 -10.140625 L 11.375 -10.296875 C 11.351562 -10.453125 11.304688 -10.601562 11.234375 -10.75 C 11.160156 -10.90625 11.015625 -11.09375 10.796875 -11.3125 C 10.335938 -11.664062 9.816406 -11.9375 9.234375 -12.125 C 8.660156 -12.320312 8.101562 -12.421875 7.5625 -12.421875 C 6.757812 -12.421875 6.066406 -12.28125 5.484375 -12 C 4.910156 -11.71875 4.625 -11.285156 4.625 -10.703125 C 4.625 -10.410156 4.726562 -10.117188 4.9375 -9.828125 C 5.144531 -9.535156 5.53125 -9.242188 6.09375 -8.953125 C 6.65625 -8.660156 7.453125 -8.363281 8.484375 -8.0625 C 9.628906 -7.707031 10.546875 -7.34375 11.234375 -6.96875 C 11.921875 -6.601562 12.421875 -6.179688 12.734375 -5.703125 C 13.046875 -5.222656 13.203125 -4.648438 13.203125 -3.984375 C 13.203125 -3.222656 12.992188 -2.515625 12.578125 -1.859375 C 12.171875 -1.203125 11.546875 -0.675781 10.703125 -0.28125 C 9.867188 0.101562 8.8125 0.296875 7.53125 0.296875 Z M 7.53125 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-15">
<path style="stroke:none;" d="M 1.046875 2.40625 L 1.046875 0.5625 L 13.984375 0.5625 L 13.984375 2.40625 Z M 1.046875 2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-16">
<path style="stroke:none;" d="M 7.5 0.234375 C 6.257812 0.234375 5.164062 -0.0664062 4.21875 -0.671875 C 3.269531 -1.285156 2.523438 -2.125 1.984375 -3.1875 C 1.441406 -4.257812 1.171875 -5.488281 1.171875 -6.875 C 1.171875 -8.269531 1.441406 -9.503906 1.984375 -10.578125 C 2.523438 -11.648438 3.269531 -12.488281 4.21875 -13.09375 C 5.164062 -13.707031 6.257812 -14.015625 7.5 -14.015625 C 8.738281 -14.015625 9.832031 -13.707031 10.78125 -13.09375 C 11.726562 -12.488281 12.472656 -11.648438 13.015625 -10.578125 C 13.554688 -9.503906 13.828125 -8.269531 13.828125 -6.875 C 13.828125 -5.488281 13.554688 -4.257812 13.015625 -3.1875 C 12.472656 -2.125 11.726562 -1.285156 10.78125 -0.671875 C 9.832031 -0.0664062 8.738281 0.234375 7.5 0.234375 Z M 7.5 -1.5625 C 8.300781 -1.5625 9 -1.789062 9.59375 -2.25 C 10.195312 -2.707031 10.671875 -3.335938 11.015625 -4.140625 C 11.367188 -4.941406 11.546875 -5.863281 11.546875 -6.90625 C 11.546875 -7.9375 11.367188 -8.851562 11.015625 -9.65625 C 10.671875 -10.457031 10.195312 -11.082031 9.59375 -11.53125 C 9 -11.976562 8.300781 -12.203125 7.5 -12.203125 C 6.71875 -12.203125 6.019531 -11.976562 5.40625 -11.53125 C 4.800781 -11.082031 4.320312 -10.457031 3.96875 -9.65625 C 3.625 -8.851562 3.453125 -7.9375 3.453125 -6.90625 C 3.453125 -5.863281 3.625 -4.941406 3.96875 -4.140625 C 4.320312 -3.335938 4.800781 -2.707031 5.40625 -2.25 C 6.019531 -1.789062 6.71875 -1.5625 7.5 -1.5625 Z M 7.5 -1.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph5-17">
<path style="stroke:none;" d="M 2.15625 0 L 2.15625 -13.703125 L 4.265625 -13.703125 L 4.265625 -11.28125 C 4.617188 -11.84375 5.035156 -12.328125 5.515625 -12.734375 C 5.992188 -13.140625 6.523438 -13.457031 7.109375 -13.6875 C 7.691406 -13.925781 8.289062 -14.046875 8.90625 -14.046875 C 9.664062 -14.046875 10.34375 -13.851562 10.9375 -13.46875 C 11.539062 -13.09375 12.023438 -12.484375 12.390625 -11.640625 C 12.753906 -10.796875 12.9375 -9.6875 12.9375 -8.3125 L 12.9375 0 L 10.828125 0 L 10.828125 -8.25 C 10.828125 -9.207031 10.71875 -9.972656 10.5 -10.546875 C 10.28125 -11.117188 9.976562 -11.53125 9.59375 -11.78125 C 9.21875 -12.03125 8.789062 -12.15625 8.3125 -12.15625 C 7.851562 -12.15625 7.382812 -12.050781 6.90625 -11.84375 C 6.4375 -11.644531 6.003906 -11.359375 5.609375 -10.984375 C 5.210938 -10.617188 4.890625 -10.175781 4.640625 -9.65625 C 4.390625 -9.132812 4.265625 -8.546875 4.265625 -7.890625 L 4.265625 0 Z M 2.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-18">
<path style="stroke:none;" d="M 3.8125 5.21875 C 3.164062 5.21875 2.578125 5.117188 2.046875 4.921875 C 1.523438 4.722656 1.0625 4.429688 0.65625 4.046875 L 1.59375 2.578125 L 1.765625 2.3125 L 1.953125 2.4375 C 1.992188 2.59375 2.0625 2.722656 2.15625 2.828125 C 2.257812 2.941406 2.453125 3.085938 2.734375 3.265625 C 2.910156 3.328125 3.097656 3.375 3.296875 3.40625 C 3.492188 3.4375 3.707031 3.453125 3.9375 3.453125 C 4.46875 3.453125 4.914062 3.320312 5.28125 3.0625 C 5.65625 2.800781 5.984375 2.398438 6.265625 1.859375 C 6.546875 1.316406 6.816406 0.632812 7.078125 -0.1875 L 9.6875 -8.25 C 9.988281 -9.164062 10.28125 -10.070312 10.5625 -10.96875 C 10.84375 -11.875 11.03125 -12.785156 11.125 -13.703125 L 13.296875 -13.703125 C 13.148438 -12.785156 12.925781 -11.859375 12.625 -10.921875 C 12.332031 -9.984375 12.015625 -9.039062 11.671875 -8.09375 L 8.25 1.5625 C 7.769531 2.894531 7.15625 3.835938 6.40625 4.390625 C 5.65625 4.941406 4.789062 5.21875 3.8125 5.21875 Z M 1.375 -13.703125 L 3.625 -13.703125 L 8.0625 -2.28125 L 7.109375 0.390625 Z M 1.375 -13.703125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-19">
<path style="stroke:none;" d="M 1.34375 -11.671875 L 1.34375 -13.5 L 13.6875 -13.5 L 13.6875 -11.671875 Z M 1.34375 -5.453125 L 1.34375 -7.296875 L 13.6875 -7.296875 L 13.6875 -5.453125 Z M 1.34375 -5.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-20">
<path style="stroke:none;" d="M 7.140625 0.328125 C 6.660156 0.328125 6.25 0.160156 5.90625 -0.171875 C 5.570312 -0.515625 5.40625 -0.914062 5.40625 -1.375 C 5.40625 -1.832031 5.570312 -2.234375 5.90625 -2.578125 C 6.25 -2.921875 6.660156 -3.09375 7.140625 -3.09375 C 7.597656 -3.09375 7.992188 -2.921875 8.328125 -2.578125 C 8.671875 -2.234375 8.84375 -1.832031 8.84375 -1.375 C 8.84375 -0.914062 8.671875 -0.515625 8.328125 -0.171875 C 7.992188 0.160156 7.597656 0.328125 7.140625 0.328125 Z M 7.140625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-21">
<path style="stroke:none;" d="M 6.625 0.328125 C 6.082031 0.328125 5.570312 0.242188 5.09375 0.078125 C 4.613281 -0.078125 4.175781 -0.316406 3.78125 -0.640625 C 3.394531 -0.972656 3.0625 -1.390625 2.78125 -1.890625 C 2.507812 -2.390625 2.296875 -2.988281 2.140625 -3.6875 C 1.992188 -4.382812 1.921875 -5.175781 1.921875 -6.0625 L 1.953125 -13.703125 L 4.046875 -13.703125 L 4.046875 -6.0625 C 4.046875 -5.195312 4.125 -4.460938 4.28125 -3.859375 C 4.445312 -3.265625 4.675781 -2.785156 4.96875 -2.421875 C 5.257812 -2.066406 5.59375 -1.804688 5.96875 -1.640625 C 6.351562 -1.484375 6.753906 -1.40625 7.171875 -1.40625 C 7.648438 -1.40625 8.109375 -1.5 8.546875 -1.6875 C 8.984375 -1.882812 9.378906 -2.171875 9.734375 -2.546875 C 10.085938 -2.929688 10.363281 -3.421875 10.5625 -4.015625 C 10.757812 -4.617188 10.859375 -5.332031 10.859375 -6.15625 L 10.859375 -13.703125 L 12.953125 -13.703125 L 12.953125 -2.125 C 12.953125 -1.769531 12.96875 -1.414062 13 -1.0625 C 13.03125 -0.71875 13.117188 -0.363281 13.265625 0 L 11.1875 0 C 11.09375 -0.238281 11.023438 -0.472656 10.984375 -0.703125 C 10.941406 -0.929688 10.914062 -1.164062 10.90625 -1.40625 C 10.894531 -1.644531 10.890625 -1.875 10.890625 -2.09375 C 10.671875 -1.71875 10.410156 -1.378906 10.109375 -1.078125 C 9.804688 -0.773438 9.46875 -0.519531 9.09375 -0.3125 C 8.726562 -0.101562 8.335938 0.0507812 7.921875 0.15625 C 7.515625 0.269531 7.082031 0.328125 6.625 0.328125 Z M 6.625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-22">
<path style="stroke:none;" d="M 7.984375 0.328125 C 7.421875 0.328125 6.890625 0.238281 6.390625 0.0625 C 5.890625 -0.101562 5.429688 -0.34375 5.015625 -0.65625 C 4.609375 -0.976562 4.25 -1.359375 3.9375 -1.796875 L 3.1875 0 L 1.796875 0 L 1.796875 -19.953125 L 4.265625 -19.953125 L 4.265625 -19.734375 C 4.140625 -19.617188 4.0625 -19.488281 4.03125 -19.34375 C 4 -19.207031 3.984375 -18.96875 3.984375 -18.625 L 3.984375 -11.609375 C 4.203125 -11.972656 4.460938 -12.300781 4.765625 -12.59375 C 5.066406 -12.894531 5.394531 -13.15625 5.75 -13.375 C 6.113281 -13.59375 6.492188 -13.757812 6.890625 -13.875 C 7.296875 -13.988281 7.6875 -14.046875 8.0625 -14.046875 C 8.90625 -14.046875 9.671875 -13.898438 10.359375 -13.609375 C 11.054688 -13.316406 11.65625 -12.875 12.15625 -12.28125 C 12.65625 -11.695312 13.035156 -10.960938 13.296875 -10.078125 C 13.566406 -9.203125 13.703125 -8.171875 13.703125 -6.984375 C 13.703125 -5.765625 13.539062 -4.695312 13.21875 -3.78125 C 12.90625 -2.863281 12.472656 -2.097656 11.921875 -1.484375 C 11.367188 -0.867188 10.753906 -0.410156 10.078125 -0.109375 C 9.398438 0.179688 8.703125 0.328125 7.984375 0.328125 Z M 7.703125 -1.59375 C 8.191406 -1.59375 8.660156 -1.679688 9.109375 -1.859375 C 9.554688 -2.035156 9.957031 -2.328125 10.3125 -2.734375 C 10.675781 -3.148438 10.960938 -3.695312 11.171875 -4.375 C 11.378906 -5.0625 11.484375 -5.894531 11.484375 -6.875 C 11.484375 -7.769531 11.394531 -8.550781 11.21875 -9.21875 C 11.039062 -9.894531 10.785156 -10.453125 10.453125 -10.890625 C 10.117188 -11.328125 9.722656 -11.648438 9.265625 -11.859375 C 8.804688 -12.078125 8.304688 -12.1875 7.765625 -12.1875 C 7.023438 -12.1875 6.367188 -11.957031 5.796875 -11.5 C 5.234375 -11.050781 4.789062 -10.421875 4.46875 -9.609375 C 4.144531 -8.804688 3.984375 -7.875 3.984375 -6.8125 C 3.984375 -6.03125 4.050781 -5.316406 4.1875 -4.671875 C 4.332031 -4.035156 4.550781 -3.488281 4.84375 -3.03125 C 5.132812 -2.570312 5.515625 -2.21875 5.984375 -1.96875 C 6.453125 -1.71875 7.023438 -1.59375 7.703125 -1.59375 Z M 7.703125 -1.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-23">
<path style="stroke:none;" d="M 4.046875 -19.953125 L 6.453125 -19.953125 C 6.453125 -18.753906 6.441406 -17.789062 6.421875 -17.0625 C 6.398438 -16.34375 6.363281 -15.738281 6.3125 -15.25 C 6.257812 -14.757812 6.203125 -14.289062 6.140625 -13.84375 C 6.085938 -13.394531 6.03125 -12.847656 5.96875 -12.203125 L 4.53125 -12.203125 C 4.46875 -12.847656 4.40625 -13.394531 4.34375 -13.84375 C 4.289062 -14.289062 4.238281 -14.753906 4.1875 -15.234375 C 4.132812 -15.710938 4.097656 -16.316406 4.078125 -17.046875 C 4.054688 -17.785156 4.046875 -18.753906 4.046875 -19.953125 Z M 8.546875 -19.953125 L 10.953125 -19.953125 C 10.953125 -18.753906 10.941406 -17.789062 10.921875 -17.0625 C 10.898438 -16.34375 10.863281 -15.738281 10.8125 -15.25 C 10.757812 -14.757812 10.703125 -14.289062 10.640625 -13.84375 C 10.585938 -13.394531 10.53125 -12.847656 10.46875 -12.203125 L 9.03125 -12.203125 C 8.96875 -12.847656 8.90625 -13.394531 8.84375 -13.84375 C 8.789062 -14.289062 8.738281 -14.753906 8.6875 -15.234375 C 8.632812 -15.710938 8.597656 -16.316406 8.578125 -17.046875 C 8.554688 -17.785156 8.546875 -18.753906 8.546875 -19.953125 Z M 8.546875 -19.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-24">
<path style="stroke:none;" d="M 3.9375 2.671875 L 3.9375 -20.09375 L 12.515625 -20.09375 L 12.515625 -18.296875 L 5.84375 -18.296875 L 5.84375 0.953125 L 12.546875 0.953125 L 12.546875 2.671875 Z M 3.9375 2.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-25">
<path style="stroke:none;" d="M 4.296875 -10.296875 L 2.796875 -11.015625 L 7.375 -18.6875 L 8.046875 -18.6875 L 12.09375 -11.046875 L 10.5 -10.296875 L 7.59375 -15.546875 Z M 4.296875 -10.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-26">
<path style="stroke:none;" d="M 3.328125 -8.4375 L 3.328125 -10.4375 L 11.734375 -10.4375 L 11.734375 -8.4375 Z M 3.328125 -8.4375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-27">
<path style="stroke:none;" d="M 1.5 -1.46875 L 9.984375 -11.8125 L 2.125 -11.8125 L 2.125 -13.703125 L 12.78125 -13.703125 L 12.78125 -12.234375 L 4.4375 -1.859375 L 12.1875 -1.859375 C 12.519531 -1.859375 12.753906 -1.878906 12.890625 -1.921875 C 13.035156 -1.960938 13.171875 -2.039062 13.296875 -2.15625 L 13.5 -2.15625 L 13.5 0 L 1.5 0 Z M 1.5 -1.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-28">
<path style="stroke:none;" d="M 10.703125 -5.453125 L 3.9375 -5.453125 L 4.34375 -7.078125 L 10.234375 -7.078125 Z M 7.46875 -14.21875 L 2.546875 0 L 0.484375 0 L 7.375 -19.015625 L 7.625 -19.015625 L 14.515625 0 L 12.359375 0 Z M 7.46875 -14.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-29">
<path style="stroke:none;" d="M 1.5 -1.46875 L 10.921875 -16.796875 L 1.859375 -16.796875 L 1.859375 -18.6875 L 13.40625 -18.6875 L 13.40625 -17.21875 L 4.140625 -1.859375 L 12.5625 -1.859375 C 12.90625 -1.859375 13.144531 -1.878906 13.28125 -1.921875 C 13.425781 -1.960938 13.5625 -2.039062 13.6875 -2.15625 L 13.890625 -2.15625 L 13.890625 0 L 1.5 0 Z M 1.5 -1.46875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-30">
<path style="stroke:none;" d="M 12.546875 2.671875 L 3.9375 2.671875 L 3.9375 0.953125 L 10.625 0.953125 L 10.625 -18.296875 L 3.953125 -18.296875 L 3.953125 -20.09375 L 12.546875 -20.09375 Z M 12.546875 2.671875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-31">
<path style="stroke:none;" d="M 1.140625 0 L 1.140625 -13.703125 L 3.125 -13.703125 L 3.125 -12.359375 C 3.34375 -12.703125 3.59375 -13 3.875 -13.25 C 4.164062 -13.5 4.488281 -13.691406 4.84375 -13.828125 C 5.195312 -13.972656 5.550781 -14.046875 5.90625 -14.046875 C 6.3125 -14.046875 6.679688 -13.957031 7.015625 -13.78125 C 7.359375 -13.613281 7.644531 -13.378906 7.875 -13.078125 C 8.101562 -12.773438 8.257812 -12.425781 8.34375 -12.03125 C 8.519531 -12.425781 8.765625 -12.773438 9.078125 -13.078125 C 9.390625 -13.378906 9.75 -13.613281 10.15625 -13.78125 C 10.5625 -13.957031 10.988281 -14.046875 11.4375 -14.046875 C 11.894531 -14.046875 12.289062 -13.953125 12.625 -13.765625 C 12.96875 -13.585938 13.25 -13.34375 13.46875 -13.03125 C 13.6875 -12.71875 13.84375 -12.347656 13.9375 -11.921875 C 14.039062 -11.492188 14.082031 -11.03125 14.0625 -10.53125 L 14.0625 0 L 12.09375 0 L 12.09375 -9.71875 C 12.09375 -10.5625 12.035156 -11.171875 11.921875 -11.546875 C 11.816406 -11.929688 11.660156 -12.175781 11.453125 -12.28125 C 11.253906 -12.394531 11.035156 -12.453125 10.796875 -12.453125 C 10.421875 -12.453125 10.066406 -12.273438 9.734375 -11.921875 C 9.398438 -11.578125 9.128906 -11.144531 8.921875 -10.625 C 8.710938 -10.101562 8.609375 -9.582031 8.609375 -9.0625 L 8.609375 0 L 6.59375 0 L 6.59375 -9.546875 C 6.59375 -10.679688 6.488281 -11.4375 6.28125 -11.8125 C 6.070312 -12.195312 5.675781 -12.390625 5.09375 -12.390625 C 4.875 -12.390625 4.648438 -12.3125 4.421875 -12.15625 C 4.191406 -12.007812 3.976562 -11.800781 3.78125 -11.53125 C 3.582031 -11.257812 3.421875 -10.925781 3.296875 -10.53125 C 3.179688 -10.132812 3.125 -9.675781 3.125 -9.15625 L 3.125 0 Z M 1.140625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-32">
<path style="stroke:none;" d="M 5.96875 -6.875 L 4.171875 -5.1875 L 4.171875 0 L 1.984375 0 L 1.984375 -19.953125 L 4.4375 -19.953125 L 4.4375 -19.734375 C 4.320312 -19.617188 4.25 -19.488281 4.21875 -19.34375 C 4.1875 -19.207031 4.171875 -18.96875 4.171875 -18.625 L 4.171875 -7.40625 L 11.046875 -13.765625 C 11.160156 -13.742188 11.273438 -13.722656 11.390625 -13.703125 C 11.515625 -13.691406 11.640625 -13.679688 11.765625 -13.671875 C 11.898438 -13.660156 12.039062 -13.648438 12.1875 -13.640625 C 12.34375 -13.628906 12.488281 -13.625 12.625 -13.625 L 13.40625 -13.625 L 7.65625 -8.1875 L 14.375 0 L 11.578125 0.125 Z M 5.96875 -6.875 "/>
</symbol>
<symbol overflow="visible" id="glyph5-33">
<path style="stroke:none;" d="M 1.40625 0 L 6.234375 -6.953125 L 1.5 -13.703125 L 3.875 -13.703125 L 7.4375 -8.640625 L 10.859375 -13.703125 L 13.078125 -13.703125 L 8.640625 -7.046875 L 13.6875 0 L 11.21875 0 L 7.4375 -5.34375 L 3.875 0 Z M 1.40625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph5-34">
<path style="stroke:none;" d="M 8.546875 0.328125 C 7.546875 0.328125 6.625 0.148438 5.78125 -0.203125 C 4.945312 -0.566406 4.222656 -1.066406 3.609375 -1.703125 C 3.003906 -2.347656 2.53125 -3.101562 2.1875 -3.96875 C 1.851562 -4.84375 1.6875 -5.800781 1.6875 -6.84375 C 1.6875 -7.863281 1.851562 -8.804688 2.1875 -9.671875 C 2.53125 -10.546875 3.003906 -11.300781 3.609375 -11.9375 C 4.222656 -12.582031 4.945312 -13.082031 5.78125 -13.4375 C 6.625 -13.800781 7.535156 -13.984375 8.515625 -13.984375 C 9.640625 -13.984375 10.644531 -13.753906 11.53125 -13.296875 C 12.425781 -12.847656 13.148438 -12.226562 13.703125 -11.4375 L 12.359375 -10.109375 L 12.15625 -9.90625 L 12 -10.046875 C 12 -10.210938 11.960938 -10.363281 11.890625 -10.5 C 11.828125 -10.632812 11.675781 -10.820312 11.4375 -11.0625 C 10.988281 -11.46875 10.515625 -11.75 10.015625 -11.90625 C 9.515625 -12.070312 8.9375 -12.15625 8.28125 -12.15625 C 7.695312 -12.15625 7.144531 -12.035156 6.625 -11.796875 C 6.101562 -11.554688 5.640625 -11.207031 5.234375 -10.75 C 4.828125 -10.300781 4.503906 -9.753906 4.265625 -9.109375 C 4.023438 -8.472656 3.90625 -7.765625 3.90625 -6.984375 C 3.90625 -6.203125 4.023438 -5.488281 4.265625 -4.84375 C 4.503906 -4.195312 4.832031 -3.632812 5.25 -3.15625 C 5.664062 -2.675781 6.171875 -2.300781 6.765625 -2.03125 C 7.359375 -1.757812 7.992188 -1.625 8.671875 -1.625 C 9.128906 -1.625 9.566406 -1.6875 9.984375 -1.8125 C 10.410156 -1.945312 10.8125 -2.140625 11.1875 -2.390625 C 11.570312 -2.640625 11.921875 -2.941406 12.234375 -3.296875 L 13.5 -1.828125 C 12.820312 -1.109375 12.066406 -0.566406 11.234375 -0.203125 C 10.398438 0.148438 9.503906 0.328125 8.546875 0.328125 Z M 8.546875 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph5-35">
<path style="stroke:none;" d="M 3 0 L 3 -1.734375 L 6.515625 -1.734375 L 6.515625 -11.96875 L 3.1875 -11.96875 L 3.1875 -13.703125 L 8.671875 -13.703125 L 8.671875 -1.734375 L 11.875 -1.734375 L 11.875 0 Z M 7.46875 -16.59375 C 7.039062 -16.59375 6.675781 -16.738281 6.375 -17.03125 C 6.082031 -17.332031 5.9375 -17.695312 5.9375 -18.125 C 5.9375 -18.5625 6.078125 -18.929688 6.359375 -19.234375 C 6.648438 -19.535156 7.019531 -19.6875 7.46875 -19.6875 C 7.882812 -19.6875 8.25 -19.53125 8.5625 -19.21875 C 8.875 -18.90625 9.03125 -18.539062 9.03125 -18.125 C 9.03125 -17.695312 8.875 -17.332031 8.5625 -17.03125 C 8.25 -16.738281 7.882812 -16.59375 7.46875 -16.59375 Z M 7.46875 -16.59375 "/>
</symbol>
<symbol overflow="visible" id="glyph5-36">
<path style="stroke:none;" d="M 1.796875 5.015625 L 1.796875 -13.703125 L 3.984375 -13.703125 L 3.984375 -11.015625 C 4.203125 -11.710938 4.515625 -12.28125 4.921875 -12.71875 C 5.335938 -13.15625 5.820312 -13.476562 6.375 -13.6875 C 6.925781 -13.90625 7.519531 -14.015625 8.15625 -14.015625 C 8.914062 -14.015625 9.640625 -13.867188 10.328125 -13.578125 C 11.023438 -13.285156 11.632812 -12.847656 12.15625 -12.265625 C 12.6875 -11.691406 13.109375 -10.960938 13.421875 -10.078125 C 13.734375 -9.203125 13.890625 -8.160156 13.890625 -6.953125 C 13.890625 -5.753906 13.722656 -4.695312 13.390625 -3.78125 C 13.066406 -2.863281 12.628906 -2.097656 12.078125 -1.484375 C 11.523438 -0.867188 10.90625 -0.40625 10.21875 -0.09375 C 9.53125 0.207031 8.820312 0.359375 8.09375 0.359375 C 7.5625 0.359375 7.039062 0.269531 6.53125 0.09375 C 6.019531 -0.0703125 5.550781 -0.316406 5.125 -0.640625 C 4.707031 -0.972656 4.335938 -1.359375 4.015625 -1.796875 L 4.015625 5.015625 Z M 7.734375 -1.5625 C 8.210938 -1.5625 8.679688 -1.644531 9.140625 -1.8125 C 9.609375 -1.976562 10.03125 -2.257812 10.40625 -2.65625 C 10.789062 -3.0625 11.09375 -3.609375 11.3125 -4.296875 C 11.53125 -4.992188 11.640625 -5.851562 11.640625 -6.875 C 11.640625 -7.96875 11.5 -8.898438 11.21875 -9.671875 C 10.9375 -10.441406 10.53125 -11.035156 10 -11.453125 C 9.46875 -11.878906 8.820312 -12.113281 8.0625 -12.15625 C 7.507812 -12.1875 6.988281 -12.101562 6.5 -11.90625 C 6.007812 -11.707031 5.570312 -11.378906 5.1875 -10.921875 C 4.8125 -10.460938 4.515625 -9.859375 4.296875 -9.109375 C 4.085938 -8.359375 3.984375 -7.453125 3.984375 -6.390625 C 4.003906 -5.753906 4.070312 -5.175781 4.1875 -4.65625 C 4.3125 -4.132812 4.484375 -3.675781 4.703125 -3.28125 C 4.929688 -2.894531 5.191406 -2.578125 5.484375 -2.328125 C 5.785156 -2.078125 6.125 -1.882812 6.5 -1.75 C 6.882812 -1.625 7.296875 -1.5625 7.734375 -1.5625 Z M 7.734375 -1.5625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph6-1">
<path style="stroke:none;" d="M 1.890625 0 L 1.890625 -2.671875 L 5.8125 -2.671875 L 5.8125 -17.453125 L 2.0625 -17.453125 L 2.0625 -20.125 L 9.234375 -20.125 L 9.234375 -2.671875 L 13.140625 -2.671875 L 13.140625 0 Z M 1.890625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-2">
<path style="stroke:none;" d="M 8.125 0.328125 C 7.125 0.328125 6.195312 0.171875 5.34375 -0.140625 C 4.5 -0.460938 3.757812 -0.925781 3.125 -1.53125 C 2.5 -2.144531 2.015625 -2.898438 1.671875 -3.796875 C 1.335938 -4.703125 1.171875 -5.726562 1.171875 -6.875 C 1.171875 -8.03125 1.335938 -9.066406 1.671875 -9.984375 C 2.015625 -10.910156 2.476562 -11.691406 3.0625 -12.328125 C 3.65625 -12.972656 4.351562 -13.457031 5.15625 -13.78125 C 5.957031 -14.113281 6.816406 -14.28125 7.734375 -14.28125 C 8.554688 -14.28125 9.328125 -14.140625 10.046875 -13.859375 C 10.765625 -13.578125 11.398438 -13.148438 11.953125 -12.578125 C 12.503906 -12.015625 12.9375 -11.304688 13.25 -10.453125 C 13.570312 -9.609375 13.734375 -8.625 13.734375 -7.5 C 13.734375 -7.300781 13.726562 -7.0625 13.71875 -6.78125 C 13.707031 -6.5 13.695312 -6.257812 13.6875 -6.0625 L 4.4375 -6.0625 C 4.476562 -5.394531 4.609375 -4.828125 4.828125 -4.359375 C 5.046875 -3.890625 5.332031 -3.503906 5.6875 -3.203125 C 6.050781 -2.910156 6.453125 -2.6875 6.890625 -2.53125 C 7.335938 -2.382812 7.800781 -2.3125 8.28125 -2.3125 C 8.695312 -2.3125 9.097656 -2.347656 9.484375 -2.421875 C 9.878906 -2.503906 10.25 -2.644531 10.59375 -2.84375 C 10.945312 -3.050781 11.285156 -3.3125 11.609375 -3.625 L 13.34375 -1.953125 C 12.90625 -1.429688 12.410156 -0.992188 11.859375 -0.640625 C 11.316406 -0.296875 10.726562 -0.0507812 10.09375 0.09375 C 9.46875 0.25 8.8125 0.328125 8.125 0.328125 Z M 4.5 -8.609375 L 10.4375 -8.609375 C 10.4375 -9.085938 10.367188 -9.515625 10.234375 -9.890625 C 10.109375 -10.273438 9.925781 -10.597656 9.6875 -10.859375 C 9.445312 -11.117188 9.148438 -11.3125 8.796875 -11.4375 C 8.453125 -11.570312 8.050781 -11.640625 7.59375 -11.640625 C 7.207031 -11.640625 6.835938 -11.582031 6.484375 -11.46875 C 6.140625 -11.363281 5.828125 -11.179688 5.546875 -10.921875 C 5.265625 -10.660156 5.035156 -10.335938 4.859375 -9.953125 C 4.679688 -9.578125 4.5625 -9.128906 4.5 -8.609375 Z M 4.5 -8.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-3">
<path style="stroke:none;" d="M 5.9375 0.359375 C 4.394531 0.359375 3.195312 -0.00390625 2.34375 -0.734375 C 1.5 -1.460938 1.078125 -2.40625 1.078125 -3.5625 C 1.078125 -4.3125 1.238281 -5 1.5625 -5.625 C 1.894531 -6.25 2.390625 -6.789062 3.046875 -7.25 C 3.710938 -7.71875 4.535156 -8.078125 5.515625 -8.328125 C 6.492188 -8.578125 7.613281 -8.703125 8.875 -8.703125 C 9.039062 -8.703125 9.242188 -8.703125 9.484375 -8.703125 C 9.722656 -8.703125 9.984375 -8.695312 10.265625 -8.6875 C 10.546875 -8.675781 10.804688 -8.648438 11.046875 -8.609375 L 11.125 -6.265625 C 10.925781 -6.285156 10.6875 -6.300781 10.40625 -6.3125 C 10.125 -6.320312 9.835938 -6.332031 9.546875 -6.34375 C 9.265625 -6.351562 9.019531 -6.359375 8.8125 -6.359375 C 8.019531 -6.359375 7.347656 -6.296875 6.796875 -6.171875 C 6.242188 -6.054688 5.796875 -5.894531 5.453125 -5.6875 C 5.117188 -5.476562 4.867188 -5.226562 4.703125 -4.9375 C 4.546875 -4.644531 4.46875 -4.328125 4.46875 -3.984375 C 4.46875 -3.671875 4.519531 -3.398438 4.625 -3.171875 C 4.738281 -2.953125 4.890625 -2.773438 5.078125 -2.640625 C 5.273438 -2.515625 5.503906 -2.421875 5.765625 -2.359375 C 6.023438 -2.304688 6.300781 -2.28125 6.59375 -2.28125 C 7.195312 -2.28125 7.722656 -2.375 8.171875 -2.5625 C 8.617188 -2.75 9 -3.050781 9.3125 -3.46875 C 9.625 -3.894531 9.851562 -4.421875 10 -5.046875 C 10.15625 -5.679688 10.234375 -6.429688 10.234375 -7.296875 C 10.234375 -8.453125 10.113281 -9.335938 9.875 -9.953125 C 9.632812 -10.578125 9.28125 -11.015625 8.8125 -11.265625 C 8.351562 -11.515625 7.773438 -11.640625 7.078125 -11.640625 C 6.441406 -11.640625 5.835938 -11.535156 5.265625 -11.328125 C 4.691406 -11.117188 4.132812 -10.734375 3.59375 -10.171875 L 1.734375 -12.203125 C 2.515625 -12.941406 3.382812 -13.472656 4.34375 -13.796875 C 5.3125 -14.117188 6.273438 -14.28125 7.234375 -14.28125 C 8.109375 -14.28125 8.925781 -14.179688 9.6875 -13.984375 C 10.445312 -13.785156 11.113281 -13.445312 11.6875 -12.96875 C 12.257812 -12.5 12.707031 -11.859375 13.03125 -11.046875 C 13.363281 -10.242188 13.53125 -9.242188 13.53125 -8.046875 L 13.53125 0 L 10.015625 0 L 10.015625 -1.5 C 9.753906 -1.15625 9.472656 -0.863281 9.171875 -0.625 C 8.878906 -0.382812 8.5625 -0.191406 8.21875 -0.046875 C 7.875 0.0859375 7.507812 0.1875 7.125 0.25 C 6.75 0.320312 6.351562 0.359375 5.9375 0.359375 Z M 5.9375 0.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-4">
<path style="stroke:none;" d="M 2.671875 -13.953125 L 6.1875 -13.953125 L 6.15625 -10.046875 L 5.765625 -10.296875 C 5.835938 -10.910156 6.007812 -11.457031 6.28125 -11.9375 C 6.550781 -12.414062 6.890625 -12.832031 7.296875 -13.1875 C 7.710938 -13.550781 8.164062 -13.820312 8.65625 -14 C 9.144531 -14.1875 9.648438 -14.28125 10.171875 -14.28125 C 10.953125 -14.28125 11.65625 -14.15625 12.28125 -13.90625 C 12.914062 -13.65625 13.503906 -13.25 14.046875 -12.6875 L 12.59375 -9.84375 L 12.515625 -9.59375 L 12.234375 -9.71875 C 12.179688 -9.875 12.125 -10.035156 12.0625 -10.203125 C 12 -10.378906 11.847656 -10.578125 11.609375 -10.796875 C 11.328125 -11.015625 11.03125 -11.179688 10.71875 -11.296875 C 10.414062 -11.421875 10.082031 -11.484375 9.71875 -11.484375 C 9.238281 -11.484375 8.78125 -11.40625 8.34375 -11.25 C 7.90625 -11.09375 7.519531 -10.84375 7.1875 -10.5 C 6.851562 -10.15625 6.59375 -9.71875 6.40625 -9.1875 C 6.21875 -8.664062 6.125 -8.039062 6.125 -7.3125 L 6.125 0 L 2.671875 0 Z M 2.671875 -13.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-5">
<path style="stroke:none;" d="M 1.65625 0 L 1.65625 -13.953125 L 5.046875 -13.953125 L 5.046875 -12.03125 C 5.378906 -12.46875 5.742188 -12.851562 6.140625 -13.1875 C 6.546875 -13.53125 6.992188 -13.796875 7.484375 -13.984375 C 7.972656 -14.179688 8.5 -14.28125 9.0625 -14.28125 C 9.882812 -14.28125 10.632812 -14.082031 11.3125 -13.6875 C 11.988281 -13.300781 12.535156 -12.675781 12.953125 -11.8125 C 13.378906 -10.957031 13.59375 -9.832031 13.59375 -8.4375 L 13.59375 0 L 10.203125 0 L 10.203125 -8.375 C 10.203125 -9.15625 10.117188 -9.785156 9.953125 -10.265625 C 9.796875 -10.742188 9.5625 -11.097656 9.25 -11.328125 C 8.945312 -11.554688 8.582031 -11.671875 8.15625 -11.671875 C 7.78125 -11.671875 7.40625 -11.59375 7.03125 -11.4375 C 6.664062 -11.289062 6.332031 -11.066406 6.03125 -10.765625 C 5.726562 -10.460938 5.488281 -10.109375 5.3125 -9.703125 C 5.132812 -9.296875 5.046875 -8.832031 5.046875 -8.3125 L 5.046875 0 Z M 1.65625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-6">
<path style="stroke:none;" d="M 0.9375 3.03125 L 0.9375 0.328125 L 14.0625 0.328125 L 14.0625 3.03125 Z M 0.9375 3.03125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-7">
<path style="stroke:none;" d="M 0.90625 0 L 0.90625 -13.953125 L 3.75 -13.953125 L 3.75 -12.9375 C 3.988281 -13.25 4.238281 -13.503906 4.5 -13.703125 C 4.757812 -13.910156 5.035156 -14.054688 5.328125 -14.140625 C 5.617188 -14.234375 5.90625 -14.28125 6.1875 -14.28125 C 6.519531 -14.28125 6.835938 -14.222656 7.140625 -14.109375 C 7.441406 -14.003906 7.71875 -13.828125 7.96875 -13.578125 C 8.21875 -13.328125 8.410156 -13 8.546875 -12.59375 C 8.765625 -12.976562 9.015625 -13.296875 9.296875 -13.546875 C 9.578125 -13.796875 9.898438 -13.976562 10.265625 -14.09375 C 10.640625 -14.21875 11.046875 -14.28125 11.484375 -14.28125 C 12.003906 -14.28125 12.441406 -14.1875 12.796875 -14 C 13.160156 -13.820312 13.457031 -13.5625 13.6875 -13.21875 C 13.925781 -12.882812 14.09375 -12.46875 14.1875 -11.96875 C 14.289062 -11.46875 14.34375 -10.910156 14.34375 -10.296875 L 14.34375 0 L 11.40625 0 L 11.40625 -9.5625 C 11.40625 -10.164062 11.375 -10.628906 11.3125 -10.953125 C 11.25 -11.285156 11.15625 -11.515625 11.03125 -11.640625 C 10.914062 -11.773438 10.757812 -11.84375 10.5625 -11.84375 C 10.300781 -11.84375 10.050781 -11.71875 9.8125 -11.46875 C 9.570312 -11.21875 9.375 -10.878906 9.21875 -10.453125 C 9.070312 -10.023438 9 -9.519531 9 -8.9375 L 9 0 L 6.234375 0 L 6.234375 -9.484375 C 6.234375 -10.441406 6.160156 -11.078125 6.015625 -11.390625 C 5.878906 -11.710938 5.625 -11.875 5.25 -11.875 C 5.070312 -11.875 4.894531 -11.8125 4.71875 -11.6875 C 4.550781 -11.570312 4.398438 -11.398438 4.265625 -11.171875 C 4.140625 -10.941406 4.035156 -10.648438 3.953125 -10.296875 C 3.878906 -9.953125 3.84375 -9.5625 3.84375 -9.125 L 3.84375 0 Z M 0.90625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-8">
<path style="stroke:none;" d="M 7.46875 0.296875 C 6.226562 0.296875 5.101562 -0.00390625 4.09375 -0.609375 C 3.082031 -1.222656 2.285156 -2.078125 1.703125 -3.171875 C 1.128906 -4.273438 0.84375 -5.546875 0.84375 -6.984375 C 0.84375 -8.367188 1.128906 -9.609375 1.703125 -10.703125 C 2.285156 -11.804688 3.082031 -12.675781 4.09375 -13.3125 C 5.101562 -13.957031 6.226562 -14.28125 7.46875 -14.28125 C 8.726562 -14.28125 9.863281 -13.957031 10.875 -13.3125 C 11.882812 -12.675781 12.679688 -11.804688 13.265625 -10.703125 C 13.859375 -9.609375 14.15625 -8.367188 14.15625 -6.984375 C 14.15625 -5.546875 13.859375 -4.273438 13.265625 -3.171875 C 12.679688 -2.078125 11.882812 -1.222656 10.875 -0.609375 C 9.863281 -0.00390625 8.726562 0.296875 7.46875 0.296875 Z M 7.46875 -2.40625 C 8.125 -2.40625 8.691406 -2.597656 9.171875 -2.984375 C 9.660156 -3.367188 10.046875 -3.90625 10.328125 -4.59375 C 10.617188 -5.289062 10.765625 -6.085938 10.765625 -6.984375 C 10.765625 -7.929688 10.617188 -8.742188 10.328125 -9.421875 C 10.046875 -10.097656 9.660156 -10.617188 9.171875 -10.984375 C 8.691406 -11.359375 8.125 -11.546875 7.46875 -11.546875 C 6.863281 -11.546875 6.316406 -11.359375 5.828125 -10.984375 C 5.335938 -10.617188 4.945312 -10.097656 4.65625 -9.421875 C 4.375 -8.742188 4.234375 -7.929688 4.234375 -6.984375 C 4.234375 -6.085938 4.367188 -5.289062 4.640625 -4.59375 C 4.921875 -3.90625 5.304688 -3.367188 5.796875 -2.984375 C 6.296875 -2.597656 6.851562 -2.40625 7.46875 -2.40625 Z M 7.46875 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-9">
<path style="stroke:none;" d="M 6.78125 0.328125 C 6 0.328125 5.265625 0.179688 4.578125 -0.109375 C 3.890625 -0.410156 3.273438 -0.875 2.734375 -1.5 C 2.191406 -2.125 1.765625 -2.894531 1.453125 -3.8125 C 1.140625 -4.726562 0.984375 -5.804688 0.984375 -7.046875 C 0.984375 -8.242188 1.132812 -9.296875 1.4375 -10.203125 C 1.738281 -11.117188 2.15625 -11.878906 2.6875 -12.484375 C 3.21875 -13.097656 3.832031 -13.554688 4.53125 -13.859375 C 5.226562 -14.160156 5.988281 -14.3125 6.8125 -14.3125 C 7.269531 -14.3125 7.710938 -14.25 8.140625 -14.125 C 8.578125 -14.007812 8.96875 -13.835938 9.3125 -13.609375 C 9.664062 -13.378906 9.953125 -13.0625 10.171875 -12.65625 L 10.171875 -20.125 L 13.796875 -20.125 L 13.796875 -19.859375 C 13.679688 -19.742188 13.609375 -19.613281 13.578125 -19.46875 C 13.546875 -19.332031 13.53125 -19.09375 13.53125 -18.75 L 13.5 -1.859375 C 13.5 -1.535156 13.519531 -1.222656 13.5625 -0.921875 C 13.601562 -0.628906 13.691406 -0.320312 13.828125 0 L 10.5 0 C 10.394531 -0.21875 10.320312 -0.394531 10.28125 -0.53125 C 10.25 -0.675781 10.226562 -0.820312 10.21875 -0.96875 C 10.207031 -1.125 10.203125 -1.3125 10.203125 -1.53125 C 9.960938 -1.113281 9.660156 -0.765625 9.296875 -0.484375 C 8.941406 -0.203125 8.550781 0 8.125 0.125 C 7.707031 0.257812 7.257812 0.328125 6.78125 0.328125 Z M 7.34375 -2.40625 C 7.8125 -2.40625 8.21875 -2.5 8.5625 -2.6875 C 8.914062 -2.875 9.207031 -3.15625 9.4375 -3.53125 C 9.664062 -3.914062 9.832031 -4.398438 9.9375 -4.984375 C 10.050781 -5.578125 10.109375 -6.253906 10.109375 -7.015625 C 10.109375 -8.054688 10.007812 -8.921875 9.8125 -9.609375 C 9.613281 -10.304688 9.300781 -10.820312 8.875 -11.15625 C 8.457031 -11.5 7.921875 -11.671875 7.265625 -11.671875 C 6.796875 -11.671875 6.375 -11.566406 6 -11.359375 C 5.625 -11.148438 5.3125 -10.84375 5.0625 -10.4375 C 4.820312 -10.039062 4.632812 -9.5625 4.5 -9 C 4.375 -8.4375 4.3125 -7.804688 4.3125 -7.109375 C 4.3125 -6.128906 4.445312 -5.289062 4.71875 -4.59375 C 4.988281 -3.894531 5.351562 -3.351562 5.8125 -2.96875 C 6.28125 -2.59375 6.789062 -2.40625 7.34375 -2.40625 Z M 7.34375 -2.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-10">
<path style="stroke:none;" d="M 8.96875 0.296875 C 8.164062 0.296875 7.46875 0.164062 6.875 -0.09375 C 6.289062 -0.351562 5.800781 -0.769531 5.40625 -1.34375 C 5.019531 -1.925781 4.738281 -2.695312 4.5625 -3.65625 C 4.394531 -4.613281 4.34375 -5.804688 4.40625 -7.234375 L 4.796875 -17.25 L 8.3125 -17.703125 L 8.578125 -17.734375 L 8.609375 -17.453125 C 8.523438 -17.316406 8.441406 -17.175781 8.359375 -17.03125 C 8.285156 -16.894531 8.238281 -16.65625 8.21875 -16.3125 L 7.890625 -12.1875 L 8.046875 -11.96875 L 7.796875 -7.296875 C 7.734375 -5.992188 7.773438 -4.984375 7.921875 -4.265625 C 8.078125 -3.554688 8.3125 -3.070312 8.625 -2.8125 C 8.9375 -2.5625 9.3125 -2.4375 9.75 -2.4375 C 10.382812 -2.4375 10.957031 -2.5625 11.46875 -2.8125 C 11.976562 -3.070312 12.457031 -3.375 12.90625 -3.71875 L 13.625 -1.265625 C 12.9375 -0.765625 12.207031 -0.378906 11.4375 -0.109375 C 10.675781 0.160156 9.851562 0.296875 8.96875 0.296875 Z M 1.765625 -13.953125 L 12.515625 -13.953125 L 12.484375 -11.28125 L 1.703125 -11.28125 Z M 1.765625 -13.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-11">
<path style="stroke:none;" d="M 4.171875 -11.3125 L 1.140625 -11.3125 L 1.140625 -13.953125 L 4.171875 -13.953125 L 4.171875 -14.796875 C 4.171875 -16.066406 4.4375 -17.109375 4.96875 -17.921875 C 5.5 -18.734375 6.203125 -19.335938 7.078125 -19.734375 C 7.960938 -20.140625 8.914062 -20.34375 9.9375 -20.34375 C 10.875 -20.34375 11.742188 -20.175781 12.546875 -19.84375 C 13.359375 -19.507812 14.046875 -19.035156 14.609375 -18.421875 L 13.34375 -16.109375 L 13.203125 -15.875 L 12.953125 -16.015625 C 12.898438 -16.160156 12.84375 -16.304688 12.78125 -16.453125 C 12.71875 -16.609375 12.554688 -16.796875 12.296875 -17.015625 C 11.960938 -17.253906 11.625 -17.425781 11.28125 -17.53125 C 10.9375 -17.644531 10.546875 -17.703125 10.109375 -17.703125 C 9.585938 -17.703125 9.125 -17.59375 8.71875 -17.375 C 8.320312 -17.15625 8.023438 -16.832031 7.828125 -16.40625 C 7.628906 -15.988281 7.53125 -15.457031 7.53125 -14.8125 L 7.53125 -13.953125 L 11.734375 -13.953125 L 11.734375 -11.3125 L 7.53125 -11.3125 L 7.53125 0 L 4.171875 0 Z M 4.171875 -11.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-12">
<path style="stroke:none;" d="M 2.515625 0 L 2.515625 -2.671875 L 5.9375 -2.671875 L 5.9375 -11.28125 L 2.703125 -11.28125 L 2.703125 -13.953125 L 9.359375 -13.953125 L 9.359375 -2.671875 L 12.484375 -2.671875 L 12.484375 0 Z M 7.5 -16.265625 C 6.914062 -16.265625 6.410156 -16.460938 5.984375 -16.859375 C 5.566406 -17.253906 5.359375 -17.734375 5.359375 -18.296875 C 5.359375 -18.898438 5.554688 -19.390625 5.953125 -19.765625 C 6.359375 -20.148438 6.875 -20.34375 7.5 -20.34375 C 8.050781 -20.34375 8.539062 -20.140625 8.96875 -19.734375 C 9.40625 -19.335938 9.625 -18.859375 9.625 -18.296875 C 9.625 -17.734375 9.40625 -17.253906 8.96875 -16.859375 C 8.539062 -16.460938 8.050781 -16.265625 7.5 -16.265625 Z M 7.5 -16.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-13">
<path style="stroke:none;" d="M 7.265625 0.328125 C 6.023438 0.328125 4.859375 0.144531 3.765625 -0.21875 C 2.671875 -0.59375 1.765625 -1.160156 1.046875 -1.921875 L 2.703125 -4.703125 L 2.8125 -4.953125 L 3.09375 -4.796875 C 3.132812 -4.660156 3.1875 -4.507812 3.25 -4.34375 C 3.320312 -4.1875 3.476562 -4 3.71875 -3.78125 C 4.21875 -3.394531 4.769531 -3.085938 5.375 -2.859375 C 5.988281 -2.628906 6.65625 -2.503906 7.375 -2.484375 C 7.832031 -2.484375 8.253906 -2.535156 8.640625 -2.640625 C 9.035156 -2.742188 9.375 -2.894531 9.65625 -3.09375 C 9.9375 -3.289062 10.15625 -3.539062 10.3125 -3.84375 C 10.476562 -4.15625 10.5625 -4.515625 10.5625 -4.921875 C 10.5625 -5.160156 10.53125 -5.390625 10.46875 -5.609375 C 10.40625 -5.828125 10.300781 -6.039062 10.15625 -6.25 C 10.007812 -6.457031 9.796875 -6.664062 9.515625 -6.875 C 9.234375 -7.09375 8.878906 -7.328125 8.453125 -7.578125 C 8.035156 -7.828125 7.507812 -8.09375 6.875 -8.375 C 5.59375 -8.925781 4.578125 -9.492188 3.828125 -10.078125 C 3.078125 -10.660156 2.539062 -11.28125 2.21875 -11.9375 C 1.894531 -12.601562 1.734375 -13.351562 1.734375 -14.1875 C 1.734375 -15.101562 1.988281 -15.921875 2.5 -16.640625 C 3.007812 -17.367188 3.710938 -17.941406 4.609375 -18.359375 C 5.515625 -18.773438 6.546875 -18.984375 7.703125 -18.984375 C 8.484375 -18.984375 9.210938 -18.894531 9.890625 -18.71875 C 10.578125 -18.539062 11.207031 -18.273438 11.78125 -17.921875 C 12.363281 -17.578125 12.894531 -17.132812 13.375 -16.59375 L 11.40625 -14.3125 L 11.21875 -14.09375 L 10.984375 -14.28125 C 10.960938 -14.4375 10.925781 -14.585938 10.875 -14.734375 C 10.820312 -14.890625 10.6875 -15.085938 10.46875 -15.328125 C 10.09375 -15.691406 9.6875 -15.929688 9.25 -16.046875 C 8.820312 -16.171875 8.316406 -16.234375 7.734375 -16.234375 C 7.316406 -16.234375 6.945312 -16.179688 6.625 -16.078125 C 6.3125 -15.984375 6.035156 -15.84375 5.796875 -15.65625 C 5.566406 -15.476562 5.382812 -15.273438 5.25 -15.046875 C 5.125 -14.816406 5.0625 -14.582031 5.0625 -14.34375 C 5.0625 -14.101562 5.09375 -13.875 5.15625 -13.65625 C 5.21875 -13.445312 5.320312 -13.242188 5.46875 -13.046875 C 5.625 -12.847656 5.84375 -12.644531 6.125 -12.4375 C 6.414062 -12.226562 6.789062 -12.003906 7.25 -11.765625 C 7.71875 -11.523438 8.289062 -11.253906 8.96875 -10.953125 C 9.90625 -10.515625 10.691406 -10.085938 11.328125 -9.671875 C 11.972656 -9.265625 12.476562 -8.832031 12.84375 -8.375 C 13.21875 -7.925781 13.484375 -7.4375 13.640625 -6.90625 C 13.804688 -6.382812 13.890625 -5.789062 13.890625 -5.125 C 13.890625 -4.226562 13.660156 -3.359375 13.203125 -2.515625 C 12.742188 -1.679688 12.019531 -1 11.03125 -0.46875 C 10.050781 0.0625 8.796875 0.328125 7.265625 0.328125 Z M 7.265625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-14">
<path style="stroke:none;" d="M 6.484375 0.0625 L 0.484375 -18.6875 L 3.84375 -18.6875 L 7.765625 -5.546875 L 11.4375 -18.6875 L 14.703125 -18.6875 L 8.765625 0.0625 Z M 6.484375 0.0625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-15">
<path style="stroke:none;" d="M 0.953125 0 L 0.953125 -18.6875 L 3.9375 -18.6875 L 7.5625 -10.109375 L 11.1875 -18.71875 L 14.15625 -18.71875 L 14.15625 0 L 11.21875 0 L 11.21875 -13.046875 L 8.28125 -6.1875 L 6.625 -6.1875 L 3.875 -13.015625 L 3.875 0 Z M 0.953125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-16">
<path style="stroke:none;" d="M 1.109375 -18.6875 L 4.65625 -18.6875 L 10.984375 -6.390625 L 10.796875 -18.6875 L 14.09375 -18.6875 L 14.09375 -18.421875 C 14 -18.296875 13.9375 -18.160156 13.90625 -18.015625 C 13.875 -17.878906 13.859375 -17.644531 13.859375 -17.3125 L 13.859375 0 L 10.703125 0 L 4.171875 -13.109375 L 4.171875 0 L 1.109375 0 Z M 1.109375 -18.6875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-17">
<path style="stroke:none;" d="M 1.109375 0 L 1.109375 -18.6875 L 6.8125 -18.6875 C 7.925781 -18.6875 8.894531 -18.570312 9.71875 -18.34375 C 10.539062 -18.113281 11.222656 -17.789062 11.765625 -17.375 C 12.316406 -16.96875 12.726562 -16.472656 13 -15.890625 C 13.269531 -15.316406 13.40625 -14.679688 13.40625 -13.984375 C 13.40625 -13.460938 13.304688 -12.929688 13.109375 -12.390625 C 12.910156 -11.847656 12.609375 -11.363281 12.203125 -10.9375 C 11.804688 -10.507812 11.328125 -10.175781 10.765625 -9.9375 C 11.265625 -9.707031 11.722656 -9.429688 12.140625 -9.109375 C 12.566406 -8.796875 12.929688 -8.441406 13.234375 -8.046875 C 13.535156 -7.660156 13.757812 -7.242188 13.90625 -6.796875 C 14.050781 -6.347656 14.125 -5.882812 14.125 -5.40625 C 14.125 -4.601562 13.972656 -3.863281 13.671875 -3.1875 C 13.378906 -2.519531 12.925781 -1.953125 12.3125 -1.484375 C 11.707031 -1.015625 10.941406 -0.648438 10.015625 -0.390625 C 9.097656 -0.128906 8.019531 0 6.78125 0 Z M 4.5 -2.796875 L 7.140625 -2.796875 C 7.859375 -2.796875 8.476562 -2.898438 9 -3.109375 C 9.519531 -3.316406 9.921875 -3.617188 10.203125 -4.015625 C 10.484375 -4.421875 10.625 -4.910156 10.625 -5.484375 C 10.625 -6.085938 10.492188 -6.613281 10.234375 -7.0625 C 9.972656 -7.507812 9.550781 -7.863281 8.96875 -8.125 C 8.382812 -8.382812 7.601562 -8.515625 6.625 -8.515625 L 4.5 -8.515625 Z M 4.5 -11.21875 L 6.546875 -11.21875 C 7.421875 -11.21875 8.109375 -11.320312 8.609375 -11.53125 C 9.109375 -11.738281 9.460938 -12.023438 9.671875 -12.390625 C 9.878906 -12.765625 9.984375 -13.195312 9.984375 -13.6875 C 9.984375 -14.019531 9.921875 -14.328125 9.796875 -14.609375 C 9.679688 -14.890625 9.5 -15.125 9.25 -15.3125 C 9 -15.5 8.675781 -15.648438 8.28125 -15.765625 C 7.882812 -15.890625 7.40625 -15.953125 6.84375 -15.953125 L 4.5 -15.953125 Z M 4.5 -11.21875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-18">
<path style="stroke:none;" d="M 7.171875 5.375 C 6.171875 5.375 5.28125 5.28125 4.5 5.09375 C 3.71875 4.914062 3.054688 4.664062 2.515625 4.34375 C 1.972656 4.03125 1.554688 3.644531 1.265625 3.1875 C 0.984375 2.738281 0.84375 2.238281 0.84375 1.6875 C 0.84375 1.195312 0.960938 0.742188 1.203125 0.328125 C 1.441406 -0.0859375 1.765625 -0.453125 2.171875 -0.765625 C 2.585938 -1.078125 3.035156 -1.320312 3.515625 -1.5 L 5.046875 -0.875 C 4.785156 -0.664062 4.53125 -0.46875 4.28125 -0.28125 C 4.03125 -0.09375 3.828125 0.113281 3.671875 0.34375 C 3.523438 0.570312 3.453125 0.847656 3.453125 1.171875 C 3.453125 1.429688 3.550781 1.660156 3.75 1.859375 C 3.945312 2.054688 4.222656 2.21875 4.578125 2.34375 C 4.941406 2.476562 5.363281 2.578125 5.84375 2.640625 C 6.320312 2.703125 6.851562 2.734375 7.4375 2.734375 C 8.195312 2.734375 8.835938 2.660156 9.359375 2.515625 C 9.878906 2.378906 10.28125 2.1875 10.5625 1.9375 C 10.84375 1.6875 10.984375 1.398438 10.984375 1.078125 C 10.984375 0.773438 10.898438 0.53125 10.734375 0.34375 C 10.578125 0.15625 10.285156 0.0195312 9.859375 -0.0625 C 9.441406 -0.144531 8.851562 -0.1875 8.09375 -0.1875 C 7.457031 -0.1875 6.828125 -0.210938 6.203125 -0.265625 C 5.585938 -0.328125 5.003906 -0.425781 4.453125 -0.5625 C 3.898438 -0.707031 3.414062 -0.894531 3 -1.125 C 2.582031 -1.351562 2.257812 -1.632812 2.03125 -1.96875 C 1.800781 -2.3125 1.6875 -2.722656 1.6875 -3.203125 C 1.6875 -3.867188 1.878906 -4.441406 2.265625 -4.921875 C 2.648438 -5.398438 3.125 -5.835938 3.6875 -6.234375 L 5.25 -5.34375 C 5.050781 -5.15625 4.875 -5 4.71875 -4.875 C 4.570312 -4.757812 4.457031 -4.644531 4.375 -4.53125 C 4.300781 -4.425781 4.265625 -4.273438 4.265625 -4.078125 C 4.265625 -3.835938 4.414062 -3.632812 4.71875 -3.46875 C 5.03125 -3.3125 5.539062 -3.191406 6.25 -3.109375 C 6.957031 -3.035156 7.882812 -3 9.03125 -3 C 9.925781 -3 10.675781 -2.90625 11.28125 -2.71875 C 11.882812 -2.53125 12.363281 -2.257812 12.71875 -1.90625 C 13.082031 -1.550781 13.347656 -1.148438 13.515625 -0.703125 C 13.679688 -0.253906 13.765625 0.21875 13.765625 0.71875 C 13.765625 1.320312 13.632812 1.894531 13.375 2.4375 C 13.113281 2.988281 12.710938 3.484375 12.171875 3.921875 C 11.640625 4.367188 10.957031 4.722656 10.125 4.984375 C 9.289062 5.242188 8.304688 5.375 7.171875 5.375 Z M 6.90625 -4.703125 C 5.925781 -4.703125 5.039062 -4.910156 4.25 -5.328125 C 3.457031 -5.753906 2.832031 -6.332031 2.375 -7.0625 C 1.925781 -7.789062 1.703125 -8.609375 1.703125 -9.515625 C 1.703125 -10.410156 1.925781 -11.222656 2.375 -11.953125 C 2.832031 -12.679688 3.457031 -13.265625 4.25 -13.703125 C 5.039062 -14.148438 5.925781 -14.375 6.90625 -14.375 C 7.90625 -14.375 8.785156 -14.148438 9.546875 -13.703125 C 10.316406 -13.265625 10.925781 -12.679688 11.375 -11.953125 C 11.832031 -11.222656 12.0625 -10.410156 12.0625 -9.515625 C 12.0625 -8.609375 11.832031 -7.789062 11.375 -7.0625 C 10.925781 -6.332031 10.316406 -5.753906 9.546875 -5.328125 C 8.785156 -4.910156 7.90625 -4.703125 6.90625 -4.703125 Z M 6.875 -7.171875 C 7.3125 -7.171875 7.703125 -7.269531 8.046875 -7.46875 C 8.398438 -7.664062 8.679688 -7.941406 8.890625 -8.296875 C 9.097656 -8.660156 9.203125 -9.066406 9.203125 -9.515625 C 9.203125 -9.953125 9.097656 -10.335938 8.890625 -10.671875 C 8.679688 -11.015625 8.398438 -11.285156 8.046875 -11.484375 C 7.703125 -11.691406 7.3125 -11.796875 6.875 -11.796875 C 6.46875 -11.796875 6.085938 -11.6875 5.734375 -11.46875 C 5.390625 -11.257812 5.109375 -10.984375 4.890625 -10.640625 C 4.671875 -10.304688 4.5625 -9.929688 4.5625 -9.515625 C 4.5625 -9.085938 4.664062 -8.691406 4.875 -8.328125 C 5.082031 -7.972656 5.359375 -7.691406 5.703125 -7.484375 C 6.054688 -7.273438 6.445312 -7.171875 6.875 -7.171875 Z M 11.21875 -11.40625 L 9.9375 -12.984375 C 10.488281 -13.453125 11.125 -13.804688 11.84375 -14.046875 C 12.570312 -14.285156 13.351562 -14.375 14.1875 -14.3125 L 14.515625 -11.96875 C 13.921875 -12.09375 13.332031 -12.101562 12.75 -12 C 12.164062 -11.894531 11.65625 -11.695312 11.21875 -11.40625 Z M 11.21875 -11.40625 "/>
</symbol>
<symbol overflow="visible" id="glyph6-19">
<path style="stroke:none;" d="M 8.34375 0.359375 C 7.320312 0.359375 6.375 0.179688 5.5 -0.171875 C 4.632812 -0.535156 3.875 -1.035156 3.21875 -1.671875 C 2.570312 -2.316406 2.066406 -3.078125 1.703125 -3.953125 C 1.347656 -4.835938 1.171875 -5.8125 1.171875 -6.875 C 1.171875 -7.894531 1.347656 -8.851562 1.703125 -9.75 C 2.066406 -10.644531 2.570312 -11.425781 3.21875 -12.09375 C 3.875 -12.769531 4.632812 -13.300781 5.5 -13.6875 C 6.375 -14.082031 7.332031 -14.28125 8.375 -14.28125 C 9.65625 -14.28125 10.773438 -14.039062 11.734375 -13.5625 C 12.691406 -13.082031 13.453125 -12.421875 14.015625 -11.578125 L 12.125 -9.515625 L 11.9375 -9.296875 L 11.703125 -9.484375 C 11.703125 -9.640625 11.679688 -9.800781 11.640625 -9.96875 C 11.597656 -10.144531 11.46875 -10.351562 11.25 -10.59375 C 10.875 -10.96875 10.453125 -11.21875 9.984375 -11.34375 C 9.523438 -11.476562 9 -11.546875 8.40625 -11.546875 C 7.90625 -11.546875 7.425781 -11.441406 6.96875 -11.234375 C 6.519531 -11.023438 6.113281 -10.722656 5.75 -10.328125 C 5.394531 -9.941406 5.117188 -9.457031 4.921875 -8.875 C 4.722656 -8.300781 4.625 -7.632812 4.625 -6.875 C 4.625 -6.1875 4.726562 -5.566406 4.9375 -5.015625 C 5.144531 -4.472656 5.421875 -4.003906 5.765625 -3.609375 C 6.117188 -3.222656 6.53125 -2.925781 7 -2.71875 C 7.46875 -2.507812 7.960938 -2.40625 8.484375 -2.40625 C 8.910156 -2.40625 9.320312 -2.460938 9.71875 -2.578125 C 10.113281 -2.703125 10.503906 -2.890625 10.890625 -3.140625 C 11.285156 -3.390625 11.65625 -3.722656 12 -4.140625 L 13.890625 -1.984375 C 13.148438 -1.160156 12.289062 -0.5625 11.3125 -0.1875 C 10.332031 0.175781 9.34375 0.359375 8.34375 0.359375 Z M 8.34375 0.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph6-20">
<path style="stroke:none;" d="M 6.125 0 L 0.875 -13.953125 L 4.40625 -13.953125 L 7.984375 -3.953125 L 7.5 -3.953125 L 9.390625 -8.515625 C 9.765625 -9.472656 10.066406 -10.410156 10.296875 -11.328125 C 10.535156 -12.253906 10.679688 -13.128906 10.734375 -13.953125 L 13.921875 -13.953125 C 13.816406 -13.066406 13.597656 -12.132812 13.265625 -11.15625 C 12.941406 -10.175781 12.570312 -9.164062 12.15625 -8.125 L 8.796875 0 Z M 6.125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-21">
<path style="stroke:none;" d="M 2.84375 0 L 0.265625 -13.953125 L 3.203125 -13.953125 L 4.796875 -4.40625 L 6.78125 -12.390625 L 8.546875 -12.390625 L 10.890625 -4.46875 C 11.066406 -5.789062 11.207031 -6.910156 11.3125 -7.828125 C 11.425781 -8.742188 11.515625 -9.519531 11.578125 -10.15625 C 11.640625 -10.800781 11.679688 -11.359375 11.703125 -11.828125 C 11.722656 -12.304688 11.734375 -12.742188 11.734375 -13.140625 L 11.734375 -13.953125 L 14.609375 -13.953125 C 14.492188 -12.472656 14.320312 -10.929688 14.09375 -9.328125 C 13.875 -7.734375 13.628906 -6.144531 13.359375 -4.5625 C 13.085938 -2.976562 12.816406 -1.457031 12.546875 0 L 9.5625 0 L 7.625 -7.5625 L 5.8125 0 Z M 2.84375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-22">
<path style="stroke:none;" d="M 5.734375 0 L 5.734375 -15.84375 L 0.6875 -15.84375 L 0.6875 -18.6875 L 14.28125 -18.6875 L 14.28125 -15.84375 L 8.96875 -15.84375 L 8.96875 0 Z M 5.734375 0 "/>
</symbol>
<symbol overflow="visible" id="glyph6-23">
<path style="stroke:none;" d="M 1.203125 -2.046875 L 8.90625 -11.15625 L 1.796875 -11.15625 L 1.796875 -13.953125 L 13.109375 -13.953125 L 13.109375 -11.8125 L 5.546875 -2.796875 L 12.421875 -2.796875 C 12.765625 -2.796875 13.003906 -2.8125 13.140625 -2.84375 C 13.273438 -2.882812 13.40625 -2.96875 13.53125 -3.09375 L 13.796875 -3.09375 L 13.796875 0 L 1.203125 0 Z M 1.203125 -2.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph6-24">
<path style="stroke:none;" d="M 7.765625 0.328125 C 6.929688 0.328125 6.125 0.25 5.34375 0.09375 C 4.5625 -0.0507812 3.835938 -0.285156 3.171875 -0.609375 C 2.515625 -0.941406 1.90625 -1.367188 1.34375 -1.890625 L 2.84375 -4.65625 L 2.96875 -4.890625 L 3.203125 -4.734375 C 3.265625 -4.597656 3.328125 -4.441406 3.390625 -4.265625 C 3.453125 -4.097656 3.601562 -3.90625 3.84375 -3.6875 C 4.34375 -3.269531 4.910156 -2.941406 5.546875 -2.703125 C 6.191406 -2.460938 6.953125 -2.34375 7.828125 -2.34375 C 8.390625 -2.34375 8.863281 -2.40625 9.25 -2.53125 C 9.644531 -2.664062 9.945312 -2.847656 10.15625 -3.078125 C 10.363281 -3.304688 10.46875 -3.570312 10.46875 -3.875 C 10.46875 -4.113281 10.40625 -4.320312 10.28125 -4.5 C 10.164062 -4.675781 9.976562 -4.832031 9.71875 -4.96875 C 9.457031 -5.113281 9.113281 -5.257812 8.6875 -5.40625 C 8.269531 -5.5625 7.773438 -5.726562 7.203125 -5.90625 C 6.179688 -6.164062 5.296875 -6.488281 4.546875 -6.875 C 3.796875 -7.269531 3.21875 -7.75 2.8125 -8.3125 C 2.414062 -8.875 2.21875 -9.523438 2.21875 -10.265625 C 2.21875 -11.046875 2.441406 -11.734375 2.890625 -12.328125 C 3.335938 -12.929688 3.972656 -13.40625 4.796875 -13.75 C 5.617188 -14.101562 6.585938 -14.28125 7.703125 -14.28125 C 8.285156 -14.28125 8.835938 -14.234375 9.359375 -14.140625 C 9.878906 -14.054688 10.375 -13.925781 10.84375 -13.75 C 11.3125 -13.582031 11.75 -13.363281 12.15625 -13.09375 C 12.570312 -12.820312 12.957031 -12.507812 13.3125 -12.15625 L 11.671875 -9.84375 L 11.453125 -9.59375 L 11.25 -9.78125 C 11.226562 -9.9375 11.179688 -10.085938 11.109375 -10.234375 C 11.046875 -10.390625 10.894531 -10.578125 10.65625 -10.796875 C 10.25 -11.097656 9.789062 -11.316406 9.28125 -11.453125 C 8.769531 -11.597656 8.265625 -11.671875 7.765625 -11.671875 C 7.085938 -11.671875 6.503906 -11.5625 6.015625 -11.34375 C 5.523438 -11.125 5.28125 -10.78125 5.28125 -10.3125 C 5.28125 -10.0625 5.390625 -9.828125 5.609375 -9.609375 C 5.828125 -9.398438 6.191406 -9.203125 6.703125 -9.015625 C 7.210938 -8.828125 7.890625 -8.625 8.734375 -8.40625 C 9.847656 -8.101562 10.757812 -7.753906 11.46875 -7.359375 C 12.1875 -6.972656 12.707031 -6.507812 13.03125 -5.96875 C 13.363281 -5.425781 13.53125 -4.796875 13.53125 -4.078125 C 13.53125 -3.296875 13.304688 -2.566406 12.859375 -1.890625 C 12.421875 -1.210938 11.773438 -0.671875 10.921875 -0.265625 C 10.078125 0.128906 9.023438 0.328125 7.765625 0.328125 Z M 7.765625 0.328125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-25">
<path style="stroke:none;" d="M 8.375 0.359375 C 7.875 0.359375 7.390625 0.285156 6.921875 0.140625 C 6.460938 0.00390625 6.035156 -0.207031 5.640625 -0.5 C 5.253906 -0.789062 4.90625 -1.132812 4.59375 -1.53125 L 4.015625 0 L 1.4375 0 L 1.4375 -20.125 L 5.125 -20.125 L 5.125 -19.859375 C 5.007812 -19.742188 4.9375 -19.613281 4.90625 -19.46875 C 4.875 -19.332031 4.859375 -19.09375 4.859375 -18.75 L 4.859375 -12.390625 C 5.078125 -12.671875 5.316406 -12.929688 5.578125 -13.171875 C 5.835938 -13.410156 6.128906 -13.613281 6.453125 -13.78125 C 6.773438 -13.957031 7.109375 -14.082031 7.453125 -14.15625 C 7.804688 -14.238281 8.160156 -14.28125 8.515625 -14.28125 C 9.378906 -14.28125 10.15625 -14.128906 10.84375 -13.828125 C 11.53125 -13.523438 12.117188 -13.078125 12.609375 -12.484375 C 13.097656 -11.898438 13.476562 -11.164062 13.75 -10.28125 C 14.019531 -9.40625 14.15625 -8.378906 14.15625 -7.203125 C 14.15625 -5.921875 14 -4.804688 13.6875 -3.859375 C 13.382812 -2.910156 12.960938 -2.125 12.421875 -1.5 C 11.878906 -0.875 11.265625 -0.40625 10.578125 -0.09375 C 9.890625 0.207031 9.15625 0.359375 8.375 0.359375 Z M 7.6875 -2.28125 C 8.101562 -2.28125 8.5 -2.363281 8.875 -2.53125 C 9.257812 -2.707031 9.59375 -2.972656 9.875 -3.328125 C 10.15625 -3.691406 10.375 -4.164062 10.53125 -4.75 C 10.6875 -5.34375 10.765625 -6.0625 10.765625 -6.90625 C 10.765625 -7.664062 10.691406 -8.34375 10.546875 -8.9375 C 10.410156 -9.539062 10.210938 -10.046875 9.953125 -10.453125 C 9.691406 -10.859375 9.375 -11.171875 9 -11.390625 C 8.632812 -11.617188 8.210938 -11.734375 7.734375 -11.734375 C 7.160156 -11.734375 6.65625 -11.546875 6.21875 -11.171875 C 5.789062 -10.804688 5.46875 -10.269531 5.25 -9.5625 C 5.03125 -8.863281 4.910156 -8.023438 4.890625 -7.046875 C 4.890625 -6.285156 4.941406 -5.609375 5.046875 -5.015625 C 5.160156 -4.429688 5.332031 -3.929688 5.5625 -3.515625 C 5.789062 -3.109375 6.078125 -2.800781 6.421875 -2.59375 C 6.773438 -2.382812 7.195312 -2.28125 7.6875 -2.28125 Z M 7.6875 -2.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-26">
<path style="stroke:none;" d="M 3.78125 5.28125 C 3.125 5.28125 2.53125 5.164062 2 4.9375 C 1.46875 4.707031 0.953125 4.390625 0.453125 3.984375 L 1.625 1.65625 L 1.734375 1.375 L 2.015625 1.5 C 2.066406 1.65625 2.140625 1.800781 2.234375 1.9375 C 2.328125 2.082031 2.503906 2.25 2.765625 2.4375 C 2.898438 2.507812 3.050781 2.566406 3.21875 2.609375 C 3.394531 2.648438 3.582031 2.671875 3.78125 2.671875 C 4.175781 2.671875 4.519531 2.5625 4.8125 2.34375 C 5.101562 2.125 5.375 1.78125 5.625 1.3125 C 5.875 0.851562 6.117188 0.265625 6.359375 -0.453125 L 9.390625 -9 C 9.691406 -9.863281 9.945312 -10.691406 10.15625 -11.484375 C 10.363281 -12.285156 10.488281 -13.109375 10.53125 -13.953125 L 13.6875 -13.953125 C 13.601562 -13.046875 13.390625 -12.097656 13.046875 -11.109375 C 12.710938 -10.117188 12.375 -9.164062 12.03125 -8.25 L 8.578125 1.234375 C 8.015625 2.710938 7.335938 3.753906 6.546875 4.359375 C 5.765625 4.972656 4.84375 5.28125 3.78125 5.28125 Z M 0.9375 -13.953125 L 4.3125 -13.953125 L 8.4375 -3.296875 L 6.65625 0.328125 Z M 0.9375 -13.953125 "/>
</symbol>
<symbol overflow="visible" id="glyph6-27">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph7-1">
<path style="stroke:none;" d="M 4.78125 0.234375 C 4.351562 0.234375 3.992188 0.0859375 3.703125 -0.203125 C 3.410156 -0.492188 3.265625 -0.847656 3.265625 -1.265625 C 3.265625 -1.671875 3.410156 -2.019531 3.703125 -2.3125 C 3.992188 -2.613281 4.351562 -2.765625 4.78125 -2.765625 C 5.195312 -2.765625 5.550781 -2.613281 5.84375 -2.3125 C 6.132812 -2.019531 6.28125 -1.671875 6.28125 -1.265625 C 6.28125 -0.847656 6.132812 -0.492188 5.84375 -0.203125 C 5.550781 0.0859375 5.195312 0.234375 4.78125 0.234375 Z M 4.78125 0.234375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-0">
<path style="stroke:none;" d="M 14.578125 0.078125 L 14.578125 -70 L 55.421875 -70 L 55.421875 0.078125 Z M 20.484375 -9.046875 L 33.390625 -35.140625 L 20.484375 -61.25 Z M 49.734375 -9.046875 L 49.734375 -61.25 L 36.53125 -35.21875 Z M 21.953125 -5.90625 L 47.984375 -5.90625 L 35.078125 -31.71875 Z M 35.078125 -38.359375 L 47.90625 -64.3125 L 22.015625 -64.3125 Z M 35.078125 -38.359375 "/>
</symbol>
<symbol overflow="visible" id="glyph8-1">
<path style="stroke:none;" d="M 12.390625 -28.578125 C 10.546875 -28.578125 8.988281 -29.222656 7.71875 -30.515625 C 6.457031 -31.804688 5.828125 -33.347656 5.828125 -35.140625 C 5.828125 -36.992188 6.472656 -38.5625 7.765625 -39.84375 C 9.054688 -41.132812 10.597656 -41.78125 12.390625 -41.78125 L 12.390625 -50.453125 C 12.390625 -51.578125 12.816406 -52.5625 13.671875 -53.40625 C 14.523438 -54.257812 15.507812 -54.6875 16.625 -54.6875 L 28.4375 -54.6875 C 28.4375 -56.53125 29.066406 -58.082031 30.328125 -59.34375 C 31.597656 -60.613281 33.15625 -61.25 35 -61.25 C 36.84375 -61.25 38.394531 -60.601562 39.65625 -59.3125 C 40.925781 -58.03125 41.5625 -56.488281 41.5625 -54.6875 L 53.375 -54.6875 C 54.488281 -54.6875 55.472656 -54.257812 56.328125 -53.40625 C 57.179688 -52.5625 57.609375 -51.578125 57.609375 -50.453125 L 57.609375 -41.78125 C 59.453125 -41.78125 61.003906 -41.132812 62.265625 -39.84375 C 63.535156 -38.5625 64.171875 -36.992188 64.171875 -35.140625 C 64.171875 -33.347656 63.523438 -31.804688 62.234375 -30.515625 C 60.941406 -29.222656 59.398438 -28.578125 57.609375 -28.578125 L 57.609375 -14.4375 C 57.609375 -13.320312 57.179688 -12.335938 56.328125 -11.484375 C 55.472656 -10.628906 54.488281 -10.203125 53.375 -10.203125 L 16.625 -10.203125 C 15.507812 -10.203125 14.523438 -10.628906 13.671875 -11.484375 C 12.816406 -12.335938 12.390625 -13.320312 12.390625 -14.4375 Z M 25.375 -34.703125 C 26.101562 -34.703125 26.707031 -34.957031 27.1875 -35.46875 C 27.675781 -35.976562 27.921875 -36.597656 27.921875 -37.328125 C 27.921875 -38.054688 27.664062 -38.664062 27.15625 -39.15625 C 26.644531 -39.644531 26.023438 -39.890625 25.296875 -39.890625 C 24.617188 -39.890625 24.023438 -39.632812 23.515625 -39.125 C 23.003906 -38.613281 22.75 -38.015625 22.75 -37.328125 C 22.75 -36.597656 23.003906 -35.976562 23.515625 -35.46875 C 24.023438 -34.957031 24.644531 -34.703125 25.375 -34.703125 Z M 44.703125 -34.703125 C 45.378906 -34.703125 45.972656 -34.957031 46.484375 -35.46875 C 46.992188 -35.976562 47.25 -36.597656 47.25 -37.328125 C 47.25 -38.054688 46.992188 -38.664062 46.484375 -39.15625 C 45.972656 -39.644531 45.351562 -39.890625 44.625 -39.890625 C 43.894531 -39.890625 43.285156 -39.632812 42.796875 -39.125 C 42.316406 -38.613281 42.078125 -38.015625 42.078125 -37.328125 C 42.078125 -36.597656 42.332031 -35.976562 42.84375 -35.46875 C 43.351562 -34.957031 43.972656 -34.703125 44.703125 -34.703125 Z M 23.625 -21.4375 L 46.375 -21.4375 L 46.375 -24.71875 L 23.625 -24.71875 Z M 16.625 -13.484375 L 53.375 -13.484375 C 53.613281 -13.484375 53.816406 -13.566406 53.984375 -13.734375 C 54.160156 -13.910156 54.25 -14.144531 54.25 -14.4375 L 54.25 -50.453125 C 54.25 -50.703125 54.160156 -50.910156 53.984375 -51.078125 C 53.816406 -51.242188 53.613281 -51.328125 53.375 -51.328125 L 16.625 -51.328125 C 16.382812 -51.328125 16.175781 -51.242188 16 -51.078125 C 15.832031 -50.910156 15.75 -50.703125 15.75 -50.453125 L 15.75 -14.4375 C 15.75 -14.144531 15.832031 -13.910156 16 -13.734375 C 16.175781 -13.566406 16.382812 -13.484375 16.625 -13.484375 Z M 35 -32.453125 Z M 35 -32.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-0">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph9-1">
<path style="stroke:none;" d="M 2.453125 0 L 15.59375 0 L 15.59375 -3.1875 L 6.453125 -3.1875 L 6.453125 -21.453125 L 2.453125 -21.453125 Z M 2.453125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph9-2">
<path style="stroke:none;" d="M 6.265625 0.296875 C 8.671875 0.296875 10.046875 -0.5625 11.0625 -1.921875 L 11.0625 0 L 14.640625 0 L 14.640625 -10.296875 C 14.640625 -14.578125 11.875 -16.015625 8.375 -16.015625 C 4.859375 -16.015625 1.953125 -14.484375 1.65625 -10.828125 L 5.15625 -10.828125 C 5.34375 -12.390625 6.265625 -13.296875 8.15625 -13.296875 C 10.296875 -13.296875 11.015625 -12.234375 11.015625 -10.140625 L 11.015625 -9.328125 L 9.0625 -9.328125 C 4.5625 -9.328125 1.015625 -8.015625 1.015625 -4.34375 C 1.015625 -1.078125 3.390625 0.296875 6.265625 0.296875 Z M 7.140625 -2.3125 C 5.34375 -2.3125 4.625 -3.1875 4.625 -4.5 C 4.625 -6.421875 6.390625 -7.046875 9.15625 -7.046875 L 11.015625 -7.046875 L 11.015625 -5.484375 C 11.015625 -3.484375 9.359375 -2.3125 7.140625 -2.3125 Z M 7.140625 -2.3125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-3">
<path style="stroke:none;" d="M 2.15625 0 L 5.796875 0 L 5.796875 -9.234375 C 5.796875 -11.734375 7.4375 -12.984375 9.484375 -12.984375 C 11.640625 -12.984375 12.59375 -11.90625 12.59375 -9.546875 L 12.59375 0 L 16.234375 0 L 16.234375 -9.875 C 16.234375 -14.1875 14.015625 -16.015625 10.859375 -16.015625 C 8.28125 -16.015625 6.546875 -14.734375 5.796875 -13.203125 L 5.796875 -15.6875 L 2.15625 -15.6875 Z M 2.15625 0 "/>
</symbol>
<symbol overflow="visible" id="glyph9-4">
<path style="stroke:none;" d="M 8.84375 5.765625 C 13.703125 5.765625 16.796875 3.453125 16.828125 -1.171875 L 16.828125 -15.6875 L 13.203125 -15.6875 L 13.203125 -13.296875 C 12.296875 -14.84375 10.734375 -16.015625 8.15625 -16.015625 C 4.109375 -16.015625 1.109375 -12.71875 1.109375 -8.3125 L 1.109375 -8.09375 C 1.109375 -3.5625 4.140625 -0.625 8.0625 -0.625 C 10.375 -0.625 12.328125 -2.046875 13.203125 -3.546875 L 13.203125 -1.234375 C 13.203125 1.59375 11.640625 3 8.8125 3 C 6.453125 3 5.25 2.09375 4.953125 0.546875 L 1.296875 0.546875 C 1.703125 3.546875 3.9375 5.765625 8.84375 5.765625 Z M 8.96875 -3.421875 C 6.625 -3.421875 4.828125 -5.21875 4.828125 -8.125 L 4.828125 -8.375 C 4.828125 -11.21875 6.390625 -13.171875 9.09375 -13.171875 C 11.703125 -13.171875 13.3125 -11.40625 13.3125 -8.4375 L 13.3125 -8.21875 C 13.3125 -5.21875 11.484375 -3.421875 8.96875 -3.421875 Z M 8.96875 -3.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-5">
<path style="stroke:none;" d="M 7.40625 0.296875 C 9.953125 0.296875 11.609375 -0.9375 12.390625 -2.453125 L 12.390625 0 L 16.015625 0 L 16.015625 -15.6875 L 12.390625 -15.6875 L 12.390625 -6.359375 C 12.390625 -3.875 10.6875 -2.609375 8.734375 -2.609375 C 6.625 -2.609375 5.640625 -3.6875 5.640625 -6.0625 L 5.640625 -15.6875 L 2.015625 -15.6875 L 2.015625 -5.640625 C 2.015625 -1.46875 4.3125 0.296875 7.40625 0.296875 Z M 7.40625 0.296875 "/>
</symbol>
<symbol overflow="visible" id="glyph9-6">
<path style="stroke:none;" d="M 9.0625 0.296875 C 13.078125 0.296875 15.75 -1.5 16.265625 -4.796875 L 12.75 -4.796875 C 12.484375 -3.265625 11.34375 -2.40625 9.15625 -2.40625 C 6.453125 -2.40625 4.953125 -4.078125 4.828125 -7.046875 L 16.3125 -7.046875 L 16.3125 -8.09375 C 16.3125 -13.703125 12.8125 -16.015625 8.90625 -16.015625 C 4.4375 -16.015625 1.109375 -12.78125 1.109375 -7.921875 L 1.109375 -7.6875 C 1.109375 -2.734375 4.4375 0.296875 9.0625 0.296875 Z M 4.890625 -9.484375 C 5.25 -11.90625 6.71875 -13.375 8.90625 -13.375 C 11.15625 -13.375 12.546875 -12.1875 12.71875 -9.484375 Z M 4.890625 -9.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph9-7">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph9-8">
<path style="stroke:none;" d="M 2.453125 0 L 6.0625 0 L 6.0625 -16.203125 L 12.5625 0 L 13.859375 0 L 20.25 -16.203125 L 20.25 0 L 24.234375 0 L 24.234375 -21.453125 L 18.953125 -21.453125 L 13.4375 -6.8125 L 7.796875 -21.453125 L 2.453125 -21.453125 Z M 2.453125 0 "/>
</symbol>
<symbol overflow="visible" id="glyph9-9">
<path style="stroke:none;" d="M 9.15625 0.296875 C 13.765625 0.296875 17.21875 -2.875 17.21875 -7.765625 L 17.21875 -8.015625 C 17.21875 -12.8125 13.765625 -16.015625 9.1875 -16.015625 C 4.5625 -16.015625 1.109375 -12.78125 1.109375 -7.921875 L 1.109375 -7.6875 C 1.109375 -2.90625 4.53125 0.296875 9.15625 0.296875 Z M 9.1875 -2.515625 C 6.421875 -2.515625 4.828125 -4.53125 4.828125 -7.734375 L 4.828125 -7.984375 C 4.828125 -11.21875 6.484375 -13.171875 9.1875 -13.171875 C 11.875 -13.171875 13.5 -11.1875 13.5 -7.953125 L 13.5 -7.734375 C 13.5 -4.53125 11.875 -2.515625 9.1875 -2.515625 Z M 9.1875 -2.515625 "/>
</symbol>
<symbol overflow="visible" id="glyph9-10">
<path style="stroke:none;" d="M 8.046875 0.296875 C 10.34375 0.296875 12.359375 -1.078125 13.203125 -2.640625 L 13.203125 0 L 16.828125 0 L 16.828125 -22.953125 L 13.203125 -22.953125 L 13.203125 -13.296875 C 12.328125 -14.84375 10.734375 -16.015625 8.1875 -16.015625 C 4.109375 -16.015625 1.140625 -12.84375 1.140625 -7.828125 L 1.140625 -7.59375 C 1.140625 -2.484375 4.109375 0.296875 8.046875 0.296875 Z M 8.9375 -2.578125 C 6.59375 -2.578125 4.859375 -4.234375 4.859375 -7.6875 L 4.859375 -7.921875 C 4.859375 -11.3125 6.421875 -13.171875 9.09375 -13.171875 C 11.734375 -13.171875 13.3125 -11.453125 13.3125 -8.015625 L 13.3125 -7.765625 C 13.3125 -4.265625 11.453125 -2.578125 8.9375 -2.578125 Z M 8.9375 -2.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph9-11">
<path style="stroke:none;" d="M 2.25 0 L 5.875 0 L 5.875 -22.953125 L 2.25 -22.953125 Z M 2.25 0 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 1057.445312 342.246094 L 1966.140625 342.246094 L 1966.140625 662.480469 L 1057.445312 662.480469 Z M 1057.445312 342.246094 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 0 8.9375 L 640.28125 8.9375 L 640.28125 285.941406 L 0 285.941406 Z M 0 8.9375 "/>
</clipPath>
<image id="image7" width="240" height="240" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADwCAAAAAAbPrZOAAAAAmJLR0QA/4ePzL8AAAxfSURBVHic7V29fuO4Ecc5zXZBylSL69KZ7q5buLsuvi7dcrt01nbXidulk+4JpO3SyVemoq5LZ/kJiH0CcZ+AKUhJ/ACImSE+aEf/xj9ZI2D+nMEQnwPGrrjiiiuuuGI2+CFsdYJzwZhoPilWlmWpgmoQhjAXCb/lCefab0tVHr4f1CGIKt4Jcyk+JAIkelAvh4Pyqo1nwom8lQL5G3X4Y+/T1t4Ii4cPUu/BdpT73/fKpTLeIVdFNRHFSsZmAYVcHaeybThvZGwudsilI7YnziI2ozHwRe6SbY3nlBoKfCNx5cp9HGdpZpn7YVsjl7H59eCXblVVVZHG5thCWvimOyvKMgjd2VD278wdyjIyXRGUblVVVdSIzZeh6VZVVS2jvZcfihh8ozXl8N58QQy/fvTUrYLhuAhMN6Z5a+QiJN+PUc1bI2BL5qvYZGusAoXrpIjN9IRChOAbN1p1ESJ2zcSdT1h5piueYzPs41ngGOCmaUXYlwEI6l5hxG8wwhL7OENAPD9gxP+EkH389zukMkHw7h/f/wuXRhBe/guvTBj8zP4Ay8IJLzOCKoEg4YzBhFe/0nQJAwRjIDaxXz82bIBEgBbepNQnFQqJ+N1haTPrXukBszHIwstZt98TElA7hhCec3xuAxS5AIRfC18YYzvhj2sXuoSBVC82EevgIXl2o0sYlPe2DTG2wYPYudIlCPhOWCQsFuZzHB+NQt2Vo99bLDzLtfdRCMvreDxoLf/pUJVA+Nt4qB51aZm71SUQ7vcjX44RnuOEDgTlnTJ/OUbYupOkLBkz7JD1hbIsSyEsQvt7UtlLW2+9dnguF7vC/9Cgqo559lBTlTZR0nS1sGqQXoSTdeGCkxnHTXuram4Tl3i+3M6g68zJ1t+SRN7bjbew/aDANzT7EPhp8Iz8bF86ruWgJuuP0CsS1mbS8egz3FM+Zjpj5dbfDR6SBQDFhfaHbinr6TKWWX+JdOqlXRfjKMohZWPPFuCAGYavPUJX1cgwOXMTvkb6ARxQg/5h6TseO8ByzS+DoHWByD4O/6kO5beyVGXJymZAwznnTAj+nidDByw/b0dqf06sCiK6Hynk+Y/X2N7DdXzeLJougxE8ech27bXY9XgbXAM0hC+yFdayqqqyFVLHlWKT2m1xBpdZfqwqwJ5K65u4QsStJYSvfeZHPK9Ju/eTRW4xL2PsAaJjBqtQFJDCIo8cIWG1Omqem2bGYykgNappCk/F+DxOAw4aRICeHfI15wEgJY9i8LuhhZcBtHUABRHiQzIDwiKdrMuMkIr+fwaEX4mBoRi04j7ht2Vgxj72A3Wf8Bsz8DBQ9wgLCS5pujKTIIByjz1Fe4ThB7r/DBX0A/DztryLC9hLuIJ0Lb0iAStadH/YtbBtTNNCZJcWcEnZ+dglrBnFGsuJyxgxBBuJw8BeZQ05Wekp2CE07ZimY2HUtlTpQG06MLWbw1aBsXDU8SE8ZlW9sNW2MC7JCDlLhwtIjHAnbLUJI0IWY8gG4Bg4VU2aojwavp3TA+xLLR0c9aUAJrfbCHNoyADQvOoFUlvI5vXwhay1tKFfNChQZcRswYxBltNa0Po0KtJHn9KCrF+3IM+/u0RplMlU5kpxKspPGGmp+V+OeWLCidLTAFltOUHTS0JF+iw4Ow1QTj3sJYHWLhoQdlD4AEblc4M9t2GJqOkLaN7fO572cFk5+A/i2GgxLC8OEF2lwQQNpgmnEbjpkcOV7rdCxMOajYFRWsvmJ6c2LPUl6vDFrdJTgEgGeZoTOhH+gKgFLuodX8GSsvcZvu9mZC9LeMBDz6khNhZGbAKeFeFyD5U8zbI2hBGznrMizOAnLGX9B014P49Oxwnwxy/qPzedTwC4PLTqAEpBJW/rPzedTwCESXsNB/hkeOPEeJfGaBMAe6hgN2iBgzS4/FAAe1wTpmvCcANbT2+GhgJLtgnD38Lw8gMBfolAbdWasACXDy4+GBRUsG1hAS5+Xm9hxhj7BhUUjLE34NJwE9Da8PwsDNao3oZTE37vvvhgAGskGGPIfFqzBMmlhRdVZoY24f8jYIPWKwYtSs8PAipIc+nX/GgYY1fCrxBIE2AJC6S8f3gmPD+XhvcSGWNvgTDJwvAessAVHwACKliTxBJGOlAAgC3cJgzHX5Dy3oFYM2GM4S0Mn8AOBOzcBboNzy1q0SwMnheaX9SCu5xijOEtjH6iviHAkt8ZY2+AsARLtqO0gleA2BsRAhIuqhhjFAvPK2ohHE4xxk6EMWug8/JphMPRelpxz3YMIeGitVUbwgr+u1k1YsRZosaoN51PEMyqESPcrWm2DWHMsm+KkPWNv8NFG4oNYUzUQlTiG5izdKr+c9P5BKtlPnEac0Ct69J7TDXzidMSIdtzYkyOM11OnyjAnE/r7bVEmRiW0ycAMDk4TmH5pvcZBOQxVF8Y5p0ZQT8s405apu60noACo7Ls/Rh3QHUWrRh3wnSgMe4ytCwCwT4KjMLnUy3nWUvc9T2Pwp3iRMASu50wpIc55lVFT4mHTMGhO/2LPGVOy1ntEAVOXU3QyXElHON2MJEXIl0c8rLygLyDi+9iRupHpIPp9vEjcx5EbcYJNtuv1h3RKYN93xtqBCzVaAut04Otmzz++hOy3p+cX0UHA/7+iSft0RS0T1dVlAx6aPsaM0MR0mBH8GrCfc+m87CYLAInBL+e6IFgFlMSHYJPB8/YsqToKE2lFZTSQjZkkVMUNJ/wxiW4OSPYpT3E68tTY4HY/vQZQYwsc6J2wlwmtciqSH3TFRuqbmMHUElhKwRlOt1+yOrd82CYu9m/HBjj4lZqv22gviByEKAgl6MVj0P9OPatNmxd3jzCci3JxsMcPV/iZp/6SMdL18XBrC1hoVxspEu2YpFPYmvPG6QzcXccyG0dsuMOc5eFGVyuptm2qip7qkLtm6n31kntr8Nit5iU91KkLshW1fCdNLicZqtbVsi62VmA47NDeXhRB9xZNs4TcZu42++3tSZW088GrroaoEZoiLkgyshgHALwTLQ/LLrxF8EYNbogdm6NgCQbNU34dm+3As8qaS7TGAMmjTIAoMpNT7lrKsj9P1WFnr/GZW+0AZZN1ng9V5cxbLoAfV/zhN6tRWEzjA2p8xKH2QJYZQu5K7rwJT8zlU4XBGILQoZidyaGp3YzL6x1Ju0AAUbgCbszceqiTtmSsjs1aXHClYkx4cO8FtlpxlbVUgphynSxDkJbuP4O8fIHaVCGv/vP5YP6/vO46p9JORLQSyBafEFlOhvxVtmWG+8ZEZfbkGvzemCTUZq9tctilLE+cbcV5LnENtAjVHO/IgUzps5/FNP54p+12al7817SrB51HkA/fsGAkh/Z7NRZV1CY9COvmE8fMwlKtcbhwWBqU0f5OGFyC3mpwRAZrd7cVN5wBCTSjnCxnjTBMzVMj7mW/v7hhsWzQWvtzb48Sfh7xtg3dVATUxQl067rUveK+EtjM5aTFLICuemsjwmT46bo4XkDzzTC2ZSqTQMi6YaZAZMIo6ccOjC9jf2aeArhqTcUmKYnvW61nEB4+g4M0/SknM7LiAmEHSzyGHoByOlXFOiEUxfVG0K1x+07ZMKZm/oNjI+pm+KHoBLOXClgeh2vhKsauiASztxpYBoce9rYQSO8damCcYRaoE5LAUEivHWrw8iYfGfgLPT/BoBCeAsse2y01EE2tvlMHV4OpSpLxhjjnAsu3ieCf4Iq0YfAXwfzNSXWZQZ+GoKsA97CmTueF6AZp9Sa0IQzdyzbgC4JByfsrWMvcYsgKbUeHGFcBwiVMW1/pzDiYaDutxhxXIo4dT+3izzYAakSMieeupvRfVqMMfYbecIOjAW4IafUKuBtOMiRT/AerZRcA7CCgjDcJyTjVXe/wQQFvmwUnu4IEYWSfbhcfFKEn8EhQFp8/oUy309Lt7y9h19H5wn7O9rqMzG/tEo9G9mC8rP/6NyHcZX0jIxatHWzzISTUvQM4vGMHMO8DcYHUBm12HELr2OexR/164xa6hjhXLrTnoTEfDYho5ZpJlzIqfpOvgXgcBeuKZefftyHqmsUhrNMGbU8vYWP2RxSHjXobvHwQbhYzIguY4zJYfhKqWUNt+JFD1U6iG3PswW5qK6/HHfSmZKO0fHsjF5O26ef59R0hxDrk5mJO0trnCZIj2vpSLETwCsPcMiHW1Z+e9pPKkQsbnmpviIP8l1xxRVXXHHFFbPG/wB/1UIGJo4aUQAAAABJRU5ErkJggg=="/>
<mask id="mask0">
<use xlink:href="#image7" transform="matrix(1,0,0,1,0.000000000000028422,0)"/>
</mask>
<image id="image6" width="240" height="240" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAADwCAIAAACxN37FAAAABmJLR0QA/wD/AP+gvaeTAAASpklEQVR4nO2dX3PbxpLFT4PUWrZTqVo7a8dV+4Aqg1nQUknz/T8F7q3EZiJ6S4/ORuX44Tp2rgD0PkCmZQIg/nCA6QH6V3mSFWpEHjXO9PR0A4qiKIqiKIqiKIqiKIqiCINcL2A6xLHJFmAC8d1XmKu/kwgA8hy0ADEWGTabZKRVTh0VdDfC0Jw8BgAGiJkZBDABNdrtwNcXYVDAjCDA1S8q9G6ooBsIQ7N4CAqA3I5ue0LEjBPWWN6ACrqC1ZkpAjDYnYJruPujCoig8bsCFfQdcWzSBZAzXMbhjlBhT0hd+I65Czo6N8jyexs5XyGAwVgE259nreyZCrrQMYi8CcatIQAEDmieyp6XoKNzgzwHJqjjMoWyFznNyo3MQtBhaJaPgXwGKq6BArr9iOvr6St74oJenRnOp2ktOkMgTD9gT1bQ0blBpiquYTFZhz1BQauU20AAAppeJntSgl6dGeR1BRRKBdOT9UQEHZ0bylTKPZmSrL0XtBoMWxDA/ntrjwUdxyb1/oBPHOR56tpLQYehWT7KwV4u3g+I078CH/PW/mni5doEtaXzijU8NdY+CVo9xvh450C8EfRqfcF64OcM2r7xQ9MeCFoDsxCW7EGoXrheQAM/xRdZ4HoRCgCACU+fv3j/xzvXCzmE3Agdhmb5MJe8wpkScPpRbgJEqFz0EFsyBCyk2g+Jgtb9nydI3CmK89DR+kLmn5lS5snz5+//+N31Kr5BkHQ0m+EporIfUjIIcWwyVbOfZMRxbFyv4g4RETo6N8jl9XRRusCgtwIstXtBr9YXLGAZig3cbxMdW44oVjVPCY5eXbhdgUsxRfHFXWdZZUoQb1//09kPd/WDNT03Zdxp2o3lWL26VDVPGabVq0snP9nBwcrq1aUeas+Bp89+HP/YZWxBq9OYFeNrelTLEcWq5nnBjJHzHuPJS3Ma82XEPeJIClM1z52xND2G5fhJ1aww/TRKvcfgm8JiAI+ijHODa9gIHcdmzm3GlX3ywevyBozQYWjoRDPOyjcw4fvvXnz4MFScHjBCLx+pmpV9GFg+HFAXQwk6ii+0vlmpY7jk9CCCjs6NpjWUQzBF54OYafseOo4Nq9dQGmE8++HFzY1lM20/Qqc0vJwJBCr+06N0m9CXt7Z4bwdmiDvRlhc9yong/j2fMDTLU4AAAunToRMEMIHBhBPeHxgexWb4mdGWb23ZFN84fQiI6ergpfnVmclzaA/pQxAIxDnSzw3TOKP18GXNVudgLG29UBiO1Ifg9nPDN+x6dK/ODHIw6X3y+xAF6DJVljDw20cZh6Gx1SzPmqCXD/NRrrtS+9+8UHYYmpNTYARnLxkCMxFj27EjTPoAy78HWtMdDCwf57ZezY4ERxtF1eg3DrCKzRxlTUBOjdbiAGO4DlgzHnYi9GgzAo/JMhZ/CTOSdSHlT0fPrGcafmtozXhYEHQUX4ykD8Lm6B3xTGRNRIt8P2shGQaWjyy8zrEHK3Fs8rEywQz601Ie/v3Nu/c3vz/54YXrTjtDQGDavklsnVl8/98/BtYsbgPHH7UcG6HTwOMcwnaTxLHJCL1/BwIxfUkEMCgAZ6AFFhkAfK5xrmFoTk+RLcAZANACzGAGFS/UOy1DoLz/HqOO6ySJxupJcHza96joujozPGK5Mw02Nq/V7EMCCskxGBXHEBYJQ3PyGHl+75CqaXUMyo63yzW8XJvRGtAf2fTxOEGvL8eMzts3/xj09csHY3dH6wTcS2874e40NKgI4QQwU9d8XCeitRk6G72DgNtPHZKze/S3HOPtBQuGd+qFA0kDMCPodvowOHsrWZ0ZzgGAAQt5jCZ4xPYAR+4Oe66z6E8+rnl236p1tow/XCHtG6R7bvKzYOycl9ZXO+Tz6dg/sXeQ7iPoODbjp3C9TaVMgetk9Gcj97xO20fQWaDqmh3jPyD7yayzoJ2EZ2WGMKNHkO4saA3Pymjcdn8udBO0hmdlTAgcht2CdDdBa3hWRqZruqODoOPYOMw16JPBLc7efu4WpDsIOlu4zJ0Fmod2R2hcDortFKS7WA6nbRc9Lurzn5OPLn96pyPptoJ+uXbcFVcHgTskt3b1tA9c3PFrR1tBj1Y9WAcDXTe8ii3c1x20vrHaStBD9/RtyfI71yuYLQK25C3DWStBp87/QAvGugik7CNAAC23hq0E7dxv3CEgTsyQ1cplunZHy61hs6CjWNCQFLXR48NOd4Q7Wm4NmwVNkk4HTx67XsEMEZNgKu4UH6aF5ZDy6wAQtpgZEBoRfqOgjfVtELQov0HAQveF43KdJMQCtoRfaHQdDYKW4zcIWDB51ApoMlxtEojRdKPraLIcUvSMPFM1O2PQHgmdaHQdhwS9WonxG0Rvf5Pyns6T9IH748KCw67jkKD5xPZaekHA9rWq2THXScJCjMfBfdRByyHjIGMh5H2cPdtNMkpP+yYOyrJW0G5LYL9Cap0FkT2QoOhD52u1gl4MPIigDQSkf7lehHKP6yTJBUh68bD2n2S3R+b+TfuUgTimNegI1AqaXB940pdu+4o4XO9qDoizWtAiDjxdv2tKHe7T0lxro6sFvWyaBTg0Gp6l4zrc1N32qLEczq216/dLOcx2kzj+hGrOwGuU6zoDfewsI2V4pJyzfEuNoF2bfs09yycdvWn0feqKOioE7XxH6Dq/orTCQdPoe9R1AagQtPMdYeN4ekUMLh/llccrVZbDtd/QwxRfWLp9kld9sULQ+sBXWrJxmuuorGetELTjpgWa4PAMZ5KubHcoznJsf1a/4RXujiwqkwdVy3EZoCWmNpVD/NvZT65MdOwLerVyWQat9t07bp12Sjkt5cL3Bc1OLazGZ++4TlzuC8tThfYFTU4FrRHaR1zOdShZ5lKEdptZ1BSHh5DDREdJrrIEvUxd/nSlHw67WTUL2m3d6Gc99PYQhw07yqOkShHaqY/VQ28vkTTsz3klv+I95FBEpcOVUpZjrJUoyvGUDws1QiuTouShNUQr/lB276UIrWcbSkdcX0D9BlmWQ2cCKUciS9DlWhNF6YQsQSs+opajllTGSDylE6I0JGoxrQbRKdJwe7q8hyxBl6sBFQ+QlOotKcjp4kS5McVHSkff8jotKNJxp5myYGQ94zVCe4fbS6hlZB19O24JonTH7SXU8lQuWUffdR34FLkIs4nl8lHHCzxxei1e6YrbWTzlyzL7gnZ4P0zxEbfbnryxHtr5QOdc/6SU1jRHaOeCdj5OTmlPFDve8LSwHM4DZP3ELkUcrsNfOSm3L+gTAfGxbmKXIg/X01kbPfRnARXJWqLkDa4j9NUv+30v9gXttvdegdpoL4hiAeOGS1SNpHCuaLXRPuBeJ1UPiKqRFAJWuqwacKSIInAdnyt/vNihQTJWodQQxcb5J+TZFKzVmboOuVAgQCZVdVEVgs4eDL6SNmgpqWgEfDrpvyq+WCHyD+/ePXn24+DLacH337348OGd61Uo+6zOjPNwQ8D/bv9R/npNgb/r5RYsH7legVJJuSZodMqV0AV1gnaf6ABAzuOAUmJ15n47CNSe6ci6grUH69ZQIALCM1Cr3OovpwIOwAs4Zz1kkYOU8FyzI0SdoK+TxPkx/Q510oIQEp6pdnpJreVgGTYaAJhj13W3CoAovpAh50PiFO2hd6RaruSaODbub3+0oFbQQo5XdkRrDdIuySTFlOxT7T/VCvo6kTZhjTXj4YpoLcVsAADowPi/g5ZDjo0u0IyHC1brC/eV/K3xw0MXMLB8KClSzIDVmWFh1vnwWMRDjZze30gp6rjPk+fP3//xu+tVzII4NqJ6PwMg4Op1RQnHjoYILSh5tyOn6NWF60VMnzg2mcDag6bHRYOgJW1t78Gq6WERqmaAmzxyQ+9Ima4DAEDqPQZidWZYZDk6AduDfgNtNoUSXUdBTtH6Ug8R7fJybZglqhlo1derWdBCXccXMtKDcWtE8QXJmgH0DY1+Ay3zi6v1pdTf8QvE29f/dL0Ij4ljI7y+gICrNw1+Ay3z0HJdxw5W+9Gf1foilXDp9TDtRNhK0HLKow+TEmv2oxPRuYnWl+zDLJCWoy/aht5ofdl7KSNDAAIqdz1T7hPHJgvE7v7K0PZNqw+09SxiJunbwy8wgJxX60uVdSWFlFOWu/mroPVoog7mOHp1aeMtIL43MZZz8N0iBnl3i2i9yLDZqLIRnRtkHqn4jpbbwYIu0+Lzo4I0AQumOmHFsclg/553Ea1TwurVZc70tt1ja2KEoVk+ygHyUc1At6rPDt8aGrP89xHPKaLt62Y9rWIzXPsCAkDggLY/T1/ZcWzShZhbgH0h4PbToQLo8vd3IIrNMUF62+7BERqz+HvgjTcBDAoIVU2z/SUMzfI7IMs9qmA+DBFdtYiDX7+/06uHxiz/PkJnXY4/VrHhYIyNCxXOJCAQ0n/VXicWSxybbAHOpyPi+yzrbWolnd+C1fq4GtkumnZa88UUBCxM4mFoTk9xS6AAVJRckJS+bUPQNTyjh6AtnJEGnH4MWqpETh1j2sXJWefl2hB5lWizQdfwjA75vS/c3Lx7+l8vuv5f38C0OMF/vnjx5/81dxa9uXn37IcXbo/eCVgybbcu4/SfN++ePH0xRU9RCxH91j0r1edO4eLoOMEApbx61ar6YrNJCoPrBjqUbRyT7UZQO6sRWPQamdlH0JtNYuVCOHPb4s+rXxJkjj5MGWouSP9D2IXVwSDq+bb3vPWdntrZUnPrgubtr0ldS+AhaVtCMA7XSeJB5ePRUN/wjN6Cvk4S5Hbe2ULTbRpuZA/GVvRS3iZsK+ZxMRzcNzzjmL4c6ak1ebVsuDFyfOr91BucSQdpAtqcKNfRX9DXSZJbjZjRWXMp85gbo95PvaGZeJA+7s/1qM5Jlmt9corOm43HWBsjqeG5YLJBmq6Oe9uPbQW2tPrOUtZspscxHsJrv6eawjt+03KsoG2l8AoYWD5uftJvN9a2pHV0PnAanQmmO2xsWiw0a7S4OwTaGo/trzb/kErI9htT5Mi94A4LgrbvAdrVoW+tPhzuI9tu3CGtI/2xBHY+SjvtdLcby6ceLXubD6dp+VwnyWR+c4a125/W+kPbPfVoP82t0LTdjzbwpmv2FCRNB0dMdMXaR2fdeLSf5rbdJAsme+VL3twVn8bDacE263Jt7ubf2y5xbD+8/ubm3fu7QtO+P55ARGDy6Nji6bMf/fD7B+hVI3ro9Sy+VoHVljR9aoOKC+RMaLO7I1AOECP9LOhmSktero0HLY8OYb/2q0sbg5avyJRauwvY51V2GbcwNMuiKvBbO8Jf+rLefvRPxPcJUrD9D3AkyEZhfeXL2ufIy+HfsJhFy4F+yG8ZegDO6O1v9j/ZQfbzNrNpnvZGUQ5Dg6gZw411s1hs0ObgUPGJdi2H+jFgxtVaWZwG6QlBQPrXgK8/oKCvkyI9bAEd9D0NyHbWucywZ2L2LmyzGo8pEAxe9TX4Ie/VLwlZKfXMdDiQ3xCPcQQ7RtXClaWkhw688hg69ipKS0Yqw7GSyGMgJW5ZiKcIYsi0xh7j1ZXZSk5zztHZhYZqbxhRzRhT0LBYNp1TpqHaBwijqhlOCmpX6wtbtwFmPkJF+NE3ga5G7zvlpqLWoqZ3kA1lF07Glz8PyYJ2omY4vPJgs4DpHnf9v4mYQQssU3wu1YUWbcOzBfIcQQBmEL42Dyd/hsGJFbQrNcPtHZ6BNH0kKuhjGXcXuIfL23NzvuI6WZyqGW4FjVFaxigj4ljNcC5o7FrGqKq9hkAsope2e0ED2G6SZT6X3vTTg4pxVTJSQyIEDWCzSRYap/1kMUrVUUsE3bEssr8yUx9KJQzKPmEr6aKxlAi9426bqKHaA+jtm0TatXlxggaw/VUttWgIoEDEFrCMREED2GyS2wfkYuwVRIytlQzR7SdBpnkPQR56j+skAbCKDWSMRhZIOvLPI4DdZ5oPIzRC77iy3IhR6Q0tc6E24z5yI/SOIvuhodoZRWAWL+UC6RF6h4ZqR/gRmHd4EKF3aKgeFa8C8w6fBF1wpecvw8Og7C8vW7N6Yzn22G6SpTqQQSCwxBOTlvgXoXfcOZCV4RNb7ahnDQHs1QCDSjwWdMHVlRrroyFQLqVc7ki8F3TBle4X+0FATuknL+1yJRMRdMFO1i0HrMyZ4kJw6ufO7wCTEnTBLg1ChB7mmppnjUshPcXy7x7/H4ExDYNRZuJZgjg2GaFTxdGSfRr03WHmGAFMYPi+7TvMxAW9o60PcX1puSvt8vEEP+fW9WAugi6IY3NLCGoCNoPe+nYwBiD6H4Og6hciMBNNPSTvMS9B74hi8/UGI4EZXn/wxR8q4ctej8D5XEKyoiiKoiiKoiiKoiiKoiiKoozI/wMVJhmGG/pLdQAAAABJRU5ErkJggg=="/>
<clipPath id="clip3">
<path d="M 638.292969 145 L 684 145 L 684 149 L 638.292969 149 Z M 638.292969 145 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 692.683594 3.910156 L 1288.105469 3.910156 L 1288.105469 290.96875 L 692.683594 290.96875 Z M 692.683594 3.910156 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 1871.046875 69.320312 L 2138 69.320312 L 2138 225.558594 L 1871.046875 225.558594 Z M 1871.046875 69.320312 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 1286.089844 140.414062 L 1342.511719 140.414062 L 1342.511719 155.613281 L 1286.089844 155.613281 Z M 1286.089844 140.414062 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 1975 223.511719 L 2007 223.511719 L 2007 504 L 1975 504 Z M 1975 223.511719 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 1815.128906 140.183594 L 1873.046875 140.183594 L 1873.046875 155.382812 L 1815.128906 155.382812 Z M 1815.128906 140.183594 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 1446 279 L 1713 279 L 1713 310 L 1446 310 Z M 1446 279 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 1461.03125 309.058594 C 1470.273438 309.058594 1476.3125 303.058594 1476.3125 294.257812 L 1476.3125 293.9375 C 1476.3125 285.058594 1469.871094 279.578125 1461.152344 279.578125 C 1452.59375 279.578125 1446.03125 285.417969 1446.03125 294.136719 L 1446.03125 294.457031 C 1446.03125 303.058594 1451.792969 309.058594 1461.03125 309.058594 Z M 1461.191406 302.617188 C 1457.230469 302.617188 1454.59375 299.617188 1454.59375 294.417969 L 1454.59375 294.097656 C 1454.59375 288.898438 1457.113281 285.976562 1461.152344 285.976562 C 1465.191406 285.976562 1467.753906 288.976562 1467.753906 294.058594 L 1467.753906 294.378906 C 1467.753906 299.496094 1465.230469 302.617188 1461.191406 302.617188 Z M 1490.390625 309.058594 C 1497.753906 309.058594 1501.910156 304.777344 1501.910156 299.539062 C 1501.910156 293.335938 1498.191406 291.457031 1490.953125 290.65625 C 1487.390625 290.175781 1486.511719 289.457031 1486.511719 287.859375 C 1486.511719 286.417969 1487.632812 285.417969 1489.832031 285.417969 C 1492.070312 285.417969 1493.230469 286.457031 1493.511719 288.496094 L 1501.113281 288.496094 C 1500.59375 282.457031 1496.710938 279.578125 1489.832031 279.578125 C 1482.992188 279.578125 1478.753906 283.335938 1478.753906 288.496094 C 1478.753906 294.257812 1481.472656 296.65625 1489.550781 297.617188 C 1492.992188 298.136719 1494.070312 298.617188 1494.070312 300.378906 C 1494.070312 302.058594 1492.753906 303.21875 1490.390625 303.21875 C 1486.992188 303.21875 1486.070312 301.539062 1485.871094 299.496094 L 1478.070312 299.496094 C 1478.3125 305.699219 1482.390625 309.058594 1490.390625 309.058594 Z M 1516.070312 309.058594 C 1523.433594 309.058594 1527.59375 304.777344 1527.59375 299.539062 C 1527.59375 293.335938 1523.871094 291.457031 1516.632812 290.65625 C 1513.070312 290.175781 1512.191406 289.457031 1512.191406 287.859375 C 1512.191406 286.417969 1513.3125 285.417969 1515.511719 285.417969 C 1517.753906 285.417969 1518.910156 286.457031 1519.191406 288.496094 L 1526.792969 288.496094 C 1526.273438 282.457031 1522.390625 279.578125 1515.511719 279.578125 C 1508.671875 279.578125 1504.433594 283.335938 1504.433594 288.496094 C 1504.433594 294.257812 1507.152344 296.65625 1515.230469 297.617188 C 1518.671875 298.136719 1519.753906 298.617188 1519.753906 300.378906 C 1519.753906 302.058594 1518.433594 303.21875 1516.070312 303.21875 C 1512.671875 303.21875 1511.753906 301.539062 1511.550781 299.496094 L 1503.753906 299.496094 C 1503.992188 305.699219 1508.070312 309.058594 1516.070312 309.058594 Z M 1530.753906 299.859375 L 1541.953125 299.859375 L 1541.953125 294.457031 L 1530.753906 294.457031 Z M 1546.910156 308.578125 L 1555.191406 308.578125 L 1555.191406 279.976562 L 1546.910156 279.976562 Z M 1560.28125 308.578125 L 1566.039062 308.578125 L 1566.039062 294.210938 L 1574.390625 308.578125 L 1580.726562 308.578125 L 1580.726562 285.699219 L 1575 285.699219 L 1575 298.59375 L 1567.671875 285.699219 L 1560.28125 285.699219 Z M 1593.527344 308.960938 C 1599.414062 308.960938 1602.742188 305.539062 1602.742188 301.34375 C 1602.742188 296.386719 1599.769531 294.882812 1593.976562 294.242188 C 1591.128906 293.859375 1590.425781 293.28125 1590.425781 292 C 1590.425781 290.847656 1591.320312 290.050781 1593.078125 290.050781 C 1594.871094 290.050781 1595.800781 290.882812 1596.023438 292.511719 L 1602.105469 292.511719 C 1601.6875 287.679688 1598.585938 285.378906 1593.078125 285.378906 C 1587.609375 285.378906 1584.214844 288.386719 1584.214844 292.511719 C 1584.214844 297.121094 1586.390625 299.042969 1592.855469 299.808594 C 1595.609375 300.226562 1596.472656 300.609375 1596.472656 302.019531 C 1596.472656 303.363281 1595.414062 304.289062 1593.527344 304.289062 C 1590.808594 304.289062 1590.070312 302.945312 1589.910156 301.3125 L 1583.671875 301.3125 C 1583.863281 306.273438 1587.128906 308.960938 1593.527344 308.960938 Z M 1609.65625 308.578125 L 1616.246094 308.578125 L 1616.246094 290.753906 L 1622.167969 290.753906 L 1622.167969 285.699219 L 1603.734375 285.699219 L 1603.734375 290.753906 L 1609.65625 290.753906 Z M 1625.046875 308.578125 L 1631.574219 308.578125 L 1631.574219 300.386719 L 1633.113281 300.386719 L 1637.753906 308.578125 L 1644.664062 308.578125 L 1639.191406 299.105469 C 1641.59375 298.175781 1643.320312 296.355469 1643.320312 293.089844 L 1643.320312 292.960938 C 1643.320312 288.128906 1639.992188 285.699219 1634.007812 285.699219 L 1625.046875 285.699219 Z M 1631.574219 296.128906 L 1631.574219 290.625 L 1633.71875 290.625 C 1635.832031 290.625 1636.984375 291.363281 1636.984375 293.21875 L 1636.984375 293.34375 C 1636.984375 295.203125 1635.894531 296.128906 1633.6875 296.128906 Z M 1656.855469 308.960938 C 1663.160156 308.960938 1667.0625 305.859375 1667.0625 299.203125 L 1667.0625 285.699219 L 1660.441406 285.699219 L 1660.441406 298.914062 C 1660.441406 302.335938 1659.574219 303.808594 1656.855469 303.808594 C 1654.070312 303.808594 1653.273438 302.242188 1653.273438 299.007812 L 1653.273438 285.699219 L 1646.710938 285.699219 L 1646.710938 299.296875 C 1646.710938 305.699219 1650.390625 308.960938 1656.855469 308.960938 Z M 1682.070312 308.960938 C 1687.992188 308.960938 1692.28125 305.890625 1692.726562 299.96875 L 1686.199219 299.96875 C 1685.878906 302.496094 1684.246094 303.714844 1681.945312 303.714844 C 1678.808594 303.714844 1677.046875 301.378906 1677.046875 297.25 L 1677.046875 296.992188 C 1677.046875 292.832031 1678.902344 290.53125 1681.847656 290.53125 C 1684.152344 290.53125 1685.433594 291.808594 1685.6875 294.144531 L 1692.441406 294.144531 C 1691.894531 288.097656 1687.769531 285.34375 1681.816406 285.34375 C 1675.128906 285.34375 1670.136719 289.984375 1670.136719 297.027344 L 1670.136719 297.28125 C 1670.136719 304.289062 1674.070312 308.960938 1682.070312 308.960938 Z M 1699.671875 308.578125 L 1706.265625 308.578125 L 1706.265625 290.753906 L 1712.183594 290.753906 L 1712.183594 285.699219 L 1693.753906 285.699219 L 1693.753906 290.753906 L 1699.671875 290.753906 Z M 1699.671875 308.578125 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 1461.03125 309.058594 C 1470.273438 309.058594 1476.3125 303.058594 1476.3125 294.257812 L 1476.3125 293.9375 C 1476.3125 285.058594 1469.871094 279.578125 1461.152344 279.578125 C 1452.59375 279.578125 1446.03125 285.417969 1446.03125 294.136719 L 1446.03125 294.457031 C 1446.03125 303.058594 1451.792969 309.058594 1461.03125 309.058594 Z M 1461.191406 302.617188 C 1457.230469 302.617188 1454.59375 299.617188 1454.59375 294.417969 L 1454.59375 294.097656 C 1454.59375 288.898438 1457.113281 285.976562 1461.152344 285.976562 C 1465.191406 285.976562 1467.753906 288.976562 1467.753906 294.058594 L 1467.753906 294.378906 C 1467.753906 299.496094 1465.230469 302.617188 1461.191406 302.617188 Z M 1490.390625 309.058594 C 1497.753906 309.058594 1501.910156 304.777344 1501.910156 299.539062 C 1501.910156 293.335938 1498.191406 291.457031 1490.953125 290.65625 C 1487.390625 290.175781 1486.511719 289.457031 1486.511719 287.859375 C 1486.511719 286.417969 1487.632812 285.417969 1489.832031 285.417969 C 1492.070312 285.417969 1493.230469 286.457031 1493.511719 288.496094 L 1501.113281 288.496094 C 1500.59375 282.457031 1496.710938 279.578125 1489.832031 279.578125 C 1482.992188 279.578125 1478.753906 283.335938 1478.753906 288.496094 C 1478.753906 294.257812 1481.472656 296.65625 1489.550781 297.617188 C 1492.992188 298.136719 1494.070312 298.617188 1494.070312 300.378906 C 1494.070312 302.058594 1492.753906 303.21875 1490.390625 303.21875 C 1486.992188 303.21875 1486.070312 301.539062 1485.871094 299.496094 L 1478.070312 299.496094 C 1478.3125 305.699219 1482.390625 309.058594 1490.390625 309.058594 Z M 1516.070312 309.058594 C 1523.433594 309.058594 1527.59375 304.777344 1527.59375 299.539062 C 1527.59375 293.335938 1523.871094 291.457031 1516.632812 290.65625 C 1513.070312 290.175781 1512.191406 289.457031 1512.191406 287.859375 C 1512.191406 286.417969 1513.3125 285.417969 1515.511719 285.417969 C 1517.753906 285.417969 1518.910156 286.457031 1519.191406 288.496094 L 1526.792969 288.496094 C 1526.273438 282.457031 1522.390625 279.578125 1515.511719 279.578125 C 1508.671875 279.578125 1504.433594 283.335938 1504.433594 288.496094 C 1504.433594 294.257812 1507.152344 296.65625 1515.230469 297.617188 C 1518.671875 298.136719 1519.753906 298.617188 1519.753906 300.378906 C 1519.753906 302.058594 1518.433594 303.21875 1516.070312 303.21875 C 1512.671875 303.21875 1511.753906 301.539062 1511.550781 299.496094 L 1503.753906 299.496094 C 1503.992188 305.699219 1508.070312 309.058594 1516.070312 309.058594 Z M 1530.753906 299.859375 L 1541.953125 299.859375 L 1541.953125 294.457031 L 1530.753906 294.457031 Z M 1546.910156 308.578125 L 1555.191406 308.578125 L 1555.191406 279.976562 L 1546.910156 279.976562 Z M 1560.28125 308.578125 L 1566.039062 308.578125 L 1566.039062 294.210938 L 1574.390625 308.578125 L 1580.726562 308.578125 L 1580.726562 285.699219 L 1575 285.699219 L 1575 298.59375 L 1567.671875 285.699219 L 1560.28125 285.699219 Z M 1593.527344 308.960938 C 1599.414062 308.960938 1602.742188 305.539062 1602.742188 301.34375 C 1602.742188 296.386719 1599.769531 294.882812 1593.976562 294.242188 C 1591.128906 293.859375 1590.425781 293.28125 1590.425781 292 C 1590.425781 290.847656 1591.320312 290.050781 1593.078125 290.050781 C 1594.871094 290.050781 1595.800781 290.882812 1596.023438 292.511719 L 1602.105469 292.511719 C 1601.6875 287.679688 1598.585938 285.378906 1593.078125 285.378906 C 1587.609375 285.378906 1584.214844 288.386719 1584.214844 292.511719 C 1584.214844 297.121094 1586.390625 299.042969 1592.855469 299.808594 C 1595.609375 300.226562 1596.472656 300.609375 1596.472656 302.019531 C 1596.472656 303.363281 1595.414062 304.289062 1593.527344 304.289062 C 1590.808594 304.289062 1590.070312 302.945312 1589.910156 301.3125 L 1583.671875 301.3125 C 1583.863281 306.273438 1587.128906 308.960938 1593.527344 308.960938 Z M 1609.65625 308.578125 L 1616.246094 308.578125 L 1616.246094 290.753906 L 1622.167969 290.753906 L 1622.167969 285.699219 L 1603.734375 285.699219 L 1603.734375 290.753906 L 1609.65625 290.753906 Z M 1625.046875 308.578125 L 1631.574219 308.578125 L 1631.574219 300.386719 L 1633.113281 300.386719 L 1637.753906 308.578125 L 1644.664062 308.578125 L 1639.191406 299.105469 C 1641.59375 298.175781 1643.320312 296.355469 1643.320312 293.089844 L 1643.320312 292.960938 C 1643.320312 288.128906 1639.992188 285.699219 1634.007812 285.699219 L 1625.046875 285.699219 Z M 1631.574219 296.128906 L 1631.574219 290.625 L 1633.71875 290.625 C 1635.832031 290.625 1636.984375 291.363281 1636.984375 293.21875 L 1636.984375 293.34375 C 1636.984375 295.203125 1635.894531 296.128906 1633.6875 296.128906 Z M 1656.855469 308.960938 C 1663.160156 308.960938 1667.0625 305.859375 1667.0625 299.203125 L 1667.0625 285.699219 L 1660.441406 285.699219 L 1660.441406 298.914062 C 1660.441406 302.335938 1659.574219 303.808594 1656.855469 303.808594 C 1654.070312 303.808594 1653.273438 302.242188 1653.273438 299.007812 L 1653.273438 285.699219 L 1646.710938 285.699219 L 1646.710938 299.296875 C 1646.710938 305.699219 1650.390625 308.960938 1656.855469 308.960938 Z M 1682.070312 308.960938 C 1687.992188 308.960938 1692.28125 305.890625 1692.726562 299.96875 L 1686.199219 299.96875 C 1685.878906 302.496094 1684.246094 303.714844 1681.945312 303.714844 C 1678.808594 303.714844 1677.046875 301.378906 1677.046875 297.25 L 1677.046875 296.992188 C 1677.046875 292.832031 1678.902344 290.53125 1681.847656 290.53125 C 1684.152344 290.53125 1685.433594 291.808594 1685.6875 294.144531 L 1692.441406 294.144531 C 1691.894531 288.097656 1687.769531 285.34375 1681.816406 285.34375 C 1675.128906 285.34375 1670.136719 289.984375 1670.136719 297.027344 L 1670.136719 297.28125 C 1670.136719 304.289062 1674.070312 308.960938 1682.070312 308.960938 Z M 1699.671875 308.578125 L 1706.265625 308.578125 L 1706.265625 290.753906 L 1712.183594 290.753906 L 1712.183594 285.699219 L 1693.753906 285.699219 L 1693.753906 290.753906 L 1699.671875 290.753906 Z M 1699.671875 308.578125 "/>
</clipPath>
<linearGradient id="linear0" gradientUnits="userSpaceOnUse" x1="0.740324" y1="0" x2="99.259676" y2="0" gradientTransform="matrix(2.70152,0,0,0.3348,1444.032,294.3176)">
<stop offset="0" style="stop-color:rgb(57.647705%,21.568298%,99.607849%);stop-opacity:1;"/>
<stop offset="0.00390625" style="stop-color:rgb(57.255554%,21.568298%,99.215698%);stop-opacity:1;"/>
<stop offset="0.0078125" style="stop-color:rgb(57.255554%,21.568298%,99.215698%);stop-opacity:1;"/>
<stop offset="0.0117188" style="stop-color:rgb(56.863403%,21.568298%,99.215698%);stop-opacity:1;"/>
<stop offset="0.015625" style="stop-color:rgb(56.863403%,21.960449%,99.215698%);stop-opacity:1;"/>
<stop offset="0.0195312" style="stop-color:rgb(56.471252%,21.960449%,98.823547%);stop-opacity:1;"/>
<stop offset="0.0234375" style="stop-color:rgb(56.471252%,21.960449%,98.823547%);stop-opacity:1;"/>
<stop offset="0.0273437" style="stop-color:rgb(56.079102%,21.960449%,98.431396%);stop-opacity:1;"/>
<stop offset="0.03125" style="stop-color:rgb(56.079102%,21.960449%,98.431396%);stop-opacity:1;"/>
<stop offset="0.0351562" style="stop-color:rgb(55.686951%,21.960449%,98.039246%);stop-opacity:1;"/>
<stop offset="0.0390625" style="stop-color:rgb(55.686951%,21.960449%,98.039246%);stop-opacity:1;"/>
<stop offset="0.0429687" style="stop-color:rgb(55.2948%,21.960449%,97.647095%);stop-opacity:1;"/>
<stop offset="0.046875" style="stop-color:rgb(54.902649%,22.3526%,97.647095%);stop-opacity:1;"/>
<stop offset="0.0507812" style="stop-color:rgb(54.510498%,22.3526%,97.254944%);stop-opacity:1;"/>
<stop offset="0.0546875" style="stop-color:rgb(54.510498%,22.3526%,97.254944%);stop-opacity:1;"/>
<stop offset="0.0585938" style="stop-color:rgb(54.118347%,22.3526%,97.254944%);stop-opacity:1;"/>
<stop offset="0.0625" style="stop-color:rgb(54.118347%,22.3526%,97.254944%);stop-opacity:1;"/>
<stop offset="0.0664062" style="stop-color:rgb(53.726196%,22.3526%,96.862793%);stop-opacity:1;"/>
<stop offset="0.0703125" style="stop-color:rgb(53.726196%,22.3526%,96.862793%);stop-opacity:1;"/>
<stop offset="0.0742188" style="stop-color:rgb(53.334045%,22.3526%,96.470642%);stop-opacity:1;"/>
<stop offset="0.078125" style="stop-color:rgb(53.334045%,22.3526%,96.470642%);stop-opacity:1;"/>
<stop offset="0.0820312" style="stop-color:rgb(52.941895%,22.3526%,96.078491%);stop-opacity:1;"/>
<stop offset="0.0859375" style="stop-color:rgb(52.941895%,22.744751%,96.078491%);stop-opacity:1;"/>
<stop offset="0.0898438" style="stop-color:rgb(52.549744%,22.744751%,95.68634%);stop-opacity:1;"/>
<stop offset="0.09375" style="stop-color:rgb(52.549744%,22.744751%,95.68634%);stop-opacity:1;"/>
<stop offset="0.0976562" style="stop-color:rgb(52.157593%,22.744751%,95.294189%);stop-opacity:1;"/>
<stop offset="0.101562" style="stop-color:rgb(51.765442%,22.744751%,95.294189%);stop-opacity:1;"/>
<stop offset="0.105469" style="stop-color:rgb(51.373291%,22.744751%,95.294189%);stop-opacity:1;"/>
<stop offset="0.109375" style="stop-color:rgb(51.373291%,22.744751%,95.294189%);stop-opacity:1;"/>
<stop offset="0.113281" style="stop-color:rgb(50.98114%,22.744751%,94.902039%);stop-opacity:1;"/>
<stop offset="0.117188" style="stop-color:rgb(50.98114%,23.136902%,94.902039%);stop-opacity:1;"/>
<stop offset="0.121094" style="stop-color:rgb(50.588989%,23.136902%,94.509888%);stop-opacity:1;"/>
<stop offset="0.125" style="stop-color:rgb(50.588989%,23.136902%,94.509888%);stop-opacity:1;"/>
<stop offset="0.128906" style="stop-color:rgb(50.196838%,23.136902%,94.117737%);stop-opacity:1;"/>
<stop offset="0.132812" style="stop-color:rgb(50.196838%,23.136902%,94.117737%);stop-opacity:1;"/>
<stop offset="0.136719" style="stop-color:rgb(49.803162%,23.136902%,93.725586%);stop-opacity:1;"/>
<stop offset="0.140625" style="stop-color:rgb(49.803162%,23.136902%,93.725586%);stop-opacity:1;"/>
<stop offset="0.144531" style="stop-color:rgb(49.411011%,23.136902%,93.333435%);stop-opacity:1;"/>
<stop offset="0.148437" style="stop-color:rgb(49.411011%,23.136902%,93.333435%);stop-opacity:1;"/>
<stop offset="0.152344" style="stop-color:rgb(49.01886%,23.136902%,93.333435%);stop-opacity:1;"/>
<stop offset="0.15625" style="stop-color:rgb(48.626709%,23.529053%,93.333435%);stop-opacity:1;"/>
<stop offset="0.160156" style="stop-color:rgb(48.234558%,23.529053%,92.941284%);stop-opacity:1;"/>
<stop offset="0.164062" style="stop-color:rgb(48.234558%,23.529053%,92.941284%);stop-opacity:1;"/>
<stop offset="0.167969" style="stop-color:rgb(47.842407%,23.529053%,92.549133%);stop-opacity:1;"/>
<stop offset="0.171875" style="stop-color:rgb(47.842407%,23.529053%,92.549133%);stop-opacity:1;"/>
<stop offset="0.175781" style="stop-color:rgb(47.450256%,23.529053%,92.156982%);stop-opacity:1;"/>
<stop offset="0.179687" style="stop-color:rgb(47.450256%,23.529053%,92.156982%);stop-opacity:1;"/>
<stop offset="0.183594" style="stop-color:rgb(47.058105%,23.529053%,91.764832%);stop-opacity:1;"/>
<stop offset="0.1875" style="stop-color:rgb(47.058105%,23.921204%,91.764832%);stop-opacity:1;"/>
<stop offset="0.191406" style="stop-color:rgb(46.665955%,23.921204%,91.372681%);stop-opacity:1;"/>
<stop offset="0.195312" style="stop-color:rgb(46.665955%,23.921204%,91.372681%);stop-opacity:1;"/>
<stop offset="0.199219" style="stop-color:rgb(46.273804%,23.921204%,91.372681%);stop-opacity:1;"/>
<stop offset="0.203125" style="stop-color:rgb(46.273804%,23.921204%,91.372681%);stop-opacity:1;"/>
<stop offset="0.207031" style="stop-color:rgb(45.881653%,23.921204%,90.98053%);stop-opacity:1;"/>
<stop offset="0.210937" style="stop-color:rgb(45.489502%,23.921204%,90.98053%);stop-opacity:1;"/>
<stop offset="0.214844" style="stop-color:rgb(45.489502%,23.921204%,90.588379%);stop-opacity:1;"/>
<stop offset="0.21875" style="stop-color:rgb(45.097351%,23.921204%,90.588379%);stop-opacity:1;"/>
<stop offset="0.222656" style="stop-color:rgb(44.7052%,23.921204%,90.196228%);stop-opacity:1;"/>
<stop offset="0.226562" style="stop-color:rgb(44.7052%,24.313354%,90.196228%);stop-opacity:1;"/>
<stop offset="0.230469" style="stop-color:rgb(44.313049%,24.313354%,89.804077%);stop-opacity:1;"/>
<stop offset="0.234375" style="stop-color:rgb(44.313049%,24.313354%,89.804077%);stop-opacity:1;"/>
<stop offset="0.238281" style="stop-color:rgb(43.920898%,24.313354%,89.411926%);stop-opacity:1;"/>
<stop offset="0.242187" style="stop-color:rgb(43.920898%,24.313354%,89.411926%);stop-opacity:1;"/>
<stop offset="0.246094" style="stop-color:rgb(43.528748%,24.313354%,89.411926%);stop-opacity:1;"/>
<stop offset="0.25" style="stop-color:rgb(43.528748%,24.313354%,89.411926%);stop-opacity:1;"/>
<stop offset="0.253906" style="stop-color:rgb(43.136597%,24.313354%,89.019775%);stop-opacity:1;"/>
<stop offset="0.257812" style="stop-color:rgb(43.136597%,24.705505%,89.019775%);stop-opacity:1;"/>
<stop offset="0.261719" style="stop-color:rgb(42.744446%,24.705505%,88.627625%);stop-opacity:1;"/>
<stop offset="0.265625" style="stop-color:rgb(42.352295%,24.705505%,88.627625%);stop-opacity:1;"/>
<stop offset="0.269531" style="stop-color:rgb(41.960144%,24.705505%,88.235474%);stop-opacity:1;"/>
<stop offset="0.273437" style="stop-color:rgb(41.960144%,24.705505%,88.235474%);stop-opacity:1;"/>
<stop offset="0.277344" style="stop-color:rgb(41.567993%,24.705505%,87.843323%);stop-opacity:1;"/>
<stop offset="0.28125" style="stop-color:rgb(41.567993%,24.705505%,87.843323%);stop-opacity:1;"/>
<stop offset="0.285156" style="stop-color:rgb(41.175842%,24.705505%,87.451172%);stop-opacity:1;"/>
<stop offset="0.289062" style="stop-color:rgb(41.175842%,24.705505%,87.451172%);stop-opacity:1;"/>
<stop offset="0.292969" style="stop-color:rgb(40.783691%,24.705505%,87.059021%);stop-opacity:1;"/>
<stop offset="0.296875" style="stop-color:rgb(40.783691%,25.097656%,87.059021%);stop-opacity:1;"/>
<stop offset="0.300781" style="stop-color:rgb(40.391541%,25.097656%,87.059021%);stop-opacity:1;"/>
<stop offset="0.304687" style="stop-color:rgb(40.391541%,25.097656%,87.059021%);stop-opacity:1;"/>
<stop offset="0.308594" style="stop-color:rgb(39.99939%,25.097656%,86.66687%);stop-opacity:1;"/>
<stop offset="0.3125" style="stop-color:rgb(39.99939%,25.097656%,86.66687%);stop-opacity:1;"/>
<stop offset="0.316406" style="stop-color:rgb(39.607239%,25.097656%,86.274719%);stop-opacity:1;"/>
<stop offset="0.320312" style="stop-color:rgb(39.215088%,25.097656%,86.274719%);stop-opacity:1;"/>
<stop offset="0.324219" style="stop-color:rgb(39.215088%,25.097656%,85.882568%);stop-opacity:1;"/>
<stop offset="0.328125" style="stop-color:rgb(38.822937%,25.489807%,85.882568%);stop-opacity:1;"/>
<stop offset="0.332031" style="stop-color:rgb(38.430786%,25.489807%,85.490417%);stop-opacity:1;"/>
<stop offset="0.335937" style="stop-color:rgb(38.430786%,25.489807%,85.490417%);stop-opacity:1;"/>
<stop offset="0.339844" style="stop-color:rgb(38.038635%,25.489807%,85.098267%);stop-opacity:1;"/>
<stop offset="0.34375" style="stop-color:rgb(38.038635%,25.489807%,85.098267%);stop-opacity:1;"/>
<stop offset="0.347656" style="stop-color:rgb(37.646484%,25.489807%,85.098267%);stop-opacity:1;"/>
<stop offset="0.351562" style="stop-color:rgb(37.646484%,25.489807%,85.098267%);stop-opacity:1;"/>
<stop offset="0.355469" style="stop-color:rgb(37.254333%,25.489807%,84.706116%);stop-opacity:1;"/>
<stop offset="0.359375" style="stop-color:rgb(37.254333%,25.489807%,84.706116%);stop-opacity:1;"/>
<stop offset="0.363281" style="stop-color:rgb(36.862183%,25.489807%,84.313965%);stop-opacity:1;"/>
<stop offset="0.367187" style="stop-color:rgb(36.862183%,25.881958%,84.313965%);stop-opacity:1;"/>
<stop offset="0.371094" style="stop-color:rgb(36.470032%,25.881958%,83.921814%);stop-opacity:1;"/>
<stop offset="0.375" style="stop-color:rgb(36.077881%,25.881958%,83.921814%);stop-opacity:1;"/>
<stop offset="0.378906" style="stop-color:rgb(35.68573%,25.881958%,83.529663%);stop-opacity:1;"/>
<stop offset="0.382812" style="stop-color:rgb(35.68573%,25.881958%,83.529663%);stop-opacity:1;"/>
<stop offset="0.386719" style="stop-color:rgb(35.293579%,25.881958%,83.137512%);stop-opacity:1;"/>
<stop offset="0.390625" style="stop-color:rgb(35.293579%,25.881958%,83.137512%);stop-opacity:1;"/>
<stop offset="0.394531" style="stop-color:rgb(34.901428%,25.881958%,83.137512%);stop-opacity:1;"/>
<stop offset="0.398438" style="stop-color:rgb(34.901428%,26.274109%,83.137512%);stop-opacity:1;"/>
<stop offset="0.402344" style="stop-color:rgb(34.509277%,26.274109%,82.745361%);stop-opacity:1;"/>
<stop offset="0.40625" style="stop-color:rgb(34.509277%,26.274109%,82.745361%);stop-opacity:1;"/>
<stop offset="0.410156" style="stop-color:rgb(34.117126%,26.274109%,82.35321%);stop-opacity:1;"/>
<stop offset="0.414062" style="stop-color:rgb(34.117126%,26.274109%,82.35321%);stop-opacity:1;"/>
<stop offset="0.417969" style="stop-color:rgb(33.724976%,26.274109%,81.96106%);stop-opacity:1;"/>
<stop offset="0.421875" style="stop-color:rgb(33.724976%,26.274109%,81.96106%);stop-opacity:1;"/>
<stop offset="0.425781" style="stop-color:rgb(33.332825%,26.274109%,81.568909%);stop-opacity:1;"/>
<stop offset="0.429687" style="stop-color:rgb(32.940674%,26.274109%,81.568909%);stop-opacity:1;"/>
<stop offset="0.433594" style="stop-color:rgb(32.940674%,26.274109%,81.176758%);stop-opacity:1;"/>
<stop offset="0.4375" style="stop-color:rgb(32.548523%,26.66626%,81.176758%);stop-opacity:1;"/>
<stop offset="0.441406" style="stop-color:rgb(32.156372%,26.66626%,81.176758%);stop-opacity:1;"/>
<stop offset="0.445312" style="stop-color:rgb(32.156372%,26.66626%,81.176758%);stop-opacity:1;"/>
<stop offset="0.449219" style="stop-color:rgb(31.764221%,26.66626%,80.784607%);stop-opacity:1;"/>
<stop offset="0.453125" style="stop-color:rgb(31.764221%,26.66626%,80.784607%);stop-opacity:1;"/>
<stop offset="0.457031" style="stop-color:rgb(31.37207%,26.66626%,80.392456%);stop-opacity:1;"/>
<stop offset="0.460937" style="stop-color:rgb(31.37207%,26.66626%,80.392456%);stop-opacity:1;"/>
<stop offset="0.464844" style="stop-color:rgb(30.979919%,26.66626%,80.000305%);stop-opacity:1;"/>
<stop offset="0.46875" style="stop-color:rgb(30.979919%,27.058411%,80.000305%);stop-opacity:1;"/>
<stop offset="0.472656" style="stop-color:rgb(30.587769%,27.058411%,79.608154%);stop-opacity:1;"/>
<stop offset="0.476562" style="stop-color:rgb(30.587769%,27.058411%,79.608154%);stop-opacity:1;"/>
<stop offset="0.480469" style="stop-color:rgb(30.195618%,27.058411%,79.216003%);stop-opacity:1;"/>
<stop offset="0.484375" style="stop-color:rgb(29.803467%,27.058411%,79.216003%);stop-opacity:1;"/>
<stop offset="0.488281" style="stop-color:rgb(29.411316%,27.058411%,79.216003%);stop-opacity:1;"/>
<stop offset="0.492188" style="stop-color:rgb(29.411316%,27.058411%,79.216003%);stop-opacity:1;"/>
<stop offset="0.496094" style="stop-color:rgb(29.019165%,27.058411%,78.823853%);stop-opacity:1;"/>
<stop offset="0.5" style="stop-color:rgb(29.019165%,27.058411%,78.823853%);stop-opacity:1;"/>
<stop offset="0.503906" style="stop-color:rgb(28.627014%,27.058411%,78.431702%);stop-opacity:1;"/>
<stop offset="0.507813" style="stop-color:rgb(28.627014%,27.450562%,78.431702%);stop-opacity:1;"/>
<stop offset="0.511719" style="stop-color:rgb(28.234863%,27.450562%,78.039551%);stop-opacity:1;"/>
<stop offset="0.515625" style="stop-color:rgb(28.234863%,27.450562%,78.039551%);stop-opacity:1;"/>
<stop offset="0.519531" style="stop-color:rgb(27.842712%,27.450562%,77.6474%);stop-opacity:1;"/>
<stop offset="0.523438" style="stop-color:rgb(27.842712%,27.450562%,77.6474%);stop-opacity:1;"/>
<stop offset="0.527344" style="stop-color:rgb(27.450562%,27.450562%,77.255249%);stop-opacity:1;"/>
<stop offset="0.53125" style="stop-color:rgb(27.450562%,27.450562%,77.255249%);stop-opacity:1;"/>
<stop offset="0.535156" style="stop-color:rgb(27.058411%,27.450562%,77.255249%);stop-opacity:1;"/>
<stop offset="0.539062" style="stop-color:rgb(27.058411%,27.450562%,77.255249%);stop-opacity:1;"/>
<stop offset="0.542969" style="stop-color:rgb(26.66626%,27.842712%,76.863098%);stop-opacity:1;"/>
<stop offset="0.546875" style="stop-color:rgb(26.274109%,27.842712%,76.863098%);stop-opacity:1;"/>
<stop offset="0.550781" style="stop-color:rgb(25.881958%,27.842712%,76.470947%);stop-opacity:1;"/>
<stop offset="0.554688" style="stop-color:rgb(25.881958%,27.842712%,76.470947%);stop-opacity:1;"/>
<stop offset="0.558594" style="stop-color:rgb(25.489807%,27.842712%,76.078796%);stop-opacity:1;"/>
<stop offset="0.5625" style="stop-color:rgb(25.489807%,27.842712%,76.078796%);stop-opacity:1;"/>
<stop offset="0.566406" style="stop-color:rgb(25.097656%,27.842712%,75.686646%);stop-opacity:1;"/>
<stop offset="0.570312" style="stop-color:rgb(25.097656%,27.842712%,75.686646%);stop-opacity:1;"/>
<stop offset="0.574219" style="stop-color:rgb(24.705505%,27.842712%,75.686646%);stop-opacity:1;"/>
<stop offset="0.578125" style="stop-color:rgb(24.705505%,28.234863%,75.294495%);stop-opacity:1;"/>
<stop offset="0.582031" style="stop-color:rgb(24.313354%,28.234863%,75.294495%);stop-opacity:1;"/>
<stop offset="0.585937" style="stop-color:rgb(24.313354%,28.234863%,75.294495%);stop-opacity:1;"/>
<stop offset="0.589844" style="stop-color:rgb(23.921204%,28.234863%,74.902344%);stop-opacity:1;"/>
<stop offset="0.59375" style="stop-color:rgb(23.529053%,28.234863%,74.902344%);stop-opacity:1;"/>
<stop offset="0.597656" style="stop-color:rgb(23.529053%,28.234863%,74.510193%);stop-opacity:1;"/>
<stop offset="0.601563" style="stop-color:rgb(23.136902%,28.234863%,74.510193%);stop-opacity:1;"/>
<stop offset="0.605469" style="stop-color:rgb(22.744751%,28.234863%,74.118042%);stop-opacity:1;"/>
<stop offset="0.609375" style="stop-color:rgb(22.744751%,28.234863%,74.118042%);stop-opacity:1;"/>
<stop offset="0.613281" style="stop-color:rgb(22.3526%,28.234863%,73.725891%);stop-opacity:1;"/>
<stop offset="0.617188" style="stop-color:rgb(22.3526%,28.627014%,73.725891%);stop-opacity:1;"/>
<stop offset="0.621094" style="stop-color:rgb(21.960449%,28.627014%,73.725891%);stop-opacity:1;"/>
<stop offset="0.625" style="stop-color:rgb(21.960449%,28.627014%,73.33374%);stop-opacity:1;"/>
<stop offset="0.628906" style="stop-color:rgb(21.568298%,28.627014%,73.33374%);stop-opacity:1;"/>
<stop offset="0.632812" style="stop-color:rgb(21.568298%,28.627014%,73.33374%);stop-opacity:1;"/>
<stop offset="0.636719" style="stop-color:rgb(21.176147%,28.627014%,72.941589%);stop-opacity:1;"/>
<stop offset="0.640625" style="stop-color:rgb(21.176147%,28.627014%,72.941589%);stop-opacity:1;"/>
<stop offset="0.644531" style="stop-color:rgb(20.783997%,28.627014%,72.549438%);stop-opacity:1;"/>
<stop offset="0.648438" style="stop-color:rgb(20.783997%,29.019165%,72.549438%);stop-opacity:1;"/>
<stop offset="0.652344" style="stop-color:rgb(20.391846%,29.019165%,72.157288%);stop-opacity:1;"/>
<stop offset="0.65625" style="stop-color:rgb(19.999695%,29.019165%,72.157288%);stop-opacity:1;"/>
<stop offset="0.660156" style="stop-color:rgb(19.607544%,29.019165%,71.765137%);stop-opacity:1;"/>
<stop offset="0.664062" style="stop-color:rgb(19.607544%,29.019165%,71.765137%);stop-opacity:1;"/>
<stop offset="0.667969" style="stop-color:rgb(19.215393%,29.019165%,71.765137%);stop-opacity:1;"/>
<stop offset="0.671875" style="stop-color:rgb(19.215393%,29.019165%,71.372986%);stop-opacity:1;"/>
<stop offset="0.675781" style="stop-color:rgb(18.823242%,29.019165%,71.372986%);stop-opacity:1;"/>
<stop offset="0.679687" style="stop-color:rgb(18.823242%,29.019165%,71.372986%);stop-opacity:1;"/>
<stop offset="0.683594" style="stop-color:rgb(18.431091%,29.019165%,70.980835%);stop-opacity:1;"/>
<stop offset="0.6875" style="stop-color:rgb(18.431091%,29.411316%,70.980835%);stop-opacity:1;"/>
<stop offset="0.691406" style="stop-color:rgb(18.03894%,29.411316%,70.588684%);stop-opacity:1;"/>
<stop offset="0.695313" style="stop-color:rgb(18.03894%,29.411316%,70.588684%);stop-opacity:1;"/>
<stop offset="0.699219" style="stop-color:rgb(17.64679%,29.411316%,70.196533%);stop-opacity:1;"/>
<stop offset="0.703125" style="stop-color:rgb(17.254639%,29.411316%,70.196533%);stop-opacity:1;"/>
<stop offset="0.707031" style="stop-color:rgb(17.254639%,29.411316%,69.804382%);stop-opacity:1;"/>
<stop offset="0.710938" style="stop-color:rgb(16.862488%,29.411316%,69.804382%);stop-opacity:1;"/>
<stop offset="0.714844" style="stop-color:rgb(16.470337%,29.411316%,69.804382%);stop-opacity:1;"/>
<stop offset="0.71875" style="stop-color:rgb(16.470337%,29.803467%,69.412231%);stop-opacity:1;"/>
<stop offset="0.722656" style="stop-color:rgb(16.078186%,29.803467%,69.412231%);stop-opacity:1;"/>
<stop offset="0.726562" style="stop-color:rgb(16.078186%,29.803467%,69.412231%);stop-opacity:1;"/>
<stop offset="0.730469" style="stop-color:rgb(15.686035%,29.803467%,69.020081%);stop-opacity:1;"/>
<stop offset="0.734375" style="stop-color:rgb(15.686035%,29.803467%,69.020081%);stop-opacity:1;"/>
<stop offset="0.738281" style="stop-color:rgb(15.293884%,29.803467%,68.62793%);stop-opacity:1;"/>
<stop offset="0.742188" style="stop-color:rgb(15.293884%,29.803467%,68.62793%);stop-opacity:1;"/>
<stop offset="0.746094" style="stop-color:rgb(14.901733%,29.803467%,68.235779%);stop-opacity:1;"/>
<stop offset="0.75" style="stop-color:rgb(14.901733%,29.803467%,68.235779%);stop-opacity:1;"/>
<stop offset="0.753906" style="stop-color:rgb(14.509583%,29.803467%,67.843628%);stop-opacity:1;"/>
<stop offset="0.757812" style="stop-color:rgb(14.509583%,30.195618%,67.843628%);stop-opacity:1;"/>
<stop offset="0.761719" style="stop-color:rgb(14.117432%,30.195618%,67.843628%);stop-opacity:1;"/>
<stop offset="0.765625" style="stop-color:rgb(13.725281%,30.195618%,67.451477%);stop-opacity:1;"/>
<stop offset="0.769531" style="stop-color:rgb(13.33313%,30.195618%,67.451477%);stop-opacity:1;"/>
<stop offset="0.773438" style="stop-color:rgb(13.33313%,30.195618%,67.451477%);stop-opacity:1;"/>
<stop offset="0.777344" style="stop-color:rgb(12.940979%,30.195618%,67.059326%);stop-opacity:1;"/>
<stop offset="0.78125" style="stop-color:rgb(12.940979%,30.195618%,67.059326%);stop-opacity:1;"/>
<stop offset="0.785156" style="stop-color:rgb(12.548828%,30.195618%,66.667175%);stop-opacity:1;"/>
<stop offset="0.789063" style="stop-color:rgb(12.548828%,30.587769%,66.667175%);stop-opacity:1;"/>
<stop offset="0.792969" style="stop-color:rgb(12.156677%,30.587769%,66.275024%);stop-opacity:1;"/>
<stop offset="0.796875" style="stop-color:rgb(12.156677%,30.587769%,66.275024%);stop-opacity:1;"/>
<stop offset="0.800781" style="stop-color:rgb(11.764526%,30.587769%,65.882874%);stop-opacity:1;"/>
<stop offset="0.804688" style="stop-color:rgb(11.764526%,30.587769%,65.882874%);stop-opacity:1;"/>
<stop offset="0.808594" style="stop-color:rgb(11.372375%,30.587769%,65.490723%);stop-opacity:1;"/>
<stop offset="0.8125" style="stop-color:rgb(11.372375%,30.587769%,65.490723%);stop-opacity:1;"/>
<stop offset="0.816406" style="stop-color:rgb(10.980225%,30.587769%,65.490723%);stop-opacity:1;"/>
<stop offset="0.820312" style="stop-color:rgb(10.588074%,30.587769%,65.490723%);stop-opacity:1;"/>
<stop offset="0.824219" style="stop-color:rgb(10.195923%,30.587769%,65.098572%);stop-opacity:1;"/>
<stop offset="0.828125" style="stop-color:rgb(10.195923%,30.979919%,65.098572%);stop-opacity:1;"/>
<stop offset="0.832031" style="stop-color:rgb(9.803772%,30.979919%,64.706421%);stop-opacity:1;"/>
<stop offset="0.835938" style="stop-color:rgb(9.803772%,30.979919%,64.706421%);stop-opacity:1;"/>
<stop offset="0.839844" style="stop-color:rgb(9.411621%,30.979919%,64.31427%);stop-opacity:1;"/>
<stop offset="0.84375" style="stop-color:rgb(9.411621%,30.979919%,64.31427%);stop-opacity:1;"/>
<stop offset="0.847656" style="stop-color:rgb(9.01947%,30.979919%,63.922119%);stop-opacity:1;"/>
<stop offset="0.851562" style="stop-color:rgb(9.01947%,30.979919%,63.922119%);stop-opacity:1;"/>
<stop offset="0.855469" style="stop-color:rgb(8.627319%,30.979919%,63.529968%);stop-opacity:1;"/>
<stop offset="0.859375" style="stop-color:rgb(8.627319%,31.37207%,63.529968%);stop-opacity:1;"/>
<stop offset="0.863281" style="stop-color:rgb(8.235168%,31.37207%,63.529968%);stop-opacity:1;"/>
<stop offset="0.867188" style="stop-color:rgb(8.235168%,31.37207%,63.529968%);stop-opacity:1;"/>
<stop offset="0.871094" style="stop-color:rgb(7.843018%,31.37207%,63.137817%);stop-opacity:1;"/>
<stop offset="0.875" style="stop-color:rgb(7.450867%,31.37207%,63.137817%);stop-opacity:1;"/>
<stop offset="0.878906" style="stop-color:rgb(7.058716%,31.37207%,62.745667%);stop-opacity:1;"/>
<stop offset="0.882813" style="stop-color:rgb(7.058716%,31.37207%,62.745667%);stop-opacity:1;"/>
<stop offset="0.886719" style="stop-color:rgb(6.666565%,31.37207%,62.353516%);stop-opacity:1;"/>
<stop offset="0.890625" style="stop-color:rgb(6.666565%,31.37207%,62.353516%);stop-opacity:1;"/>
<stop offset="0.894531" style="stop-color:rgb(6.274414%,31.37207%,61.961365%);stop-opacity:1;"/>
<stop offset="0.898438" style="stop-color:rgb(6.274414%,31.764221%,61.961365%);stop-opacity:1;"/>
<stop offset="0.902344" style="stop-color:rgb(5.882263%,31.764221%,61.569214%);stop-opacity:1;"/>
<stop offset="0.90625" style="stop-color:rgb(5.882263%,31.764221%,61.569214%);stop-opacity:1;"/>
<stop offset="0.910156" style="stop-color:rgb(5.490112%,31.764221%,61.569214%);stop-opacity:1;"/>
<stop offset="0.914062" style="stop-color:rgb(5.490112%,31.764221%,61.569214%);stop-opacity:1;"/>
<stop offset="0.917969" style="stop-color:rgb(5.097961%,31.764221%,61.177063%);stop-opacity:1;"/>
<stop offset="0.921875" style="stop-color:rgb(5.097961%,31.764221%,61.177063%);stop-opacity:1;"/>
<stop offset="0.925781" style="stop-color:rgb(4.705811%,31.764221%,60.784912%);stop-opacity:1;"/>
<stop offset="0.929688" style="stop-color:rgb(4.31366%,32.156372%,60.784912%);stop-opacity:1;"/>
<stop offset="0.933594" style="stop-color:rgb(3.921509%,32.156372%,60.392761%);stop-opacity:1;"/>
<stop offset="0.9375" style="stop-color:rgb(3.921509%,32.156372%,60.392761%);stop-opacity:1;"/>
<stop offset="0.941406" style="stop-color:rgb(3.529358%,32.156372%,60.00061%);stop-opacity:1;"/>
<stop offset="0.945312" style="stop-color:rgb(3.529358%,32.156372%,60.00061%);stop-opacity:1;"/>
<stop offset="0.949219" style="stop-color:rgb(3.137207%,32.156372%,59.608459%);stop-opacity:1;"/>
<stop offset="0.953125" style="stop-color:rgb(3.137207%,32.156372%,59.608459%);stop-opacity:1;"/>
<stop offset="0.957031" style="stop-color:rgb(2.745056%,32.156372%,59.608459%);stop-opacity:1;"/>
<stop offset="0.960938" style="stop-color:rgb(2.745056%,32.156372%,59.608459%);stop-opacity:1;"/>
<stop offset="0.964844" style="stop-color:rgb(2.352905%,32.156372%,59.216309%);stop-opacity:1;"/>
<stop offset="0.96875" style="stop-color:rgb(2.352905%,32.548523%,59.216309%);stop-opacity:1;"/>
<stop offset="0.972656" style="stop-color:rgb(1.960754%,32.548523%,58.824158%);stop-opacity:1;"/>
<stop offset="0.976563" style="stop-color:rgb(1.960754%,32.548523%,58.824158%);stop-opacity:1;"/>
<stop offset="0.980469" style="stop-color:rgb(1.568604%,32.548523%,58.432007%);stop-opacity:1;"/>
<stop offset="0.984375" style="stop-color:rgb(1.176453%,32.548523%,58.432007%);stop-opacity:1;"/>
<stop offset="0.988281" style="stop-color:rgb(0.784302%,32.548523%,58.039856%);stop-opacity:1;"/>
<stop offset="0.992188" style="stop-color:rgb(0.784302%,32.548523%,58.039856%);stop-opacity:1;"/>
<stop offset="0.996094" style="stop-color:rgb(0.392151%,32.548523%,57.647705%);stop-opacity:1;"/>
<stop offset="1" style="stop-color:rgb(0.392151%,32.940674%,57.647705%);stop-opacity:1;"/>
</linearGradient>
<clipPath id="clip12">
<path d="M 1340.507812 36.601562 L 1817.140625 36.601562 L 1817.140625 260.277344 L 1340.507812 260.277344 Z M 1340.507812 36.601562 "/>
</clipPath>
<clipPath id="clip13">
<path d="M 0.917969 330.640625 L 1002.519531 330.640625 L 1002.519531 674.089844 L 0.917969 674.089844 Z M 0.917969 330.640625 "/>
</clipPath>
<clipPath id="clip14">
<path d="M 1000.511719 500 L 1059.445312 500 L 1059.445312 504 L 1000.511719 504 Z M 1000.511719 500 "/>
</clipPath>
</defs>
<g id="surface1">
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(96.078491%,96.078491%,96.078491%);fill-opacity:1;" d="M 1090.515625 344.746094 L 1933.066406 344.746094 C 1942.039062 344.746094 1947.421875 344.746094 1951.011719 346.246094 C 1956.183594 348.128906 1960.261719 352.203125 1962.144531 357.378906 C 1963.640625 360.964844 1963.640625 366.347656 1963.640625 375.320312 L 1963.640625 629.410156 C 1963.640625 638.378906 1963.640625 643.761719 1962.144531 647.351562 C 1960.261719 652.523438 1956.183594 656.601562 1951.011719 658.484375 C 1947.421875 659.980469 1942.039062 659.980469 1933.066406 659.980469 L 1090.515625 659.980469 C 1081.546875 659.980469 1076.160156 659.980469 1072.574219 658.484375 C 1067.398438 656.601562 1063.324219 652.523438 1061.441406 647.351562 C 1059.945312 643.761719 1059.945312 638.378906 1059.945312 629.410156 L 1059.945312 375.320312 C 1059.945312 366.347656 1059.945312 360.964844 1061.441406 357.378906 C 1063.324219 352.203125 1067.398438 348.128906 1072.574219 346.246094 C 1076.160156 344.746094 1081.546875 344.746094 1090.515625 344.746094 Z M 1090.515625 344.746094 "/>
<g clip-path="url(#clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.392151%,9.803772%,57.647705%);stroke-opacity:1;stroke-miterlimit:4;" d="M 30.571625 -0.00140625 L 873.122406 -0.00140625 C 882.095063 -0.00140625 887.477875 -0.00140625 891.067719 1.498594 C 896.239594 3.381406 900.313813 7.455625 902.200531 12.631406 C 903.696625 16.217344 903.696625 21.600156 903.696625 30.572812 L 903.696625 284.65875 C 903.696625 293.631406 903.696625 299.014219 902.200531 302.604062 C 900.313813 307.775937 896.239594 311.854062 891.067719 313.736875 C 887.477875 315.232969 882.095063 315.232969 873.122406 315.232969 L 30.571625 315.232969 C 21.602875 315.232969 16.220063 315.232969 12.630219 313.736875 C 7.458344 311.854062 3.380219 307.775937 1.497406 302.604062 C 0.0013125 299.014219 0.0013125 293.631406 0.0013125 284.65875 L 0.0013125 30.572812 C 0.0013125 21.600156 0.0013125 16.217344 1.497406 12.631406 C 3.380219 7.455625 7.458344 3.381406 12.630219 1.498594 C 16.220063 -0.00140625 21.602875 -0.00140625 30.571625 -0.00140625 Z M 30.571625 -0.00140625 " transform="matrix(1,0,0,1,1059.944,344.7475)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="1081.444" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1097.284" y="447.2538"/>
<use xlink:href="#glyph0-3" x="1115.404" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1133.224" y="447.2538"/>
<use xlink:href="#glyph0-5" x="1141.174" y="447.2538"/>
<use xlink:href="#glyph0-6" x="1157.374" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1168.204" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1185.244" y="447.2538"/>
<use xlink:href="#glyph0-8" x="1193.194" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1216.714" y="447.2538"/>
<use xlink:href="#glyph0-6" x="1234.834" y="447.2538"/>
<use xlink:href="#glyph0-9" x="1246.114" y="447.2538"/>
<use xlink:href="#glyph0-10" x="1261.594" y="447.2538"/>
<use xlink:href="#glyph0-11" x="1269.244" y="447.2538"/>
<use xlink:href="#glyph0-12" x="1287.184" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1305.994" y="447.2538"/>
<use xlink:href="#glyph0-2" x="1313.944" y="447.2538"/>
<use xlink:href="#glyph0-11" x="1332.064" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1350.004" y="447.2538"/>
<use xlink:href="#glyph0-5" x="1357.954" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1374.154" y="447.2538"/>
<use xlink:href="#glyph0-11" x="1382.104" y="447.2538"/>
<use xlink:href="#glyph0-5" x="1400.044" y="447.2538"/>
<use xlink:href="#glyph0-13" x="1416.244" y="447.2538"/>
<use xlink:href="#glyph0-3" x="1426.894" y="447.2538"/>
<use xlink:href="#glyph0-6" x="1444.714" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1455.844" y="447.2538"/>
<use xlink:href="#glyph0-14" x="1472.044" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1479.724" y="447.2538"/>
<use xlink:href="#glyph0-14" x="1487.674" y="447.2538"/>
<use xlink:href="#glyph0-5" x="1495.354" y="447.2538"/>
<use xlink:href="#glyph0-11" x="1511.554" y="447.2538"/>
<use xlink:href="#glyph0-12" x="1529.494" y="447.2538"/>
<use xlink:href="#glyph0-3" x="1548.304" y="447.2538"/>
<use xlink:href="#glyph0-5" x="1566.124" y="447.2538"/>
<use xlink:href="#glyph0-12" x="1582.324" y="447.2538"/>
<use xlink:href="#glyph0-7" x="1601.134" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1618.174" y="447.2538"/>
<use xlink:href="#glyph0-15" x="1626.124" y="447.2538"/>
<use xlink:href="#glyph0-6" x="1644.934" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1655.764" y="447.2538"/>
<use xlink:href="#glyph0-16" x="1673.884" y="447.2538"/>
<use xlink:href="#glyph0-7" x="1690.984" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="1708.174" y="447.2538"/>
<use xlink:href="#glyph0-17" x="1722.574" y="447.2538"/>
<use xlink:href="#glyph0-10" x="1736.974" y="447.2538"/>
<use xlink:href="#glyph0-11" x="1744.624" y="447.2538"/>
<use xlink:href="#glyph0-12" x="1762.564" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1781.374" y="447.2538"/>
<use xlink:href="#glyph0-18" x="1789.324" y="447.2538"/>
<use xlink:href="#glyph0-19" x="1798.984" y="447.2538"/>
<use xlink:href="#glyph0-20" x="1820.704" y="447.2538"/>
<use xlink:href="#glyph0-21" x="1836.754" y="447.2538"/>
<use xlink:href="#glyph0-22" x="1854.184" y="447.2538"/>
<use xlink:href="#glyph0-4" x="1863.844" y="447.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-15" x="1081.444" y="487.2538"/>
<use xlink:href="#glyph0-6" x="1100.254" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1111.084" y="487.2538"/>
<use xlink:href="#glyph0-23" x="1129.204" y="487.2538"/>
<use xlink:href="#glyph0-7" x="1136.854" y="487.2538"/>
<use xlink:href="#glyph0-16" x="1153.894" y="487.2538"/>
<use xlink:href="#glyph0-13" x="1170.994" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1181.644" y="487.2538"/>
<use xlink:href="#glyph0-5" x="1189.594" y="487.2538"/>
<use xlink:href="#glyph0-11" x="1205.794" y="487.2538"/>
<use xlink:href="#glyph0-24" x="1223.734" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1242.544" y="487.2538"/>
<use xlink:href="#glyph0-11" x="1250.494" y="487.2538"/>
<use xlink:href="#glyph0-7" x="1268.434" y="487.2538"/>
<use xlink:href="#glyph0-7" x="1285.474" y="487.2538"/>
<use xlink:href="#glyph0-24" x="1302.514" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1321.324" y="487.2538"/>
<use xlink:href="#glyph0-13" x="1329.274" y="487.2538"/>
<use xlink:href="#glyph0-2" x="1339.924" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1358.044" y="487.2538"/>
<use xlink:href="#glyph0-16" x="1365.994" y="487.2538"/>
<use xlink:href="#glyph0-6" x="1383.094" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1393.924" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1411.114" y="487.2538"/>
<use xlink:href="#glyph0-13" x="1427.314" y="487.2538"/>
<use xlink:href="#glyph0-7" x="1437.964" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1455.004" y="487.2538"/>
<use xlink:href="#glyph0-5" x="1462.954" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1479.154" y="487.2538"/>
<use xlink:href="#glyph0-15" x="1487.104" y="487.2538"/>
<use xlink:href="#glyph0-6" x="1505.914" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1516.744" y="487.2538"/>
<use xlink:href="#glyph0-12" x="1534.864" y="487.2538"/>
<use xlink:href="#glyph0-6" x="1553.674" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1564.804" y="487.2538"/>
<use xlink:href="#glyph0-25" x="1581.004" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1608.304" y="487.2538"/>
<use xlink:href="#glyph0-13" x="1616.254" y="487.2538"/>
<use xlink:href="#glyph0-2" x="1626.904" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1645.024" y="487.2538"/>
<use xlink:href="#glyph0-15" x="1652.974" y="487.2538"/>
<use xlink:href="#glyph0-6" x="1671.784" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1682.614" y="487.2538"/>
<use xlink:href="#glyph0-15" x="1699.654" y="487.2538"/>
<use xlink:href="#glyph0-6" x="1718.464" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1729.294" y="487.2538"/>
<use xlink:href="#glyph0-16" x="1747.414" y="487.2538"/>
<use xlink:href="#glyph0-7" x="1764.514" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="1781.704" y="487.2538"/>
<use xlink:href="#glyph0-17" x="1796.104" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1810.504" y="487.2538"/>
<use xlink:href="#glyph0-5" x="1818.454" y="487.2538"/>
<use xlink:href="#glyph0-11" x="1834.654" y="487.2538"/>
<use xlink:href="#glyph0-24" x="1852.594" y="487.2538"/>
<use xlink:href="#glyph0-4" x="1871.404" y="487.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="1081.444" y="527.2538"/>
<use xlink:href="#glyph0-14" x="1098.544" y="527.2538"/>
<use xlink:href="#glyph0-5" x="1106.224" y="527.2538"/>
<use xlink:href="#glyph0-17" x="1122.424" y="527.2538"/>
<use xlink:href="#glyph0-17" x="1136.824" y="527.2538"/>
<use xlink:href="#glyph0-10" x="1151.224" y="527.2538"/>
<use xlink:href="#glyph0-26" x="1158.874" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-27" x="1169.554" y="527.2538"/>
<use xlink:href="#glyph0-4" x="1185.424" y="527.2538"/>
<use xlink:href="#glyph0-25" x="1193.374" y="527.2538"/>
<use xlink:href="#glyph0-2" x="1220.674" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="1238.344" y="527.2538"/>
<use xlink:href="#glyph0-10" x="1254.364" y="527.2538"/>
<use xlink:href="#glyph0-7" x="1262.014" y="527.2538"/>
<use xlink:href="#glyph0-4" x="1279.054" y="527.2538"/>
<use xlink:href="#glyph0-6" x="1287.004" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1297.834" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="1314.724" y="527.2538"/>
<use xlink:href="#glyph0-10" x="1330.744" y="527.2538"/>
<use xlink:href="#glyph0-7" x="1338.394" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="1355.284" y="527.2538"/>
<use xlink:href="#glyph0-17" x="1379.104" y="527.2538"/>
<use xlink:href="#glyph0-29" x="1393.504" y="527.2538"/>
<use xlink:href="#glyph0-29" x="1401.964" y="527.2538"/>
<use xlink:href="#glyph0-29" x="1410.424" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="1418.884" y="527.2538"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-1" x="1081.444" y="551.3537"/>
<use xlink:href="#glyph1-1" x="1091.444" y="551.3537"/>
<use xlink:href="#glyph1-1" x="1101.444" y="551.3537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="1111.444" y="551.3537"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-1" x="1081.444" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1097.284" y="588.25376"/>
<use xlink:href="#glyph0-3" x="1115.404" y="588.25376"/>
<use xlink:href="#glyph0-6" x="1133.224" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1144.504" y="588.25376"/>
<use xlink:href="#glyph0-15" x="1152.454" y="588.25376"/>
<use xlink:href="#glyph0-6" x="1171.264" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1182.094" y="588.25376"/>
<use xlink:href="#glyph0-12" x="1200.214" y="588.25376"/>
<use xlink:href="#glyph0-6" x="1219.024" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1230.154" y="588.25376"/>
<use xlink:href="#glyph0-25" x="1246.354" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1273.654" y="588.25376"/>
<use xlink:href="#glyph0-17" x="1281.604" y="588.25376"/>
<use xlink:href="#glyph0-30" x="1296.004" y="588.25376"/>
<use xlink:href="#glyph0-2" x="1313.944" y="588.25376"/>
<use xlink:href="#glyph0-3" x="1332.064" y="588.25376"/>
<use xlink:href="#glyph0-14" x="1349.884" y="588.25376"/>
<use xlink:href="#glyph0-24" x="1357.564" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1376.374" y="588.25376"/>
<use xlink:href="#glyph0-31" x="1384.324" y="588.25376"/>
<use xlink:href="#glyph0-7" x="1403.134" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1420.174" y="588.25376"/>
<use xlink:href="#glyph0-5" x="1428.124" y="588.25376"/>
<use xlink:href="#glyph0-31" x="1444.324" y="588.25376"/>
<use xlink:href="#glyph0-14" x="1463.134" y="588.25376"/>
<use xlink:href="#glyph0-7" x="1470.814" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1487.854" y="588.25376"/>
<use xlink:href="#glyph0-13" x="1495.804" y="588.25376"/>
<use xlink:href="#glyph0-2" x="1506.454" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1524.574" y="588.25376"/>
<use xlink:href="#glyph0-15" x="1532.524" y="588.25376"/>
<use xlink:href="#glyph0-6" x="1551.334" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1562.164" y="588.25376"/>
<use xlink:href="#glyph0-15" x="1579.204" y="588.25376"/>
<use xlink:href="#glyph0-6" x="1598.014" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1608.844" y="588.25376"/>
<use xlink:href="#glyph0-16" x="1626.964" y="588.25376"/>
<use xlink:href="#glyph0-7" x="1644.064" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="1661.254" y="588.25376"/>
<use xlink:href="#glyph0-17" x="1675.654" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1690.054" y="588.25376"/>
<use xlink:href="#glyph0-11" x="1698.004" y="588.25376"/>
<use xlink:href="#glyph0-7" x="1715.944" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="1732.834" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1756.654" y="588.25376"/>
<use xlink:href="#glyph0-25" x="1764.604" y="588.25376"/>
<use xlink:href="#glyph0-2" x="1791.904" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="1809.574" y="588.25376"/>
<use xlink:href="#glyph0-10" x="1825.594" y="588.25376"/>
<use xlink:href="#glyph0-7" x="1833.244" y="588.25376"/>
<use xlink:href="#glyph0-4" x="1850.284" y="588.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-6" x="1081.613" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1092.443" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="1109.333" y="628.25376"/>
<use xlink:href="#glyph0-10" x="1125.353" y="628.25376"/>
<use xlink:href="#glyph0-7" x="1133.003" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="1149.893" y="628.25376"/>
<use xlink:href="#glyph0-17" x="1173.713" y="628.25376"/>
<use xlink:href="#glyph0-32" x="1188.113" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1196.573" y="628.25376"/>
<use xlink:href="#glyph0-13" x="1204.523" y="628.25376"/>
<use xlink:href="#glyph0-6" x="1215.173" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1226.303" y="628.25376"/>
<use xlink:href="#glyph0-10" x="1242.503" y="628.25376"/>
<use xlink:href="#glyph0-11" x="1250.153" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1268.093" y="628.25376"/>
<use xlink:href="#glyph0-13" x="1276.043" y="628.25376"/>
<use xlink:href="#glyph0-30" x="1286.693" y="628.25376"/>
<use xlink:href="#glyph0-7" x="1304.633" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1321.673" y="628.25376"/>
<use xlink:href="#glyph0-25" x="1329.623" y="628.25376"/>
<use xlink:href="#glyph0-2" x="1356.923" y="628.25376"/>
<use xlink:href="#glyph0-24" x="1375.043" y="628.25376"/>
<use xlink:href="#glyph0-7" x="1393.853" y="628.25376"/>
<use xlink:href="#glyph0-14" x="1410.893" y="628.25376"/>
<use xlink:href="#glyph0-32" x="1418.573" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1427.033" y="628.25376"/>
<use xlink:href="#glyph0-5" x="1434.983" y="628.25376"/>
<use xlink:href="#glyph0-11" x="1451.183" y="628.25376"/>
<use xlink:href="#glyph0-24" x="1469.123" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1487.933" y="628.25376"/>
<use xlink:href="#glyph0-16" x="1495.883" y="628.25376"/>
<use xlink:href="#glyph0-14" x="1512.983" y="628.25376"/>
<use xlink:href="#glyph0-5" x="1520.663" y="628.25376"/>
<use xlink:href="#glyph0-17" x="1536.863" y="628.25376"/>
<use xlink:href="#glyph0-17" x="1551.263" y="628.25376"/>
<use xlink:href="#glyph0-10" x="1565.663" y="628.25376"/>
<use xlink:href="#glyph0-26" x="1573.313" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-27" x="1583.993" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1599.863" y="628.25376"/>
<use xlink:href="#glyph0-11" x="1607.813" y="628.25376"/>
<use xlink:href="#glyph0-7" x="1625.753" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="1642.643" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1666.463" y="628.25376"/>
<use xlink:href="#glyph0-6" x="1674.413" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1685.243" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-28" x="1702.133" y="628.25376"/>
<use xlink:href="#glyph0-10" x="1718.153" y="628.25376"/>
<use xlink:href="#glyph0-7" x="1725.803" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="1742.693" y="628.25376"/>
<use xlink:href="#glyph0-17" x="1766.513" y="628.25376"/>
<use xlink:href="#glyph0-4" x="1780.913" y="628.25376"/>
<use xlink:href="#glyph0-5" x="1788.863" y="628.25376"/>
<use xlink:href="#glyph0-16" x="1805.063" y="628.25376"/>
<use xlink:href="#glyph0-16" x="1822.163" y="628.25376"/>
<use xlink:href="#glyph0-3" x="1839.263" y="628.25376"/>
<use xlink:href="#glyph0-6" x="1857.083" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1868.213" y="628.25376"/>
<use xlink:href="#glyph0-13" x="1884.413" y="628.25376"/>
<use xlink:href="#glyph0-7" x="1895.063" y="628.25376"/>
<use xlink:href="#glyph0-14" x="1912.103" y="628.25376"/>
<use xlink:href="#glyph0-27" x="1919.783" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="1933.553" y="628.25376"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-4" x="1942.013" y="628.25376"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="1129.791" y="397.8846"/>
<use xlink:href="#glyph2-2" x="1153.191" y="397.8846"/>
<use xlink:href="#glyph2-3" x="1170.801" y="397.8846"/>
<use xlink:href="#glyph2-2" x="1189.251" y="397.8846"/>
<use xlink:href="#glyph2-4" x="1206.861" y="397.8846"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="1218.861" y="397.8846"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="1235.721" y="397.8846"/>
<use xlink:href="#glyph2-2" x="1247.031" y="397.8846"/>
<use xlink:href="#glyph2-7" x="1264.641" y="397.8846"/>
<use xlink:href="#glyph2-8" x="1283.751" y="397.8846"/>
<use xlink:href="#glyph2-9" x="1290.411" y="397.8846"/>
<use xlink:href="#glyph2-4" x="1309.521" y="397.8846"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="1321.521" y="397.8846"/>
<use xlink:href="#glyph2-11" x="1340.001" y="397.8846"/>
<use xlink:href="#glyph2-12" x="1359.111" y="397.8846"/>
<use xlink:href="#glyph2-2" x="1367.511" y="397.8846"/>
<use xlink:href="#glyph2-13" x="1385.121" y="397.8846"/>
<use xlink:href="#glyph2-8" x="1412.811" y="397.8846"/>
<use xlink:href="#glyph2-14" x="1419.471" y="397.8846"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="1429.641" y="397.8846"/>
<use xlink:href="#glyph2-2" x="1448.751" y="397.8846"/>
<use xlink:href="#glyph2-6" x="1466.361" y="397.8846"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="1477.761" y="397.8846"/>
<use xlink:href="#glyph2-15" x="1494.681" y="397.8846"/>
<use xlink:href="#glyph2-12" x="1503.111" y="397.8846"/>
<use xlink:href="#glyph2-16" x="1511.511" y="397.8846"/>
<use xlink:href="#glyph2-8" x="1526.571" y="397.8846"/>
<use xlink:href="#glyph2-10" x="1533.231" y="397.8846"/>
<use xlink:href="#glyph2-13" x="1551.711" y="397.8846"/>
<use xlink:href="#glyph2-15" x="1579.401" y="397.8846"/>
<use xlink:href="#glyph2-6" x="1587.831" y="397.8846"/>
<use xlink:href="#glyph2-6" x="1599.141" y="397.8846"/>
<use xlink:href="#glyph2-2" x="1610.451" y="397.8846"/>
<use xlink:href="#glyph2-7" x="1628.061" y="397.8846"/>
<use xlink:href="#glyph2-17" x="1647.171" y="397.8846"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph3-1" x="1079.291" y="404.6344"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(95.68634%,95.68634%,95.68634%);fill-opacity:1;" d="M 76.3125 11.4375 L 563.386719 11.4375 C 585.21875 11.4375 598.316406 11.4375 607.046875 15.085938 C 619.636719 19.667969 629.554688 29.582031 634.132812 42.171875 C 637.78125 50.90625 637.78125 64.003906 637.78125 85.835938 L 637.78125 209.046875 C 637.78125 230.875 637.78125 243.976562 634.132812 252.707031 C 629.554688 265.296875 619.636719 275.214844 607.046875 279.792969 C 598.316406 283.441406 585.21875 283.441406 563.386719 283.441406 L 76.3125 283.441406 C 54.480469 283.441406 41.382812 283.441406 32.648438 279.792969 C 20.0625 275.214844 10.144531 265.296875 5.5625 252.707031 C 1.917969 243.976562 1.917969 230.875 1.917969 209.046875 L 1.917969 85.835938 C 1.917969 64.003906 1.917969 50.90625 5.5625 42.171875 C 10.144531 29.582031 20.0625 19.667969 32.648438 15.085938 C 41.382812 11.4375 54.480469 11.4375 76.3125 11.4375 Z M 76.3125 11.4375 "/>
<g clip-path="url(#clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(65.098572%,65.098572%,65.098572%);stroke-opacity:1;stroke-miterlimit:4;" d="M 74.39492 -0.0018 L 561.469139 -0.0018 C 583.297264 -0.0018 596.398826 -0.0018 605.129295 3.646637 C 617.719139 8.228669 627.637107 18.142731 632.215232 30.732575 C 635.86367 39.463044 635.86367 52.564606 635.86367 74.392731 L 635.86367 197.607575 C 635.86367 219.4357 635.86367 232.537262 632.215232 241.267731 C 627.637107 253.857575 617.719139 263.775544 605.129295 268.353669 C 596.398826 272.002106 583.297264 272.002106 561.469139 272.002106 L 74.39492 272.002106 C 52.562889 272.002106 39.465232 272.002106 30.730857 268.353669 C 18.14492 263.775544 8.226951 253.857575 3.64492 241.267731 C 0.00038875 232.537262 0.00038875 219.4357 0.00038875 197.607575 L 0.00038875 74.392731 C 0.00038875 52.564606 0.00038875 39.463044 3.64492 30.732575 C 8.226951 18.142731 18.14492 8.228669 30.730857 3.646637 C 39.465232 -0.0018 52.562889 -0.0018 74.39492 -0.0018 Z M 74.39492 -0.0018 " transform="matrix(1,0,0,1,1.91758,11.4393)"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="79.0936" y="144.348"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="97.3636" y="144.348"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="115.9036" y="144.348"/>
<use xlink:href="#glyph2-19" x="130.9636" y="144.348"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="153.5836" y="144.348"/>
<use xlink:href="#glyph2-20" x="171.1936" y="144.348"/>
<use xlink:href="#glyph2-21" x="190.2736" y="144.348"/>
<use xlink:href="#glyph2-9" x="199.0636" y="144.348"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-22" x="217.6936" y="144.348"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="33.59361" y="151.0978"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-20" x="79.0936" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="94.8436" y="198.1477"/>
<use xlink:href="#glyph0-12" x="112.9636" y="198.1477"/>
<use xlink:href="#glyph0-29" x="131.7736" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="139.4836" y="198.1477"/>
<use xlink:href="#glyph0-15" x="156.5836" y="198.1477"/>
<use xlink:href="#glyph0-15" x="175.3936" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="33.59361" y="204.8974"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-33" x="79.0936" y="251.9474"/>
<use xlink:href="#glyph0-6" x="102.1036" y="251.9474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="113.2336" y="251.9474"/>
<use xlink:href="#glyph0-11" x="129.4336" y="251.9474"/>
<use xlink:href="#glyph0-13" x="147.3736" y="251.9474"/>
<use xlink:href="#glyph0-34" x="158.0236" y="251.9474"/>
<use xlink:href="#glyph0-11" x="166.3336" y="251.9474"/>
<use xlink:href="#glyph0-26" x="184.2736" y="251.9474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="193.9036" y="251.9474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-29" x="211.2736" y="251.9474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="218.8336" y="251.9474"/>
<use xlink:href="#glyph0-17" x="229.4836" y="251.9474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="33.59361" y="258.6972"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="347.0643" y="144.348"/>
<use xlink:href="#glyph0-6" x="364.4943" y="144.348"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="375.3243" y="144.348"/>
<use xlink:href="#glyph0-12" x="393.4443" y="144.348"/>
<use xlink:href="#glyph0-6" x="412.2543" y="144.348"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="423.3843" y="144.348"/>
<use xlink:href="#glyph0-25" x="439.5843" y="144.348"/>
<use xlink:href="#glyph0-29" x="466.8843" y="144.348"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="474.5943" y="144.348"/>
<use xlink:href="#glyph0-17" x="491.6943" y="144.348"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="301.5643" y="151.0978"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-35" x="347.0643" y="198.1477"/>
<use xlink:href="#glyph0-13" x="365.8743" y="198.1477"/>
<use xlink:href="#glyph0-6" x="376.5243" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="387.3543" y="198.1477"/>
<use xlink:href="#glyph0-11" x="404.3943" y="198.1477"/>
<use xlink:href="#glyph0-12" x="422.3343" y="198.1477"/>
<use xlink:href="#glyph0-13" x="441.1443" y="198.1477"/>
<use xlink:href="#glyph0-30" x="451.7943" y="198.1477"/>
<use xlink:href="#glyph0-29" x="469.7343" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-17" x="478.0443" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-8" x="492.2943" y="198.1477"/>
<use xlink:href="#glyph0-10" x="516.1143" y="198.1477"/>
<use xlink:href="#glyph0-26" x="523.7643" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-13" x="534.2943" y="198.1477"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="301.5643" y="204.8974"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-36" x="347.0643" y="251.9474"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph4-1" x="301.5643" y="258.6972"/>
</g>
<use xlink:href="#image6" mask="url(#mask0)" transform="matrix(0.207638,0,0,0.207638,33.09361,32.00881)"/>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-23" x="97.57435" y="70.1753"/>
<use xlink:href="#glyph2-9" x="122.05435" y="70.1753"/>
<use xlink:href="#glyph2-2" x="141.16435" y="70.1753"/>
<use xlink:href="#glyph2-3" x="158.77435" y="70.1753"/>
<use xlink:href="#glyph2-24" x="177.22435" y="70.1753"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-16" x="188.20435" y="70.1753"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="203.32435" y="70.1753"/>
<use xlink:href="#glyph2-25" x="221.80435" y="70.1753"/>
<use xlink:href="#glyph2-4" x="240.16435" y="70.1753"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-26" x="252.16435" y="70.1753"/>
<use xlink:href="#glyph2-2" x="269.50435" y="70.1753"/>
<use xlink:href="#glyph2-8" x="287.11435" y="70.1753"/>
<use xlink:href="#glyph2-26" x="293.77435" y="70.1753"/>
<use xlink:href="#glyph2-10" x="311.11435" y="70.1753"/>
<use xlink:href="#glyph2-7" x="329.59435" y="70.1753"/>
<use xlink:href="#glyph2-2" x="348.70435" y="70.1753"/>
<use xlink:href="#glyph2-11" x="366.31435" y="70.1753"/>
<use xlink:href="#glyph2-5" x="385.42435" y="70.1753"/>
<use xlink:href="#glyph2-16" x="402.34435" y="70.1753"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="417.46435" y="70.1753"/>
</g>
<g clip-path="url(#clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(65.098572%,65.098572%,65.098572%);stroke-opacity:1;stroke-miterlimit:4;" d="M 0.00036875 0.00150625 L 42.691775 0.00150625 " transform="matrix(1,0,0,1,639.2926,147.4399)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098572%,65.098572%,65.098572%);fill-opacity:1;" d="M 680.484375 154.039062 L 693.683594 147.441406 L 680.484375 140.839844 Z M 680.484375 154.039062 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(96.078491%,96.078491%,96.078491%);fill-opacity:1;" d="M 725.757812 6.410156 L 1255.03125 6.410156 C 1264.003906 6.410156 1269.386719 6.410156 1272.972656 7.910156 C 1278.148438 9.792969 1282.222656 13.867188 1284.105469 19.042969 C 1285.605469 22.628906 1285.605469 28.011719 1285.605469 36.984375 L 1285.605469 257.894531 C 1285.605469 266.867188 1285.605469 272.25 1284.105469 275.839844 C 1282.222656 281.011719 1278.148438 285.085938 1272.972656 286.96875 C 1269.386719 288.46875 1264.003906 288.46875 1255.03125 288.46875 L 725.757812 288.46875 C 716.785156 288.46875 711.402344 288.46875 707.8125 286.96875 C 702.640625 285.085938 698.566406 281.011719 696.683594 275.839844 C 695.183594 272.25 695.183594 266.867188 695.183594 257.894531 L 695.183594 36.984375 C 695.183594 28.011719 695.183594 22.628906 696.683594 19.042969 C 698.566406 13.867188 702.640625 9.792969 707.8125 7.910156 C 711.402344 6.410156 716.785156 6.410156 725.757812 6.410156 Z M 725.757812 6.410156 "/>
<g clip-path="url(#clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(58.039856%,21.568298%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 30.573612 -0.00184375 L 559.84705 -0.00184375 C 568.819706 -0.00184375 574.202519 -0.00184375 577.788456 1.498156 C 582.964237 3.380969 587.038456 7.455188 588.921269 12.630969 C 590.421269 16.216906 590.421269 21.599719 590.421269 30.572375 L 590.421269 251.482531 C 590.421269 260.455188 590.421269 265.838 588.921269 269.427844 C 587.038456 274.599719 582.964237 278.673938 577.788456 280.55675 C 574.202519 282.05675 568.819706 282.05675 559.84705 282.05675 L 30.573612 282.05675 C 21.600956 282.05675 16.218144 282.05675 12.6283 280.55675 C 7.456425 278.673938 3.382206 274.599719 1.499394 269.427844 C -0.00060625 265.838 -0.00060625 260.455188 -0.00060625 251.482531 L -0.00060625 30.572375 C -0.00060625 21.599719 -0.00060625 16.216906 1.499394 12.630969 C 3.382206 7.455188 7.456425 3.380969 12.6283 1.498156 C 16.218144 -0.00184375 21.600956 -0.00184375 30.573612 -0.00184375 Z M 30.573612 -0.00184375 " transform="matrix(1,0,0,1,695.1842,6.412)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="716.6842" y="112.0693"/>
<use xlink:href="#glyph5-1" x="731.6842" y="112.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="746.6842" y="112.0693"/>
<use xlink:href="#glyph6-2" x="761.6842" y="112.0693"/>
<use xlink:href="#glyph6-3" x="776.6842" y="112.0693"/>
<use xlink:href="#glyph6-4" x="791.6842" y="112.0693"/>
<use xlink:href="#glyph6-5" x="806.6842" y="112.0693"/>
<use xlink:href="#glyph6-6" x="821.6842" y="112.0693"/>
<use xlink:href="#glyph6-7" x="836.6842" y="112.0693"/>
<use xlink:href="#glyph6-8" x="851.6842" y="112.0693"/>
<use xlink:href="#glyph6-9" x="866.6842" y="112.0693"/>
<use xlink:href="#glyph6-2" x="881.6842" y="112.0693"/>
<use xlink:href="#glyph6-1" x="896.6842" y="112.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="911.6842" y="112.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="926.6842" y="112.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="716.6842" y="144.0693"/>
<use xlink:href="#glyph5-1" x="731.6842" y="144.0693"/>
<use xlink:href="#glyph5-1" x="746.6842" y="144.0693"/>
<use xlink:href="#glyph5-1" x="761.6842" y="144.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="776.6842" y="144.0693"/>
<use xlink:href="#glyph6-11" x="791.6842" y="144.0693"/>
<use xlink:href="#glyph6-6" x="806.6842" y="144.0693"/>
<use xlink:href="#glyph6-12" x="821.6842" y="144.0693"/>
<use xlink:href="#glyph6-9" x="836.6842" y="144.0693"/>
<use xlink:href="#glyph6-11" x="851.6842" y="144.0693"/>
<use xlink:href="#glyph6-13" x="866.6842" y="144.0693"/>
<use xlink:href="#glyph6-14" x="881.6842" y="144.0693"/>
<use xlink:href="#glyph6-15" x="896.6842" y="144.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="911.6842" y="144.0693"/>
<use xlink:href="#glyph5-1" x="926.6842" y="144.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="941.6842" y="144.0693"/>
<use xlink:href="#glyph6-11" x="956.6842" y="144.0693"/>
<use xlink:href="#glyph6-6" x="971.6842" y="144.0693"/>
<use xlink:href="#glyph6-12" x="986.6842" y="144.0693"/>
<use xlink:href="#glyph6-9" x="1001.6842" y="144.0693"/>
<use xlink:href="#glyph6-11" x="1016.6842" y="144.0693"/>
<use xlink:href="#glyph6-16" x="1031.6842" y="144.0693"/>
<use xlink:href="#glyph6-17" x="1046.6842" y="144.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="1061.6842" y="144.0693"/>
<use xlink:href="#glyph5-1" x="1076.6842" y="144.0693"/>
<use xlink:href="#glyph5-4" x="1091.6842" y="144.0693"/>
<use xlink:href="#glyph5-5" x="1106.6842" y="144.0693"/>
<use xlink:href="#glyph5-6" x="1121.6842" y="144.0693"/>
<use xlink:href="#glyph5-7" x="1136.6842" y="144.0693"/>
<use xlink:href="#glyph5-8" x="1151.6842" y="144.0693"/>
<use xlink:href="#glyph5-4" x="1166.6842" y="144.0693"/>
<use xlink:href="#glyph5-9" x="1181.6842" y="144.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="1196.6842" y="144.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-10" x="716.6842" y="197.0693"/>
<use xlink:href="#glyph5-8" x="731.6842" y="197.0693"/>
<use xlink:href="#glyph5-11" x="746.6842" y="197.0693"/>
<use xlink:href="#glyph5-1" x="761.6842" y="197.0693"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-18" x="776.6842" y="197.0693"/>
<use xlink:href="#glyph6-2" x="791.6842" y="197.0693"/>
<use xlink:href="#glyph6-10" x="806.6842" y="197.0693"/>
<use xlink:href="#glyph6-6" x="821.6842" y="197.0693"/>
<use xlink:href="#glyph6-19" x="836.6842" y="197.0693"/>
<use xlink:href="#glyph6-1" x="851.6842" y="197.0693"/>
<use xlink:href="#glyph6-2" x="866.6842" y="197.0693"/>
<use xlink:href="#glyph6-3" x="881.6842" y="197.0693"/>
<use xlink:href="#glyph6-5" x="896.6842" y="197.0693"/>
<use xlink:href="#glyph6-6" x="911.6842" y="197.0693"/>
<use xlink:href="#glyph6-4" x="926.6842" y="197.0693"/>
<use xlink:href="#glyph6-2" x="941.6842" y="197.0693"/>
<use xlink:href="#glyph6-20" x="956.6842" y="197.0693"/>
<use xlink:href="#glyph6-12" x="971.6842" y="197.0693"/>
<use xlink:href="#glyph6-2" x="986.6842" y="197.0693"/>
<use xlink:href="#glyph6-21" x="1001.6842" y="197.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="1016.6842" y="197.0693"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-4" x="1031.6842" y="197.0693"/>
<use xlink:href="#glyph6-3" x="1046.6842" y="197.0693"/>
<use xlink:href="#glyph6-21" x="1061.6842" y="197.0693"/>
<use xlink:href="#glyph6-6" x="1076.6842" y="197.0693"/>
<use xlink:href="#glyph6-4" x="1091.6842" y="197.0693"/>
<use xlink:href="#glyph6-2" x="1106.6842" y="197.0693"/>
<use xlink:href="#glyph6-20" x="1121.6842" y="197.0693"/>
<use xlink:href="#glyph6-12" x="1136.6842" y="197.0693"/>
<use xlink:href="#glyph6-2" x="1151.6842" y="197.0693"/>
<use xlink:href="#glyph6-21" x="1166.6842" y="197.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="1181.6842" y="197.0693"/>
<use xlink:href="#glyph5-12" x="1196.6842" y="197.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="1211.6842" y="197.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="716.6842" y="229.0693"/>
<use xlink:href="#glyph5-1" x="731.6842" y="229.0693"/>
<use xlink:href="#glyph5-13" x="746.6842" y="229.0693"/>
<use xlink:href="#glyph5-8" x="761.6842" y="229.0693"/>
<use xlink:href="#glyph5-4" x="776.6842" y="229.0693"/>
<use xlink:href="#glyph5-4" x="791.6842" y="229.0693"/>
<use xlink:href="#glyph5-8" x="806.6842" y="229.0693"/>
<use xlink:href="#glyph5-6" x="821.6842" y="229.0693"/>
<use xlink:href="#glyph5-14" x="836.6842" y="229.0693"/>
<use xlink:href="#glyph5-15" x="851.6842" y="229.0693"/>
<use xlink:href="#glyph5-16" x="866.6842" y="229.0693"/>
<use xlink:href="#glyph5-17" x="881.6842" y="229.0693"/>
<use xlink:href="#glyph5-13" x="896.6842" y="229.0693"/>
<use xlink:href="#glyph5-18" x="911.6842" y="229.0693"/>
<use xlink:href="#glyph5-1" x="926.6842" y="229.0693"/>
<use xlink:href="#glyph5-19" x="941.6842" y="229.0693"/>
<use xlink:href="#glyph5-1" x="956.6842" y="229.0693"/>
<use xlink:href="#glyph5-6" x="971.6842" y="229.0693"/>
<use xlink:href="#glyph5-8" x="986.6842" y="229.0693"/>
<use xlink:href="#glyph5-20" x="1001.6842" y="229.0693"/>
<use xlink:href="#glyph5-14" x="1016.6842" y="229.0693"/>
<use xlink:href="#glyph5-21" x="1031.6842" y="229.0693"/>
<use xlink:href="#glyph5-22" x="1046.6842" y="229.0693"/>
<use xlink:href="#glyph5-2" x="1061.6842" y="229.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="1076.6842" y="229.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="717.1203" y="261.0693"/>
<use xlink:href="#glyph5-1" x="732.1203" y="261.0693"/>
<use xlink:href="#glyph5-1" x="747.1203" y="261.0693"/>
<use xlink:href="#glyph5-1" x="762.1203" y="261.0693"/>
<use xlink:href="#glyph5-23" x="777.1203" y="261.0693"/>
<use xlink:href="#glyph5-24" x="792.1203" y="261.0693"/>
<use xlink:href="#glyph5-25" x="807.1203" y="261.0693"/>
<use xlink:href="#glyph5-5" x="822.1203" y="261.0693"/>
<use xlink:href="#glyph5-26" x="837.1203" y="261.0693"/>
<use xlink:href="#glyph5-27" x="852.1203" y="261.0693"/>
<use xlink:href="#glyph5-28" x="867.1203" y="261.0693"/>
<use xlink:href="#glyph5-26" x="882.1203" y="261.0693"/>
<use xlink:href="#glyph5-29" x="897.1203" y="261.0693"/>
<use xlink:href="#glyph5-30" x="912.1203" y="261.0693"/>
<use xlink:href="#glyph5-23" x="927.1203" y="261.0693"/>
<use xlink:href="#glyph5-3" x="942.1203" y="261.0693"/>
<use xlink:href="#glyph5-1" x="957.1203" y="261.0693"/>
<use xlink:href="#glyph5-23" x="972.1203" y="261.0693"/>
<use xlink:href="#glyph5-1" x="987.1203" y="261.0693"/>
<use xlink:href="#glyph5-23" x="1002.1203" y="261.0693"/>
<use xlink:href="#glyph5-3" x="1017.1203" y="261.0693"/>
<use xlink:href="#glyph5-1" x="1032.1203" y="261.0693"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-4" x="1047.1203" y="261.0693"/>
<use xlink:href="#glyph6-3" x="1062.1203" y="261.0693"/>
<use xlink:href="#glyph6-21" x="1077.1203" y="261.0693"/>
<use xlink:href="#glyph6-6" x="1092.1203" y="261.0693"/>
<use xlink:href="#glyph6-4" x="1107.1203" y="261.0693"/>
<use xlink:href="#glyph6-2" x="1122.1203" y="261.0693"/>
<use xlink:href="#glyph6-20" x="1137.1203" y="261.0693"/>
<use xlink:href="#glyph6-12" x="1152.1203" y="261.0693"/>
<use xlink:href="#glyph6-2" x="1167.1203" y="261.0693"/>
<use xlink:href="#glyph6-21" x="1182.1203" y="261.0693"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="1197.1203" y="261.0693"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-27" x="759.6867" y="62.3817"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph2-2" x="778.9467" y="62.3817"/>
<use xlink:href="#glyph2-2" x="796.5567" y="62.3817"/>
<use xlink:href="#glyph2-7" x="814.1667" y="62.3817"/>
<use xlink:href="#glyph2-8" x="833.2767" y="62.3817"/>
<use xlink:href="#glyph2-26" x="839.9367" y="62.3817"/>
<use xlink:href="#glyph2-10" x="857.2767" y="62.3817"/>
<use xlink:href="#glyph2-7" x="875.7567" y="62.3817"/>
<use xlink:href="#glyph2-2" x="894.8667" y="62.3817"/>
<use xlink:href="#glyph2-8" x="912.4767" y="62.3817"/>
<use xlink:href="#glyph2-16" x="919.1367" y="62.3817"/>
<use xlink:href="#glyph2-3" x="934.1967" y="62.3817"/>
<use xlink:href="#glyph2-15" x="952.6467" y="62.3817"/>
<use xlink:href="#glyph2-9" x="961.0767" y="62.3817"/>
<use xlink:href="#glyph2-9" x="980.1867" y="62.3817"/>
<use xlink:href="#glyph2-2" x="999.2967" y="62.3817"/>
<use xlink:href="#glyph2-6" x="1016.9067" y="62.3817"/>
</g>
<g style="fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;">
<use xlink:href="#glyph3-2" x="714.1867" y="69.1314"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(96.078491%,96.078491%,96.078491%);fill-opacity:1;" d="M 1896.476562 71.820312 L 2113.152344 71.820312 C 2119.882812 71.820312 2123.917969 71.820312 2126.609375 72.945312 C 2130.488281 74.355469 2133.546875 77.410156 2134.960938 81.292969 C 2136.082031 83.984375 2136.082031 88.019531 2136.082031 94.75 L 2136.082031 200.128906 C 2136.082031 206.859375 2136.082031 210.894531 2134.960938 213.585938 C 2133.546875 217.46875 2130.488281 220.523438 2126.609375 221.9375 C 2123.917969 223.058594 2119.882812 223.058594 2113.152344 223.058594 L 1896.476562 223.058594 C 1889.746094 223.058594 1885.710938 223.058594 1883.015625 221.9375 C 1879.136719 220.523438 1876.082031 217.46875 1874.667969 213.585938 C 1873.546875 210.894531 1873.546875 206.859375 1873.546875 200.128906 L 1873.546875 94.75 C 1873.546875 88.019531 1873.546875 83.984375 1874.667969 81.292969 C 1876.082031 77.410156 1879.136719 74.355469 1883.015625 72.945312 C 1885.710938 71.820312 1889.746094 71.820312 1896.476562 71.820312 Z M 1896.476562 71.820312 "/>
<g clip-path="url(#clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(71.372986%,38.430786%,56.863403%);stroke-opacity:1;stroke-miterlimit:4;" d="M 22.931562 0.0006125 L 239.607344 0.0006125 C 246.337812 0.0006125 250.372969 0.0006125 253.064375 1.125613 C 256.943281 2.535769 260.001875 5.590456 261.412031 9.473269 C 262.537031 12.164675 262.537031 16.199831 262.537031 22.9303 L 262.537031 128.309206 C 262.537031 135.039675 262.537031 139.074831 261.412031 141.766238 C 260.001875 145.64905 256.943281 148.703738 253.064375 150.1178 C 250.372969 151.238894 246.337812 151.238894 239.607344 151.238894 L 22.931562 151.238894 C 16.201094 151.238894 12.162031 151.238894 9.470625 150.1178 C 5.591719 148.703738 2.537031 145.64905 1.122969 141.766238 C 0.001875 139.074831 0.001875 135.039675 0.001875 128.309206 L 0.001875 22.9303 C 0.001875 16.199831 0.001875 12.164675 1.122969 9.473269 C 2.537031 5.590456 5.591719 2.535769 9.470625 1.125613 C 12.162031 0.0006125 16.201094 0.0006125 22.931562 0.0006125 Z M 22.931562 0.0006125 " transform="matrix(1,0,0,1,1873.545,71.8197)"/>
</g>
<g clip-path="url(#clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(58.039856%,21.568298%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 42.718594 0.071525 L 41.218594 0.071525 L -0.00015625 0.0012125 " transform="matrix(1,0,0,1,1287.09,147.9441)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(58.039856%,21.568298%,100%);fill-opacity:1;" d="M 1328.296875 154.613281 L 1341.507812 148.035156 L 1328.320312 141.414062 Z M 1328.296875 154.613281 "/>
<g clip-path="url(#clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(71.372986%,38.430786%,56.863403%);stroke-opacity:1;stroke-miterlimit:4;" d="M 39.60075 -0.00028125 L 39.60075 277.8005 L 11.698406 277.8005 " transform="matrix(1,0,0,1,1965.118,224.512)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;" d="M 1978.316406 495.710938 L 1965.117188 502.3125 L 1978.316406 508.910156 Z M 1978.316406 495.710938 "/>
<g clip-path="url(#clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(71.372986%,38.430786%,56.863403%);stroke-opacity:1;stroke-miterlimit:4;" d="M 44.21075 0.0258438 L 42.71075 0.02975 L -0.0001875 0.131313 " transform="matrix(1,0,0,1,1816.133,147.7515)"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;" d="M 1858.859375 154.382812 L 1872.046875 147.75 L 1858.828125 141.183594 Z M 1858.859375 154.382812 "/>
<g clip-path="url(#clip9)" clip-rule="nonzero">
<g clip-path="url(#clip10)" clip-rule="nonzero">
<g clip-path="url(#clip11)" clip-rule="nonzero">
<path style=" stroke:none;fill-rule:nonzero;fill:url(#linear0);" d="M 1446.03125 279.578125 L 1446.03125 309.058594 L 1712.183594 309.058594 L 1712.183594 279.578125 Z M 1446.03125 279.578125 "/>
</g>
</g>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(96.862793%,90.196228%,96.862793%);fill-opacity:1;" d="M 1373.582031 39.101562 L 1784.066406 39.101562 C 1793.039062 39.101562 1798.421875 39.101562 1802.011719 40.601562 C 1807.183594 42.484375 1811.261719 46.558594 1813.144531 51.730469 C 1814.640625 55.320312 1814.640625 60.703125 1814.640625 69.675781 L 1814.640625 227.203125 C 1814.640625 236.175781 1814.640625 241.558594 1813.144531 245.148438 C 1811.261719 250.320312 1807.183594 254.394531 1802.011719 256.28125 C 1798.421875 257.777344 1793.039062 257.777344 1784.066406 257.777344 L 1373.582031 257.777344 C 1364.609375 257.777344 1359.226562 257.777344 1355.636719 256.28125 C 1350.464844 254.394531 1346.390625 250.320312 1344.507812 245.148438 C 1343.007812 241.558594 1343.007812 236.175781 1343.007812 227.203125 L 1343.007812 69.675781 C 1343.007812 60.703125 1343.007812 55.320312 1344.507812 51.730469 C 1346.390625 46.558594 1350.464844 42.484375 1355.636719 40.601562 C 1359.226562 39.101562 1364.609375 39.101562 1373.582031 39.101562 Z M 1373.582031 39.101562 "/>
<g clip-path="url(#clip12)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(71.372986%,38.430786%,56.863403%);stroke-opacity:1;stroke-miterlimit:4;" d="M 30.574031 -0.0006375 L 441.058406 -0.0006375 C 450.031062 -0.0006375 455.413875 -0.0006375 459.003719 1.499362 C 464.175594 3.382175 468.253719 7.456394 470.136531 12.628269 C 471.632625 16.218112 471.632625 21.600925 471.632625 30.573581 L 471.632625 188.100925 C 471.632625 197.073581 471.632625 202.456394 470.136531 206.046237 C 468.253719 211.218112 464.175594 215.292331 459.003719 217.17905 C 455.413875 218.675144 450.031062 218.675144 441.058406 218.675144 L 30.574031 218.675144 C 21.601375 218.675144 16.218562 218.675144 12.628719 217.17905 C 7.456844 215.292331 3.382625 211.218112 1.499812 206.046237 C -0.0001875 202.456394 -0.0001875 197.073581 -0.0001875 188.100925 L -0.0001875 30.573581 C -0.0001875 21.600925 -0.0001875 16.218112 1.499812 12.628269 C 3.382625 7.456394 7.456844 3.382175 12.628719 1.499362 C 16.218562 -0.0006375 21.601375 -0.0006375 30.574031 -0.0006375 Z M 30.574031 -0.0006375 " transform="matrix(1,0,0,1,1343.008,39.1022)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-21" x="1354.508" y="146.4024"/>
<use xlink:href="#glyph0-14" x="1371.938" y="146.4024"/>
<use xlink:href="#glyph0-7" x="1379.618" y="146.4024"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1396.808" y="146.4024"/>
<use xlink:href="#glyph0-17" x="1413.008" y="146.4024"/>
<use xlink:href="#glyph0-7" x="1427.408" y="146.4024"/>
<use xlink:href="#glyph0-4" x="1444.448" y="146.4024"/>
<use xlink:href="#glyph0-12" x="1452.398" y="146.4024"/>
<use xlink:href="#glyph0-5" x="1471.208" y="146.4024"/>
<use xlink:href="#glyph0-10" x="1487.408" y="146.4024"/>
<use xlink:href="#glyph0-11" x="1495.058" y="146.4024"/>
<use xlink:href="#glyph0-4" x="1512.998" y="146.4024"/>
<use xlink:href="#glyph0-10" x="1520.948" y="146.4024"/>
<use xlink:href="#glyph0-11" x="1528.598" y="146.4024"/>
<use xlink:href="#glyph0-17" x="1546.538" y="146.4024"/>
<use xlink:href="#glyph0-15" x="1560.938" y="146.4024"/>
<use xlink:href="#glyph0-10" x="1579.748" y="146.4024"/>
<use xlink:href="#glyph0-6" x="1587.398" y="146.4024"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1598.528" y="146.4024"/>
<use xlink:href="#glyph0-13" x="1614.728" y="146.4024"/>
<use xlink:href="#glyph0-10" x="1625.378" y="146.4024"/>
<use xlink:href="#glyph0-2" x="1633.028" y="146.4024"/>
<use xlink:href="#glyph0-11" x="1651.148" y="146.4024"/>
<use xlink:href="#glyph0-4" x="1669.088" y="146.4024"/>
<use xlink:href="#glyph0-26" x="1677.038" y="146.4024"/>
<use xlink:href="#glyph0-6" x="1687.418" y="146.4024"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1698.248" y="146.4024"/>
<use xlink:href="#glyph0-25" x="1716.368" y="146.4024"/>
<use xlink:href="#glyph0-4" x="1743.668" y="146.4024"/>
<use xlink:href="#glyph0-13" x="1751.618" y="146.4024"/>
<use xlink:href="#glyph0-30" x="1762.268" y="146.4024"/>
<use xlink:href="#glyph0-7" x="1780.208" y="146.4024"/>
<use xlink:href="#glyph0-4" x="1797.248" y="146.4024"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-16" x="1354.508" y="190.3724"/>
<use xlink:href="#glyph0-2" x="1371.608" y="190.3724"/>
<use xlink:href="#glyph0-24" x="1389.728" y="190.3724"/>
<use xlink:href="#glyph0-7" x="1408.538" y="190.3724"/>
<use xlink:href="#glyph0-4" x="1425.578" y="190.3724"/>
<use xlink:href="#glyph0-17" x="1433.528" y="190.3724"/>
<use xlink:href="#glyph0-11" x="1447.928" y="190.3724"/>
<use xlink:href="#glyph0-10" x="1465.868" y="190.3724"/>
<use xlink:href="#glyph0-15" x="1473.518" y="190.3724"/>
<use xlink:href="#glyph0-15" x="1492.328" y="190.3724"/>
<use xlink:href="#glyph0-7" x="1511.138" y="190.3724"/>
<use xlink:href="#glyph0-13" x="1528.178" y="190.3724"/>
<use xlink:href="#glyph0-4" x="1538.828" y="190.3724"/>
<use xlink:href="#glyph0-13" x="1546.778" y="190.3724"/>
<use xlink:href="#glyph0-2" x="1557.428" y="190.3724"/>
<use xlink:href="#glyph0-4" x="1575.548" y="190.3724"/>
<use xlink:href="#glyph0-16" x="1583.498" y="190.3724"/>
<use xlink:href="#glyph0-6" x="1600.598" y="190.3724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-7" x="1611.428" y="190.3724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1628.618" y="190.3724"/>
<use xlink:href="#glyph0-13" x="1644.818" y="190.3724"/>
<use xlink:href="#glyph0-7" x="1655.468" y="190.3724"/>
<use xlink:href="#glyph0-4" x="1672.508" y="190.3724"/>
<use xlink:href="#glyph0-5" x="1680.458" y="190.3724"/>
<use xlink:href="#glyph0-4" x="1696.658" y="190.3724"/>
<use xlink:href="#glyph0-30" x="1704.608" y="190.3724"/>
<use xlink:href="#glyph0-10" x="1722.548" y="190.3724"/>
<use xlink:href="#glyph0-12" x="1730.198" y="190.3724"/>
<use xlink:href="#glyph0-30" x="1749.008" y="190.3724"/>
<use xlink:href="#glyph0-37" x="1766.948" y="190.3724"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-38" x="1355.216" y="234.3424"/>
<use xlink:href="#glyph0-3" x="1374.026" y="234.3424"/>
<use xlink:href="#glyph0-5" x="1391.846" y="234.3424"/>
<use xlink:href="#glyph0-14" x="1408.046" y="234.3424"/>
<use xlink:href="#glyph0-10" x="1415.726" y="234.3424"/>
<use xlink:href="#glyph0-13" x="1423.376" y="234.3424"/>
<use xlink:href="#glyph0-27" x="1434.026" y="234.3424"/>
<use xlink:href="#glyph0-4" x="1449.896" y="234.3424"/>
<use xlink:href="#glyph0-15" x="1457.846" y="234.3424"/>
<use xlink:href="#glyph0-6" x="1476.656" y="234.3424"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1487.486" y="234.3424"/>
<use xlink:href="#glyph0-12" x="1505.606" y="234.3424"/>
<use xlink:href="#glyph0-6" x="1524.416" y="234.3424"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-5" x="1535.546" y="234.3424"/>
<use xlink:href="#glyph0-25" x="1551.746" y="234.3424"/>
<use xlink:href="#glyph0-25" x="1579.046" y="234.3424"/>
<use xlink:href="#glyph0-10" x="1606.346" y="234.3424"/>
<use xlink:href="#glyph0-11" x="1613.996" y="234.3424"/>
<use xlink:href="#glyph0-12" x="1631.936" y="234.3424"/>
<use xlink:href="#glyph0-4" x="1650.746" y="234.3424"/>
<use xlink:href="#glyph0-15" x="1658.696" y="234.3424"/>
<use xlink:href="#glyph0-6" x="1677.506" y="234.3424"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph0-2" x="1688.336" y="234.3424"/>
<use xlink:href="#glyph0-31" x="1706.456" y="234.3424"/>
<use xlink:href="#glyph0-14" x="1725.266" y="234.3424"/>
<use xlink:href="#glyph0-7" x="1732.946" y="234.3424"/>
<use xlink:href="#glyph0-25" x="1749.986" y="234.3424"/>
<use xlink:href="#glyph0-36" x="1777.286" y="234.3424"/>
</g>
<g style="fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;">
<use xlink:href="#glyph2-18" x="1408.503" y="90.9424"/>
<use xlink:href="#glyph2-4" x="1427.283" y="90.9424"/>
</g>
<g style="fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="1439.283" y="90.9424"/>
<use xlink:href="#glyph2-13" x="1457.763" y="90.9424"/>
<use xlink:href="#glyph2-9" x="1485.453" y="90.9424"/>
<use xlink:href="#glyph2-6" x="1504.563" y="90.9424"/>
<use xlink:href="#glyph2-8" x="1515.873" y="90.9424"/>
<use xlink:href="#glyph2-14" x="1522.533" y="90.9424"/>
</g>
<g style="fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="1532.703" y="90.9424"/>
<use xlink:href="#glyph2-2" x="1551.813" y="90.9424"/>
<use xlink:href="#glyph2-6" x="1569.423" y="90.9424"/>
</g>
<g style="fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="1580.823" y="90.9424"/>
<use xlink:href="#glyph2-15" x="1597.743" y="90.9424"/>
<use xlink:href="#glyph2-12" x="1606.173" y="90.9424"/>
<use xlink:href="#glyph2-16" x="1614.573" y="90.9424"/>
<use xlink:href="#glyph2-8" x="1629.633" y="90.9424"/>
<use xlink:href="#glyph2-10" x="1636.293" y="90.9424"/>
<use xlink:href="#glyph2-13" x="1654.773" y="90.9424"/>
<use xlink:href="#glyph2-15" x="1682.463" y="90.9424"/>
<use xlink:href="#glyph2-6" x="1690.893" y="90.9424"/>
<use xlink:href="#glyph2-6" x="1702.203" y="90.9424"/>
<use xlink:href="#glyph2-2" x="1713.513" y="90.9424"/>
<use xlink:href="#glyph2-7" x="1731.123" y="90.9424"/>
<use xlink:href="#glyph2-17" x="1750.233" y="90.9424"/>
</g>
<g style="fill:rgb(71.372986%,38.430786%,56.863403%);fill-opacity:1;">
<use xlink:href="#glyph3-3" x="1360.297" y="99.5692"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(96.078491%,96.078491%,96.078491%);fill-opacity:1;" d="M 33.992188 333.140625 L 969.445312 333.140625 C 978.417969 333.140625 983.800781 333.140625 987.390625 334.640625 C 992.5625 336.523438 996.640625 340.597656 998.523438 345.769531 C 1000.019531 349.359375 1000.019531 354.742188 1000.019531 363.714844 L 1000.019531 641.015625 C 1000.019531 649.988281 1000.019531 655.371094 998.523438 658.957031 C 996.640625 664.132812 992.5625 668.207031 987.390625 670.089844 C 983.800781 671.589844 978.417969 671.589844 969.445312 671.589844 L 33.992188 671.589844 C 25.019531 671.589844 19.636719 671.589844 16.046875 670.089844 C 10.875 668.207031 6.796875 664.132812 4.914062 658.957031 C 3.417969 655.371094 3.417969 649.988281 3.417969 641.015625 L 3.417969 363.714844 C 3.417969 354.742188 3.417969 349.359375 4.914062 345.769531 C 6.796875 340.597656 10.875 336.523438 16.046875 334.640625 C 19.636719 333.140625 25.019531 333.140625 33.992188 333.140625 Z M 33.992188 333.140625 "/>
<g clip-path="url(#clip13)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.392151%,9.803772%,57.647705%);stroke-opacity:1;stroke-miterlimit:4;" d="M 30.574607 -0.000175 L 966.027732 -0.000175 C 975.000389 -0.000175 980.383201 -0.000175 983.973045 1.499825 C 989.14492 3.382638 993.223045 7.456856 995.105857 12.628731 C 996.601951 16.218575 996.601951 21.601388 996.601951 30.574044 L 996.601951 307.874825 C 996.601951 316.847481 996.601951 322.230294 995.105857 325.816231 C 993.223045 330.992013 989.14492 335.066231 983.973045 336.949044 C 980.383201 338.449044 975.000389 338.449044 966.027732 338.449044 L 30.574607 338.449044 C 21.601951 338.449044 16.219139 338.449044 12.629295 336.949044 C 7.45742 335.066231 3.379295 330.992013 1.496482 325.816231 C 0.00038875 322.230294 0.00038875 316.847481 0.00038875 307.874825 L 0.00038875 30.574044 C 0.00038875 21.601388 0.00038875 16.218575 1.496482 12.628731 C 3.379295 7.456856 7.45742 3.382638 12.629295 1.499825 C 16.219139 -0.000175 21.601951 -0.000175 30.574607 -0.000175 Z M 30.574607 -0.000175 " transform="matrix(1,0,0,1,3.41758,333.1408)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-11" x="24.91758" y="441.9642"/>
<use xlink:href="#glyph5-6" x="39.91758" y="441.9642"/>
<use xlink:href="#glyph5-16" x="54.91758" y="441.9642"/>
<use xlink:href="#glyph5-31" x="69.91758" y="441.9642"/>
<use xlink:href="#glyph5-1" x="84.91758" y="441.9642"/>
<use xlink:href="#glyph5-14" x="99.91758" y="441.9642"/>
<use xlink:href="#glyph5-32" x="114.91758" y="441.9642"/>
<use xlink:href="#glyph5-13" x="129.91758" y="441.9642"/>
<use xlink:href="#glyph5-8" x="144.91758" y="441.9642"/>
<use xlink:href="#glyph5-5" x="159.91758" y="441.9642"/>
<use xlink:href="#glyph5-6" x="174.91758" y="441.9642"/>
<use xlink:href="#glyph5-17" x="189.91758" y="441.9642"/>
<use xlink:href="#glyph5-20" x="204.91758" y="441.9642"/>
<use xlink:href="#glyph5-11" x="219.91758" y="441.9642"/>
<use xlink:href="#glyph5-8" x="234.91758" y="441.9642"/>
<use xlink:href="#glyph5-5" x="249.91758" y="441.9642"/>
<use xlink:href="#glyph5-4" x="264.91758" y="441.9642"/>
<use xlink:href="#glyph5-21" x="279.91758" y="441.9642"/>
<use xlink:href="#glyph5-6" x="294.91758" y="441.9642"/>
<use xlink:href="#glyph5-8" x="309.91758" y="441.9642"/>
<use xlink:href="#glyph5-15" x="324.91758" y="441.9642"/>
<use xlink:href="#glyph5-8" x="339.91758" y="441.9642"/>
<use xlink:href="#glyph5-33" x="354.91758" y="441.9642"/>
<use xlink:href="#glyph5-4" x="369.91758" y="441.9642"/>
<use xlink:href="#glyph5-6" x="384.91758" y="441.9642"/>
<use xlink:href="#glyph5-5" x="399.91758" y="441.9642"/>
<use xlink:href="#glyph5-34" x="414.91758" y="441.9642"/>
<use xlink:href="#glyph5-4" x="429.91758" y="441.9642"/>
<use xlink:href="#glyph5-35" x="444.91758" y="441.9642"/>
<use xlink:href="#glyph5-16" x="459.91758" y="441.9642"/>
<use xlink:href="#glyph5-17" x="474.91758" y="441.9642"/>
<use xlink:href="#glyph5-20" x="489.91758" y="441.9642"/>
<use xlink:href="#glyph5-4" x="504.91758" y="441.9642"/>
<use xlink:href="#glyph5-8" x="519.91758" y="441.9642"/>
<use xlink:href="#glyph5-33" x="534.91758" y="441.9642"/>
<use xlink:href="#glyph5-4" x="549.91758" y="441.9642"/>
<use xlink:href="#glyph5-1" x="564.91758" y="441.9642"/>
<use xlink:href="#glyph5-35" x="579.91758" y="441.9642"/>
<use xlink:href="#glyph5-31" x="594.91758" y="441.9642"/>
<use xlink:href="#glyph5-36" x="609.91758" y="441.9642"/>
<use xlink:href="#glyph5-16" x="624.91758" y="441.9642"/>
<use xlink:href="#glyph5-6" x="639.91758" y="441.9642"/>
<use xlink:href="#glyph5-4" x="654.91758" y="441.9642"/>
<use xlink:href="#glyph5-1" x="669.91758" y="441.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-22" x="684.91758" y="441.9642"/>
<use xlink:href="#glyph6-11" x="699.91758" y="441.9642"/>
<use xlink:href="#glyph6-12" x="714.91758" y="441.9642"/>
<use xlink:href="#glyph6-9" x="729.91758" y="441.9642"/>
<use xlink:href="#glyph6-11" x="744.91758" y="441.9642"/>
<use xlink:href="#glyph6-14" x="759.91758" y="441.9642"/>
<use xlink:href="#glyph6-2" x="774.91758" y="441.9642"/>
<use xlink:href="#glyph6-19" x="789.91758" y="441.9642"/>
<use xlink:href="#glyph6-10" x="804.91758" y="441.9642"/>
<use xlink:href="#glyph6-8" x="819.91758" y="441.9642"/>
<use xlink:href="#glyph6-4" x="834.91758" y="441.9642"/>
<use xlink:href="#glyph6-12" x="849.91758" y="441.9642"/>
<use xlink:href="#glyph6-23" x="864.91758" y="441.9642"/>
<use xlink:href="#glyph6-2" x="879.91758" y="441.9642"/>
<use xlink:href="#glyph6-4" x="894.91758" y="441.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="909.91758" y="441.9642"/>
<use xlink:href="#glyph5-20" x="924.91758" y="441.9642"/>
<use xlink:href="#glyph5-20" x="939.91758" y="441.9642"/>
<use xlink:href="#glyph5-20" x="954.91758" y="441.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="969.91758" y="441.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-10" x="24.91758" y="494.9642"/>
<use xlink:href="#glyph5-8" x="39.91758" y="494.9642"/>
<use xlink:href="#glyph5-11" x="54.91758" y="494.9642"/>
<use xlink:href="#glyph5-1" x="69.91758" y="494.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-18" x="84.91758" y="494.9642"/>
<use xlink:href="#glyph6-2" x="99.91758" y="494.9642"/>
<use xlink:href="#glyph6-10" x="114.91758" y="494.9642"/>
<use xlink:href="#glyph6-6" x="129.91758" y="494.9642"/>
<use xlink:href="#glyph6-19" x="144.91758" y="494.9642"/>
<use xlink:href="#glyph6-1" x="159.91758" y="494.9642"/>
<use xlink:href="#glyph6-2" x="174.91758" y="494.9642"/>
<use xlink:href="#glyph6-3" x="189.91758" y="494.9642"/>
<use xlink:href="#glyph6-5" x="204.91758" y="494.9642"/>
<use xlink:href="#glyph6-6" x="219.91758" y="494.9642"/>
<use xlink:href="#glyph6-4" x="234.91758" y="494.9642"/>
<use xlink:href="#glyph6-2" x="249.91758" y="494.9642"/>
<use xlink:href="#glyph6-20" x="264.91758" y="494.9642"/>
<use xlink:href="#glyph6-12" x="279.91758" y="494.9642"/>
<use xlink:href="#glyph6-2" x="294.91758" y="494.9642"/>
<use xlink:href="#glyph6-21" x="309.91758" y="494.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="324.91758" y="494.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-4" x="339.91758" y="494.9642"/>
<use xlink:href="#glyph6-3" x="354.91758" y="494.9642"/>
<use xlink:href="#glyph6-21" x="369.91758" y="494.9642"/>
<use xlink:href="#glyph6-6" x="384.91758" y="494.9642"/>
<use xlink:href="#glyph6-4" x="399.91758" y="494.9642"/>
<use xlink:href="#glyph6-2" x="414.91758" y="494.9642"/>
<use xlink:href="#glyph6-20" x="429.91758" y="494.9642"/>
<use xlink:href="#glyph6-12" x="444.91758" y="494.9642"/>
<use xlink:href="#glyph6-2" x="459.91758" y="494.9642"/>
<use xlink:href="#glyph6-21" x="474.91758" y="494.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="489.91758" y="494.9642"/>
<use xlink:href="#glyph5-12" x="504.91758" y="494.9642"/>
<use xlink:href="#glyph5-1" x="519.91758" y="494.9642"/>
<use xlink:href="#glyph5-20" x="534.91758" y="494.9642"/>
<use xlink:href="#glyph5-20" x="549.91758" y="494.9642"/>
<use xlink:href="#glyph5-20" x="564.91758" y="494.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="579.91758" y="494.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-10" x="24.91758" y="526.9642"/>
<use xlink:href="#glyph5-8" x="39.91758" y="526.9642"/>
<use xlink:href="#glyph5-11" x="54.91758" y="526.9642"/>
<use xlink:href="#glyph5-1" x="69.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="84.91758" y="526.9642"/>
<use xlink:href="#glyph6-4" x="99.91758" y="526.9642"/>
<use xlink:href="#glyph6-3" x="114.91758" y="526.9642"/>
<use xlink:href="#glyph6-12" x="129.91758" y="526.9642"/>
<use xlink:href="#glyph6-5" x="144.91758" y="526.9642"/>
<use xlink:href="#glyph6-6" x="159.91758" y="526.9642"/>
<use xlink:href="#glyph6-7" x="174.91758" y="526.9642"/>
<use xlink:href="#glyph6-8" x="189.91758" y="526.9642"/>
<use xlink:href="#glyph6-9" x="204.91758" y="526.9642"/>
<use xlink:href="#glyph6-2" x="219.91758" y="526.9642"/>
<use xlink:href="#glyph6-1" x="234.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="249.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="264.91758" y="526.9642"/>
<use xlink:href="#glyph6-11" x="279.91758" y="526.9642"/>
<use xlink:href="#glyph6-6" x="294.91758" y="526.9642"/>
<use xlink:href="#glyph6-12" x="309.91758" y="526.9642"/>
<use xlink:href="#glyph6-9" x="324.91758" y="526.9642"/>
<use xlink:href="#glyph6-11" x="339.91758" y="526.9642"/>
<use xlink:href="#glyph6-13" x="354.91758" y="526.9642"/>
<use xlink:href="#glyph6-14" x="369.91758" y="526.9642"/>
<use xlink:href="#glyph6-15" x="384.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="399.91758" y="526.9642"/>
<use xlink:href="#glyph5-1" x="414.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="429.91758" y="526.9642"/>
<use xlink:href="#glyph6-11" x="444.91758" y="526.9642"/>
<use xlink:href="#glyph6-6" x="459.91758" y="526.9642"/>
<use xlink:href="#glyph6-12" x="474.91758" y="526.9642"/>
<use xlink:href="#glyph6-9" x="489.91758" y="526.9642"/>
<use xlink:href="#glyph6-11" x="504.91758" y="526.9642"/>
<use xlink:href="#glyph6-16" x="519.91758" y="526.9642"/>
<use xlink:href="#glyph6-17" x="534.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="549.91758" y="526.9642"/>
<use xlink:href="#glyph5-1" x="564.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-4" x="579.91758" y="526.9642"/>
<use xlink:href="#glyph6-2" x="594.91758" y="526.9642"/>
<use xlink:href="#glyph6-20" x="609.91758" y="526.9642"/>
<use xlink:href="#glyph6-12" x="624.91758" y="526.9642"/>
<use xlink:href="#glyph6-2" x="639.91758" y="526.9642"/>
<use xlink:href="#glyph6-21" x="654.91758" y="526.9642"/>
<use xlink:href="#glyph6-24" x="669.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="684.91758" y="526.9642"/>
<use xlink:href="#glyph5-1" x="699.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="714.91758" y="526.9642"/>
<use xlink:href="#glyph6-3" x="729.91758" y="526.9642"/>
<use xlink:href="#glyph6-25" x="744.91758" y="526.9642"/>
<use xlink:href="#glyph6-2" x="759.91758" y="526.9642"/>
<use xlink:href="#glyph6-1" x="774.91758" y="526.9642"/>
<use xlink:href="#glyph6-24" x="789.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="804.91758" y="526.9642"/>
<use xlink:href="#glyph5-12" x="819.91758" y="526.9642"/>
<use xlink:href="#glyph5-1" x="834.91758" y="526.9642"/>
<use xlink:href="#glyph5-20" x="849.91758" y="526.9642"/>
<use xlink:href="#glyph5-20" x="864.91758" y="526.9642"/>
<use xlink:href="#glyph5-20" x="879.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="894.91758" y="526.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-10" x="24.91758" y="558.9642"/>
<use xlink:href="#glyph5-8" x="39.91758" y="558.9642"/>
<use xlink:href="#glyph5-11" x="54.91758" y="558.9642"/>
<use xlink:href="#glyph5-1" x="69.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-19" x="84.91758" y="558.9642"/>
<use xlink:href="#glyph6-1" x="99.91758" y="558.9642"/>
<use xlink:href="#glyph6-3" x="114.91758" y="558.9642"/>
<use xlink:href="#glyph6-24" x="129.91758" y="558.9642"/>
<use xlink:href="#glyph6-24" x="144.91758" y="558.9642"/>
<use xlink:href="#glyph6-12" x="159.91758" y="558.9642"/>
<use xlink:href="#glyph6-11" x="174.91758" y="558.9642"/>
<use xlink:href="#glyph6-26" x="189.91758" y="558.9642"/>
<use xlink:href="#glyph6-6" x="204.91758" y="558.9642"/>
<use xlink:href="#glyph6-4" x="219.91758" y="558.9642"/>
<use xlink:href="#glyph6-2" x="234.91758" y="558.9642"/>
<use xlink:href="#glyph6-20" x="249.91758" y="558.9642"/>
<use xlink:href="#glyph6-12" x="264.91758" y="558.9642"/>
<use xlink:href="#glyph6-2" x="279.91758" y="558.9642"/>
<use xlink:href="#glyph6-21" x="294.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="309.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-19" x="324.91758" y="558.9642"/>
<use xlink:href="#glyph6-1" x="339.91758" y="558.9642"/>
<use xlink:href="#glyph6-2" x="354.91758" y="558.9642"/>
<use xlink:href="#glyph6-3" x="369.91758" y="558.9642"/>
<use xlink:href="#glyph6-5" x="384.91758" y="558.9642"/>
<use xlink:href="#glyph6-6" x="399.91758" y="558.9642"/>
<use xlink:href="#glyph6-4" x="414.91758" y="558.9642"/>
<use xlink:href="#glyph6-2" x="429.91758" y="558.9642"/>
<use xlink:href="#glyph6-20" x="444.91758" y="558.9642"/>
<use xlink:href="#glyph6-12" x="459.91758" y="558.9642"/>
<use xlink:href="#glyph6-2" x="474.91758" y="558.9642"/>
<use xlink:href="#glyph6-21" x="489.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="504.91758" y="558.9642"/>
<use xlink:href="#glyph5-1" x="519.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="534.91758" y="558.9642"/>
<use xlink:href="#glyph6-11" x="549.91758" y="558.9642"/>
<use xlink:href="#glyph6-6" x="564.91758" y="558.9642"/>
<use xlink:href="#glyph6-12" x="579.91758" y="558.9642"/>
<use xlink:href="#glyph6-9" x="594.91758" y="558.9642"/>
<use xlink:href="#glyph6-11" x="609.91758" y="558.9642"/>
<use xlink:href="#glyph6-13" x="624.91758" y="558.9642"/>
<use xlink:href="#glyph6-14" x="639.91758" y="558.9642"/>
<use xlink:href="#glyph6-15" x="654.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="669.91758" y="558.9642"/>
<use xlink:href="#glyph5-1" x="684.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="699.91758" y="558.9642"/>
<use xlink:href="#glyph6-11" x="714.91758" y="558.9642"/>
<use xlink:href="#glyph6-6" x="729.91758" y="558.9642"/>
<use xlink:href="#glyph6-12" x="744.91758" y="558.9642"/>
<use xlink:href="#glyph6-9" x="759.91758" y="558.9642"/>
<use xlink:href="#glyph6-11" x="774.91758" y="558.9642"/>
<use xlink:href="#glyph6-16" x="789.91758" y="558.9642"/>
<use xlink:href="#glyph6-17" x="804.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="819.91758" y="558.9642"/>
<use xlink:href="#glyph5-12" x="834.91758" y="558.9642"/>
<use xlink:href="#glyph5-1" x="849.91758" y="558.9642"/>
<use xlink:href="#glyph5-20" x="864.91758" y="558.9642"/>
<use xlink:href="#glyph5-20" x="879.91758" y="558.9642"/>
<use xlink:href="#glyph5-20" x="894.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-27" x="909.91758" y="558.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph7-1" x="24.91758" y="581.86422"/>
<use xlink:href="#glyph7-1" x="34.91758" y="581.86422"/>
<use xlink:href="#glyph7-1" x="44.91758" y="581.86422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph1-2" x="54.91758" y="581.86422"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="24.91758" y="611.9642"/>
<use xlink:href="#glyph6-4" x="39.91758" y="611.9642"/>
<use xlink:href="#glyph6-3" x="54.91758" y="611.9642"/>
<use xlink:href="#glyph6-12" x="69.91758" y="611.9642"/>
<use xlink:href="#glyph6-5" x="84.91758" y="611.9642"/>
<use xlink:href="#glyph6-6" x="99.91758" y="611.9642"/>
<use xlink:href="#glyph6-7" x="114.91758" y="611.9642"/>
<use xlink:href="#glyph6-8" x="129.91758" y="611.9642"/>
<use xlink:href="#glyph6-9" x="144.91758" y="611.9642"/>
<use xlink:href="#glyph6-2" x="159.91758" y="611.9642"/>
<use xlink:href="#glyph6-1" x="174.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="189.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="204.91758" y="611.9642"/>
<use xlink:href="#glyph6-11" x="219.91758" y="611.9642"/>
<use xlink:href="#glyph6-6" x="234.91758" y="611.9642"/>
<use xlink:href="#glyph6-12" x="249.91758" y="611.9642"/>
<use xlink:href="#glyph6-9" x="264.91758" y="611.9642"/>
<use xlink:href="#glyph6-11" x="279.91758" y="611.9642"/>
<use xlink:href="#glyph6-13" x="294.91758" y="611.9642"/>
<use xlink:href="#glyph6-14" x="309.91758" y="611.9642"/>
<use xlink:href="#glyph6-15" x="324.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="339.91758" y="611.9642"/>
<use xlink:href="#glyph5-1" x="354.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-10" x="369.91758" y="611.9642"/>
<use xlink:href="#glyph6-11" x="384.91758" y="611.9642"/>
<use xlink:href="#glyph6-6" x="399.91758" y="611.9642"/>
<use xlink:href="#glyph6-12" x="414.91758" y="611.9642"/>
<use xlink:href="#glyph6-9" x="429.91758" y="611.9642"/>
<use xlink:href="#glyph6-11" x="444.91758" y="611.9642"/>
<use xlink:href="#glyph6-16" x="459.91758" y="611.9642"/>
<use xlink:href="#glyph6-17" x="474.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="489.91758" y="611.9642"/>
<use xlink:href="#glyph5-1" x="504.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-4" x="519.91758" y="611.9642"/>
<use xlink:href="#glyph6-2" x="534.91758" y="611.9642"/>
<use xlink:href="#glyph6-20" x="549.91758" y="611.9642"/>
<use xlink:href="#glyph6-12" x="564.91758" y="611.9642"/>
<use xlink:href="#glyph6-2" x="579.91758" y="611.9642"/>
<use xlink:href="#glyph6-21" x="594.91758" y="611.9642"/>
<use xlink:href="#glyph6-24" x="609.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-3" x="624.91758" y="611.9642"/>
<use xlink:href="#glyph5-1" x="639.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph6-1" x="654.91758" y="611.9642"/>
<use xlink:href="#glyph6-3" x="669.91758" y="611.9642"/>
<use xlink:href="#glyph6-25" x="684.91758" y="611.9642"/>
<use xlink:href="#glyph6-2" x="699.91758" y="611.9642"/>
<use xlink:href="#glyph6-1" x="714.91758" y="611.9642"/>
<use xlink:href="#glyph6-24" x="729.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-9" x="744.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="759.91758" y="611.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-19" x="25.33509" y="643.9642"/>
<use xlink:href="#glyph6-1" x="40.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="55.33509" y="643.9642"/>
<use xlink:href="#glyph6-3" x="70.33509" y="643.9642"/>
<use xlink:href="#glyph6-5" x="85.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="100.33509" y="643.9642"/>
<use xlink:href="#glyph6-9" x="115.33509" y="643.9642"/>
<use xlink:href="#glyph6-6" x="130.33509" y="643.9642"/>
<use xlink:href="#glyph6-4" x="145.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="160.33509" y="643.9642"/>
<use xlink:href="#glyph6-20" x="175.33509" y="643.9642"/>
<use xlink:href="#glyph6-12" x="190.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="205.33509" y="643.9642"/>
<use xlink:href="#glyph6-21" x="220.33509" y="643.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="235.33509" y="643.9642"/>
<use xlink:href="#glyph5-19" x="250.33509" y="643.9642"/>
<use xlink:href="#glyph5-1" x="265.33509" y="643.9642"/>
</g>
<g style="fill:rgb(0%,48.234558%,49.01886%);fill-opacity:1;">
<use xlink:href="#glyph6-18" x="280.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="295.33509" y="643.9642"/>
<use xlink:href="#glyph6-10" x="310.33509" y="643.9642"/>
<use xlink:href="#glyph6-6" x="325.33509" y="643.9642"/>
<use xlink:href="#glyph6-19" x="340.33509" y="643.9642"/>
<use xlink:href="#glyph6-1" x="355.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="370.33509" y="643.9642"/>
<use xlink:href="#glyph6-3" x="385.33509" y="643.9642"/>
<use xlink:href="#glyph6-5" x="400.33509" y="643.9642"/>
<use xlink:href="#glyph6-6" x="415.33509" y="643.9642"/>
<use xlink:href="#glyph6-4" x="430.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="445.33509" y="643.9642"/>
<use xlink:href="#glyph6-20" x="460.33509" y="643.9642"/>
<use xlink:href="#glyph6-12" x="475.33509" y="643.9642"/>
<use xlink:href="#glyph6-2" x="490.33509" y="643.9642"/>
<use xlink:href="#glyph6-21" x="505.33509" y="643.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-2" x="520.33509" y="643.9642"/>
<use xlink:href="#glyph5-20" x="535.33509" y="643.9642"/>
<use xlink:href="#glyph5-20" x="550.33509" y="643.9642"/>
<use xlink:href="#glyph5-20" x="565.33509" y="643.9642"/>
<use xlink:href="#glyph5-9" x="580.33509" y="643.9642"/>
<use xlink:href="#glyph5-20" x="595.33509" y="643.9642"/>
<use xlink:href="#glyph5-20" x="610.33509" y="643.9642"/>
<use xlink:href="#glyph5-20" x="625.33509" y="643.9642"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph5-1" x="640.33509" y="643.9642"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-1" x="76.71325" y="389.2573"/>
<use xlink:href="#glyph2-2" x="100.11325" y="389.2573"/>
<use xlink:href="#glyph2-3" x="117.72325" y="389.2573"/>
<use xlink:href="#glyph2-2" x="136.17325" y="389.2573"/>
<use xlink:href="#glyph2-4" x="153.78325" y="389.2573"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="165.78325" y="389.2573"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-6" x="182.64325" y="389.2573"/>
<use xlink:href="#glyph2-2" x="193.95325" y="389.2573"/>
<use xlink:href="#glyph2-7" x="211.56325" y="389.2573"/>
<use xlink:href="#glyph2-8" x="230.67325" y="389.2573"/>
<use xlink:href="#glyph2-16" x="237.33325" y="389.2573"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-10" x="252.45325" y="389.2573"/>
<use xlink:href="#glyph2-12" x="270.93325" y="389.2573"/>
<use xlink:href="#glyph2-25" x="279.33325" y="389.2573"/>
<use xlink:href="#glyph2-6" x="297.69325" y="389.2573"/>
<use xlink:href="#glyph2-15" x="309.00325" y="389.2573"/>
<use xlink:href="#glyph2-10" x="317.43325" y="389.2573"/>
<use xlink:href="#glyph2-3" x="335.91325" y="389.2573"/>
<use xlink:href="#glyph2-8" x="354.36325" y="389.2573"/>
<use xlink:href="#glyph2-14" x="361.02325" y="389.2573"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-7" x="371.19325" y="389.2573"/>
<use xlink:href="#glyph2-2" x="390.30325" y="389.2573"/>
<use xlink:href="#glyph2-6" x="407.91325" y="389.2573"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph2-5" x="419.31325" y="389.2573"/>
<use xlink:href="#glyph2-15" x="436.23325" y="389.2573"/>
<use xlink:href="#glyph2-12" x="444.66325" y="389.2573"/>
<use xlink:href="#glyph2-16" x="453.06325" y="389.2573"/>
<use xlink:href="#glyph2-8" x="468.12325" y="389.2573"/>
<use xlink:href="#glyph2-10" x="474.78325" y="389.2573"/>
<use xlink:href="#glyph2-13" x="493.26325" y="389.2573"/>
<use xlink:href="#glyph2-15" x="520.95325" y="389.2573"/>
<use xlink:href="#glyph2-6" x="529.38325" y="389.2573"/>
<use xlink:href="#glyph2-6" x="540.69325" y="389.2573"/>
<use xlink:href="#glyph2-2" x="552.00325" y="389.2573"/>
<use xlink:href="#glyph2-7" x="569.61325" y="389.2573"/>
<use xlink:href="#glyph2-17" x="588.72325" y="389.2573"/>
</g>
<g style="fill:rgb(0.392151%,9.803772%,57.647705%);fill-opacity:1;">
<use xlink:href="#glyph3-4" x="26.21325" y="396.007"/>
</g>
<g clip-path="url(#clip14)" clip-rule="nonzero">
<path style="fill:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.392151%,9.803772%,57.647705%);stroke-opacity:1;stroke-miterlimit:4;" d="M 0.00071875 -0.00121875 L 56.934313 -0.00121875 " transform="matrix(1,0,0,1,1001.511,502.3645)"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph8-1" x="1887.836" y="182.4395"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-1" x="1965.036" y="140.6899"/>
<use xlink:href="#glyph9-2" x="1981.566" y="140.6899"/>
<use xlink:href="#glyph9-3" x="1998.216" y="140.6899"/>
<use xlink:href="#glyph9-4" x="2016.456" y="140.6899"/>
<use xlink:href="#glyph9-5" x="2035.446" y="140.6899"/>
<use xlink:href="#glyph9-2" x="2053.596" y="140.6899"/>
<use xlink:href="#glyph9-4" x="2070.246" y="140.6899"/>
<use xlink:href="#glyph9-6" x="2089.236" y="140.6899"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-7" x="2106.636" y="140.6899"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-8" x="1965.036" y="180.6899"/>
</g>
<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
<use xlink:href="#glyph9-9" x="1991.646" y="180.6899"/>
<use xlink:href="#glyph9-10" x="2009.976" y="180.6899"/>
<use xlink:href="#glyph9-6" x="2028.966" y="180.6899"/>
<use xlink:href="#glyph9-11" x="2046.366" y="180.6899"/>
</g>
</g>
</svg>
|