summaryrefslogtreecommitdiffstats
path: root/build-data
AgeCommit message (Collapse)AuthorFilesLines
2018-09-02Switch to cmakeDamjan Marion3-47/+0
Change-Id: I982b69390c55b5ffbd744f355efc0aaf425b360c Signed-off-by: Damjan Marion <damarion@cisco.com>
2018-09-01cmake: pass linker flags, use devtoolset on centos 7Damjan Marion1-8/+21
Change-Id: I8439fd070dc47a080e2df859c9f9ac67d8a08f04 Signed-off-by: Damjan Marion <damarion@cisco.com>
2018-08-17CMake as an alternative to autotools (experimental)Damjan Marion2-0/+19
Change-Id: Ibc59323e849810531dd0963e85493efad3b86857 Signed-off-by: Damjan Marion <damarion@cisco.com>
2018-08-01Move java api to extras/Damjan Marion3-2/+8
Change-Id: Ibd5cbbdfb22a235442cddaebc9eae9a3c4e35ec9 Signed-off-by: Damjan Marion <damarion@cisco.com>
2018-07-27-DCLIB_DEBUG => turn on extra checks in dlmallocDave Barach1-1/+2
Also: call os_panic() on a heap botch crash, attempt to generate a post-mortem API dump, etc. Add an "ugly" test case to vec_test.c, to cause a configurable block overrun. Change-Id: I7b29a7645277f9e485e06ff83335306fedc24b71 Signed-off-by: Dave Barach <dave@barachs.net>
2018-07-18Add config option to use dlmalloc instead of mheapDave Barach1-1/+3
Configure w/ --enable-dlmalloc, see .../build-data/platforms/vpp.mk src/vppinfra/dlmalloc.[ch] are slightly modified versions of the well-known Doug Lea malloc. Main advantage: dlmalloc mspaces have no inherent size limit. Change-Id: I19b3f43f3c65bcfb82c1a265a97922d01912446e Signed-off-by: Dave Barach <dave@barachs.net>
2018-06-04Enable Position Independent Executable for production VPPNeale Ranns1-1/+1
Change-Id: I0f81423b854be1dc456df696416e5f3747393208 Signed-off-by: Neale Ranns <nranns@cisco.com>
2018-05-28VPP-1284: Fix for TLS corruption on ARM platformsSachin Saxena1-2/+2
- The issue is appearing on ARM platofrms where DPDK drivers are also using __thread TLS vairables. - The issue was only appearing with dpdk as plgin to VPP and not if used as statically link with VPP. - Using traditional TLS scheme resolved the issue. Change-Id: Ifb4c667fdd217c2b1d79be8a541a2c983222d95a Signed-off-by: Sachin Saxena <sachin.saxena@nxp.com>
2018-05-16Fix broken compilation for non-numa aware platformsSachin Saxena2-1/+2
- The dpdk plugin always looks for libnuma library during compilation. For non-numa aware platforms compilation breaks, if third party libnuma lib is not available. - Issue is more severe with Cross Compilation scenario where one has to download and cross compile libnuma-dev package even when target platofrom is NUMA disabled. Like when cross compiling for ARM platforms, Linaro tool-chain doesn't have libnuma by default. Change-Id: Ib85b3188b787c23ba33b47e3f6123c74fd37190e Signed-off-by: Sachin Saxena <sachin.saxena@nxp.com>
2018-05-12dpdk: Add build related keywords for failsafe PMDRui Cai3-0/+9
Added build related keywords for TAP, FAILSAFE PMD and also added some missing keywords for mlx4 PMD This is part of initial effort to enable vpp running over dpdk on failsafe PMD in Microsoft Azure (1/4). Change-Id: I2aebf209fbc6db030185f41971b51a593a003a3a Signed-off-by: Rui Cai <rucai@microsoft.com>
2018-05-04build-data: Common makefile for NXP DPAA1/DPAA2 platformsSachin Saxena2-66/+87
- Same makefile will be used to support DPAA1 and DPAA2 platforms. - Support added to have both on Host compilation as well as Cross compilation. - If Cross compiling, by default NXP cutomized toolchain "aarch64-fsl-linux" will be used. To use Linaro toolchains, please set env variable CROSS_PREFIX. Like: export CROSS_PREFIX=aarch64-linux-gnu - Added CPU_MTUNE to modify xxx_mtune , if CPU is not A72 which is default. - You may set DPDK_PATH to dpdk installation folder, if wish to use locally compiled DPDK. - In case of Cross compilation, OPENSSL_PATH will be required to include OPENSSL libs. Change-Id: I9057dfc57522b60e306810f684b3085bfccf85e9 Signed-off-by: Sachin Saxena <sachin.saxena@nxp.com>
2018-04-27Move VOM to extras/vomDamjan Marion2-5/+7
Change-Id: Iea174f03dfba3bd06024db0f0cc373532300dcae Signed-off-by: Damjan Marion <damarion@cisco.com>
2018-03-28Build libmemif as part of verify jobDamjan Marion2-0/+4
Change-Id: I7e808b5bcbb74343a4ed6782f115ed07e9bfe3a6 Signed-off-by: Damjan Marion <damarion@cisco.com> Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
2018-03-15use system provided ccache linksDamjan Marion1-0/+1
Change-Id: I0860bbd0cf368fc3638b861504ebf642ee9d3807 Signed-off-by: Damjan Marion <damarion@cisco.com>
2018-03-12License text cleanupDave Barach9-0/+114
Change-Id: I105375c653b1a1dce8f0f71005b281ff137c6f42 Signed-off-by: Dave Barach <dave@barachs.net>
2018-01-30VPP-899: Run VPP under SELinuxBilly McFall1-0/+4
Add an SELinux profile such that VPP can run under SELinux on RPM based platforms. The SELinux Policy is currently only implemented for RPM packages, specifically, Fedora, CentOS and RHEL. Doxygen User Documentation has been included (selinux_doc.md). Once some discussion on file locations has completed (see vpp-devlist), updates to the Debug CLI documentation will also need to be updated. Additional changes: Patch Set 2: - Rework selinux_doc.md such that each line is only 80 characters instead of each sentence on a line. Made additonal minor chnages to the text. - Update vHost Debug CLI documentation to reflex new socket location. Cleaned up some text from when I originally wrote it, to better reflex proper use. - Update exec Debug CLI documentation to be more inline with suggested helptext, added text regarding recommended script file location. - For Debian builds, create the /var/log/vpp/ directory. I don't use Debian very much, so please pay extra attention to build-data/platforms.mk and build-root/deb/debian/.gitignore. - Per discussion on VPP call, changed the default log location to /var/log/vpp/vpp.log. - Changed the socket location for vHost in AutoConfig to /var/run/vpp/. Patch Set 3: - Update selinux_doc.md based on comments. Change-Id: I400520dc33f1ca51012d09ef8fe5a7b7b96c631e Signed-off-by: Billy McFall <bmcfall@redhat.com>
2018-01-23VPPAPIGEN: vppapigen replacement in Python PLY.Ole Troan1-0/+4
This is a version of the VPP API generator in Python PLY. It supports the existing language, and has a plugin architecture for generators. Currently C and JSON are supported. Changes: - vl_api_version to option version = "major.minor.patch" - enum support - Added error checking and reporting - import support (removed the C pre-processor) - services (tying request/reply together) Version: option version = "1.0.0"; Enum: enum colours { RED, BLUE = 50, }; define foo { vl_api_colours_t colours; }; Services: service { rpc foo returns foo_reply; rpc foo_dump returns stream foo_details; rpc want_stats returns want_stats_reply events ip4_counters, ip6_counters; }; Future planned features: - unions - bool, text - array support (including length) - proto3 output plugin - Refactor C/C++ generator as a plugin - Refactor Java generator as a plugin Change-Id: Ifa289966c790e1b1a8e2938a91e69331e3a58bdf Signed-off-by: Ole Troan <ot@cisco.com>
2018-01-10makefile set CXXFLAGS so they are propageted to sub-buildsNeale Ranns1-0/+3
Change-Id: I55d9953851062f7106c66701d46bcd9073cf1ee4 Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
2018-01-08Fix Debian Packaging on AARCH64Nitin Saxena1-1/+1
Error msg: pkg-shlibdeps: error: couldn't find library libvppinfra.so.0 needed by debian/vpp/usr/bin/vpp_json_test (ELF format: 'elf64-littleaarch64'; RPATH: '') dpkg-shlibdeps: error: couldn't find library libvppinfra.so.0 needed by debian/vpp/usr/bin/svmdbtool (ELF format: 'elf64-littleaarch64'; RPATH: '') ... Changes to create architecture specific folder in /usr/lib/ Change-Id: Id0e42b175348e32e2c72b404ff60eb87c9146968 Signed-off-by: Nitin Saxena <nsaxena@cavium.com>
2017-11-11Handle CPU flags from autotools projectDamjan Marion1-31/+13
Change-Id: Id085c1e3cbc7bf03df02755f9e35896cdb57e9e3 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-11-06Add --disable-vom config optionDave Barach1-1/+7
The vpp object model consumes more than half of the entire [initial] build time, so it's worth adding a config option. Change-Id: I86ad41f78160d93835804235b8b4a3fc7988f2f7 Signed-off-by: Dave Barach <dave@barachs.net>
2017-09-01The build system still builds the DPDK plugin when the optionMarco Varlese1-0/+2
vpp_uses_dpdk is set to "no" in build-data/platforms/vpp.mk causing the build to fail. This patch addresses that issue. Change-Id: Icc1aaa508e730c9b8715119e1259e4c82f974048 Signed-off-by: Marco Varlese <marco.varlese@suse.com>
2017-08-14dpdk: cleanup unused build option *_uses_dpdk_cryptodev_swSergio Gonzalez Monroy3-9/+0
Change-Id: I62939592bd3cb151e02c55a3f1ee6e7d1ce469cb Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
2017-07-17Fix unlinking of /dev/shm files.Dave Wallace1-1/+1
- api-segment prefix not used when unlinking shm files - unlink root region on exit if no clients referenced - stale reference to freed segment name - don't add fake client to /db unless CLIB_DEBUG > 2 - turn off the gmond plugin - clean up unused vars in vpp/api Change-Id: I66451fcfd6ee64a12466c2d6c209050e3cdb74b7 Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Signed-off-by: Dave Barach <dave@barachs.net>
2017-05-09Fix remaining 32-bit compile issuesDamjan Marion1-0/+5
Change-Id: I9664214652229b663c3e3ba7406b4ede96bfb123 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-05-03Fix vnet unit testsFilip Tehlar1-0/+4
Change-Id: Ibe55e4399c6b78d83268d7c49ed498cab7bfdb43 Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
2017-04-25Add support for 32-bit x86 compilation in MakefilesDamjan Marion1-2/+5
Change-Id: Ida73678b47b685abef4e81b5cad9fc13eb330850 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-04-20Extend ebuild to specify "configure" subdir, enable verify for sample-pluginDamjan Marion1-0/+5
Change-Id: I2056e5d19bc3713e7a13e015dabf3b2431800973 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-04-19Fix "make dist" to include version number, docouple it from rpm packagingDamjan Marion1-17/+0
Change-Id: If2f9976d668089026c97b897cf449bff09050631 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-03-27Python API: Fixup of debian package after cFFI changes.Ole Troan1-4/+0
Change-Id: I4c2a1a818f28d4c6cf52af45f3b7dbfa41d77ccb Signed-off-by: Ole Troan <ot@cisco.com>
2017-03-10Retire vpp_liteDamjan Marion2-55/+0
vpp_lite platform is not needed anymore as same efect can be achieved with following startup.conf config: plugins { plugin dpdk_plugin.so { disable } } Change-Id: I690ea8ceb1c6e1fe32e01e7da54e9958019a93bf Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-02-07Multiple platofrm support for dpdk/Makefile, fix optimizationsDamjan Marion3-51/+0
Using -march=native was causing SIGILLs on Atoms. Change-Id: I98c7fdaa139e3db70c972950dc9c167bf5803656 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-31Prep work for Coverity upload processing via JenkinsDave Barach1-0/+6
Change-Id: I2575d780d19e12ddf8a77e5596e5d7cc3dbf4233 Signed-off-by: Dave Barach <dave@barachs.net>
2017-01-27dpdk: rework cryptodev ipsec build and setupSergio Gonzalez Monroy3-6/+6
Build Cryptodev IPsec support by default when DPDK is enabled but only build hardware Cryptodev PMDs. To enable Cryptodev support, a new startup.conf option for dpdk has been introduced 'enable-cryptodev'. During VPP init, if Cryptodev support is not enabled or not enough cryptodev resources are available then default to OpenSSL ipsec implementation. Change-Id: I5aa7e0d5c2676bdb41d775ef40364536a081956d Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
2017-01-20Add dpdk development packagingDamjan Marion3-8/+5
Change-Id: I6aa2a6709241d99ce734c29e47487eb456907351 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-16Add --without-libssl configure parameterDamjan Marion4-10/+10
This replaces --without-ipsec and --without-ipv6sr and allows other parts of the code to be disabled if libssl is not available. Change-Id: Id97ff3685a7924d7f86622952e0405d94ceb5957 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-13vppctl: new bash completion for vppctl commandsPadraig Connolly1-0/+8
Bash completion for vppctl *vppctl_completion uses generated list vppctl-cmd-list to provide bash completion *List of commands generated using grep, then moved by vpp packaging *Once vpp package installed restart bash to use Change-Id: I3b25e55a432c395af421231cf7c37c2e243fee61 Signed-off-by: Padraig Connolly <padraig.connolly@intel.com>
2017-01-10Added a sub-case to take into Thunderx platformMarco1-0/+7
Change-Id: Ib440414693af6fe29ffaf78fc3b2992911afbcc6 Signed-off-by: Marco <marco.varlese@suse.com>
2017-01-10Revert "vppctl: bash completion for vppctl commands"Damjan Marion1-8/+0
This patch is causing build failures This reverts commit d995c757f05f78aa759b0a65c0a7e38088e690a9. Change-Id: I0c8d5a4208135d77aaa3a6a470d26140f7b74733 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-09vppctl: bash completion for vppctl commandsPadraig Connolly1-0/+8
Added bash completion that will include all commands from build time *Script takes list of commands generated by doxygen-siphon-list *Configured doxygen-siphon makefile to generate just cli commands *List of cli commands put in /usr/share/vpp *Stopped siphon using doxygen bootstrap, uses main bootstrap instead *Added rpm/deb check for installation of packages, separate from bootstrap *NOTE: Once you have installed the vpp .deb/.rpm package you will have to restart bash Change-Id: Ie503e80d5177481f6e7dbe59378f2e0d76f29152 Signed-off-by: Padraig Connolly <padraig.connolly@intel.com>
2017-01-03Do not require external vppapigen when not cross-compilingDamjan Marion1-1/+1
Change-Id: I80b8348ed4efd53d292c37a1ff69c13ee4741986 Signed-off-by: Damjan Marion <damarion@cisco.com>
2017-01-01Move java,lua api and remaining plugins to src/Damjan Marion6-100/+16
Change-Id: I1c3b87e886603678368428ae56a6bd3327cbc90d Signed-off-by: Damjan Marion <damarion@cisco.com>
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion22-332/+23
Change-Id: I7b51f88292e057c6443b12224486f2d0c9f8ae23 Signed-off-by: Damjan Marion <damarion@cisco.com>
2016-12-26dpdk: Add support for Mellanox ConnectX-4 devicesDamjan Marion4-0/+12
Due to external library dependency support for Mellanox devices is disabled. To enable it uncoment following line: vpp_uses_dpdk_mlx5_pmd = yes in build-data/platforms/vpp.mk and install OFED libraries. Change-Id: I131d52b5d449a958349f31f9cc04311948f78b71 Signed-off-by: Damjan Marion <damarion@cisco.com>
2016-12-09Add make test code coverage reporting using gcovJuraj Sloboda1-0/+5
Change-Id: Ia8247841fdbe76e1d888aab49ae213b4216af273 Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
2016-12-06Add "vpp-api-install" to plugins_configure_depend in ↵Andrew Yourtchenko1-1/+2
build-data/packages/plugins.mk As per Ole Troan mail https://lists.fd.io/pipermail/vpp-dev/2016-November/003296.html (message id <D3FB63FB-D144-4CBA-B4AB-CDE46B83D838@cisco.com>): Change-Id: I7f9d13c079505257bc8b37eecd8318cd360a56c3 Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
2016-12-02API: Packaging of JSON files.Ole Troan2-3/+13
Change-Id: If041b6faf1a091d4758b514f0a8cd800ee0e6a89 Signed-off-by: Ole Troan <ot@cisco.com> Signed-off-by: Ole Troan <otroan@ot-vpp.cisco.com> Signed-off-by: Ole Troan <ot@cisco.com>
2016-11-30Enabling AES-GCM-128 with 16B ICV supportRadu Nicolau1-0/+4
Change-Id: Ib57b6f6b71ba14952ad77477a4df3ab33b36fef4 Signed-off-by: Radu Nicolau <radu.nicolau@intel.com>
2016-11-30Start spliting vpe.api into logically related piecesDave Barach1-0/+23
To reduce rebase / manual merge pain, among other things Change-Id: I3186df0479066916a2ca69c48759178b45ef035c Signed-off-by: Dave Barach <dave@barachs.net> Signed-off-by: Ole Troan <ot@cisco.com>
2016-11-28dpdk: add ipsec cryptodev supportSergio Gonzalez Monroy4-0/+11
DPDK Cryptodev support and related IPsec ESP nodes using DPDK Cryptodev APIs. When DPDK Cryptodev support is enabled, the node graph is modified by adding and replacing some of the nodes. The following nodes are replaced: * esp-encrypt -> dpdk-esp-encrypt * esp-decrypt -> dpdk-esp-decrypt The following nodes are added: * dpdk-crypto-input : polling input node * dpdk-esp-encrypt-post : internal node * dpdk-esp-decrypt-post : internal node Change-Id: I6dca9a890abaf4fb2a4fffce3fd08ac013e4d701 Signed-off-by: Zhang, Roy Fan <roy.fan.zhang@intel.com> Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
'n1303' href='#n1303'>1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:cc="http://creativecommons.org/ns#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:svg="http://www.w3.org/2000/svg"
   xmlns="http://www.w3.org/2000/svg"
   xmlns:xlink="http://www.w3.org/1999/xlink"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="494.22736pt"
   height="290.56409pt"
   viewBox="0 0 494.22735 290.56409"
   version="1.2"
   id="svg1158"
   sodipodi:docname="NDR_60.svg"
   inkscape:version="0.92.1 r15371">
  <metadata
     id="metadata1162">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
        <dc:title></dc:title>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1"
     objecttolerance="10"
     gridtolerance="10"
     guidetolerance="10"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:window-width="1200"
     inkscape:window-height="1860"
     id="namedview1160"
     showgrid="false"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0"
     inkscape:zoom="0.21026372"
     inkscape:cx="-334.08376"
     inkscape:cy="220.87401"
     inkscape:window-x="0"
     inkscape:window-y="31"
     inkscape:window-maximized="1"
     inkscape:current-layer="svg1158" />
  <defs
     id="defs295">
    <g
       id="g278">
      <symbol
         overflow="visible"
         id="glyph0-0"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 2.859375,-3.796875 V 0 H 0.125 v -3.796875 z m -0.25,3.5625 v -3.3125 H 0.375 v 3.3125 z M 2.25,-2.5 c 0,0.117188 -0.023438,0.21875 -0.0625,0.3125 -0.03125,0.085938 -0.078125,0.15625 -0.140625,0.21875 -0.0625,0.0625 -0.136719,0.117188 -0.21875,0.15625 C 1.742188,-1.78125 1.65625,-1.765625 1.5625,-1.765625 L 1.546875,-1.3125 c 0,0.011719 -0.015625,0.023438 -0.046875,0.03125 -0.03125,0.011719 -0.074219,0.015625 -0.125,0.015625 -0.023438,0 -0.042969,0 -0.0625,0 -0.023438,0 -0.042969,0 -0.0625,0 -0.011719,-0.00781 -0.023438,-0.015625 -0.03125,-0.015625 0,-0.00781 0,-0.019531 0,-0.03125 L 1.203125,-1.859375 c 0,-0.0625 0.00781,-0.101563 0.03125,-0.125 0.03125,-0.019531 0.070313,-0.03125 0.125,-0.03125 H 1.40625 c 0.082031,0 0.15625,-0.00781 0.21875,-0.03125 0.0625,-0.03125 0.109375,-0.066406 0.140625,-0.109375 0.039063,-0.039062 0.066406,-0.085938 0.078125,-0.140625 0.019531,-0.0625 0.03125,-0.125 0.03125,-0.1875 0,-0.144531 -0.042969,-0.257813 -0.125,-0.34375 -0.085938,-0.082031 -0.214844,-0.125 -0.390625,-0.125 -0.074219,0 -0.140625,0.011719 -0.203125,0.03125 C 1.101562,-2.910156 1.050781,-2.894531 1,-2.875 c -0.042969,0.023438 -0.078125,0.042969 -0.109375,0.0625 -0.023437,0.011719 -0.042969,0.015625 -0.0625,0.015625 0,0 -0.007813,0 -0.015625,0 0,-0.00781 -0.007812,-0.019531 -0.015625,-0.03125 C 0.785156,-2.835938 0.78125,-2.851562 0.78125,-2.875 c 0,-0.019531 0,-0.046875 0,-0.078125 0,-0.03125 0,-0.054687 0,-0.078125 C 0.789062,-3.050781 0.800781,-3.066406 0.8125,-3.078125 0.832031,-3.097656 0.859375,-3.113281 0.890625,-3.125 0.929688,-3.144531 0.976562,-3.160156 1.03125,-3.171875 1.082031,-3.191406 1.140625,-3.207031 1.203125,-3.21875 1.273438,-3.238281 1.34375,-3.25 1.40625,-3.25 c 0.144531,0 0.269531,0.023438 0.375,0.0625 0.113281,0.042969 0.203125,0.101562 0.265625,0.171875 C 2.109375,-2.953125 2.15625,-2.875 2.1875,-2.78125 2.226562,-2.695312 2.25,-2.601562 2.25,-2.5 Z m -0.640625,1.703125 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.023438 -0.011719,0.042969 -0.03125,0.0625 -0.023438,0.011719 -0.046875,0.023438 -0.078125,0.03125 -0.023437,0.011719 -0.054687,0.015625 -0.09375,0.015625 -0.042969,0 -0.078125,-0.003906 -0.109375,-0.015625 C 1.257812,-0.601562 1.238281,-0.613281 1.21875,-0.625 1.195312,-0.644531 1.179688,-0.664062 1.171875,-0.6875 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.039063 0,-0.078125 0,-0.109375 C 1.179688,-0.9375 1.195312,-0.957031 1.21875,-0.96875 1.238281,-0.988281 1.257812,-1 1.28125,-1 c 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.03125,0 0.054687,0.011719 0.078125,0.03125 0.019531,0.011719 0.03125,0.03125 0.03125,0.0625 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 z M 0,1.15625 Z m 0,0"
           id="path2"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-1"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.671875,-1.078125 c 0,0.167969 -0.03125,0.324219 -0.09375,0.46875 C 2.523438,-0.472656 2.441406,-0.351562 2.328125,-0.25 2.210938,-0.15625 2.070312,-0.078125 1.90625,-0.015625 1.738281,0.0351562 1.550781,0.0625 1.34375,0.0625 1.21875,0.0625 1.097656,0.0507812 0.984375,0.03125 0.878906,0.0078125 0.78125,-0.015625 0.6875,-0.046875 0.601562,-0.078125 0.53125,-0.109375 0.46875,-0.140625 0.414062,-0.171875 0.382812,-0.191406 0.375,-0.203125 0.363281,-0.210938 0.351562,-0.222656 0.34375,-0.234375 0.332031,-0.253906 0.320312,-0.273438 0.3125,-0.296875 c 0,-0.019531 -0.007812,-0.039063 -0.015625,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.070312 0.003906,-0.117188 0.015625,-0.140625 0.019531,-0.03125 0.039062,-0.046875 0.0625,-0.046875 0.019531,0 0.054688,0.015625 0.109375,0.046875 0.050781,0.03125 0.117187,0.070313 0.203125,0.109375 0.082031,0.03125 0.175781,0.0625 0.28125,0.09375 0.101562,0.03125 0.222656,0.046875 0.359375,0.046875 0.132813,0 0.25,-0.015625 0.34375,-0.046875 0.09375,-0.03125 0.171875,-0.078125 0.234375,-0.140625 0.070312,-0.0625 0.125,-0.132813 0.15625,-0.21875 0.03125,-0.082031 0.046875,-0.171875 0.046875,-0.265625 0,-0.113281 -0.023437,-0.210938 -0.0625,-0.296875 -0.042969,-0.082031 -0.105469,-0.15625 -0.1875,-0.21875 C 1.785156,-1.609375 1.6875,-1.65625 1.5625,-1.6875 1.445312,-1.726562 1.316406,-1.75 1.171875,-1.75 H 0.8125 c -0.023438,0 -0.042969,0 -0.0625,0 C 0.738281,-1.757812 0.726562,-1.769531 0.71875,-1.78125 0.707031,-1.800781 0.695312,-1.820312 0.6875,-1.84375 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054687 0,-0.078125 C 0.695312,-2.0625 0.707031,-2.082031 0.71875,-2.09375 0.726562,-2.113281 0.738281,-2.125 0.75,-2.125 0.769531,-2.132812 0.785156,-2.140625 0.796875,-2.140625 h 0.34375 c 0.125,0 0.238281,-0.015625 0.34375,-0.046875 0.101563,-0.03125 0.1875,-0.078125 0.25,-0.140625 0.070313,-0.0625 0.128906,-0.132813 0.171875,-0.21875 0.039062,-0.09375 0.0625,-0.191406 0.0625,-0.296875 0,-0.082031 -0.015625,-0.160156 -0.046875,-0.234375 C 1.898438,-3.148438 1.863281,-3.210938 1.8125,-3.265625 1.757812,-3.316406 1.691406,-3.359375 1.609375,-3.390625 1.535156,-3.421875 1.445312,-3.4375 1.34375,-3.4375 c -0.117188,0 -0.21875,0.023438 -0.3125,0.0625 -0.09375,0.03125 -0.179688,0.070312 -0.25,0.109375 -0.074219,0.03125 -0.136719,0.070313 -0.1875,0.109375 -0.054688,0.03125 -0.089844,0.046875 -0.109375,0.046875 -0.011719,0 -0.023437,0 -0.03125,0 -0.011719,-0.00781 -0.023437,-0.019531 -0.03125,-0.03125 0,-0.019531 -0.007813,-0.039063 -0.015625,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 C 0.429688,-3.457031 0.4375,-3.472656 0.4375,-3.484375 0.445312,-3.503906 0.460938,-3.519531 0.484375,-3.53125 0.503906,-3.550781 0.539062,-3.578125 0.59375,-3.609375 0.65625,-3.648438 0.722656,-3.6875 0.796875,-3.71875 0.878906,-3.757812 0.972656,-3.789062 1.078125,-3.8125 1.191406,-3.832031 1.3125,-3.84375 1.4375,-3.84375 c 0.175781,0 0.332031,0.023438 0.46875,0.0625 0.132812,0.042969 0.242188,0.105469 0.328125,0.1875 0.09375,0.085938 0.160156,0.183594 0.203125,0.296875 0.039062,0.117187 0.0625,0.242187 0.0625,0.375 0,0.125 -0.015625,0.242187 -0.046875,0.34375 C 2.421875,-2.472656 2.375,-2.378906 2.3125,-2.296875 2.257812,-2.222656 2.1875,-2.160156 2.09375,-2.109375 2.007812,-2.054688 1.910156,-2.019531 1.796875,-2 v 0.015625 c 0.125,0.011719 0.238281,0.042969 0.34375,0.09375 0.113281,0.054687 0.207031,0.121094 0.28125,0.203125 0.082031,0.074219 0.144531,0.164062 0.1875,0.265625 0.039063,0.105469 0.0625,0.21875 0.0625,0.34375 z m 0,0"
           id="path5"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-2"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.078125,-0.3125 c 0,0.136719 -0.027344,0.2304688 -0.078125,0.28125 -0.042969,0.0390625 -0.125,0.0625 -0.25,0.0625 -0.117188,0 -0.199219,-0.0234375 -0.25,-0.0625 -0.042969,-0.0507812 -0.0625,-0.144531 -0.0625,-0.28125 0,-0.132812 0.019531,-0.222656 0.0625,-0.265625 0.050781,-0.050781 0.140625,-0.078125 0.265625,-0.078125 0.113281,0 0.191406,0.027344 0.234375,0.078125 0.050781,0.042969 0.078125,0.132813 0.078125,0.265625 z m 0,0"
           id="path8"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-3"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.703125,-0.21875 c 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 0,0.03125 -0.00781,0.0585938 -0.015625,0.078125 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 2.628906,-0.00390625 2.613281,0 2.59375,0 H 0.5 C 0.46875,0 0.441406,0 0.421875,0 0.410156,-0.0078125 0.394531,-0.0195312 0.375,-0.03125 0.363281,-0.0507812 0.351562,-0.078125 0.34375,-0.109375 0.332031,-0.140625 0.328125,-0.175781 0.328125,-0.21875 c 0,-0.039062 0,-0.070312 0,-0.09375 0.007813,-0.03125 0.019531,-0.054688 0.03125,-0.078125 0.007813,-0.03125 0.019531,-0.054687 0.03125,-0.078125 0.019531,-0.019531 0.039063,-0.046875 0.0625,-0.078125 L 1.1875,-1.3125 C 1.351562,-1.5 1.488281,-1.660156 1.59375,-1.796875 1.695312,-1.941406 1.773438,-2.070312 1.828125,-2.1875 c 0.0625,-0.125 0.097656,-0.234375 0.109375,-0.328125 0.019531,-0.09375 0.03125,-0.179687 0.03125,-0.265625 0,-0.082031 -0.015625,-0.160156 -0.046875,-0.234375 C 1.898438,-3.085938 1.863281,-3.148438 1.8125,-3.203125 1.757812,-3.265625 1.691406,-3.3125 1.609375,-3.34375 1.535156,-3.382812 1.445312,-3.40625 1.34375,-3.40625 c -0.117188,0 -0.226562,0.023438 -0.328125,0.0625 -0.09375,0.03125 -0.179687,0.070312 -0.25,0.109375 -0.0625,0.03125 -0.121094,0.070313 -0.171875,0.109375 -0.042969,0.03125 -0.078125,0.046875 -0.109375,0.046875 -0.011719,0 -0.023437,-0.00391 -0.03125,-0.015625 -0.011719,-0.00781 -0.023437,-0.019531 -0.03125,-0.03125 0,-0.019531 -0.007813,-0.046875 -0.015625,-0.078125 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.019531 0,-0.035156 0,-0.046875 C 0.414062,-3.457031 0.425781,-3.472656 0.4375,-3.484375 0.445312,-3.492188 0.460938,-3.507812 0.484375,-3.53125 0.503906,-3.550781 0.539062,-3.578125 0.59375,-3.609375 0.65625,-3.648438 0.726562,-3.6875 0.8125,-3.71875 0.90625,-3.757812 1.003906,-3.789062 1.109375,-3.8125 1.210938,-3.832031 1.320312,-3.84375 1.4375,-3.84375 c 0.1875,0 0.347656,0.027344 0.484375,0.078125 0.132813,0.054687 0.25,0.125 0.34375,0.21875 0.09375,0.085937 0.160156,0.1875 0.203125,0.3125 0.039062,0.117187 0.0625,0.242187 0.0625,0.375 C 2.53125,-2.742188 2.519531,-2.625 2.5,-2.5 2.476562,-2.382812 2.429688,-2.253906 2.359375,-2.109375 2.296875,-1.972656 2.195312,-1.816406 2.0625,-1.640625 1.9375,-1.472656 1.765625,-1.28125 1.546875,-1.0625 L 0.9375,-0.421875 h 1.65625 c 0.00781,0 0.019531,0.007813 0.03125,0.015625 0.019531,0 0.035156,0.011719 0.046875,0.03125 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 z m 0,0"
           id="path11"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-4"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.875,-1.078125 c 0,0.0625 -0.011719,0.117187 -0.03125,0.15625 C 2.820312,-0.890625 2.789062,-0.875 2.75,-0.875 H 2.328125 v 0.796875 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 2.3125,-0.0195312 2.300781,-0.0078125 2.28125,0 2.257812,0 2.234375,0 2.203125,0 2.171875,0.0078125 2.128906,0.015625 2.078125,0.015625 2.035156,0.015625 2,0.0078125 1.96875,0 1.9375,0 1.910156,0 1.890625,0 1.867188,-0.0078125 1.851562,-0.0195312 1.84375,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 V -0.875 h -1.5625 c -0.03125,0 -0.058594,0 -0.078125,0 -0.011719,-0.007812 -0.023437,-0.019531 -0.03125,-0.03125 -0.011719,-0.019531 -0.023437,-0.039062 -0.03125,-0.0625 0,-0.03125 0,-0.070312 0,-0.125 0,-0.039062 0,-0.070312 0,-0.09375 0,-0.03125 0.003906,-0.054688 0.015625,-0.078125 0.007812,-0.03125 0.015625,-0.054687 0.015625,-0.078125 0.007813,-0.019531 0.023437,-0.046875 0.046875,-0.078125 L 1.578125,-3.71875 C 1.585938,-3.726562 1.601562,-3.738281 1.625,-3.75 c 0.019531,-0.019531 0.039062,-0.03125 0.0625,-0.03125 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0.011719 0.050781,0.023438 0.0625,0.03125 0.019531,0.011719 0.03125,0.027344 0.03125,0.046875 V -1.28125 H 2.75 c 0.039062,0 0.070312,0.015625 0.09375,0.046875 0.019531,0.03125 0.03125,0.085937 0.03125,0.15625 z M 1.84375,-3.359375 H 1.828125 L 0.59375,-1.28125 h 1.25 z m 0,0"
           id="path14"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-5"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.6875,-1.21875 c 0,0.199219 -0.039062,0.382812 -0.109375,0.546875 -0.0625,0.15625 -0.15625,0.292969 -0.28125,0.40625 -0.125,0.105469 -0.277344,0.1875 -0.453125,0.25 C 1.675781,0.0351562 1.488281,0.0625 1.28125,0.0625 1.15625,0.0625 1.039062,0.0507812 0.9375,0.03125 0.832031,0.0078125 0.738281,-0.0078125 0.65625,-0.03125 0.570312,-0.0507812 0.503906,-0.0703125 0.453125,-0.09375 0.398438,-0.125 0.363281,-0.144531 0.34375,-0.15625 0.332031,-0.164062 0.320312,-0.175781 0.3125,-0.1875 c 0,-0.019531 -0.007812,-0.035156 -0.015625,-0.046875 0,-0.019531 0,-0.039063 0,-0.0625 0,-0.03125 0,-0.0625 0,-0.09375 0,-0.03125 0,-0.054687 0,-0.078125 C 0.304688,-0.5 0.3125,-0.523438 0.3125,-0.546875 0.320312,-0.566406 0.332031,-0.578125 0.34375,-0.578125 0.351562,-0.585938 0.363281,-0.59375 0.375,-0.59375 c 0.019531,0 0.050781,0.015625 0.09375,0.046875 C 0.507812,-0.523438 0.5625,-0.5 0.625,-0.46875 c 0.070312,0.023438 0.160156,0.046875 0.265625,0.078125 0.101563,0.023437 0.226563,0.03125 0.375,0.03125 0.125,0 0.238281,-0.015625 0.34375,-0.046875 0.113281,-0.03125 0.207031,-0.078125 0.28125,-0.140625 0.082031,-0.070313 0.144531,-0.15625 0.1875,-0.25 0.050781,-0.101563 0.078125,-0.226563 0.078125,-0.375 0,-0.125 -0.023438,-0.226563 -0.0625,-0.3125 C 2.0625,-1.578125 2.003906,-1.65625 1.921875,-1.71875 1.847656,-1.78125 1.75,-1.828125 1.625,-1.859375 1.5,-1.890625 1.351562,-1.90625 1.1875,-1.90625 c -0.117188,0 -0.21875,0.00781 -0.3125,0.015625 C 0.789062,-1.878906 0.710938,-1.875 0.640625,-1.875 c -0.054687,0 -0.09375,-0.00781 -0.125,-0.03125 C 0.492188,-1.9375 0.484375,-1.988281 0.484375,-2.0625 V -3.59375 C 0.484375,-3.664062 0.5,-3.71875 0.53125,-3.75 0.5625,-3.78125 0.609375,-3.796875 0.671875,-3.796875 H 2.34375 c 0.019531,0 0.035156,0.00781 0.046875,0.015625 0.00781,0.011719 0.019531,0.027344 0.03125,0.046875 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.03125 0.015625,0.0625 0.015625,0.09375 0,0.074219 -0.011719,0.132813 -0.03125,0.171875 C 2.398438,-3.375 2.375,-3.359375 2.34375,-3.359375 H 0.921875 v 1.078125 c 0.070313,-0.00781 0.144531,-0.015625 0.21875,-0.015625 0.070313,-0.00781 0.15625,-0.015625 0.25,-0.015625 0.21875,0 0.40625,0.027344 0.5625,0.078125 0.164063,0.054687 0.300781,0.125 0.40625,0.21875 0.101563,0.09375 0.179687,0.210937 0.234375,0.34375 0.0625,0.136719 0.09375,0.289063 0.09375,0.453125 z m 0,0"
           id="path17"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-6"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.796875,-1.234375 c 0,0.167969 -0.027344,0.328125 -0.078125,0.484375 -0.042969,0.15625 -0.121094,0.296875 -0.234375,0.421875 -0.105469,0.117187 -0.242187,0.210937 -0.40625,0.28125 C 1.921875,0.0234375 1.734375,0.0625 1.515625,0.0625 1.359375,0.0625 1.21875,0.0390625 1.09375,0 0.976562,-0.0390625 0.875,-0.0976562 0.78125,-0.171875 0.6875,-0.242188 0.609375,-0.332031 0.546875,-0.4375 0.492188,-0.539062 0.445312,-0.660156 0.40625,-0.796875 0.375,-0.929688 0.347656,-1.078125 0.328125,-1.234375 0.316406,-1.398438 0.3125,-1.570312 0.3125,-1.75 c 0,-0.164062 0.003906,-0.332031 0.015625,-0.5 0.019531,-0.164062 0.050781,-0.320312 0.09375,-0.46875 0.050781,-0.15625 0.113281,-0.300781 0.1875,-0.4375 0.082031,-0.132812 0.179687,-0.253906 0.296875,-0.359375 0.113281,-0.101563 0.25,-0.179687 0.40625,-0.234375 0.164062,-0.0625 0.359375,-0.09375 0.578125,-0.09375 0.070313,0 0.144531,0.00781 0.21875,0.015625 0.070313,0.011719 0.140625,0.023437 0.203125,0.03125 0.0625,0.011719 0.113281,0.027344 0.15625,0.046875 0.039062,0.023438 0.066406,0.039062 0.078125,0.046875 0.019531,0.011719 0.03125,0.023437 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 0,0.042969 0,0.0625 0,0.042969 0,0.078125 0,0.109375 0,0.023438 -0.00781,0.042969 -0.015625,0.0625 0,0.011719 -0.00781,0.023438 -0.015625,0.03125 -0.011719,0 -0.027344,0 -0.046875,0 -0.023438,0 -0.054688,-0.00391 -0.09375,-0.015625 C 2.40625,-3.347656 2.363281,-3.363281 2.3125,-3.375 2.257812,-3.394531 2.191406,-3.410156 2.109375,-3.421875 2.035156,-3.429688 1.953125,-3.4375 1.859375,-3.4375 c -0.1875,0 -0.351563,0.039062 -0.484375,0.109375 -0.125,0.074219 -0.230469,0.171875 -0.3125,0.296875 -0.085938,0.125 -0.148438,0.273438 -0.1875,0.4375 -0.03125,0.167969 -0.054688,0.339844 -0.0625,0.515625 0.050781,-0.03125 0.109375,-0.0625 0.171875,-0.09375 0.0625,-0.03125 0.128906,-0.054687 0.203125,-0.078125 0.082031,-0.019531 0.164062,-0.035156 0.25,-0.046875 0.082031,-0.019531 0.171875,-0.03125 0.265625,-0.03125 0.207031,0 0.378906,0.03125 0.515625,0.09375 C 2.363281,-2.179688 2.476562,-2.101562 2.5625,-2 c 0.082031,0.09375 0.140625,0.210938 0.171875,0.34375 0.039063,0.125 0.0625,0.265625 0.0625,0.421875 z m -0.5,0.046875 c 0,-0.101562 -0.011719,-0.203125 -0.03125,-0.296875 -0.023437,-0.09375 -0.0625,-0.171875 -0.125,-0.234375 C 2.085938,-1.789062 2.019531,-1.84375 1.9375,-1.875 1.851562,-1.90625 1.742188,-1.921875 1.609375,-1.921875 c -0.074219,0 -0.148437,0.00781 -0.21875,0.015625 -0.074219,0.011719 -0.148437,0.027344 -0.21875,0.046875 -0.0625,0.023437 -0.125,0.046875 -0.1875,0.078125 -0.054687,0.03125 -0.105469,0.070312 -0.15625,0.109375 0,0.25 0.015625,0.460937 0.046875,0.625 0.03125,0.167969 0.078125,0.304687 0.140625,0.40625 0.0625,0.105469 0.132813,0.179687 0.21875,0.21875 0.09375,0.042969 0.203125,0.0625 0.328125,0.0625 0.125,0 0.234375,-0.019531 0.328125,-0.0625 0.09375,-0.050781 0.164063,-0.113281 0.21875,-0.1875 C 2.171875,-0.691406 2.21875,-0.78125 2.25,-0.875 2.28125,-0.976562 2.296875,-1.082031 2.296875,-1.1875 Z m 0,0"
           id="path20"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-7"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.765625,-3.578125 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.023438 -0.00781,0.046875 -0.015625,0.078125 0,0.023437 -0.00781,0.046875 -0.015625,0.078125 0,0.023438 -0.00781,0.042969 -0.015625,0.0625 l -1.375,3.15625 C 1.316406,-0.0703125 1.300781,-0.0507812 1.28125,-0.03125 1.269531,-0.0195312 1.253906,-0.0078125 1.234375,0 1.210938,0.0078125 1.179688,0.015625 1.140625,0.015625 c -0.03125,0 -0.074219,0 -0.125,0 C 0.953125,0.015625 0.898438,0.0078125 0.859375,0 0.828125,0 0.800781,-0.00390625 0.78125,-0.015625 0.769531,-0.0234375 0.765625,-0.0390625 0.765625,-0.0625 c 0,-0.0195312 0.003906,-0.039062 0.015625,-0.0625 l 1.4375,-3.21875 h -1.8125 c -0.042969,0 -0.074219,-0.019531 -0.09375,-0.0625 -0.011719,-0.039062 -0.015625,-0.097656 -0.015625,-0.171875 0,-0.03125 0,-0.054687 0,-0.078125 C 0.304688,-3.6875 0.3125,-3.710938 0.3125,-3.734375 0.320312,-3.753906 0.332031,-3.769531 0.34375,-3.78125 c 0.019531,-0.00781 0.039062,-0.015625 0.0625,-0.015625 h 2.203125 c 0.03125,0 0.054687,0.00781 0.078125,0.015625 0.019531,0 0.035156,0.011719 0.046875,0.03125 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0.00781,0.023437 0.015625,0.054687 0.015625,0.09375 z m 0,0"
           id="path23"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-8"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.796875,-0.96875 c 0,0.15625 -0.03125,0.304688 -0.09375,0.4375 -0.054687,0.125 -0.136719,0.234375 -0.25,0.328125 C 2.335938,-0.117188 2.195312,-0.0507812 2.03125,0 1.875,0.0390625 1.691406,0.0625 1.484375,0.0625 1.296875,0.0625 1.125,0.0390625 0.96875,0 0.8125,-0.0390625 0.675781,-0.101562 0.5625,-0.1875 0.457031,-0.269531 0.375,-0.367188 0.3125,-0.484375 c -0.054688,-0.113281 -0.078125,-0.25 -0.078125,-0.40625 0,-0.113281 0.019531,-0.21875 0.0625,-0.3125 0.039063,-0.101563 0.097656,-0.195313 0.171875,-0.28125 0.070312,-0.082031 0.160156,-0.160156 0.265625,-0.234375 0.113281,-0.070312 0.238281,-0.144531 0.375,-0.21875 C 0.984375,-2 0.875,-2.0625 0.78125,-2.125 0.695312,-2.195312 0.625,-2.269531 0.5625,-2.34375 0.5,-2.425781 0.453125,-2.507812 0.421875,-2.59375 0.390625,-2.6875 0.375,-2.785156 0.375,-2.890625 c 0,-0.132813 0.019531,-0.257813 0.0625,-0.375 0.050781,-0.113281 0.125,-0.210937 0.21875,-0.296875 0.101562,-0.09375 0.226562,-0.160156 0.375,-0.203125 0.144531,-0.050781 0.316406,-0.078125 0.515625,-0.078125 0.195313,0 0.363281,0.027344 0.5,0.078125 0.144531,0.042969 0.257813,0.105469 0.34375,0.1875 0.09375,0.074219 0.160156,0.164063 0.203125,0.265625 0.039062,0.105469 0.0625,0.21875 0.0625,0.34375 0,0.105469 -0.015625,0.203125 -0.046875,0.296875 -0.03125,0.085937 -0.078125,0.167969 -0.140625,0.25 -0.0625,0.085937 -0.140625,0.164063 -0.234375,0.234375 -0.085937,0.074219 -0.1875,0.140625 -0.3125,0.203125 0.144531,0.0625 0.269531,0.132813 0.375,0.203125 0.113281,0.074219 0.207031,0.152344 0.28125,0.234375 0.070313,0.085937 0.125,0.171875 0.15625,0.265625 0.039063,0.09375 0.0625,0.199219 0.0625,0.3125 z M 2.15625,-2.921875 c 0,-0.082031 -0.015625,-0.15625 -0.046875,-0.21875 -0.023437,-0.0625 -0.0625,-0.113281 -0.125,-0.15625 C 1.929688,-3.347656 1.863281,-3.382812 1.78125,-3.40625 1.707031,-3.4375 1.617188,-3.453125 1.515625,-3.453125 1.304688,-3.453125 1.144531,-3.40625 1.03125,-3.3125 0.925781,-3.21875 0.875,-3.085938 0.875,-2.921875 c 0,0.085937 0.007812,0.15625 0.03125,0.21875 0.03125,0.0625 0.070312,0.125 0.125,0.1875 0.0625,0.054687 0.132812,0.109375 0.21875,0.171875 0.082031,0.054688 0.179688,0.109375 0.296875,0.171875 C 1.742188,-2.273438 1.894531,-2.390625 2,-2.515625 c 0.101562,-0.125 0.15625,-0.257813 0.15625,-0.40625 z m 0.125,2 c 0,-0.09375 -0.015625,-0.175781 -0.046875,-0.25 C 2.203125,-1.242188 2.148438,-1.3125 2.078125,-1.375 c -0.0625,-0.0625 -0.148437,-0.117188 -0.25,-0.171875 -0.09375,-0.0625 -0.210937,-0.125 -0.34375,-0.1875 C 1.359375,-1.679688 1.25,-1.625 1.15625,-1.5625 1.0625,-1.5 0.984375,-1.4375 0.921875,-1.375 0.867188,-1.3125 0.828125,-1.242188 0.796875,-1.171875 0.765625,-1.097656 0.75,-1.019531 0.75,-0.9375 c 0,0.199219 0.0625,0.351562 0.1875,0.453125 0.132812,0.09375 0.332031,0.140625 0.59375,0.140625 0.25,0 0.4375,-0.050781 0.5625,-0.15625 0.125,-0.101562 0.1875,-0.242188 0.1875,-0.421875 z m 0,0"
           id="path26"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-9"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.71875,-0.203125 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 2.675781,-0.0195312 2.660156,-0.0078125 2.640625,0 2.628906,0 2.617188,0 2.609375,0 H 0.625 C 0.613281,0 0.601562,0 0.59375,0 0.582031,-0.0078125 0.570312,-0.0195312 0.5625,-0.03125 0.550781,-0.0507812 0.539062,-0.0703125 0.53125,-0.09375 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054687 0,-0.078125 0.007812,-0.03125 0.015625,-0.050781 0.015625,-0.0625 0.007813,-0.019531 0.019531,-0.035156 0.03125,-0.046875 C 0.597656,-0.398438 0.613281,-0.40625 0.625,-0.40625 h 0.796875 v -2.875 L 0.6875,-2.84375 c -0.03125,0.011719 -0.0625,0.023438 -0.09375,0.03125 -0.023438,0 -0.039062,-0.00391 -0.046875,-0.015625 -0.011719,-0.00781 -0.023437,-0.03125 -0.03125,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.03125 0,-0.050781 0,-0.0625 0.007813,-0.019531 0.019531,-0.035156 0.03125,-0.046875 0.007813,-0.00781 0.023437,-0.019531 0.046875,-0.03125 l 0.875,-0.5625 c 0.00781,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.00781,0 0.019531,0 0.03125,0 0.019531,-0.00781 0.039062,-0.015625 0.0625,-0.015625 0.03125,0 0.0625,0 0.09375,0 0.050781,0 0.09375,0 0.125,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0.011719 0.03125,0.023437 0.03125,0.03125 0.00781,0.011719 0.015625,0.023437 0.015625,0.03125 v 3.328125 h 0.6875 c 0.019531,0 0.035156,0.007812 0.046875,0.015625 0.00781,0.011719 0.019531,0.027344 0.03125,0.046875 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 z m 0,0"
           id="path29"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-10"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.828125,-1.90625 c 0,0.292969 -0.023437,0.558594 -0.0625,0.796875 -0.042969,0.242187 -0.121094,0.449219 -0.234375,0.625 -0.105469,0.167969 -0.246094,0.304687 -0.421875,0.40625 C 1.941406,0.015625 1.734375,0.0625 1.484375,0.0625 1.242188,0.0625 1.039062,0.0195312 0.875,-0.0625 0.71875,-0.15625 0.585938,-0.28125 0.484375,-0.4375 0.390625,-0.601562 0.320312,-0.804688 0.28125,-1.046875 c -0.042969,-0.25 -0.0625,-0.53125 -0.0625,-0.84375 0,-0.289063 0.019531,-0.554687 0.0625,-0.796875 0.050781,-0.238281 0.128906,-0.441406 0.234375,-0.609375 0.101563,-0.175781 0.238281,-0.3125 0.40625,-0.40625 C 1.097656,-3.796875 1.3125,-3.84375 1.5625,-3.84375 c 0.238281,0 0.4375,0.042969 0.59375,0.125 0.164062,0.085938 0.296875,0.210938 0.390625,0.375 0.101563,0.167969 0.175781,0.371094 0.21875,0.609375 0.039063,0.242187 0.0625,0.515625 0.0625,0.828125 z M 2.3125,-1.875 c 0,-0.1875 -0.00781,-0.351562 -0.015625,-0.5 C 2.285156,-2.53125 2.265625,-2.664062 2.234375,-2.78125 2.210938,-2.894531 2.179688,-2.992188 2.140625,-3.078125 2.097656,-3.160156 2.046875,-3.226562 1.984375,-3.28125 1.921875,-3.332031 1.851562,-3.367188 1.78125,-3.390625 1.707031,-3.421875 1.625,-3.4375 1.53125,-3.4375 c -0.167969,0 -0.304688,0.042969 -0.40625,0.125 -0.105469,0.074219 -0.1875,0.179688 -0.25,0.3125 -0.054688,0.136719 -0.089844,0.296875 -0.109375,0.484375 -0.023437,0.1875 -0.03125,0.386719 -0.03125,0.59375 0,0.28125 0.007813,0.523437 0.03125,0.71875 0.03125,0.199219 0.078125,0.359375 0.140625,0.484375 0.0625,0.125 0.140625,0.21875 0.234375,0.28125 0.101563,0.054688 0.226563,0.078125 0.375,0.078125 0.101563,0 0.195313,-0.015625 0.28125,-0.046875 C 1.878906,-0.445312 1.953125,-0.5 2.015625,-0.5625 2.078125,-0.625 2.125,-0.703125 2.15625,-0.796875 2.195312,-0.890625 2.226562,-0.988281 2.25,-1.09375 2.28125,-1.207031 2.296875,-1.328125 2.296875,-1.453125 2.304688,-1.585938 2.3125,-1.726562 2.3125,-1.875 Z m 0,0"
           id="path32"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-11"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.546875,-1.0625 c 0,0.179688 -0.039063,0.339844 -0.109375,0.484375 -0.0625,0.136719 -0.152344,0.25 -0.265625,0.34375 -0.117187,0.09375 -0.25,0.1679688 -0.40625,0.21875 C 1.609375,0.0351562 1.4375,0.0625 1.25,0.0625 1.125,0.0625 1.003906,0.046875 0.890625,0.015625 0.785156,-0.00390625 0.691406,-0.03125 0.609375,-0.0625 0.523438,-0.09375 0.453125,-0.125 0.390625,-0.15625 0.335938,-0.1875 0.296875,-0.210938 0.265625,-0.234375 0.242188,-0.253906 0.226562,-0.28125 0.21875,-0.3125 0.207031,-0.351562 0.203125,-0.40625 0.203125,-0.46875 c 0,-0.039062 0,-0.078125 0,-0.109375 0.007813,-0.03125 0.019531,-0.050781 0.03125,-0.0625 0.007813,-0.019531 0.019531,-0.03125 0.03125,-0.03125 0.007813,-0.007813 0.019531,-0.015625 0.03125,-0.015625 0.03125,0 0.070313,0.015625 0.125,0.046875 0.050781,0.03125 0.113281,0.070313 0.1875,0.109375 0.082031,0.03125 0.175781,0.070312 0.28125,0.109375 0.113281,0.03125 0.242187,0.046875 0.390625,0.046875 0.101562,0 0.203125,-0.015625 0.296875,-0.046875 0.09375,-0.03125 0.171875,-0.070313 0.234375,-0.125 0.0625,-0.050781 0.109375,-0.113281 0.140625,-0.1875 0.039063,-0.082031 0.0625,-0.175781 0.0625,-0.28125 0,-0.101563 -0.027344,-0.191406 -0.078125,-0.265625 C 1.882812,-1.351562 1.816406,-1.421875 1.734375,-1.484375 1.660156,-1.546875 1.570312,-1.597656 1.46875,-1.640625 1.363281,-1.691406 1.257812,-1.738281 1.15625,-1.78125 1.050781,-1.832031 0.945312,-1.890625 0.84375,-1.953125 0.738281,-2.015625 0.644531,-2.085938 0.5625,-2.171875 0.488281,-2.253906 0.425781,-2.347656 0.375,-2.453125 c -0.054688,-0.113281 -0.078125,-0.25 -0.078125,-0.40625 0,-0.15625 0.023437,-0.296875 0.078125,-0.421875 0.0625,-0.125 0.144531,-0.226562 0.25,-0.3125 0.101562,-0.082031 0.222656,-0.144531 0.359375,-0.1875 0.144531,-0.039062 0.300781,-0.0625 0.46875,-0.0625 0.082031,0 0.164063,0.011719 0.25,0.03125 0.082031,0.011719 0.160156,0.027344 0.234375,0.046875 0.082031,0.023437 0.148438,0.046875 0.203125,0.078125 0.0625,0.03125 0.101563,0.058594 0.125,0.078125 0.019531,0.023437 0.03125,0.039063 0.03125,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023438 0,0.054688 0,0.09375 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.011719 -0.00781,0.023437 -0.015625,0.03125 C 2.269531,-3.160156 2.257812,-3.15625 2.25,-3.15625 2.226562,-3.15625 2.191406,-3.164062 2.140625,-3.1875 2.097656,-3.21875 2.039062,-3.25 1.96875,-3.28125 1.90625,-3.320312 1.828125,-3.351562 1.734375,-3.375 1.648438,-3.40625 1.550781,-3.421875 1.4375,-3.421875 c -0.105469,0 -0.199219,0.015625 -0.28125,0.046875 -0.074219,0.023438 -0.136719,0.058594 -0.1875,0.109375 -0.054688,0.042969 -0.09375,0.09375 -0.125,0.15625 -0.023438,0.0625 -0.03125,0.132813 -0.03125,0.203125 0,0.105469 0.023438,0.199219 0.078125,0.28125 0.050781,0.074219 0.113281,0.140625 0.1875,0.203125 0.082031,0.054687 0.175781,0.105469 0.28125,0.15625 0.101563,0.054687 0.207031,0.105469 0.3125,0.15625 0.113281,0.042969 0.21875,0.09375 0.3125,0.15625 0.101563,0.0625 0.195313,0.136719 0.28125,0.21875 0.082031,0.074219 0.148437,0.167969 0.203125,0.28125 0.050781,0.105469 0.078125,0.234375 0.078125,0.390625 z m 0,0"
           id="path35"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-12"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.703125,-1.5 c 0,0.074219 -0.023437,0.125 -0.0625,0.15625 -0.042969,0.03125 -0.085937,0.046875 -0.125,0.046875 H 0.78125 c 0,0.148437 0.015625,0.28125 0.046875,0.40625 0.03125,0.117187 0.078125,0.214844 0.140625,0.296875 0.070312,0.085938 0.160156,0.148438 0.265625,0.1875 0.113281,0.042969 0.25,0.0625 0.40625,0.0625 0.125,0 0.234375,-0.007812 0.328125,-0.03125 0.101562,-0.019531 0.1875,-0.039062 0.25,-0.0625 0.070312,-0.019531 0.128906,-0.039062 0.171875,-0.0625 0.050781,-0.019531 0.09375,-0.03125 0.125,-0.03125 0.00781,0 0.019531,0.007812 0.03125,0.015625 0.00781,0 0.015625,0.011719 0.015625,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 0,0.023438 -0.00781,0.042969 -0.015625,0.0625 0,0.023438 0,0.039062 0,0.046875 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 C 2.550781,-0.175781 2.539062,-0.164062 2.53125,-0.15625 2.519531,-0.144531 2.488281,-0.128906 2.4375,-0.109375 2.382812,-0.0859375 2.316406,-0.0625 2.234375,-0.03125 2.148438,-0.0078125 2.050781,0.0078125 1.9375,0.03125 1.832031,0.0507812 1.71875,0.0625 1.59375,0.0625 1.375,0.0625 1.179688,0.03125 1.015625,-0.03125 0.859375,-0.09375 0.722656,-0.179688 0.609375,-0.296875 0.492188,-0.421875 0.40625,-0.570312 0.34375,-0.75 0.289062,-0.925781 0.265625,-1.132812 0.265625,-1.375 c 0,-0.226562 0.03125,-0.429688 0.09375,-0.609375 0.0625,-0.1875 0.144531,-0.34375 0.25,-0.46875 0.113281,-0.125 0.25,-0.21875 0.40625,-0.28125 0.15625,-0.070313 0.328125,-0.109375 0.515625,-0.109375 0.207031,0 0.382812,0.039062 0.53125,0.109375 0.144531,0.0625 0.265625,0.152344 0.359375,0.265625 0.09375,0.105469 0.160156,0.234375 0.203125,0.390625 0.050781,0.148437 0.078125,0.308594 0.078125,0.484375 z M 2.21875,-1.65625 c 0,-0.25 -0.0625,-0.445312 -0.1875,-0.59375 -0.117188,-0.144531 -0.289062,-0.21875 -0.515625,-0.21875 -0.117187,0 -0.21875,0.027344 -0.3125,0.078125 C 1.109375,-2.347656 1.03125,-2.289062 0.96875,-2.21875 0.914062,-2.144531 0.867188,-2.054688 0.828125,-1.953125 0.796875,-1.859375 0.78125,-1.757812 0.78125,-1.65625 Z m 0,0"
           id="path38"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-13"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.4375,-0.078125 c 0,0.03125 -0.011719,0.0546875 -0.03125,0.0625 C 2.394531,-0.00390625 2.375,0 2.34375,0 2.320312,0.0078125 2.285156,0.015625 2.234375,0.015625 2.179688,0.015625 2.140625,0.0078125 2.109375,0 2.078125,0 2.050781,-0.00390625 2.03125,-0.015625 2.019531,-0.0234375 2.015625,-0.046875 2.015625,-0.078125 v -0.25 C 1.898438,-0.210938 1.769531,-0.117188 1.625,-0.046875 1.488281,0.0234375 1.34375,0.0625 1.1875,0.0625 1.039062,0.0625 0.910156,0.0390625 0.796875,0 0.691406,-0.03125 0.597656,-0.0820312 0.515625,-0.15625 0.441406,-0.226562 0.378906,-0.3125 0.328125,-0.40625 0.285156,-0.507812 0.265625,-0.625 0.265625,-0.75 c 0,-0.144531 0.03125,-0.269531 0.09375,-0.375 0.0625,-0.113281 0.148437,-0.207031 0.265625,-0.28125 0.113281,-0.070312 0.25,-0.125 0.40625,-0.15625 0.164062,-0.039062 0.351562,-0.0625 0.5625,-0.0625 h 0.359375 v -0.203125 c 0,-0.101563 -0.011719,-0.191406 -0.03125,-0.265625 C 1.898438,-2.175781 1.863281,-2.242188 1.8125,-2.296875 1.769531,-2.347656 1.707031,-2.382812 1.625,-2.40625 1.550781,-2.4375 1.457031,-2.453125 1.34375,-2.453125 1.226562,-2.453125 1.125,-2.4375 1.03125,-2.40625 0.9375,-2.375 0.851562,-2.34375 0.78125,-2.3125 0.707031,-2.28125 0.644531,-2.25 0.59375,-2.21875 0.550781,-2.1875 0.519531,-2.171875 0.5,-2.171875 0.476562,-2.171875 0.460938,-2.175781 0.453125,-2.1875 0.441406,-2.195312 0.429688,-2.207031 0.421875,-2.21875 0.410156,-2.238281 0.40625,-2.257812 0.40625,-2.28125 c 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.050781 0,-0.085937 0,-0.109375 0.007812,-0.03125 0.023438,-0.054688 0.046875,-0.078125 0.03125,-0.03125 0.078125,-0.0625 0.140625,-0.09375 0.0625,-0.039063 0.132812,-0.070313 0.21875,-0.09375 0.082031,-0.03125 0.175781,-0.054687 0.28125,-0.078125 0.101562,-0.019531 0.203125,-0.03125 0.296875,-0.03125 0.1875,0 0.347656,0.023438 0.484375,0.0625 0.132812,0.042969 0.242188,0.105469 0.328125,0.1875 0.082031,0.085938 0.140625,0.1875 0.171875,0.3125 0.039062,0.125 0.0625,0.273438 0.0625,0.4375 z M 1.953125,-1.28125 h -0.40625 c -0.136719,0 -0.257813,0.015625 -0.359375,0.046875 -0.09375,0.023437 -0.171875,0.054687 -0.234375,0.09375 -0.0625,0.042969 -0.109375,0.09375 -0.140625,0.15625 -0.03125,0.0625 -0.046875,0.136719 -0.046875,0.21875 0,0.136719 0.039063,0.246094 0.125,0.328125 0.09375,0.074219 0.21875,0.109375 0.375,0.109375 0.125,0 0.238281,-0.03125 0.34375,-0.09375 0.113281,-0.0625 0.226563,-0.160156 0.34375,-0.296875 z m 0,0"
           id="path41"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-14"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.984375,-2.53125 c 0,0.042969 0,0.078125 0,0.109375 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.023437 -0.00781,0.039063 -0.015625,0.046875 -0.011719,0 -0.023437,0 -0.03125,0 -0.023437,0 -0.042969,0 -0.0625,0 C 1.835938,-2.320312 1.8125,-2.332031 1.78125,-2.34375 1.75,-2.351562 1.71875,-2.363281 1.6875,-2.375 1.65625,-2.382812 1.617188,-2.390625 1.578125,-2.390625 c -0.054687,0 -0.105469,0.011719 -0.15625,0.03125 C 1.378906,-2.335938 1.332031,-2.300781 1.28125,-2.25 1.226562,-2.207031 1.171875,-2.148438 1.109375,-2.078125 1.054688,-2.003906 1,-1.914062 0.9375,-1.8125 v 1.734375 c 0,0.0234375 -0.007812,0.0390625 -0.015625,0.046875 C 0.910156,-0.0195312 0.894531,-0.0078125 0.875,0 0.863281,0 0.84375,0 0.8125,0 0.78125,0.0078125 0.738281,0.015625 0.6875,0.015625 0.644531,0.015625 0.609375,0.0078125 0.578125,0 0.546875,0 0.519531,0 0.5,0 0.476562,-0.0078125 0.460938,-0.0195312 0.453125,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -2.625 c 0,-0.019531 0,-0.035156 0,-0.046875 0.007813,-0.00781 0.019531,-0.019531 0.03125,-0.03125 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 0.03125,0 0.070313,0 0.125,0 0.039063,0 0.070313,0 0.09375,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.023438 0.046875,0.03125 0.007812,0.011719 0.015625,0.027344 0.015625,0.046875 v 0.375 c 0.070313,-0.101563 0.140625,-0.1875 0.203125,-0.25 0.0625,-0.070313 0.117188,-0.125 0.171875,-0.15625 0.0625,-0.039063 0.117187,-0.066406 0.171875,-0.078125 0.050781,-0.019531 0.109375,-0.03125 0.171875,-0.03125 0.019531,0 0.046875,0.00781 0.078125,0.015625 0.03125,0 0.0625,0.00781 0.09375,0.015625 0.039062,0 0.078125,0.00781 0.109375,0.015625 0.03125,0.011719 0.050781,0.023437 0.0625,0.03125 0.00781,0.011719 0.015625,0.023437 0.015625,0.03125 0.00781,0.011719 0.015625,0.023437 0.015625,0.03125 0,0.011719 0,0.03125 0,0.0625 0,0.023437 0,0.058594 0,0.109375 z m 0,0"
           id="path44"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-15"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.34375,-0.46875 c 0,0.03125 0,0.058594 0,0.078125 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.023437 -0.00781,0.039063 -0.015625,0.046875 -0.011719,0.011719 -0.027344,0.03125 -0.046875,0.0625 -0.023437,0.023438 -0.0625,0.054688 -0.125,0.09375 C 2.078125,-0.09375 2.007812,-0.0625 1.9375,-0.03125 1.863281,-0.0078125 1.785156,0.0078125 1.703125,0.03125 1.617188,0.0507812 1.53125,0.0625 1.4375,0.0625 1.25,0.0625 1.082031,0.03125 0.9375,-0.03125 0.789062,-0.09375 0.664062,-0.1875 0.5625,-0.3125 0.46875,-0.4375 0.394531,-0.582031 0.34375,-0.75 0.289062,-0.925781 0.265625,-1.128906 0.265625,-1.359375 c 0,-0.257813 0.03125,-0.484375 0.09375,-0.671875 0.0625,-0.1875 0.144531,-0.335938 0.25,-0.453125 C 0.722656,-2.609375 0.851562,-2.695312 1,-2.75 c 0.15625,-0.0625 0.320312,-0.09375 0.5,-0.09375 0.082031,0 0.160156,0.011719 0.234375,0.03125 0.082031,0.011719 0.15625,0.03125 0.21875,0.0625 0.070313,0.023438 0.132813,0.054688 0.1875,0.09375 0.050781,0.03125 0.085937,0.058594 0.109375,0.078125 0.019531,0.023437 0.035156,0.042969 0.046875,0.0625 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0,0.023438 0,0.046875 0,0.078125 0,0.074219 -0.011719,0.125 -0.03125,0.15625 -0.011719,0.03125 -0.03125,0.046875 -0.0625,0.046875 -0.023437,0 -0.054687,-0.015625 -0.09375,-0.046875 -0.042969,-0.03125 -0.09375,-0.0625 -0.15625,-0.09375 C 1.929688,-2.304688 1.863281,-2.34375 1.78125,-2.375 1.695312,-2.414062 1.597656,-2.4375 1.484375,-2.4375 c -0.230469,0 -0.40625,0.09375 -0.53125,0.28125 -0.125,0.179688 -0.1875,0.433594 -0.1875,0.765625 0,0.179687 0.015625,0.328125 0.046875,0.453125 0.03125,0.125 0.078125,0.234375 0.140625,0.328125 0.0625,0.085937 0.140625,0.148437 0.234375,0.1875 0.09375,0.042969 0.195312,0.0625 0.3125,0.0625 0.113281,0 0.210938,-0.015625 0.296875,-0.046875 0.082031,-0.039062 0.15625,-0.082031 0.21875,-0.125 0.0625,-0.039062 0.113281,-0.078125 0.15625,-0.109375 0.039063,-0.039063 0.070313,-0.0625 0.09375,-0.0625 0.00781,0 0.019531,0.007813 0.03125,0.015625 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.03125 0.015625,0.070313 0.015625,0.109375 z m 0,0"
           id="path47"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-16"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.71875,-0.078125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 2.648438,0 2.625,0 2.59375,0 2.5625,0.0078125 2.523438,0.015625 2.484375,0.015625 2.429688,0.015625 2.390625,0.0078125 2.359375,0 2.328125,0 2.300781,0 2.28125,0 2.269531,-0.0078125 2.257812,-0.0195312 2.25,-0.03125 2.238281,-0.0390625 2.234375,-0.0546875 2.234375,-0.078125 V -1.625 c 0,-0.144531 -0.011719,-0.265625 -0.03125,-0.359375 C 2.179688,-2.078125 2.144531,-2.15625 2.09375,-2.21875 2.050781,-2.28125 1.992188,-2.328125 1.921875,-2.359375 c -0.074219,-0.039063 -0.15625,-0.0625 -0.25,-0.0625 -0.117187,0 -0.234375,0.042969 -0.359375,0.125 -0.125,0.085937 -0.25,0.210937 -0.375,0.375 v 1.84375 c 0,0.0234375 -0.007812,0.0390625 -0.015625,0.046875 C 0.910156,-0.0195312 0.894531,-0.0078125 0.875,0 0.863281,0 0.84375,0 0.8125,0 0.78125,0.0078125 0.738281,0.015625 0.6875,0.015625 0.644531,0.015625 0.609375,0.0078125 0.578125,0 0.546875,0 0.519531,0 0.5,0 0.476562,-0.0078125 0.460938,-0.0195312 0.453125,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -3.90625 c 0,-0.019531 0,-0.035156 0,-0.046875 C 0.460938,-4.039062 0.476562,-4.046875 0.5,-4.046875 0.519531,-4.054688 0.546875,-4.0625 0.578125,-4.0625 c 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.035156,0.00781 0.046875,0.015625 0.007813,0.011719 0.015625,0.027344 0.015625,0.046875 v 1.578125 c 0.132812,-0.144531 0.269531,-0.253906 0.40625,-0.328125 0.144531,-0.070313 0.289062,-0.109375 0.4375,-0.109375 0.175781,0 0.320312,0.03125 0.4375,0.09375 0.125,0.0625 0.222656,0.148438 0.296875,0.25 0.070313,0.09375 0.125,0.210938 0.15625,0.34375 0.03125,0.125 0.046875,0.289062 0.046875,0.484375 z m 0,0"
           id="path50"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-17"
         style="overflow:visible">
        <path
           style="stroke:none"
           d=""
           id="path53"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-18"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.71875,-0.078125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 2.648438,0 2.625,0 2.59375,0 2.5625,0.0078125 2.523438,0.015625 2.484375,0.015625 2.429688,0.015625 2.390625,0.0078125 2.359375,0 2.328125,0 2.300781,0 2.28125,0 2.269531,-0.0078125 2.257812,-0.0195312 2.25,-0.03125 2.238281,-0.0390625 2.234375,-0.0546875 2.234375,-0.078125 V -1.625 c 0,-0.144531 -0.011719,-0.265625 -0.03125,-0.359375 C 2.179688,-2.078125 2.144531,-2.15625 2.09375,-2.21875 2.050781,-2.28125 1.992188,-2.328125 1.921875,-2.359375 c -0.074219,-0.039063 -0.15625,-0.0625 -0.25,-0.0625 -0.117187,0 -0.234375,0.042969 -0.359375,0.125 -0.125,0.085937 -0.25,0.210937 -0.375,0.375 v 1.84375 c 0,0.0234375 -0.007812,0.0390625 -0.015625,0.046875 C 0.910156,-0.0195312 0.894531,-0.0078125 0.875,0 0.863281,0 0.84375,0 0.8125,0 0.78125,0.0078125 0.738281,0.015625 0.6875,0.015625 0.644531,0.015625 0.609375,0.0078125 0.578125,0 0.546875,0 0.519531,0 0.5,0 0.476562,-0.0078125 0.460938,-0.0195312 0.453125,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -2.625 c 0,-0.019531 0,-0.035156 0,-0.046875 0.007813,-0.00781 0.019531,-0.019531 0.03125,-0.03125 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 0.03125,0 0.070313,0 0.125,0 0.039063,0 0.070313,0 0.09375,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.023438 0.046875,0.03125 0.007812,0.011719 0.015625,0.027344 0.015625,0.046875 v 0.34375 c 0.144531,-0.164063 0.289063,-0.285156 0.4375,-0.359375 0.144531,-0.082031 0.296875,-0.125 0.453125,-0.125 0.175781,0 0.320312,0.03125 0.4375,0.09375 0.125,0.0625 0.222656,0.148438 0.296875,0.25 0.070313,0.09375 0.125,0.210938 0.15625,0.34375 0.03125,0.125 0.046875,0.28125 0.046875,0.46875 z m 0,0"
           id="path56"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-19"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.703125,-0.078125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 2.6875,-0.0195312 2.675781,-0.0078125 2.65625,0 2.644531,0 2.625,0 2.59375,0 2.570312,0.0078125 2.539062,0.015625 2.5,0.015625 2.457031,0.015625 2.421875,0.0078125 2.390625,0 2.367188,0 2.347656,0 2.328125,0 2.304688,-0.0078125 2.289062,-0.0195312 2.28125,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -0.34375 C 2.132812,-0.273438 1.988281,-0.15625 1.84375,-0.0625 1.695312,0.0195312 1.535156,0.0625 1.359375,0.0625 c -0.199219,0 -0.367187,-0.0390625 -0.5,-0.109375 -0.136719,-0.082031 -0.246094,-0.1875 -0.328125,-0.3125 -0.085938,-0.125 -0.148438,-0.273437 -0.1875,-0.453125 -0.042969,-0.175781 -0.0625,-0.359375 -0.0625,-0.546875 0,-0.226563 0.019531,-0.429687 0.0625,-0.609375 0.050781,-0.1875 0.125,-0.34375 0.21875,-0.46875 0.101562,-0.132812 0.222656,-0.234375 0.359375,-0.296875 0.144531,-0.070313 0.3125,-0.109375 0.5,-0.109375 0.15625,0 0.296875,0.039062 0.421875,0.109375 0.125,0.0625 0.25,0.164063 0.375,0.296875 v -1.53125 c 0,-0.019531 0,-0.035156 0,-0.046875 0.00781,-0.00781 0.023438,-0.019531 0.046875,-0.03125 C 2.285156,-4.054688 2.3125,-4.0625 2.34375,-4.0625 c 0.03125,0 0.070312,0 0.125,0 0.039062,0 0.078125,0 0.109375,0 0.03125,0 0.054687,0.00781 0.078125,0.015625 0.019531,0.011719 0.03125,0.023437 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z M 2.21875,-1.921875 c -0.125,-0.164063 -0.25,-0.289063 -0.375,-0.375 -0.125,-0.082031 -0.257812,-0.125 -0.390625,-0.125 -0.117187,0 -0.21875,0.03125 -0.3125,0.09375 -0.085937,0.054687 -0.152344,0.125 -0.203125,0.21875 -0.054688,0.09375 -0.09375,0.203125 -0.125,0.328125 -0.023438,0.125 -0.03125,0.25 -0.03125,0.375 0,0.125 0.007812,0.257812 0.03125,0.390625 0.019531,0.125 0.054688,0.242187 0.109375,0.34375 C 0.972656,-0.578125 1.039062,-0.5 1.125,-0.4375 c 0.082031,0.054688 0.1875,0.078125 0.3125,0.078125 0.0625,0 0.125,-0.003906 0.1875,-0.015625 C 1.6875,-0.394531 1.75,-0.425781 1.8125,-0.46875 1.875,-0.507812 1.9375,-0.5625 2,-0.625 2.070312,-0.695312 2.144531,-0.78125 2.21875,-0.875 Z m 0,0"
           id="path59"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-20"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.375,-0.203125 c 0,0.03125 -0.011719,0.0625 -0.03125,0.09375 C 3.332031,-0.078125 3.316406,-0.0507812 3.296875,-0.03125 3.273438,-0.0195312 3.25,-0.0078125 3.21875,0 3.195312,0.0078125 3.175781,0.015625 3.15625,0.015625 H 3 C 2.945312,0.015625 2.898438,0.0078125 2.859375,0 2.816406,-0.0195312 2.78125,-0.0390625 2.75,-0.0625 2.71875,-0.09375 2.679688,-0.128906 2.640625,-0.171875 2.609375,-0.222656 2.570312,-0.289062 2.53125,-0.375 L 1.34375,-2.53125 C 1.28125,-2.632812 1.21875,-2.75 1.15625,-2.875 1.09375,-3 1.03125,-3.117188 0.96875,-3.234375 c 0,0.148437 0,0.292969 0,0.4375 0.007812,0.148437 0.015625,0.292969 0.015625,0.4375 v 2.28125 c 0,0.0117188 -0.007813,0.0273438 -0.015625,0.046875 C 0.957031,-0.0195312 0.941406,-0.0078125 0.921875,0 0.910156,0 0.890625,0 0.859375,0 0.828125,0.0078125 0.785156,0.015625 0.734375,0.015625 0.691406,0.015625 0.65625,0.0078125 0.625,0 0.59375,0 0.566406,0 0.546875,0 0.535156,-0.0078125 0.523438,-0.0195312 0.515625,-0.03125 0.503906,-0.0507812 0.5,-0.0664062 0.5,-0.078125 v -3.5 c 0,-0.070313 0.019531,-0.125 0.0625,-0.15625 0.050781,-0.039063 0.097656,-0.0625 0.140625,-0.0625 h 0.25 c 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.039062,0.011719 0.070312,0.03125 0.09375,0.0625 0.03125,0.023438 0.0625,0.054688 0.09375,0.09375 0.03125,0.03125 0.0625,0.078125 0.09375,0.140625 L 2.296875,-1.8125 c 0.050781,0.09375 0.101563,0.195312 0.15625,0.296875 0.050781,0.09375 0.101563,0.1875 0.15625,0.28125 0.050781,0.09375 0.097656,0.1875 0.140625,0.28125 0.050781,0.085937 0.097656,0.171875 0.140625,0.265625 H 2.90625 C 2.894531,-0.84375 2.890625,-1.003906 2.890625,-1.171875 c 0,-0.164063 0,-0.328125 0,-0.484375 v -2.046875 c 0,-0.019531 0.00391,-0.035156 0.015625,-0.046875 0.00781,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.019531,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.03125,-0.00781 0.070313,-0.015625 0.125,-0.015625 0.039063,0 0.078125,0.00781 0.109375,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.035156,0.00781 0.046875,0.015625 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0,0"
           id="path62"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-21"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.421875,-1.953125 c 0,0.335937 -0.042969,0.625 -0.125,0.875 -0.085937,0.242187 -0.210937,0.445313 -0.375,0.609375 -0.15625,0.15625 -0.355469,0.277344 -0.59375,0.359375 C 2.097656,-0.0351562 1.820312,0 1.5,0 H 0.6875 C 0.644531,0 0.601562,-0.015625 0.5625,-0.046875 0.519531,-0.078125 0.5,-0.128906 0.5,-0.203125 V -3.59375 c 0,-0.070312 0.019531,-0.125 0.0625,-0.15625 0.039062,-0.03125 0.082031,-0.046875 0.125,-0.046875 h 0.859375 c 0.332031,0 0.609375,0.046875 0.828125,0.140625 0.226562,0.085938 0.421875,0.203125 0.578125,0.359375 0.15625,0.15625 0.269531,0.351563 0.34375,0.578125 0.082031,0.230469 0.125,0.484375 0.125,0.765625 z M 2.890625,-1.9375 C 2.890625,-2.132812 2.863281,-2.320312 2.8125,-2.5 2.757812,-2.675781 2.675781,-2.828125 2.5625,-2.953125 2.457031,-3.085938 2.320312,-3.191406 2.15625,-3.265625 1.988281,-3.335938 1.773438,-3.375 1.515625,-3.375 h -0.5 v 2.953125 H 1.53125 c 0.238281,0 0.441406,-0.03125 0.609375,-0.09375 0.164063,-0.0625 0.300781,-0.15625 0.40625,-0.28125 0.113281,-0.125 0.195313,-0.28125 0.25,-0.46875 0.0625,-0.1875 0.09375,-0.410156 0.09375,-0.671875 z m 0,0"
           id="path65"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-22"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.03125,-0.078125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 2.960938,0 2.929688,0 2.890625,0 2.859375,0.0078125 2.816406,0.015625 2.765625,0.015625 2.710938,0.015625 2.671875,0.0078125 2.640625,0 2.609375,0 2.582031,0 2.5625,0 2.539062,-0.0078125 2.523438,-0.0195312 2.515625,-0.03125 2.503906,-0.0507812 2.492188,-0.078125 2.484375,-0.109375 L 2.140625,-1 C 2.097656,-1.101562 2.054688,-1.195312 2.015625,-1.28125 1.972656,-1.363281 1.921875,-1.4375 1.859375,-1.5 1.796875,-1.5625 1.722656,-1.609375 1.640625,-1.640625 1.554688,-1.671875 1.457031,-1.6875 1.34375,-1.6875 H 1.015625 v 1.609375 C 1.015625,-0.0546875 1.007812,-0.0390625 1,-0.03125 0.988281,-0.0195312 0.972656,-0.0078125 0.953125,0 0.929688,0 0.90625,0 0.875,0 0.84375,0.0078125 0.800781,0.015625 0.75,0.015625 0.707031,0.015625 0.671875,0.0078125 0.640625,0 0.609375,0 0.582031,0 0.5625,0 0.539062,-0.0078125 0.523438,-0.0195312 0.515625,-0.03125 0.503906,-0.0390625 0.5,-0.0546875 0.5,-0.078125 V -3.59375 c 0,-0.070312 0.019531,-0.125 0.0625,-0.15625 0.039062,-0.03125 0.082031,-0.046875 0.125,-0.046875 H 1.5 c 0.09375,0 0.171875,0.00781 0.234375,0.015625 0.0625,0 0.117187,0.00781 0.171875,0.015625 0.144531,0.023437 0.273438,0.0625 0.390625,0.125 0.113281,0.054687 0.207031,0.121094 0.28125,0.203125 0.070313,0.085938 0.128906,0.183594 0.171875,0.296875 0.039062,0.105469 0.0625,0.21875 0.0625,0.34375 0,0.125 -0.023438,0.242187 -0.0625,0.34375 -0.03125,0.105469 -0.078125,0.199219 -0.140625,0.28125 -0.0625,0.074219 -0.140625,0.136719 -0.234375,0.1875 -0.09375,0.054687 -0.195312,0.101563 -0.296875,0.140625 0.0625,0.03125 0.117187,0.070312 0.171875,0.109375 0.050781,0.042969 0.097656,0.09375 0.140625,0.15625 C 2.429688,-1.523438 2.46875,-1.457031 2.5,-1.375 c 0.039062,0.074219 0.082031,0.15625 0.125,0.25 l 0.34375,0.828125 c 0.03125,0.074219 0.046875,0.125 0.046875,0.15625 0.00781,0.03125 0.015625,0.0546875 0.015625,0.0625 z m -0.75,-2.65625 c 0,-0.15625 -0.039062,-0.28125 -0.109375,-0.375 C 2.109375,-3.210938 2,-3.289062 1.84375,-3.34375 1.789062,-3.351562 1.734375,-3.359375 1.671875,-3.359375 1.609375,-3.367188 1.53125,-3.375 1.4375,-3.375 H 1.015625 v 1.28125 H 1.5 c 0.132812,0 0.25,-0.015625 0.34375,-0.046875 0.09375,-0.03125 0.171875,-0.078125 0.234375,-0.140625 0.070313,-0.0625 0.125,-0.128906 0.15625,-0.203125 0.03125,-0.082031 0.046875,-0.164063 0.046875,-0.25 z m 0,0"
           id="path68"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-23"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.703125,-0.078125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 2.6875,-0.0195312 2.675781,-0.0078125 2.65625,0 2.644531,0 2.625,0 2.59375,0 2.5625,0.0078125 2.523438,0.015625 2.484375,0.015625 2.441406,0.015625 2.40625,0.0078125 2.375,0 2.34375,0 2.316406,0 2.296875,0 2.285156,-0.0078125 2.273438,-0.0195312 2.265625,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -0.34375 c -0.148437,0.167969 -0.292969,0.292969 -0.4375,0.375 C 1.679688,0.0234375 1.53125,0.0625 1.375,0.0625 1.195312,0.0625 1.046875,0.03125 0.921875,-0.03125 0.804688,-0.09375 0.710938,-0.171875 0.640625,-0.265625 0.566406,-0.367188 0.515625,-0.488281 0.484375,-0.625 0.453125,-0.757812 0.4375,-0.921875 0.4375,-1.109375 v -1.59375 c 0,-0.019531 0,-0.035156 0,-0.046875 0.007812,-0.00781 0.023438,-0.019531 0.046875,-0.03125 0.019531,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.03125,0 0.066406,0 0.109375,0 0.050781,0 0.09375,0 0.125,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.023438 0.046875,0.03125 0.007812,0.011719 0.015625,0.027344 0.015625,0.046875 v 1.53125 c 0,0.15625 0.007813,0.28125 0.03125,0.375 0.019531,0.085937 0.050781,0.164063 0.09375,0.234375 0.050781,0.0625 0.113281,0.117188 0.1875,0.15625 0.070313,0.03125 0.15625,0.046875 0.25,0.046875 0.113281,0 0.226563,-0.039063 0.34375,-0.125 0.125,-0.09375 0.253906,-0.222656 0.390625,-0.390625 v -1.828125 c 0,-0.019531 0,-0.035156 0,-0.046875 0.00781,-0.00781 0.023438,-0.019531 0.046875,-0.03125 0.019531,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.03125,0 0.070312,0 0.125,0 0.039062,0 0.078125,0 0.109375,0 0.03125,0 0.054687,0.00781 0.078125,0.015625 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0,0"
           id="path71"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-24"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.875,-1.4375 c 0,0.230469 -0.027344,0.4375 -0.078125,0.625 -0.054687,0.1875 -0.125,0.34375 -0.21875,0.46875 -0.09375,0.125 -0.214844,0.226562 -0.359375,0.296875 C 2.070312,0.0234375 1.910156,0.0625 1.734375,0.0625 1.648438,0.0625 1.578125,0.0507812 1.515625,0.03125 1.453125,0.0195312 1.382812,0 1.3125,-0.03125 1.25,-0.0703125 1.1875,-0.117188 1.125,-0.171875 1.0625,-0.222656 1,-0.28125 0.9375,-0.34375 v 1.3125 c 0,0.019531 -0.007812,0.035156 -0.015625,0.046875 C 0.910156,1.023438 0.894531,1.035156 0.875,1.046875 0.863281,1.054688 0.84375,1.0625 0.8125,1.0625 c -0.03125,0 -0.074219,0 -0.125,0 -0.042969,0 -0.078125,0 -0.109375,0 C 0.546875,1.0625 0.519531,1.054688 0.5,1.046875 0.476562,1.035156 0.460938,1.023438 0.453125,1.015625 c 0,-0.011719 0,-0.027344 0,-0.046875 v -3.671875 c 0,-0.019531 0,-0.035156 0,-0.046875 0.007813,-0.00781 0.019531,-0.019531 0.03125,-0.03125 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 0.03125,0 0.066406,0 0.109375,0 0.039062,0 0.070312,0 0.09375,0 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 C 0.867188,-2.738281 0.875,-2.722656 0.875,-2.703125 v 0.34375 C 0.957031,-2.441406 1.035156,-2.507812 1.109375,-2.5625 1.179688,-2.625 1.253906,-2.675781 1.328125,-2.71875 1.398438,-2.757812 1.472656,-2.789062 1.546875,-2.8125 1.628906,-2.832031 1.71875,-2.84375 1.8125,-2.84375 c 0.1875,0 0.347656,0.039062 0.484375,0.109375 0.132813,0.074219 0.242187,0.179687 0.328125,0.3125 0.082031,0.125 0.144531,0.277344 0.1875,0.453125 C 2.851562,-1.800781 2.875,-1.625 2.875,-1.4375 Z M 2.359375,-1.375 c 0,-0.132812 -0.011719,-0.265625 -0.03125,-0.390625 C 2.304688,-1.890625 2.269531,-2 2.21875,-2.09375 2.175781,-2.195312 2.113281,-2.273438 2.03125,-2.328125 c -0.085938,-0.0625 -0.1875,-0.09375 -0.3125,-0.09375 -0.0625,0 -0.125,0.011719 -0.1875,0.03125 -0.0625,0.011719 -0.125,0.039063 -0.1875,0.078125 -0.0625,0.042969 -0.132812,0.101562 -0.203125,0.171875 C 1.078125,-2.078125 1.007812,-2 0.9375,-1.90625 v 1.046875 c 0.125,0.15625 0.242188,0.28125 0.359375,0.375 0.125,0.085937 0.253906,0.125 0.390625,0.125 0.113281,0 0.210938,-0.023437 0.296875,-0.078125 C 2.078125,-0.5 2.148438,-0.578125 2.203125,-0.671875 2.253906,-0.773438 2.289062,-0.882812 2.3125,-1 2.34375,-1.125 2.359375,-1.25 2.359375,-1.375 Z m 0,0"
           id="path74"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-25"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.875,-1.421875 c 0,0.230469 -0.027344,0.4375 -0.078125,0.625 -0.054687,0.179687 -0.125,0.328125 -0.21875,0.453125 -0.09375,0.125 -0.214844,0.226562 -0.359375,0.296875 C 2.082031,0.0234375 1.921875,0.0625 1.734375,0.0625 1.648438,0.0625 1.570312,0.0507812 1.5,0.03125 1.4375,0.0078125 1.367188,-0.015625 1.296875,-0.046875 1.234375,-0.0859375 1.164062,-0.132812 1.09375,-0.1875 1.019531,-0.25 0.945312,-0.316406 0.875,-0.390625 v 0.3125 c 0,0.0234375 -0.007812,0.0390625 -0.015625,0.046875 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 0.804688,0 0.78125,0 0.75,0 0.726562,0.0078125 0.695312,0.015625 0.65625,0.015625 0.613281,0.015625 0.578125,0.0078125 0.546875,0 0.523438,0 0.503906,0 0.484375,0 0.472656,-0.0078125 0.460938,-0.0195312 0.453125,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -3.90625 c 0,-0.019531 0,-0.035156 0,-0.046875 C 0.460938,-4.039062 0.476562,-4.046875 0.5,-4.046875 0.519531,-4.054688 0.546875,-4.0625 0.578125,-4.0625 c 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.035156,0.00781 0.046875,0.015625 0.007813,0.011719 0.015625,0.027344 0.015625,0.046875 v 1.578125 c 0.070312,-0.082031 0.144531,-0.148438 0.21875,-0.203125 0.070312,-0.050781 0.144531,-0.09375 0.21875,-0.125 0.070312,-0.039063 0.140625,-0.066406 0.203125,-0.078125 0.070313,-0.019531 0.148437,-0.03125 0.234375,-0.03125 0.1875,0 0.347656,0.042969 0.484375,0.125 0.132813,0.074219 0.242187,0.171875 0.328125,0.296875 0.082031,0.125 0.144531,0.277344 0.1875,0.453125 0.039062,0.167969 0.0625,0.351562 0.0625,0.546875 z M 2.359375,-1.375 c 0,-0.132812 -0.011719,-0.265625 -0.03125,-0.390625 C 2.304688,-1.890625 2.269531,-2 2.21875,-2.09375 2.175781,-2.195312 2.113281,-2.273438 2.03125,-2.328125 c -0.085938,-0.0625 -0.1875,-0.09375 -0.3125,-0.09375 -0.0625,0 -0.125,0.011719 -0.1875,0.03125 -0.0625,0.011719 -0.125,0.039063 -0.1875,0.078125 -0.0625,0.042969 -0.132812,0.09375 -0.203125,0.15625 -0.0625,0.0625 -0.132813,0.148438 -0.203125,0.25 v 1.046875 c 0.125,0.167969 0.25,0.292969 0.375,0.375 0.125,0.085937 0.25,0.125 0.375,0.125 0.125,0 0.226562,-0.023437 0.3125,-0.078125 C 2.082031,-0.5 2.148438,-0.578125 2.203125,-0.671875 2.265625,-0.773438 2.304688,-0.882812 2.328125,-1 c 0.019531,-0.125 0.03125,-0.25 0.03125,-0.375 z m 0,0"
           id="path77"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-26"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.90625,-1.421875 c 0,0.21875 -0.03125,0.417969 -0.09375,0.59375 -0.054688,0.179687 -0.136719,0.335937 -0.25,0.46875 -0.117188,0.125 -0.257812,0.230469 -0.421875,0.3125 C 1.972656,0.0234375 1.773438,0.0625 1.546875,0.0625 1.335938,0.0625 1.148438,0.03125 0.984375,-0.03125 0.828125,-0.101562 0.691406,-0.195312 0.578125,-0.3125 0.472656,-0.4375 0.394531,-0.585938 0.34375,-0.765625 0.289062,-0.941406 0.265625,-1.144531 0.265625,-1.375 c 0,-0.207031 0.023437,-0.398438 0.078125,-0.578125 0.0625,-0.1875 0.144531,-0.34375 0.25,-0.46875 0.113281,-0.132813 0.253906,-0.238281 0.421875,-0.3125 0.164063,-0.070313 0.363281,-0.109375 0.59375,-0.109375 0.21875,0 0.40625,0.03125 0.5625,0.09375 0.164063,0.0625 0.300781,0.15625 0.40625,0.28125 0.101563,0.125 0.179687,0.277344 0.234375,0.453125 0.0625,0.179687 0.09375,0.375 0.09375,0.59375 z m -0.515625,0.03125 c 0,-0.144531 -0.015625,-0.28125 -0.046875,-0.40625 -0.023438,-0.125 -0.0625,-0.234375 -0.125,-0.328125 -0.0625,-0.09375 -0.148438,-0.164062 -0.25,-0.21875 -0.105469,-0.0625 -0.230469,-0.09375 -0.375,-0.09375 -0.148438,0 -0.273438,0.027344 -0.375,0.078125 -0.105469,0.054687 -0.1875,0.125 -0.25,0.21875 -0.0625,0.09375 -0.117188,0.203125 -0.15625,0.328125 -0.03125,0.125 -0.046875,0.261719 -0.046875,0.40625 0,0.148438 0.007813,0.289062 0.03125,0.421875 C 0.828125,-0.859375 0.875,-0.75 0.9375,-0.65625 1,-0.5625 1.082031,-0.488281 1.1875,-0.4375 c 0.101562,0.054688 0.234375,0.078125 0.390625,0.078125 0.132813,0 0.253906,-0.019531 0.359375,-0.0625 0.101562,-0.050781 0.1875,-0.125 0.25,-0.21875 0.070312,-0.09375 0.125,-0.203125 0.15625,-0.328125 0.03125,-0.125 0.046875,-0.265625 0.046875,-0.421875 z m 0,0"
           id="path80"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-27"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 0.9375,-0.078125 c 0,0.0234375 -0.007812,0.0390625 -0.015625,0.046875 C 0.910156,-0.0195312 0.894531,-0.0078125 0.875,0 0.863281,0 0.84375,0 0.8125,0 0.78125,0.0078125 0.738281,0.015625 0.6875,0.015625 0.644531,0.015625 0.609375,0.0078125 0.578125,0 0.546875,0 0.519531,0 0.5,0 0.476562,-0.0078125 0.460938,-0.0195312 0.453125,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 v -3.90625 c 0,-0.019531 0,-0.035156 0,-0.046875 C 0.460938,-4.039062 0.476562,-4.046875 0.5,-4.046875 0.519531,-4.054688 0.546875,-4.0625 0.578125,-4.0625 c 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.035156,0.00781 0.046875,0.015625 0.007813,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0,0"
           id="path83"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-28"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.140625,-2.71875 c 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 0,0.023437 -0.00781,0.046875 -0.015625,0.078125 l -0.78125,2.5 c 0,0.0234375 -0.011719,0.0429688 -0.03125,0.0625 C 3.285156,-0.0195312 3.269531,-0.0078125 3.25,0 3.226562,0.0078125 3.195312,0.015625 3.15625,0.015625 c -0.03125,0 -0.078125,0 -0.140625,0 C 2.953125,0.015625 2.898438,0.0078125 2.859375,0 2.816406,0 2.785156,0 2.765625,0 2.742188,-0.0078125 2.722656,-0.0195312 2.703125,-0.03125 2.691406,-0.0507812 2.6875,-0.0703125 2.6875,-0.09375 L 2.125,-2 V -2.03125 -2 L 1.609375,-0.09375 C 1.597656,-0.0703125 1.585938,-0.0507812 1.578125,-0.03125 1.566406,-0.0195312 1.546875,-0.0078125 1.515625,0 1.492188,0.0078125 1.460938,0.015625 1.421875,0.015625 c -0.042969,0 -0.089844,0 -0.140625,0 C 1.21875,0.015625 1.164062,0.0078125 1.125,0 1.082031,0 1.050781,0 1.03125,0 1.007812,-0.0078125 0.992188,-0.0195312 0.984375,-0.03125 0.972656,-0.0507812 0.960938,-0.0703125 0.953125,-0.09375 l -0.765625,-2.5 C 0.175781,-2.625 0.164062,-2.648438 0.15625,-2.671875 c 0,-0.019531 0,-0.035156 0,-0.046875 0,-0.019531 0,-0.035156 0,-0.046875 C 0.164062,-2.773438 0.179688,-2.78125 0.203125,-2.78125 0.222656,-2.789062 0.25,-2.796875 0.28125,-2.796875 c 0.03125,0 0.066406,0 0.109375,0 0.0625,0 0.109375,0 0.140625,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.023438 0.046875,0.03125 0.007813,0.011719 0.015625,0.027344 0.015625,0.046875 L 1.296875,-0.53125 V -0.5 L 1.3125,-0.53125 1.890625,-2.703125 C 1.898438,-2.722656 1.90625,-2.738281 1.90625,-2.75 c 0.00781,-0.00781 0.023438,-0.019531 0.046875,-0.03125 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 0.03125,0 0.070313,0 0.125,0 0.050781,0 0.085937,0 0.109375,0 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.019531,0.023438 0.03125,0.03125 l 0.625,2.1875 V -0.5 l 0.015625,-0.03125 0.625,-2.171875 c 0,-0.019531 0.00391,-0.035156 0.015625,-0.046875 0.00781,-0.00781 0.019531,-0.019531 0.03125,-0.03125 0.019531,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.03125,0 0.070312,0 0.125,0 0.050781,0 0.085938,0 0.109375,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.023438 0.046875,0.03125 0.00781,0 0.015625,0.011719 0.015625,0.03125 z m 0,0"
           id="path86"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-29"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.625,-0.078125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 4.554688,0 4.53125,0 4.5,0 4.46875,0.0078125 4.425781,0.015625 4.375,0.015625 4.332031,0.015625 4.296875,0.0078125 4.265625,0 4.234375,0 4.207031,0 4.1875,0 4.164062,-0.0078125 4.148438,-0.0195312 4.140625,-0.03125 c 0,-0.0078125 0,-0.0234375 0,-0.046875 V -3.375 H 4.125 L 2.78125,-0.0625 C 2.769531,-0.0507812 2.757812,-0.0390625 2.75,-0.03125 2.738281,-0.0195312 2.722656,-0.0078125 2.703125,0 2.679688,0.0078125 2.65625,0.015625 2.625,0.015625 c -0.023438,0 -0.054688,0 -0.09375,0 C 2.488281,0.015625 2.453125,0.0078125 2.421875,0 2.398438,0 2.378906,0 2.359375,0 2.335938,-0.0078125 2.320312,-0.0195312 2.3125,-0.03125 2.300781,-0.0390625 2.289062,-0.0507812 2.28125,-0.0625 L 1,-3.375 v 3.296875 C 1,-0.0546875 0.992188,-0.0390625 0.984375,-0.03125 0.972656,-0.0195312 0.957031,-0.0078125 0.9375,0 0.914062,0 0.890625,0 0.859375,0 0.828125,0.0078125 0.789062,0.015625 0.75,0.015625 0.695312,0.015625 0.65625,0.0078125 0.625,0 0.59375,0 0.566406,0 0.546875,0 0.535156,-0.0078125 0.523438,-0.0195312 0.515625,-0.03125 0.503906,-0.0390625 0.5,-0.0546875 0.5,-0.078125 V -3.5625 c 0,-0.082031 0.019531,-0.140625 0.0625,-0.171875 0.050781,-0.039063 0.101562,-0.0625 0.15625,-0.0625 h 0.296875 c 0.0625,0 0.113281,0.011719 0.15625,0.03125 0.050781,0.011719 0.09375,0.027344 0.125,0.046875 0.039063,0.023438 0.070313,0.054688 0.09375,0.09375 0.019531,0.042969 0.039063,0.089844 0.0625,0.140625 l 1.09375,2.75 H 2.5625 L 3.703125,-3.46875 c 0.019531,-0.0625 0.039063,-0.113281 0.0625,-0.15625 0.03125,-0.039062 0.0625,-0.070312 0.09375,-0.09375 0.03125,-0.03125 0.0625,-0.050781 0.09375,-0.0625 0.039063,-0.00781 0.085937,-0.015625 0.140625,-0.015625 h 0.3125 c 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.03125,0.011719 0.054687,0.027344 0.078125,0.046875 C 4.582031,-3.710938 4.597656,-3.6875 4.609375,-3.65625 4.617188,-3.632812 4.625,-3.601562 4.625,-3.5625 Z m 0,0"
           id="path89"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-30"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.109375,-0.796875 c 0,0.136719 -0.027344,0.261719 -0.078125,0.375 C 1.976562,-0.316406 1.90625,-0.226562 1.8125,-0.15625 1.71875,-0.09375 1.609375,-0.0390625 1.484375,0 1.359375,0.0390625 1.21875,0.0625 1.0625,0.0625 0.96875,0.0625 0.878906,0.0507812 0.796875,0.03125 0.710938,0.0195312 0.632812,0.00390625 0.5625,-0.015625 0.5,-0.046875 0.441406,-0.0703125 0.390625,-0.09375 0.347656,-0.113281 0.316406,-0.132812 0.296875,-0.15625 0.273438,-0.175781 0.257812,-0.203125 0.25,-0.234375 0.238281,-0.273438 0.234375,-0.328125 0.234375,-0.390625 c 0,-0.03125 0,-0.054687 0,-0.078125 C 0.242188,-0.5 0.25,-0.519531 0.25,-0.53125 0.257812,-0.550781 0.269531,-0.5625 0.28125,-0.5625 0.289062,-0.570312 0.300781,-0.578125 0.3125,-0.578125 c 0.03125,0 0.066406,0.015625 0.109375,0.046875 0.039063,0.023438 0.085937,0.046875 0.140625,0.078125 0.0625,0.03125 0.132812,0.0625 0.21875,0.09375 0.09375,0.023437 0.191406,0.03125 0.296875,0.03125 0.082031,0 0.15625,-0.007813 0.21875,-0.03125 C 1.367188,-0.378906 1.425781,-0.40625 1.46875,-0.4375 1.519531,-0.46875 1.554688,-0.507812 1.578125,-0.5625 1.609375,-0.613281 1.625,-0.675781 1.625,-0.75 1.625,-0.820312 1.601562,-0.882812 1.5625,-0.9375 1.53125,-0.988281 1.484375,-1.035156 1.421875,-1.078125 1.359375,-1.117188 1.285156,-1.148438 1.203125,-1.171875 1.128906,-1.203125 1.050781,-1.234375 0.96875,-1.265625 0.882812,-1.304688 0.800781,-1.347656 0.71875,-1.390625 0.644531,-1.429688 0.578125,-1.476562 0.515625,-1.53125 0.453125,-1.59375 0.398438,-1.664062 0.359375,-1.75 c -0.042969,-0.09375 -0.0625,-0.195312 -0.0625,-0.3125 0,-0.101562 0.019531,-0.203125 0.0625,-0.296875 0.039063,-0.09375 0.097656,-0.175781 0.171875,-0.25 0.082031,-0.070313 0.179688,-0.128906 0.296875,-0.171875 0.125,-0.039062 0.269531,-0.0625 0.4375,-0.0625 0.070313,0 0.140625,0.00781 0.203125,0.015625 0.070312,0.011719 0.132812,0.027344 0.1875,0.046875 0.0625,0.023438 0.113281,0.042969 0.15625,0.0625 0.039062,0.023438 0.070312,0.042969 0.09375,0.0625 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.011719 0,0.027344 0,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.011719 -0.00781,0.023437 -0.015625,0.03125 -0.011719,0 -0.023437,0 -0.03125,0 -0.023437,0 -0.046875,-0.00781 -0.078125,-0.03125 C 1.78125,-2.316406 1.738281,-2.335938 1.6875,-2.359375 1.632812,-2.390625 1.570312,-2.414062 1.5,-2.4375 1.425781,-2.457031 1.34375,-2.46875 1.25,-2.46875 c -0.074219,0 -0.140625,0.011719 -0.203125,0.03125 -0.0625,0.023438 -0.117187,0.046875 -0.15625,0.078125 -0.042969,0.03125 -0.074219,0.074219 -0.09375,0.125 -0.023437,0.042969 -0.03125,0.089844 -0.03125,0.140625 0,0.085938 0.015625,0.152344 0.046875,0.203125 0.039062,0.054687 0.09375,0.101563 0.15625,0.140625 0.0625,0.03125 0.132812,0.0625 0.21875,0.09375 0.082031,0.03125 0.164062,0.070312 0.25,0.109375 0.082031,0.03125 0.160156,0.070313 0.234375,0.109375 0.082031,0.03125 0.15625,0.078125 0.21875,0.140625 0.0625,0.0625 0.113281,0.136719 0.15625,0.21875 0.039063,0.074219 0.0625,0.167969 0.0625,0.28125 z m 0,0"
           id="path92"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-31"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.703125,-2.265625 c 0,0.085937 -0.011719,0.140625 -0.03125,0.171875 C 2.648438,-2.0625 2.625,-2.046875 2.59375,-2.046875 H 0.390625 C 0.359375,-2.046875 0.332031,-2.0625 0.3125,-2.09375 0.289062,-2.125 0.28125,-2.179688 0.28125,-2.265625 c 0,-0.0625 0.003906,-0.109375 0.015625,-0.140625 0.019531,-0.039062 0.050781,-0.0625 0.09375,-0.0625 H 2.59375 c 0.039062,0 0.066406,0.023438 0.078125,0.0625 0.019531,0.03125 0.03125,0.078125 0.03125,0.140625 z m 0,1.140625 c 0,0.085938 -0.011719,0.140625 -0.03125,0.171875 C 2.648438,-0.929688 2.625,-0.921875 2.59375,-0.921875 H 0.390625 c -0.03125,0 -0.058594,-0.007813 -0.078125,-0.03125 C 0.289062,-0.984375 0.28125,-1.039062 0.28125,-1.125 c 0,-0.070312 0.003906,-0.125 0.015625,-0.15625 0.019531,-0.03125 0.050781,-0.046875 0.09375,-0.046875 H 2.59375 c 0.039062,0 0.066406,0.015625 0.078125,0.046875 0.019531,0.03125 0.03125,0.085938 0.03125,0.15625 z m 0,0"
           id="path95"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-32"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.6875,-0.46875 c 0,0.042969 0,0.078125 0,0.109375 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 C 2.660156,-0.269531 2.644531,-0.265625 2.625,-0.265625 2.613281,-0.273438 2.597656,-0.285156 2.578125,-0.296875 L 0.265625,-1.46875 C 0.242188,-1.476562 0.226562,-1.5 0.21875,-1.53125 0.207031,-1.570312 0.203125,-1.625 0.203125,-1.6875 c 0,-0.03125 0,-0.0625 0,-0.09375 C 0.210938,-1.8125 0.21875,-1.832031 0.21875,-1.84375 0.226562,-1.863281 0.238281,-1.878906 0.25,-1.890625 c 0.007812,-0.00781 0.019531,-0.019531 0.03125,-0.03125 l 2.296875,-1.15625 c 0.039063,-0.019531 0.066406,-0.019531 0.078125,0 C 2.675781,-3.054688 2.6875,-3 2.6875,-2.90625 c 0,0.0625 0,0.109375 0,0.140625 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 -0.011719,0.023438 -0.023437,0.039062 -0.03125,0.046875 -0.011719,0.011719 -0.027344,0.023437 -0.046875,0.03125 l -1.890625,0.921875 1.875,0.90625 c 0.019531,0.023438 0.035156,0.039062 0.046875,0.046875 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0,0.03125 0,0.078125 0,0.140625 z m 0,0"
           id="path98"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-33"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.828125,-2.6875 c 0,0.199219 -0.03125,0.375 -0.09375,0.53125 -0.0625,0.148438 -0.152344,0.273438 -0.265625,0.375 -0.117188,0.105469 -0.257812,0.1875 -0.421875,0.25 C 1.878906,-1.46875 1.675781,-1.4375 1.4375,-1.4375 H 1.015625 v 1.359375 C 1.015625,-0.0546875 1.007812,-0.0390625 1,-0.03125 0.988281,-0.0195312 0.972656,-0.0078125 0.953125,0 0.929688,0 0.90625,0 0.875,0 0.84375,0.0078125 0.800781,0.015625 0.75,0.015625 0.707031,0.015625 0.671875,0.0078125 0.640625,0 0.609375,0 0.582031,0 0.5625,0 0.539062,-0.0078125 0.523438,-0.0195312 0.515625,-0.03125 0.503906,-0.0390625 0.5,-0.0546875 0.5,-0.078125 v -3.5 c 0,-0.070313 0.019531,-0.125 0.0625,-0.15625 0.039062,-0.039063 0.085938,-0.0625 0.140625,-0.0625 h 0.8125 c 0.082031,0 0.160156,0.00781 0.234375,0.015625 0.070312,0.011719 0.160156,0.027344 0.265625,0.046875 0.101563,0.023437 0.207031,0.0625 0.3125,0.125 0.101563,0.0625 0.191406,0.140625 0.265625,0.234375 0.082031,0.085938 0.140625,0.1875 0.171875,0.3125 0.039063,0.117188 0.0625,0.242188 0.0625,0.375 z m -0.53125,0.046875 c 0,-0.15625 -0.03125,-0.285156 -0.09375,-0.390625 C 2.148438,-3.132812 2.082031,-3.207031 2,-3.25 1.914062,-3.300781 1.828125,-3.332031 1.734375,-3.34375 1.648438,-3.363281 1.5625,-3.375 1.46875,-3.375 H 1.015625 v 1.515625 H 1.46875 c 0.144531,0 0.269531,-0.015625 0.375,-0.046875 0.101562,-0.039062 0.1875,-0.097656 0.25,-0.171875 0.070312,-0.070313 0.125,-0.15625 0.15625,-0.25 0.03125,-0.09375 0.046875,-0.195313 0.046875,-0.3125 z m 0,0"
           id="path101"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-34"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.46875,-0.21875 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 2.394531,-0.00390625 2.382812,0 2.375,0 H 0.6875 C 0.644531,0 0.601562,-0.015625 0.5625,-0.046875 0.519531,-0.078125 0.5,-0.128906 0.5,-0.203125 V -3.71875 C 0.5,-3.726562 0.503906,-3.738281 0.515625,-3.75 0.523438,-3.769531 0.539062,-3.78125 0.5625,-3.78125 0.582031,-3.789062 0.609375,-3.796875 0.640625,-3.796875 0.671875,-3.804688 0.707031,-3.8125 0.75,-3.8125 c 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.019531,0 0.035156,0.011719 0.046875,0.03125 0.00781,0.011719 0.015625,0.023438 0.015625,0.03125 V -0.4375 H 2.375 c 0.00781,0 0.019531,0.007812 0.03125,0.015625 0.019531,0.011719 0.03125,0.027344 0.03125,0.046875 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 z m 0,0"
           id="path104"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph0-35"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.796875,-1.6875 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.011719 -0.00781,0.023437 -0.015625,0.03125 -0.011719,0.011719 -0.023438,0.023437 -0.03125,0.03125 l -2.3125,1.15625 c -0.023438,0.011719 -0.042969,0.015625 -0.0625,0.015625 -0.011719,0 -0.023438,-0.003906 -0.03125,-0.015625 0,-0.007813 -0.007812,-0.03125 -0.015625,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.050781 0,-0.09375 0,-0.125 0,-0.039062 0.003906,-0.070312 0.015625,-0.09375 0.007812,-0.019531 0.019531,-0.035156 0.03125,-0.046875 0.007812,-0.007813 0.023438,-0.019531 0.046875,-0.03125 L 2.28125,-1.6875 0.40625,-2.59375 C 0.382812,-2.601562 0.363281,-2.613281 0.34375,-2.625 0.332031,-2.632812 0.320312,-2.648438 0.3125,-2.671875 0.300781,-2.691406 0.296875,-2.71875 0.296875,-2.75 c 0,-0.039062 0,-0.085938 0,-0.140625 0,-0.050781 0,-0.09375 0,-0.125 0.007813,-0.03125 0.015625,-0.050781 0.015625,-0.0625 0.007812,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.019531,0 0.039062,0.00781 0.0625,0.015625 l 2.3125,1.171875 c 0.019531,0.011719 0.035156,0.039062 0.046875,0.078125 0.019531,0.03125 0.03125,0.078125 0.03125,0.140625 z m 0,0"
           id="path107"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph1-0"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 2.859375,-3.796875 V 0 H 0.125 v -3.796875 z m -0.25,3.5625 v -3.3125 H 0.375 v 3.3125 z M 2.25,-2.5 c 0,0.117188 -0.023438,0.21875 -0.0625,0.3125 -0.03125,0.085938 -0.078125,0.15625 -0.140625,0.21875 -0.0625,0.0625 -0.136719,0.117188 -0.21875,0.15625 C 1.742188,-1.78125 1.65625,-1.765625 1.5625,-1.765625 L 1.546875,-1.3125 c 0,0.011719 -0.015625,0.023438 -0.046875,0.03125 -0.03125,0.011719 -0.074219,0.015625 -0.125,0.015625 -0.023438,0 -0.042969,0 -0.0625,0 -0.023438,0 -0.042969,0 -0.0625,0 -0.011719,-0.00781 -0.023438,-0.015625 -0.03125,-0.015625 0,-0.00781 0,-0.019531 0,-0.03125 L 1.203125,-1.859375 c 0,-0.0625 0.00781,-0.101563 0.03125,-0.125 0.03125,-0.019531 0.070313,-0.03125 0.125,-0.03125 H 1.40625 c 0.082031,0 0.15625,-0.00781 0.21875,-0.03125 0.0625,-0.03125 0.109375,-0.066406 0.140625,-0.109375 0.039063,-0.039062 0.066406,-0.085938 0.078125,-0.140625 0.019531,-0.0625 0.03125,-0.125 0.03125,-0.1875 0,-0.144531 -0.042969,-0.257813 -0.125,-0.34375 -0.085938,-0.082031 -0.214844,-0.125 -0.390625,-0.125 -0.074219,0 -0.140625,0.011719 -0.203125,0.03125 C 1.101562,-2.910156 1.050781,-2.894531 1,-2.875 c -0.042969,0.023438 -0.078125,0.042969 -0.109375,0.0625 -0.023437,0.011719 -0.042969,0.015625 -0.0625,0.015625 0,0 -0.007813,0 -0.015625,0 0,-0.00781 -0.007812,-0.019531 -0.015625,-0.03125 C 0.785156,-2.835938 0.78125,-2.851562 0.78125,-2.875 c 0,-0.019531 0,-0.046875 0,-0.078125 0,-0.03125 0,-0.054687 0,-0.078125 C 0.789062,-3.050781 0.800781,-3.066406 0.8125,-3.078125 0.832031,-3.097656 0.859375,-3.113281 0.890625,-3.125 0.929688,-3.144531 0.976562,-3.160156 1.03125,-3.171875 1.082031,-3.191406 1.140625,-3.207031 1.203125,-3.21875 1.273438,-3.238281 1.34375,-3.25 1.40625,-3.25 c 0.144531,0 0.269531,0.023438 0.375,0.0625 0.113281,0.042969 0.203125,0.101562 0.265625,0.171875 C 2.109375,-2.953125 2.15625,-2.875 2.1875,-2.78125 2.226562,-2.695312 2.25,-2.601562 2.25,-2.5 Z m -0.640625,1.703125 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.023438 -0.011719,0.042969 -0.03125,0.0625 -0.023438,0.011719 -0.046875,0.023438 -0.078125,0.03125 -0.023437,0.011719 -0.054687,0.015625 -0.09375,0.015625 -0.042969,0 -0.078125,-0.003906 -0.109375,-0.015625 C 1.257812,-0.601562 1.238281,-0.613281 1.21875,-0.625 1.195312,-0.644531 1.179688,-0.664062 1.171875,-0.6875 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.039063 0,-0.078125 0,-0.109375 C 1.179688,-0.9375 1.195312,-0.957031 1.21875,-0.96875 1.238281,-0.988281 1.257812,-1 1.28125,-1 c 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.03125,0 0.054687,0.011719 0.078125,0.03125 0.019531,0.011719 0.03125,0.03125 0.03125,0.0625 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 z M 0,1.15625 Z m 0,0"
           id="path110"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph1-1"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.671875,-1.078125 c 0,0.167969 -0.03125,0.324219 -0.09375,0.46875 C 2.523438,-0.472656 2.441406,-0.351562 2.328125,-0.25 2.210938,-0.15625 2.070312,-0.078125 1.90625,-0.015625 1.738281,0.0351562 1.550781,0.0625 1.34375,0.0625 1.21875,0.0625 1.097656,0.0507812 0.984375,0.03125 0.878906,0.0078125 0.78125,-0.015625 0.6875,-0.046875 0.601562,-0.078125 0.53125,-0.109375 0.46875,-0.140625 0.414062,-0.171875 0.382812,-0.191406 0.375,-0.203125 0.363281,-0.210938 0.351562,-0.222656 0.34375,-0.234375 0.332031,-0.253906 0.320312,-0.273438 0.3125,-0.296875 c 0,-0.019531 -0.007812,-0.039063 -0.015625,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.070312 0.003906,-0.117188 0.015625,-0.140625 0.019531,-0.03125 0.039062,-0.046875 0.0625,-0.046875 0.019531,0 0.054688,0.015625 0.109375,0.046875 0.050781,0.03125 0.117187,0.070313 0.203125,0.109375 0.082031,0.03125 0.175781,0.0625 0.28125,0.09375 0.101562,0.03125 0.222656,0.046875 0.359375,0.046875 0.132813,0 0.25,-0.015625 0.34375,-0.046875 0.09375,-0.03125 0.171875,-0.078125 0.234375,-0.140625 0.070312,-0.0625 0.125,-0.132813 0.15625,-0.21875 0.03125,-0.082031 0.046875,-0.171875 0.046875,-0.265625 0,-0.113281 -0.023437,-0.210938 -0.0625,-0.296875 -0.042969,-0.082031 -0.105469,-0.15625 -0.1875,-0.21875 C 1.785156,-1.609375 1.6875,-1.65625 1.5625,-1.6875 1.445312,-1.726562 1.316406,-1.75 1.171875,-1.75 H 0.8125 c -0.023438,0 -0.042969,0 -0.0625,0 C 0.738281,-1.757812 0.726562,-1.769531 0.71875,-1.78125 0.707031,-1.800781 0.695312,-1.820312 0.6875,-1.84375 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054687 0,-0.078125 C 0.695312,-2.0625 0.707031,-2.082031 0.71875,-2.09375 0.726562,-2.113281 0.738281,-2.125 0.75,-2.125 0.769531,-2.132812 0.785156,-2.140625 0.796875,-2.140625 h 0.34375 c 0.125,0 0.238281,-0.015625 0.34375,-0.046875 0.101563,-0.03125 0.1875,-0.078125 0.25,-0.140625 0.070313,-0.0625 0.128906,-0.132813 0.171875,-0.21875 0.039062,-0.09375 0.0625,-0.191406 0.0625,-0.296875 0,-0.082031 -0.015625,-0.160156 -0.046875,-0.234375 C 1.898438,-3.148438 1.863281,-3.210938 1.8125,-3.265625 1.757812,-3.316406 1.691406,-3.359375 1.609375,-3.390625 1.535156,-3.421875 1.445312,-3.4375 1.34375,-3.4375 c -0.117188,0 -0.21875,0.023438 -0.3125,0.0625 -0.09375,0.03125 -0.179688,0.070312 -0.25,0.109375 -0.074219,0.03125 -0.136719,0.070313 -0.1875,0.109375 -0.054688,0.03125 -0.089844,0.046875 -0.109375,0.046875 -0.011719,0 -0.023437,0 -0.03125,0 -0.011719,-0.00781 -0.023437,-0.019531 -0.03125,-0.03125 0,-0.019531 -0.007813,-0.039063 -0.015625,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 C 0.429688,-3.457031 0.4375,-3.472656 0.4375,-3.484375 0.445312,-3.503906 0.460938,-3.519531 0.484375,-3.53125 0.503906,-3.550781 0.539062,-3.578125 0.59375,-3.609375 0.65625,-3.648438 0.722656,-3.6875 0.796875,-3.71875 0.878906,-3.757812 0.972656,-3.789062 1.078125,-3.8125 1.191406,-3.832031 1.3125,-3.84375 1.4375,-3.84375 c 0.175781,0 0.332031,0.023438 0.46875,0.0625 0.132812,0.042969 0.242188,0.105469 0.328125,0.1875 0.09375,0.085938 0.160156,0.183594 0.203125,0.296875 0.039062,0.117187 0.0625,0.242187 0.0625,0.375 0,0.125 -0.015625,0.242187 -0.046875,0.34375 C 2.421875,-2.472656 2.375,-2.378906 2.3125,-2.296875 2.257812,-2.222656 2.1875,-2.160156 2.09375,-2.109375 2.007812,-2.054688 1.910156,-2.019531 1.796875,-2 v 0.015625 c 0.125,0.011719 0.238281,0.042969 0.34375,0.09375 0.113281,0.054687 0.207031,0.121094 0.28125,0.203125 0.082031,0.074219 0.144531,0.164062 0.1875,0.265625 0.039063,0.105469 0.0625,0.21875 0.0625,0.34375 z m 0,0"
           id="path113"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph1-2"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.078125,-0.3125 c 0,0.136719 -0.027344,0.2304688 -0.078125,0.28125 -0.042969,0.0390625 -0.125,0.0625 -0.25,0.0625 -0.117188,0 -0.199219,-0.0234375 -0.25,-0.0625 -0.042969,-0.0507812 -0.0625,-0.144531 -0.0625,-0.28125 0,-0.132812 0.019531,-0.222656 0.0625,-0.265625 0.050781,-0.050781 0.140625,-0.078125 0.265625,-0.078125 0.113281,0 0.191406,0.027344 0.234375,0.078125 0.050781,0.042969 0.078125,0.132813 0.078125,0.265625 z m 0,0"
           id="path116"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph1-3"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.734375,-2.046875 c 0,0.167969 -0.011719,0.335937 -0.03125,0.5 C 2.679688,-1.378906 2.644531,-1.21875 2.59375,-1.0625 2.550781,-0.90625 2.488281,-0.757812 2.40625,-0.625 2.332031,-0.488281 2.234375,-0.367188 2.109375,-0.265625 1.992188,-0.171875 1.851562,-0.09375 1.6875,-0.03125 1.519531,0.03125 1.328125,0.0625 1.109375,0.0625 1.023438,0.0625 0.941406,0.0546875 0.859375,0.046875 0.785156,0.0351562 0.71875,0.0195312 0.65625,0 0.59375,-0.0195312 0.539062,-0.0351562 0.5,-0.046875 0.457031,-0.0664062 0.425781,-0.0820312 0.40625,-0.09375 0.382812,-0.113281 0.367188,-0.140625 0.359375,-0.171875 0.347656,-0.203125 0.34375,-0.242188 0.34375,-0.296875 c 0,-0.039063 0,-0.070313 0,-0.09375 0.007812,-0.03125 0.015625,-0.050781 0.015625,-0.0625 0.007813,-0.019531 0.019531,-0.03125 0.03125,-0.03125 C 0.398438,-0.492188 0.414062,-0.5 0.4375,-0.5 c 0.019531,0 0.046875,0.011719 0.078125,0.03125 0.039063,0.011719 0.09375,0.027344 0.15625,0.046875 0.0625,0.023437 0.128906,0.039063 0.203125,0.046875 0.082031,0.011719 0.175781,0.015625 0.28125,0.015625 0.1875,0 0.347656,-0.035156 0.484375,-0.109375 0.132813,-0.070312 0.242187,-0.164062 0.328125,-0.28125 0.082031,-0.125 0.144531,-0.265625 0.1875,-0.421875 0.050781,-0.164063 0.078125,-0.34375 0.078125,-0.53125 -0.105469,0.0625 -0.230469,0.121094 -0.375,0.171875 -0.148437,0.042969 -0.3125,0.0625 -0.5,0.0625 -0.210937,0 -0.386719,-0.023438 -0.53125,-0.078125 C 0.679688,-1.609375 0.566406,-1.6875 0.484375,-1.78125 0.398438,-1.882812 0.335938,-2.003906 0.296875,-2.140625 0.253906,-2.273438 0.234375,-2.425781 0.234375,-2.59375 0.234375,-2.757812 0.257812,-2.914062 0.3125,-3.0625 0.363281,-3.21875 0.441406,-3.351562 0.546875,-3.46875 0.648438,-3.582031 0.78125,-3.671875 0.9375,-3.734375 1.09375,-3.804688 1.285156,-3.84375 1.515625,-3.84375 c 0.15625,0 0.289063,0.023438 0.40625,0.0625 0.125,0.03125 0.234375,0.089844 0.328125,0.171875 0.09375,0.074219 0.171875,0.164063 0.234375,0.265625 0.0625,0.105469 0.109375,0.226562 0.140625,0.359375 0.039062,0.136719 0.066406,0.28125 0.078125,0.4375 0.019531,0.15625 0.03125,0.324219 0.03125,0.5 z M 2.21875,-2.09375 c 0,-0.25 -0.015625,-0.457031 -0.046875,-0.625 C 2.140625,-2.894531 2.09375,-3.035156 2.03125,-3.140625 1.96875,-3.253906 1.890625,-3.332031 1.796875,-3.375 1.703125,-3.425781 1.59375,-3.453125 1.46875,-3.453125 c -0.125,0 -0.234375,0.027344 -0.328125,0.078125 C 1.046875,-3.332031 0.96875,-3.269531 0.90625,-3.1875 0.851562,-3.113281 0.8125,-3.023438 0.78125,-2.921875 0.757812,-2.828125 0.75,-2.726562 0.75,-2.625 c 0,0.117188 0.007812,0.21875 0.03125,0.3125 0.03125,0.09375 0.070312,0.179688 0.125,0.25 0.050781,0.0625 0.117188,0.117188 0.203125,0.15625 0.09375,0.03125 0.203125,0.046875 0.328125,0.046875 0.15625,0 0.300781,-0.019531 0.4375,-0.0625 0.132812,-0.050781 0.25,-0.109375 0.34375,-0.171875 z m 0,0"
           id="path119"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-0"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M -4.421875,-3.34375 H 0 v 3.1875 h -4.421875 z m 4.140625,0.296875 H -4.140625 V -0.4375 H -0.28125 Z M -2.921875,-2.625 c 0.136719,0 0.257813,0.023438 0.359375,0.0625 0.105469,0.042969 0.195312,0.101562 0.265625,0.171875 0.074219,0.074219 0.132813,0.15625 0.171875,0.25 0.042969,0.09375 0.0625,0.203125 0.0625,0.328125 l 0.53125,0.015625 c 0.023438,0 0.039062,0.015625 0.046875,0.046875 0,0.03125 0,0.078125 0,0.140625 0,0.03125 0,0.0625 0,0.09375 0,0.023437 0,0.039063 0,0.046875 C -1.492188,-1.457031 -1.5,-1.445312 -1.5,-1.4375 c -0.00781,0.011719 -0.019531,0.015625 -0.03125,0.015625 l -0.640625,0.015625 c -0.0625,0 -0.109375,-0.015625 -0.140625,-0.046875 -0.03125,-0.03125 -0.046875,-0.070313 -0.046875,-0.125 v -0.0625 c 0,-0.101563 -0.00781,-0.1875 -0.03125,-0.25 C -2.421875,-1.960938 -2.457031,-2.019531 -2.5,-2.0625 -2.550781,-2.101562 -2.609375,-2.132812 -2.671875,-2.15625 -2.742188,-2.175781 -2.816406,-2.1875 -2.890625,-2.1875 c -0.164063,0 -0.296875,0.054688 -0.390625,0.15625 -0.101562,0.09375 -0.15625,0.242188 -0.15625,0.4375 0,0.09375 0.011719,0.179688 0.03125,0.25 0.011719,0.0625 0.027344,0.121094 0.046875,0.171875 0.023437,0.054687 0.042969,0.09375 0.0625,0.125 0.023437,0.03125 0.03125,0.058594 0.03125,0.078125 0,0 0,0.007812 0,0.015625 -0.00781,0.011719 -0.019531,0.023437 -0.03125,0.03125 -0.00781,0 -0.023437,0.007813 -0.046875,0.015625 -0.03125,0 -0.0625,0 -0.09375,0 -0.039062,0 -0.070312,0 -0.09375,0 -0.03125,-0.007812 -0.050781,-0.023438 -0.0625,-0.046875 -0.019531,-0.019531 -0.039062,-0.050781 -0.0625,-0.09375 -0.019531,-0.039063 -0.039062,-0.09375 -0.0625,-0.15625 -0.019531,-0.0625 -0.035156,-0.128906 -0.046875,-0.203125 -0.00781,-0.082031 -0.015625,-0.160156 -0.015625,-0.234375 0,-0.175781 0.027344,-0.320313 0.078125,-0.4375 0.042969,-0.125 0.101563,-0.222656 0.171875,-0.296875 0.074219,-0.082031 0.167969,-0.144531 0.28125,-0.1875 0.105469,-0.039062 0.214844,-0.0625 0.328125,-0.0625 z m 1.984375,0.75 c 0.054688,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.058594,0.011719 0.078125,0.03125 0.023437,0.023437 0.039063,0.046875 0.046875,0.078125 0.011719,0.03125 0.015625,0.074219 0.015625,0.125 0,0.054688 -0.003906,0.09375 -0.015625,0.125 -0.007812,0.03125 -0.023438,0.058594 -0.046875,0.078125 -0.019531,0.023437 -0.046875,0.039063 -0.078125,0.046875 -0.03125,0.011719 -0.070312,0.015625 -0.125,0.015625 -0.039062,0 -0.078125,-0.00391 -0.109375,-0.015625 -0.039063,-0.00781 -0.070313,-0.023438 -0.09375,-0.046875 C -1.160156,-1.441406 -1.171875,-1.46875 -1.171875,-1.5 -1.179688,-1.53125 -1.1875,-1.570312 -1.1875,-1.625 c 0,-0.050781 0.00781,-0.09375 0.015625,-0.125 0,-0.03125 0.011719,-0.054688 0.03125,-0.078125 0.023437,-0.019531 0.054687,-0.03125 0.09375,-0.03125 C -1.015625,-1.867188 -0.976562,-1.875 -0.9375,-1.875 Z M 1.359375,0 Z m 0,0"
           id="path122"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-1"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -4.171875,-3.359375 c 0.042969,0 0.078125,0.00781 0.109375,0.015625 0.03125,0 0.058594,0.00781 0.078125,0.015625 0.023437,0.011719 0.039063,0.027344 0.046875,0.046875 0.011719,0.011719 0.015625,0.023438 0.015625,0.03125 V -2 h 3.828125 c 0.0234375,0 0.0429688,0.00781 0.0625,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.042969 0,0.074219 0,0.09375 -0.0078125,0.023438 -0.0195312,0.039062 -0.03125,0.046875 -0.0195312,0.011719 -0.0390625,0.015625 -0.0625,0.015625 h -3.828125 v 1.234375 c 0,0.023437 -0.00391,0.042969 -0.015625,0.0625 -0.00781,0.0117188 -0.023438,0.0234375 -0.046875,0.03125 -0.019531,0.0117188 -0.046875,0.0234375 -0.078125,0.03125 -0.03125,0 -0.066406,0 -0.109375,0 -0.039063,0 -0.078125,0 -0.109375,0 -0.03125,-0.0078125 -0.054688,-0.0195312 -0.078125,-0.03125 -0.019531,-0.0078125 -0.035156,-0.0195312 -0.046875,-0.03125 -0.00781,-0.019531 -0.015625,-0.039063 -0.015625,-0.0625 V -3.25 c 0,-0.00781 0.00781,-0.019531 0.015625,-0.03125 0.011719,-0.019531 0.027344,-0.035156 0.046875,-0.046875 0.023437,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.03125,-0.00781 0.070312,-0.015625 0.109375,-0.015625 z m 0,0"
           id="path125"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-2"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -2.953125,-2.328125 c 0.042969,0 0.085937,0.00781 0.125,0.015625 0.03125,0 0.058594,0.00781 0.078125,0.015625 0.023438,0 0.039062,0.00781 0.046875,0.015625 0.011719,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 -0.00391,0.046875 -0.015625,0.078125 -0.00781,0.023438 -0.019531,0.046875 -0.03125,0.078125 -0.00781,0.03125 -0.019531,0.070313 -0.03125,0.109375 -0.00781,0.042969 -0.015625,0.089844 -0.015625,0.140625 0,0.054687 0.011719,0.105469 0.03125,0.15625 0.023438,0.054687 0.058594,0.109375 0.109375,0.171875 0.054687,0.0625 0.125,0.132812 0.21875,0.203125 0.085937,0.0625 0.1875,0.132813 0.3125,0.203125 h 2.03125 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 H -3.15625 c -0.019531,0 -0.035156,-0.003906 -0.046875,-0.015625 -0.019531,-0.007812 -0.03125,-0.023438 -0.03125,-0.046875 C -3.242188,-0.597656 -3.25,-0.625 -3.25,-0.65625 c -0.00781,-0.03125 -0.015625,-0.070312 -0.015625,-0.125 0,-0.050781 0.00781,-0.09375 0.015625,-0.125 0,-0.03125 0.00781,-0.054688 0.015625,-0.078125 0,-0.019531 0.011719,-0.03125 0.03125,-0.03125 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 h 0.4375 C -2.84375,-1.113281 -2.941406,-1.191406 -3.015625,-1.265625 -3.085938,-1.335938 -3.144531,-1.40625 -3.1875,-1.46875 -3.238281,-1.539062 -3.269531,-1.609375 -3.28125,-1.671875 -3.300781,-1.742188 -3.3125,-1.8125 -3.3125,-1.875 c 0,-0.03125 0,-0.0625 0,-0.09375 0,-0.039062 0.00781,-0.082031 0.015625,-0.125 0.011719,-0.039062 0.023437,-0.078125 0.03125,-0.109375 0.011719,-0.03125 0.027344,-0.050781 0.046875,-0.0625 0.011719,-0.019531 0.023438,-0.03125 0.03125,-0.03125 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 0.011719,0 0.03125,0 0.0625,0 0.03125,-0.00781 0.074219,-0.015625 0.125,-0.015625 z m 0,0"
           id="path128"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-3"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.078125,-2.84375 c 0.0234375,0 0.0429688,0.011719 0.0625,0.03125 C -0.00390625,-2.789062 0,-2.765625 0,-2.734375 c 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054688 -0.0078125,0.101562 -0.015625,0.140625 0,0.03125 -0.00390625,0.058594 -0.015625,0.078125 -0.0195312,0.011719 -0.0390625,0.015625 -0.0625,0.015625 h -0.3125 c 0.148437,0.136719 0.261719,0.289063 0.34375,0.453125 0.0703125,0.167969 0.109375,0.34375 0.109375,0.53125 0,0.15625 -0.0234375,0.304688 -0.0625,0.4375 -0.0390625,0.125 -0.0976562,0.234375 -0.171875,0.328125 -0.082031,0.09375 -0.179687,0.167969 -0.296875,0.21875 -0.125,0.054687 -0.257812,0.078125 -0.40625,0.078125 -0.164062,0 -0.3125,-0.035156 -0.4375,-0.109375 -0.132812,-0.070313 -0.242188,-0.171875 -0.328125,-0.296875 -0.082031,-0.132812 -0.144531,-0.296875 -0.1875,-0.484375 -0.039063,-0.195313 -0.0625,-0.414063 -0.0625,-0.65625 V -2.28125 h -0.25 c -0.113281,0 -0.210937,0.015625 -0.296875,0.046875 -0.09375,0.023437 -0.171875,0.0625 -0.234375,0.125 -0.0625,0.054687 -0.109375,0.125 -0.140625,0.21875 -0.03125,0.085937 -0.046875,0.1875 -0.046875,0.3125 0,0.136719 0.015625,0.261719 0.046875,0.375 0.03125,0.117187 0.070312,0.214844 0.109375,0.296875 0.042969,0.085938 0.078125,0.152344 0.109375,0.203125 0.03125,0.054687 0.046875,0.09375 0.046875,0.125 0,0.023437 0,0.039063 0,0.046875 -0.00781,0.011719 -0.023437,0.023438 -0.046875,0.03125 -0.019531,0.011719 -0.039062,0.023438 -0.0625,0.03125 -0.03125,0 -0.066406,0 -0.109375,0 -0.050781,0 -0.09375,0 -0.125,0 -0.03125,-0.007812 -0.0625,-0.03125 -0.09375,-0.0625 -0.03125,-0.03125 -0.066406,-0.082031 -0.109375,-0.15625 -0.039062,-0.082031 -0.078125,-0.171875 -0.109375,-0.265625 -0.03125,-0.09375 -0.054687,-0.195313 -0.078125,-0.3125 -0.019531,-0.125 -0.03125,-0.242187 -0.03125,-0.359375 0,-0.21875 0.027344,-0.40625 0.078125,-0.5625 0.042969,-0.15625 0.117187,-0.28125 0.21875,-0.375 0.09375,-0.09375 0.214844,-0.160156 0.359375,-0.203125 0.148438,-0.050781 0.3125,-0.078125 0.5,-0.078125 z m -1.40625,0.5625 v 0.484375 c 0,0.15625 0.015625,0.292969 0.046875,0.40625 0.023438,0.117187 0.058594,0.210937 0.109375,0.28125 0.054687,0.074219 0.117187,0.132813 0.1875,0.171875 0.0625,0.03125 0.140625,0.046875 0.234375,0.046875 0.167969,0 0.296875,-0.050781 0.390625,-0.15625 0.09375,-0.101563 0.140625,-0.242187 0.140625,-0.421875 0,-0.144531 -0.035156,-0.28125 -0.109375,-0.40625 -0.082031,-0.132812 -0.195313,-0.269531 -0.34375,-0.40625 z m 0,0"
           id="path131"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-4"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.078125,-3.171875 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023437 0,0.054687 0,0.09375 0.0078125,0.03125 0.015625,0.074219 0.015625,0.125 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 h -1.8125 c -0.175781,0 -0.316406,0.015625 -0.421875,0.046875 -0.101562,0.023438 -0.191406,0.058594 -0.265625,0.109375 -0.082031,0.054687 -0.144531,0.121094 -0.1875,0.203125 -0.039063,0.085938 -0.0625,0.183594 -0.0625,0.296875 0,0.136719 0.054687,0.277344 0.15625,0.421875 0.09375,0.148438 0.242187,0.292969 0.4375,0.4375 h 2.15625 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 H -3.15625 c -0.019531,0 -0.035156,-0.003906 -0.046875,-0.015625 -0.019531,-0.007812 -0.03125,-0.023438 -0.03125,-0.046875 C -3.242188,-0.597656 -3.25,-0.625 -3.25,-0.65625 c -0.00781,-0.03125 -0.015625,-0.070312 -0.015625,-0.125 0,-0.050781 0.00781,-0.09375 0.015625,-0.125 0,-0.03125 0.00781,-0.054688 0.015625,-0.078125 0,-0.019531 0.011719,-0.03125 0.03125,-0.03125 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 H -2.75 c -0.195312,-0.175781 -0.335938,-0.347656 -0.421875,-0.515625 -0.09375,-0.175781 -0.140625,-0.351563 -0.140625,-0.53125 0,-0.195313 0.039062,-0.363281 0.109375,-0.5 0.0625,-0.144531 0.152344,-0.257813 0.265625,-0.34375 0.117188,-0.09375 0.25,-0.15625 0.40625,-0.1875 0.15625,-0.039063 0.34375,-0.0625 0.5625,-0.0625 z m 0,0"
           id="path134"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-5"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.921875,-2.453125 c 0.15625,0 0.296875,0.03125 0.421875,0.09375 0.125,0.054687 0.230469,0.136719 0.3125,0.25 0.085938,0.105469 0.1484375,0.230469 0.1875,0.375 0.0390625,0.148437 0.0625,0.308594 0.0625,0.484375 0,0.117188 -0.0117188,0.226562 -0.03125,0.328125 -0.0117188,0.09375 -0.02734375,0.183594 -0.046875,0.265625 -0.03125,0.074219 -0.0625,0.136719 -0.09375,0.1875 -0.03125,0.054688 -0.054687,0.09375 -0.078125,0.125 -0.019531,0.023438 -0.050781,0.039062 -0.09375,0.046875 -0.039062,0.011719 -0.097656,0.015625 -0.171875,0.015625 -0.039063,0 -0.078125,0 -0.109375,0 C -0.59375,-0.289062 -0.613281,-0.296875 -0.625,-0.296875 -0.644531,-0.304688 -0.660156,-0.316406 -0.671875,-0.328125 -0.679688,-0.335938 -0.6875,-0.351562 -0.6875,-0.375 c 0,-0.019531 0.015625,-0.054688 0.046875,-0.109375 0.03125,-0.050781 0.070313,-0.109375 0.109375,-0.171875 0.03125,-0.070312 0.0625,-0.15625 0.09375,-0.25 0.03125,-0.101562 0.046875,-0.222656 0.046875,-0.359375 0,-0.09375 -0.007813,-0.175781 -0.03125,-0.25 C -0.441406,-1.597656 -0.46875,-1.664062 -0.5,-1.71875 c -0.039062,-0.0625 -0.09375,-0.101562 -0.15625,-0.125 -0.0625,-0.03125 -0.132812,-0.046875 -0.21875,-0.046875 -0.09375,0 -0.164062,0.023437 -0.21875,0.0625 -0.0625,0.042969 -0.113281,0.101563 -0.15625,0.171875 -0.050781,0.074219 -0.09375,0.15625 -0.125,0.25 -0.03125,0.09375 -0.066406,0.1875 -0.109375,0.28125 -0.039063,0.09375 -0.082031,0.1875 -0.125,0.28125 -0.050781,0.09375 -0.113281,0.179688 -0.1875,0.25 -0.070313,0.074219 -0.15625,0.132812 -0.25,0.171875 -0.101563,0.042969 -0.222656,0.0625 -0.359375,0.0625 -0.113281,0 -0.226562,-0.019531 -0.34375,-0.0625 -0.113281,-0.050781 -0.210938,-0.117187 -0.296875,-0.203125 -0.082031,-0.09375 -0.144531,-0.207031 -0.1875,-0.34375 -0.050781,-0.144531 -0.078125,-0.3125 -0.078125,-0.5 0,-0.082031 0.00781,-0.164062 0.015625,-0.25 0.011719,-0.082031 0.027344,-0.15625 0.046875,-0.21875 0.023438,-0.070312 0.046875,-0.128906 0.078125,-0.171875 0.023437,-0.050781 0.042969,-0.085937 0.0625,-0.109375 0.011719,-0.019531 0.027344,-0.035156 0.046875,-0.046875 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 0.011719,0 0.03125,0 0.0625,0 0.023437,-0.00781 0.054687,-0.015625 0.09375,-0.015625 0.03125,0 0.0625,0.00781 0.09375,0.015625 0.03125,0 0.058594,0.00781 0.078125,0.015625 0.011719,0 0.023438,0.00781 0.03125,0.015625 0.011719,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 -0.00781,0.054687 -0.03125,0.09375 -0.03125,0.03125 -0.054687,0.078125 -0.078125,0.140625 -0.03125,0.0625 -0.054688,0.136719 -0.078125,0.21875 -0.03125,0.085938 -0.046875,0.179688 -0.046875,0.28125 0,0.09375 0.011719,0.179688 0.03125,0.25 0.023438,0.074219 0.054688,0.136719 0.09375,0.1875 0.042969,0.042969 0.089844,0.078125 0.140625,0.109375 0.054687,0.023437 0.109375,0.03125 0.171875,0.03125 0.09375,0 0.171875,-0.019531 0.234375,-0.0625 0.054687,-0.050781 0.105469,-0.113281 0.15625,-0.1875 0.042969,-0.070313 0.085937,-0.15625 0.125,-0.25 0.03125,-0.09375 0.070313,-0.1875 0.109375,-0.28125 0.042969,-0.09375 0.089844,-0.1875 0.140625,-0.28125 0.042969,-0.101563 0.101563,-0.191406 0.171875,-0.265625 0.0625,-0.070312 0.140625,-0.128906 0.234375,-0.171875 0.09375,-0.039063 0.210937,-0.0625 0.34375,-0.0625 z m 0,0"
           id="path137"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-6"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.078125,-5.09375 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.074219 0.015625,0.125 0,0.0625 -0.0078125,0.117188 -0.015625,0.15625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 h -1.875 c -0.132813,0 -0.253906,0.011719 -0.359375,0.03125 -0.101562,0.023437 -0.191406,0.058594 -0.265625,0.109375 -0.082031,0.054688 -0.144531,0.121094 -0.1875,0.203125 -0.039063,0.074219 -0.0625,0.164063 -0.0625,0.265625 0,0.125 0.054687,0.257812 0.15625,0.390625 0.09375,0.125 0.242187,0.265625 0.4375,0.421875 h 2.15625 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 h -1.875 c -0.132813,0 -0.253906,0.011719 -0.359375,0.03125 -0.101562,0.023437 -0.191406,0.058594 -0.265625,0.109375 -0.082031,0.054688 -0.144531,0.121094 -0.1875,0.203125 -0.039063,0.074219 -0.0625,0.164063 -0.0625,0.265625 0,0.125 0.054687,0.257812 0.15625,0.390625 0.09375,0.136719 0.242187,0.277344 0.4375,0.421875 h 2.15625 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 H -3.15625 c -0.019531,0 -0.035156,-0.003906 -0.046875,-0.015625 -0.019531,-0.007812 -0.03125,-0.023438 -0.03125,-0.046875 C -3.242188,-0.597656 -3.25,-0.625 -3.25,-0.65625 c -0.00781,-0.03125 -0.015625,-0.070312 -0.015625,-0.125 0,-0.050781 0.00781,-0.09375 0.015625,-0.125 0,-0.03125 0.00781,-0.054688 0.015625,-0.078125 0,-0.019531 0.011719,-0.03125 0.03125,-0.03125 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 H -2.75 c -0.195312,-0.175781 -0.335938,-0.34375 -0.421875,-0.5 -0.09375,-0.164062 -0.140625,-0.332031 -0.140625,-0.5 0,-0.125 0.015625,-0.238281 0.046875,-0.34375 0.023437,-0.101562 0.0625,-0.191406 0.125,-0.265625 0.054687,-0.082031 0.117187,-0.148437 0.1875,-0.203125 0.074219,-0.050781 0.15625,-0.097656 0.25,-0.140625 -0.113281,-0.09375 -0.207031,-0.1875 -0.28125,-0.28125 -0.082031,-0.09375 -0.144531,-0.179687 -0.1875,-0.265625 -0.050781,-0.09375 -0.085937,-0.175781 -0.109375,-0.25 -0.019531,-0.082031 -0.03125,-0.164062 -0.03125,-0.25 0,-0.195312 0.039062,-0.363281 0.109375,-0.5 0.0625,-0.132812 0.152344,-0.242188 0.265625,-0.328125 0.117188,-0.082031 0.25,-0.140625 0.40625,-0.171875 0.15625,-0.039062 0.324219,-0.0625 0.5,-0.0625 z m 0,0"
           id="path140"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-7"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.078125,-1.09375 c 0.0117188,0 0.0273438,0.00781 0.046875,0.015625 0.0117188,0.011719 0.0234375,0.027344 0.03125,0.046875 0,0.023438 0,0.054688 0,0.09375 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0351562,0.015625 -0.046875,0.015625 H -3.15625 c -0.019531,0 -0.035156,-0.003906 -0.046875,-0.015625 -0.019531,-0.007812 -0.03125,-0.023438 -0.03125,-0.046875 C -3.242188,-0.597656 -3.25,-0.625 -3.25,-0.65625 c -0.00781,-0.039062 -0.015625,-0.085938 -0.015625,-0.140625 0,-0.0625 0.00781,-0.109375 0.015625,-0.140625 0,-0.039062 0.00781,-0.070312 0.015625,-0.09375 0,-0.019531 0.011719,-0.035156 0.03125,-0.046875 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 z m -4.125,-0.0625 c 0.136719,0 0.230469,0.027344 0.28125,0.078125 0.042969,0.054687 0.0625,0.148437 0.0625,0.28125 0,0.125 -0.019531,0.214844 -0.0625,0.265625 -0.050781,0.054688 -0.140625,0.078125 -0.265625,0.078125 -0.132812,0 -0.222656,-0.023437 -0.265625,-0.078125 -0.050781,-0.050781 -0.078125,-0.144531 -0.078125,-0.28125 0,-0.125 0.027344,-0.210938 0.078125,-0.265625 0.042969,-0.050781 0.125,-0.078125 0.25,-0.078125 z m 0,0"
           id="path143"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-8"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.3125,-2.125 c 0.0625,0 0.117188,0.00781 0.15625,0.015625 0.042969,0.011719 0.0742188,0.027344 0.09375,0.046875 0.0117188,0.011719 0.0273438,0.039062 0.046875,0.078125 0.01171875,0.03125 0.01953125,0.074219 0.03125,0.125 0.0078125,0.042969 0.0195312,0.089844 0.03125,0.140625 0.0078125,0.054688 0.015625,0.105469 0.015625,0.15625 0,0.167969 -0.0234375,0.308594 -0.0625,0.421875 -0.0390625,0.117187 -0.101562,0.210937 -0.1875,0.28125 -0.09375,0.074219 -0.203125,0.125 -0.328125,0.15625 -0.132813,0.03125 -0.289063,0.046875 -0.46875,0.046875 H -2.78125 v 0.4375 c 0,0.03125 -0.015625,0.058594 -0.046875,0.078125 -0.039063,0.023437 -0.101563,0.03125 -0.1875,0.03125 -0.039063,0 -0.078125,0 -0.109375,0 -0.03125,-0.007813 -0.054688,-0.019531 -0.078125,-0.03125 -0.019531,-0.007813 -0.03125,-0.019531 -0.03125,-0.03125 C -3.242188,-0.191406 -3.25,-0.210938 -3.25,-0.234375 V -0.65625 h -0.734375 c -0.00781,0 -0.019531,-0.003906 -0.03125,-0.015625 C -4.035156,-0.679688 -4.050781,-0.695312 -4.0625,-0.71875 -4.070312,-0.738281 -4.078125,-0.765625 -4.078125,-0.796875 -4.085938,-0.835938 -4.09375,-0.882812 -4.09375,-0.9375 c 0,-0.050781 0.00781,-0.09375 0.015625,-0.125 0,-0.039062 0.00781,-0.070312 0.015625,-0.09375 0.011719,-0.019531 0.027344,-0.035156 0.046875,-0.046875 0.011719,-0.00781 0.023437,-0.015625 0.03125,-0.015625 H -3.25 v -0.796875 c 0,-0.00781 0.00781,-0.019531 0.015625,-0.03125 0,-0.019531 0.011719,-0.035156 0.03125,-0.046875 0.023437,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.03125,-0.00781 0.070312,-0.015625 0.109375,-0.015625 0.085937,0 0.148437,0.011719 0.1875,0.03125 0.03125,0.023438 0.046875,0.046875 0.046875,0.078125 v 0.796875 h 1.71875 c 0.210938,0 0.371094,-0.03125 0.484375,-0.09375 0.105469,-0.0625 0.15625,-0.175781 0.15625,-0.34375 0,-0.050781 -0.003906,-0.097656 -0.015625,-0.140625 C -0.445312,-1.835938 -0.457031,-1.875 -0.46875,-1.90625 -0.476562,-1.9375 -0.488281,-1.960938 -0.5,-1.984375 c -0.007812,-0.019531 -0.015625,-0.039063 -0.015625,-0.0625 0,-0.00781 0.007813,-0.019531 0.015625,-0.03125 0,-0.00781 0.011719,-0.015625 0.03125,-0.015625 0.011719,-0.00781 0.03125,-0.015625 0.0625,-0.015625 C -0.382812,-2.117188 -0.351562,-2.125 -0.3125,-2.125 Z m 0,0"
           id="path146"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-9"
         style="overflow:visible">
        <path
           style="stroke:none"
           d=""
           id="path149"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-10"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -1.75,-3.140625 c 0.085938,0 0.148438,0.023437 0.1875,0.0625 0.03125,0.042969 0.046875,0.09375 0.046875,0.15625 v 2.015625 c 0.179687,0 0.335937,-0.015625 0.46875,-0.046875 0.136719,-0.039063 0.257813,-0.097656 0.359375,-0.171875 0.09375,-0.082031 0.167969,-0.1875 0.21875,-0.3125 0.054688,-0.132812 0.078125,-0.296875 0.078125,-0.484375 0,-0.144531 -0.007813,-0.269531 -0.03125,-0.375 C -0.453125,-2.410156 -0.476562,-2.507812 -0.5,-2.59375 c -0.03125,-0.082031 -0.054688,-0.148438 -0.078125,-0.203125 -0.03125,-0.0625 -0.046875,-0.101563 -0.046875,-0.125 0,-0.019531 0.007812,-0.035156 0.015625,-0.046875 0,-0.00781 0.011719,-0.019531 0.03125,-0.03125 0.023437,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.023438,0 0.054688,0 0.09375,0 0.03125,0 0.058594,0 0.078125,0 0.023437,0 0.042969,0.00781 0.0625,0.015625 0.011719,0 0.027344,0.00781 0.046875,0.015625 0.011719,0 0.023438,0.011719 0.03125,0.03125 0.011719,0.011719 0.03125,0.046875 0.0625,0.109375 0.03125,0.0625 0.0625,0.140625 0.09375,0.234375 0.0234375,0.09375 0.0390625,0.210937 0.0625,0.34375 0.0195312,0.125 0.03125,0.261719 0.03125,0.40625 0,0.25 -0.03125,0.476563 -0.09375,0.671875 -0.070312,0.1875 -0.175781,0.351562 -0.3125,0.484375 -0.144531,0.125 -0.320312,0.226563 -0.53125,0.296875 -0.207031,0.0625 -0.453125,0.09375 -0.734375,0.09375 -0.257813,0 -0.492187,-0.03125 -0.703125,-0.09375 -0.21875,-0.070312 -0.398438,-0.171875 -0.546875,-0.296875 -0.144531,-0.132813 -0.253906,-0.289063 -0.328125,-0.46875 -0.082031,-0.1875 -0.125,-0.394531 -0.125,-0.625 0,-0.238281 0.042969,-0.441406 0.125,-0.609375 0.074219,-0.175781 0.179688,-0.316406 0.3125,-0.421875 0.125,-0.113281 0.277344,-0.191406 0.453125,-0.234375 0.179687,-0.050781 0.367187,-0.078125 0.5625,-0.078125 z m -0.171875,0.5625 C -2.222656,-2.585938 -2.457031,-2.519531 -2.625,-2.375 c -0.164062,0.136719 -0.25,0.339844 -0.25,0.609375 0,0.136719 0.027344,0.257813 0.078125,0.359375 0.054687,0.105469 0.125,0.195312 0.21875,0.265625 0.085937,0.074219 0.183594,0.132813 0.296875,0.171875 0.117188,0.03125 0.234375,0.054688 0.359375,0.0625 z m 0,0"
           id="path152"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-11"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 0.890625,-1.84375 c 0.070313,0 0.125,0.011719 0.15625,0.03125 0.03125,0.011719 0.046875,0.03125 0.046875,0.0625 v 0.875 c 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 C 1.066406,-0.757812 1.050781,-0.738281 1.03125,-0.71875 1.019531,-0.695312 1,-0.679688 0.96875,-0.671875 0.9375,-0.660156 0.898438,-0.65625 0.859375,-0.65625 h -5.40625 c -0.039063,0 -0.078125,-0.003906 -0.109375,-0.015625 -0.03125,-0.007813 -0.054688,-0.023437 -0.078125,-0.046875 -0.019531,-0.019531 -0.03125,-0.039062 -0.03125,-0.0625 C -4.773438,-0.8125 -4.78125,-0.84375 -4.78125,-0.875 V -1.75 c 0,-0.00781 0.00781,-0.019531 0.015625,-0.03125 0,-0.00781 0.011719,-0.019531 0.03125,-0.03125 0.023437,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.023438,-0.00781 0.054688,-0.015625 0.09375,-0.015625 0.074219,0 0.125,0.011719 0.15625,0.03125 0.03125,0.011719 0.046875,0.03125 0.046875,0.0625 v 0.5625 H 0.6875 V -1.75 c 0,-0.00781 0,-0.019531 0,-0.03125 0.007812,-0.00781 0.019531,-0.019531 0.03125,-0.03125 0.019531,-0.00781 0.039062,-0.015625 0.0625,-0.015625 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 z m 0,0"
           id="path155"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-12"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -0.09375,-5.390625 c 0.0234375,0 0.0429688,0.00781 0.0625,0.015625 0.0117188,0 0.0234375,0.015625 0.03125,0.046875 0,0.023437 0,0.046875 0,0.078125 0.0078125,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.0078125,0.101563 -0.015625,0.140625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0.011719 -0.0390625,0.015625 -0.0625,0.015625 H -3.9375 V -4.8125 l 3.859375,1.5625 c 0.0234375,0.011719 0.0390625,0.023438 0.046875,0.03125 0.0117188,0.011719 0.0234375,0.03125 0.03125,0.0625 0.0078125,0.023438 0.015625,0.046875 0.015625,0.078125 0,0.03125 0,0.074219 0,0.125 0,0.042969 -0.0078125,0.085937 -0.015625,0.125 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023438 -0.0195312,0.042969 -0.03125,0.0625 -0.0078125,0.011719 -0.0234375,0.015625 -0.046875,0.015625 L -3.9375,-1.15625 h 3.84375 c 0.0234375,0 0.0429688,0.00781 0.0625,0.015625 C -0.0195312,-1.128906 -0.0078125,-1.113281 0,-1.09375 0,-1.070312 0,-1.039062 0,-1 c 0.0078125,0.03125 0.015625,0.074219 0.015625,0.125 0,0.0625 -0.0078125,0.117188 -0.015625,0.15625 0,0.03125 0,0.058594 0,0.078125 -0.0078125,0.023437 -0.0195312,0.039063 -0.03125,0.046875 -0.0195312,0 -0.0390625,0 -0.0625,0 h -4.0625 c -0.09375,0 -0.160156,-0.019531 -0.203125,-0.0625 -0.039063,-0.050781 -0.0625,-0.109375 -0.0625,-0.171875 V -1.1875 c 0,-0.070312 0.011719,-0.132812 0.03125,-0.1875 0.011719,-0.050781 0.03125,-0.097656 0.0625,-0.140625 0.023437,-0.039063 0.058594,-0.078125 0.109375,-0.109375 0.042969,-0.03125 0.09375,-0.054688 0.15625,-0.078125 l 3.203125,-1.28125 V -3 l -3.1875,-1.328125 C -4.117188,-4.347656 -4.175781,-4.375 -4.21875,-4.40625 -4.269531,-4.4375 -4.3125,-4.46875 -4.34375,-4.5 -4.375,-4.539062 -4.394531,-4.582031 -4.40625,-4.625 -4.414062,-4.664062 -4.421875,-4.71875 -4.421875,-4.78125 v -0.359375 c 0,-0.039063 0.00781,-0.078125 0.015625,-0.109375 0.011719,-0.03125 0.027344,-0.054688 0.046875,-0.078125 0.023437,-0.019531 0.046875,-0.035156 0.078125,-0.046875 0.03125,-0.00781 0.074219,-0.015625 0.125,-0.015625 z m 0,0"
           id="path158"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-13"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m -1.671875,-3.359375 c 0.273437,0 0.515625,0.03125 0.734375,0.09375 0.210938,0.0625 0.390625,0.152344 0.546875,0.265625 0.148437,0.105469 0.261719,0.242188 0.34375,0.40625 0.0703125,0.167969 0.109375,0.359375 0.109375,0.578125 0,0.085937 -0.0117188,0.167969 -0.03125,0.25 -0.0117188,0.074219 -0.03515625,0.152344 -0.078125,0.234375 -0.0390625,0.074219 -0.085937,0.148438 -0.140625,0.21875 -0.0625,0.074219 -0.132812,0.148438 -0.21875,0.21875 h 1.546875 c 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 0.00781,0.03125 0.015625,0.078125 0.015625,0.140625 0,0.054687 -0.00781,0.101563 -0.015625,0.140625 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 -0.011719,0.023437 -0.027344,0.039063 -0.046875,0.046875 -0.011719,0.011719 -0.023437,0.015625 -0.03125,0.015625 H -3.15625 c -0.019531,0 -0.035156,-0.003906 -0.046875,-0.015625 -0.019531,-0.007812 -0.03125,-0.023438 -0.03125,-0.046875 C -3.242188,-0.597656 -3.25,-0.625 -3.25,-0.65625 c -0.00781,-0.03125 -0.015625,-0.066406 -0.015625,-0.109375 0,-0.050781 0.00781,-0.09375 0.015625,-0.125 0,-0.03125 0.00781,-0.054687 0.015625,-0.078125 0,-0.019531 0.011719,-0.03125 0.03125,-0.03125 0.011719,-0.00781 0.027344,-0.015625 0.046875,-0.015625 H -2.75 C -2.84375,-1.109375 -2.925781,-1.195312 -3,-1.28125 -3.070312,-1.375 -3.128906,-1.460938 -3.171875,-1.546875 -3.222656,-1.640625 -3.257812,-1.726562 -3.28125,-1.8125 -3.300781,-1.90625 -3.3125,-2.003906 -3.3125,-2.109375 c 0,-0.226563 0.042969,-0.421875 0.125,-0.578125 0.085938,-0.15625 0.203125,-0.28125 0.359375,-0.375 0.148437,-0.101562 0.324219,-0.175781 0.53125,-0.21875 0.199219,-0.050781 0.40625,-0.078125 0.625,-0.078125 z m 0.0625,0.59375 c -0.15625,0 -0.304687,0.015625 -0.453125,0.046875 -0.144531,0.023438 -0.273438,0.0625 -0.390625,0.125 -0.113281,0.054688 -0.203125,0.132812 -0.265625,0.234375 -0.070312,0.09375 -0.109375,0.214844 -0.109375,0.359375 0,0.074219 0.011719,0.148438 0.03125,0.21875 0.023437,0.074219 0.058594,0.148438 0.109375,0.21875 0.042969,0.074219 0.105469,0.152344 0.1875,0.234375 0.074219,0.074219 0.164062,0.152344 0.265625,0.234375 H -1 c 0.1875,-0.144531 0.335938,-0.285156 0.4375,-0.421875 0.09375,-0.144531 0.140625,-0.296875 0.140625,-0.453125 0,-0.132812 -0.03125,-0.253906 -0.09375,-0.359375 -0.070313,-0.101563 -0.164063,-0.1875 -0.28125,-0.25 -0.113281,-0.0625 -0.238281,-0.109375 -0.375,-0.140625 -0.144531,-0.03125 -0.289063,-0.046875 -0.4375,-0.046875 z m 0,0"
           id="path161"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph2-14"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 0.859375,-1.5 c 0.039063,0 0.078125,0.011719 0.109375,0.03125 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.019531,0.023437 0.035156,0.046875 0.046875,0.078125 0.00781,0.023438 0.015625,0.042969 0.015625,0.0625 v 0.875 c 0,0.03125 -0.015625,0.058594 -0.046875,0.078125 -0.03125,0.011719 -0.085937,0.015625 -0.15625,0.015625 -0.042969,0 -0.078125,0 -0.109375,0 -0.023438,0 -0.042969,-0.003906 -0.0625,-0.015625 -0.011719,-0.007813 -0.023438,-0.019531 -0.03125,-0.03125 0,-0.019531 0,-0.035156 0,-0.046875 v -0.5625 h -5.046875 v 0.5625 c 0,0.03125 -0.015625,0.058594 -0.046875,0.078125 -0.03125,0.011719 -0.082031,0.015625 -0.15625,0.015625 -0.039062,0 -0.070312,0 -0.09375,0 -0.03125,0 -0.054688,-0.003906 -0.078125,-0.015625 -0.019531,-0.007813 -0.03125,-0.019531 -0.03125,-0.03125 -0.00781,-0.019531 -0.015625,-0.035156 -0.015625,-0.046875 v -0.875 c 0,-0.019531 0.00781,-0.039062 0.015625,-0.0625 0,-0.03125 0.011719,-0.054688 0.03125,-0.078125 C -4.710938,-1.441406 -4.6875,-1.457031 -4.65625,-1.46875 -4.625,-1.488281 -4.585938,-1.5 -4.546875,-1.5 Z m 0,0"
           id="path164"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-0"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 3.34375,-4.421875 V 0 H 0.15625 V -4.421875 Z M 3.046875,-0.28125 V -4.140625 H 0.4375 V -0.28125 Z M 2.625,-2.921875 c 0,0.136719 -0.023438,0.257813 -0.0625,0.359375 -0.042969,0.105469 -0.101562,0.195312 -0.171875,0.265625 -0.074219,0.074219 -0.15625,0.132813 -0.25,0.171875 C 2.046875,-2.082031 1.9375,-2.0625 1.8125,-2.0625 l -0.015625,0.53125 c 0,0.023438 -0.015625,0.039062 -0.046875,0.046875 -0.03125,0 -0.078125,0 -0.140625,0 -0.03125,0 -0.0625,0 -0.09375,0 -0.023437,0 -0.039063,0 -0.046875,0 C 1.457031,-1.492188 1.445312,-1.5 1.4375,-1.5 1.425781,-1.507812 1.421875,-1.519531 1.421875,-1.53125 L 1.40625,-2.171875 c 0,-0.0625 0.015625,-0.109375 0.046875,-0.140625 0.03125,-0.03125 0.070313,-0.046875 0.125,-0.046875 h 0.0625 c 0.101563,0 0.1875,-0.00781 0.25,-0.03125 C 1.960938,-2.421875 2.019531,-2.457031 2.0625,-2.5 2.101562,-2.550781 2.132812,-2.609375 2.15625,-2.671875 2.175781,-2.742188 2.1875,-2.816406 2.1875,-2.890625 2.1875,-3.054688 2.132812,-3.1875 2.03125,-3.28125 1.9375,-3.382812 1.789062,-3.4375 1.59375,-3.4375 c -0.09375,0 -0.179688,0.011719 -0.25,0.03125 -0.0625,0.011719 -0.121094,0.027344 -0.171875,0.046875 -0.054687,0.023437 -0.09375,0.042969 -0.125,0.0625 -0.03125,0.023437 -0.058594,0.03125 -0.078125,0.03125 0,0 -0.007812,0 -0.015625,0 -0.011719,-0.00781 -0.023437,-0.019531 -0.03125,-0.03125 0,-0.00781 -0.007813,-0.023437 -0.015625,-0.046875 0,-0.03125 0,-0.0625 0,-0.09375 0,-0.039062 0,-0.070312 0,-0.09375 0.007812,-0.03125 0.023438,-0.050781 0.046875,-0.0625 0.019531,-0.019531 0.050781,-0.039062 0.09375,-0.0625 0.039063,-0.019531 0.09375,-0.039062 0.15625,-0.0625 0.0625,-0.019531 0.128906,-0.035156 0.203125,-0.046875 0.082031,-0.00781 0.160156,-0.015625 0.234375,-0.015625 0.175781,0 0.320313,0.027344 0.4375,0.078125 0.125,0.042969 0.222656,0.101563 0.296875,0.171875 0.082031,0.074219 0.144531,0.167969 0.1875,0.28125 0.039062,0.105469 0.0625,0.214844 0.0625,0.328125 z M 1.875,-0.9375 c 0,0.054688 -0.00781,0.09375 -0.015625,0.125 0,0.03125 -0.011719,0.058594 -0.03125,0.078125 C 1.804688,-0.710938 1.78125,-0.695312 1.75,-0.6875 1.71875,-0.675781 1.675781,-0.671875 1.625,-0.671875 1.570312,-0.671875 1.53125,-0.675781 1.5,-0.6875 1.46875,-0.695312 1.441406,-0.710938 1.421875,-0.734375 1.398438,-0.753906 1.382812,-0.78125 1.375,-0.8125 1.363281,-0.84375 1.359375,-0.882812 1.359375,-0.9375 c 0,-0.039062 0.00391,-0.078125 0.015625,-0.109375 0.00781,-0.039063 0.023438,-0.070313 0.046875,-0.09375 C 1.441406,-1.160156 1.46875,-1.171875 1.5,-1.171875 1.53125,-1.179688 1.570312,-1.1875 1.625,-1.1875 c 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.054688,0.011719 0.078125,0.03125 0.019531,0.023437 0.03125,0.054687 0.03125,0.09375 C 1.867188,-1.015625 1.875,-0.976562 1.875,-0.9375 Z M 0,1.359375 Z m 0,0"
           id="path167"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-1"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.359375,-4.171875 c 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 C 3.316406,-3.960938 3.300781,-3.945312 3.28125,-3.9375 3.269531,-3.925781 3.257812,-3.921875 3.25,-3.921875 H 2 v 3.828125 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.972656,-0.0195312 1.957031,-0.0078125 1.9375,0 1.914062,0 1.882812,0 1.84375,0 1.8125,0.0078125 1.765625,0.015625 1.703125,0.015625 1.648438,0.015625 1.601562,0.0078125 1.5625,0 1.519531,0 1.488281,0 1.46875,0 1.445312,-0.0078125 1.429688,-0.0195312 1.421875,-0.03125 1.410156,-0.0507812 1.40625,-0.0703125 1.40625,-0.09375 V -3.921875 H 0.171875 c -0.023437,0 -0.042969,-0.00391 -0.0625,-0.015625 C 0.0976562,-3.945312 0.0859375,-3.960938 0.078125,-3.984375 0.0664062,-4.003906 0.0546875,-4.03125 0.046875,-4.0625 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.039063 0,-0.078125 0,-0.109375 0.0078125,-0.03125 0.0195312,-0.054688 0.03125,-0.078125 0.0078125,-0.019531 0.0195312,-0.035156 0.03125,-0.046875 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 H 3.25 c 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 z m 0,0"
           id="path170"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-2"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.09375,-0.078125 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 1.066406,-0.0195312 1.050781,-0.0078125 1.03125,0 1.007812,0 0.976562,0 0.9375,0 0.90625,0.0078125 0.859375,0.015625 0.796875,0.015625 0.742188,0.015625 0.695312,0.0078125 0.65625,0 0.625,0 0.597656,0 0.578125,0 0.554688,-0.0078125 0.539062,-0.0195312 0.53125,-0.03125 0.519531,-0.0507812 0.515625,-0.0664062 0.515625,-0.078125 V -3.15625 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007812,-0.019531 0.023438,-0.03125 0.046875,-0.03125 C 0.597656,-3.242188 0.625,-3.25 0.65625,-3.25 c 0.039062,-0.00781 0.085938,-0.015625 0.140625,-0.015625 0.0625,0 0.109375,0.00781 0.140625,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.019531,0 0.035156,0.011719 0.046875,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0.0625,-4.125 c 0,0.136719 -0.027344,0.230469 -0.078125,0.28125 -0.054687,0.042969 -0.148437,0.0625 -0.28125,0.0625 -0.125,0 -0.214844,-0.019531 -0.265625,-0.0625 C 0.476562,-3.972656 0.453125,-4.0625 0.453125,-4.1875 c 0,-0.132812 0.023437,-0.222656 0.078125,-0.265625 0.050781,-0.050781 0.144531,-0.078125 0.28125,-0.078125 0.125,0 0.210938,0.027344 0.265625,0.078125 0.050781,0.042969 0.078125,0.125 0.078125,0.25 z m 0,0"
           id="path173"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-3"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 5.09375,-0.078125 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 5.066406,-0.0195312 5.050781,-0.0078125 5.03125,0 5.007812,0 4.976562,0 4.9375,0 4.90625,0.0078125 4.863281,0.015625 4.8125,0.015625 4.75,0.015625 4.695312,0.0078125 4.65625,0 4.625,0 4.597656,0 4.578125,0 4.554688,-0.0078125 4.539062,-0.0195312 4.53125,-0.03125 4.519531,-0.0507812 4.515625,-0.0664062 4.515625,-0.078125 v -1.875 c 0,-0.132813 -0.011719,-0.253906 -0.03125,-0.359375 C 4.460938,-2.414062 4.425781,-2.503906 4.375,-2.578125 4.320312,-2.660156 4.253906,-2.722656 4.171875,-2.765625 c -0.074219,-0.039063 -0.164063,-0.0625 -0.265625,-0.0625 -0.125,0 -0.257812,0.054687 -0.390625,0.15625 -0.125,0.09375 -0.265625,0.242187 -0.421875,0.4375 v 2.15625 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 3.066406,-0.0195312 3.050781,-0.0078125 3.03125,0 3.007812,0 2.976562,0 2.9375,0 2.90625,0.0078125 2.859375,0.015625 2.796875,0.015625 2.742188,0.015625 2.695312,0.0078125 2.65625,0 2.625,0 2.597656,0 2.578125,0 2.554688,-0.0078125 2.539062,-0.0195312 2.53125,-0.03125 2.519531,-0.0507812 2.515625,-0.0664062 2.515625,-0.078125 v -1.875 c 0,-0.132813 -0.011719,-0.253906 -0.03125,-0.359375 C 2.460938,-2.414062 2.425781,-2.503906 2.375,-2.578125 2.320312,-2.660156 2.253906,-2.722656 2.171875,-2.765625 c -0.074219,-0.039063 -0.164063,-0.0625 -0.265625,-0.0625 -0.125,0 -0.257812,0.054687 -0.390625,0.15625 -0.136719,0.09375 -0.277344,0.242187 -0.421875,0.4375 v 2.15625 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 1.066406,-0.0195312 1.050781,-0.0078125 1.03125,0 1.007812,0 0.976562,0 0.9375,0 0.90625,0.0078125 0.859375,0.015625 0.796875,0.015625 0.742188,0.015625 0.695312,0.0078125 0.65625,0 0.625,0 0.597656,0 0.578125,0 0.554688,-0.0078125 0.539062,-0.0195312 0.53125,-0.03125 0.519531,-0.0507812 0.515625,-0.0664062 0.515625,-0.078125 V -3.15625 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007812,-0.019531 0.023438,-0.03125 0.046875,-0.03125 C 0.597656,-3.242188 0.625,-3.25 0.65625,-3.25 c 0.03125,-0.00781 0.070312,-0.015625 0.125,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.019531,0 0.03125,0.011719 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 V -2.75 c 0.175781,-0.195312 0.34375,-0.335938 0.5,-0.421875 0.164062,-0.09375 0.332031,-0.140625 0.5,-0.140625 0.125,0 0.238281,0.015625 0.34375,0.046875 0.101562,0.023437 0.191406,0.0625 0.265625,0.125 0.082031,0.054687 0.148437,0.117187 0.203125,0.1875 0.050781,0.074219 0.097656,0.15625 0.140625,0.25 0.09375,-0.113281 0.1875,-0.207031 0.28125,-0.28125 0.09375,-0.082031 0.179687,-0.144531 0.265625,-0.1875 0.09375,-0.050781 0.175781,-0.085937 0.25,-0.109375 0.082031,-0.019531 0.164062,-0.03125 0.25,-0.03125 0.195312,0 0.363281,0.039062 0.5,0.109375 0.132812,0.0625 0.242188,0.152344 0.328125,0.265625 0.082031,0.117188 0.140625,0.25 0.171875,0.40625 0.039062,0.15625 0.0625,0.324219 0.0625,0.5 z m 0,0"
           id="path176"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-4"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.140625,-1.75 c 0,0.085938 -0.023437,0.148438 -0.0625,0.1875 -0.042969,0.03125 -0.09375,0.046875 -0.15625,0.046875 H 0.90625 c 0,0.179687 0.015625,0.335937 0.046875,0.46875 0.039063,0.136719 0.097656,0.257813 0.171875,0.359375 0.082031,0.09375 0.1875,0.167969 0.3125,0.21875 0.132812,0.054688 0.296875,0.078125 0.484375,0.078125 0.144531,0 0.269531,-0.007813 0.375,-0.03125 C 2.410156,-0.453125 2.507812,-0.476562 2.59375,-0.5 c 0.082031,-0.03125 0.148438,-0.054688 0.203125,-0.078125 0.0625,-0.03125 0.101563,-0.046875 0.125,-0.046875 0.019531,0 0.035156,0.007812 0.046875,0.015625 0.00781,0 0.019531,0.011719 0.03125,0.03125 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0,0.023438 0,0.054688 0,0.09375 0,0.03125 0,0.058594 0,0.078125 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 0,0.011719 -0.011719,0.023438 -0.03125,0.03125 -0.011719,0.011719 -0.046875,0.03125 -0.109375,0.0625 -0.0625,0.03125 -0.140625,0.0625 -0.234375,0.09375 -0.09375,0.0234375 -0.210937,0.0390625 -0.34375,0.0625 -0.125,0.0195312 -0.261719,0.03125 -0.40625,0.03125 -0.25,0 -0.476563,-0.03125 -0.671875,-0.09375 C 1,-0.101562 0.835938,-0.207031 0.703125,-0.34375 0.578125,-0.488281 0.476562,-0.664062 0.40625,-0.875 0.34375,-1.082031 0.3125,-1.328125 0.3125,-1.609375 c 0,-0.257813 0.03125,-0.492187 0.09375,-0.703125 0.070312,-0.21875 0.171875,-0.398438 0.296875,-0.546875 0.132813,-0.144531 0.289063,-0.253906 0.46875,-0.328125 0.1875,-0.082031 0.394531,-0.125 0.625,-0.125 0.238281,0 0.441406,0.042969 0.609375,0.125 0.175781,0.074219 0.316406,0.179688 0.421875,0.3125 0.113281,0.125 0.191406,0.277344 0.234375,0.453125 0.050781,0.179687 0.078125,0.367187 0.078125,0.5625 z m -0.5625,-0.171875 C 2.585938,-2.222656 2.519531,-2.457031 2.375,-2.625 2.238281,-2.789062 2.035156,-2.875 1.765625,-2.875 c -0.136719,0 -0.257813,0.027344 -0.359375,0.078125 -0.105469,0.054687 -0.195312,0.125 -0.265625,0.21875 -0.074219,0.085937 -0.132813,0.183594 -0.171875,0.296875 -0.03125,0.117188 -0.054688,0.234375 -0.0625,0.359375 z m 0,0"
           id="path179"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-5"
         style="overflow:visible">
        <path
           style="stroke:none"
           d=""
           id="path182"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-6"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.453125,-0.921875 c 0,0.15625 -0.03125,0.296875 -0.09375,0.421875 -0.054687,0.125 -0.136719,0.230469 -0.25,0.3125 C 2.003906,-0.101562 1.878906,-0.0390625 1.734375,0 1.585938,0.0390625 1.425781,0.0625 1.25,0.0625 1.132812,0.0625 1.023438,0.0507812 0.921875,0.03125 0.828125,0.0195312 0.738281,0.00390625 0.65625,-0.015625 0.582031,-0.046875 0.519531,-0.078125 0.46875,-0.109375 0.414062,-0.140625 0.375,-0.164062 0.34375,-0.1875 0.320312,-0.207031 0.304688,-0.238281 0.296875,-0.28125 0.285156,-0.320312 0.28125,-0.378906 0.28125,-0.453125 c 0,-0.039063 0,-0.078125 0,-0.109375 C 0.289062,-0.59375 0.296875,-0.613281 0.296875,-0.625 0.304688,-0.644531 0.316406,-0.660156 0.328125,-0.671875 0.335938,-0.679688 0.351562,-0.6875 0.375,-0.6875 c 0.019531,0 0.054688,0.015625 0.109375,0.046875 0.050781,0.03125 0.109375,0.070313 0.171875,0.109375 0.070312,0.03125 0.15625,0.0625 0.25,0.09375 0.101562,0.03125 0.222656,0.046875 0.359375,0.046875 0.09375,0 0.175781,-0.007813 0.25,-0.03125 C 1.597656,-0.441406 1.664062,-0.46875 1.71875,-0.5 c 0.0625,-0.039062 0.101562,-0.09375 0.125,-0.15625 0.03125,-0.0625 0.046875,-0.132812 0.046875,-0.21875 0,-0.09375 -0.023437,-0.164062 -0.0625,-0.21875 C 1.785156,-1.15625 1.726562,-1.207031 1.65625,-1.25 1.582031,-1.300781 1.5,-1.34375 1.40625,-1.375 1.3125,-1.40625 1.21875,-1.441406 1.125,-1.484375 1.03125,-1.523438 0.9375,-1.566406 0.84375,-1.609375 0.75,-1.660156 0.664062,-1.722656 0.59375,-1.796875 c -0.074219,-0.070313 -0.132812,-0.15625 -0.171875,-0.25 -0.042969,-0.101563 -0.0625,-0.222656 -0.0625,-0.359375 0,-0.113281 0.019531,-0.226562 0.0625,-0.34375 0.050781,-0.113281 0.117187,-0.210938 0.203125,-0.296875 0.09375,-0.082031 0.207031,-0.144531 0.34375,-0.1875 0.144531,-0.050781 0.3125,-0.078125 0.5,-0.078125 0.082031,0 0.164062,0.00781 0.25,0.015625 0.082031,0.011719 0.15625,0.027344 0.21875,0.046875 0.070312,0.023438 0.128906,0.046875 0.171875,0.078125 0.050781,0.023437 0.085937,0.042969 0.109375,0.0625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.011719 0,0.03125 0,0.0625 0.00781,0.023437 0.015625,0.054687 0.015625,0.09375 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.011719 -0.00781,0.023438 -0.015625,0.03125 -0.011719,0.011719 -0.027344,0.015625 -0.046875,0.015625 -0.023437,0 -0.054687,-0.00781 -0.09375,-0.03125 C 2.078125,-2.703125 2.03125,-2.726562 1.96875,-2.75 1.90625,-2.78125 1.832031,-2.804688 1.75,-2.828125 1.664062,-2.859375 1.570312,-2.875 1.46875,-2.875 c -0.09375,0 -0.179688,0.011719 -0.25,0.03125 C 1.144531,-2.820312 1.082031,-2.789062 1.03125,-2.75 0.988281,-2.707031 0.953125,-2.660156 0.921875,-2.609375 0.898438,-2.554688 0.890625,-2.5 0.890625,-2.4375 c 0,0.09375 0.019531,0.171875 0.0625,0.234375 0.050781,0.054687 0.113281,0.105469 0.1875,0.15625 0.070313,0.042969 0.15625,0.085937 0.25,0.125 0.09375,0.03125 0.1875,0.070313 0.28125,0.109375 0.09375,0.042969 0.1875,0.089844 0.28125,0.140625 0.101563,0.042969 0.191406,0.101563 0.265625,0.171875 0.070312,0.0625 0.128906,0.140625 0.171875,0.234375 0.039063,0.09375 0.0625,0.210937 0.0625,0.34375 z m 0,0"
           id="path185"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-7"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.171875,-0.078125 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 3.144531,-0.0195312 3.128906,-0.0078125 3.109375,0 3.085938,0 3.054688,0 3.015625,0 2.984375,0.0078125 2.941406,0.015625 2.890625,0.015625 2.835938,0.015625 2.789062,0.0078125 2.75,0 2.71875,0 2.691406,0 2.671875,0 2.648438,-0.0078125 2.632812,-0.0195312 2.625,-0.03125 2.613281,-0.0507812 2.609375,-0.0664062 2.609375,-0.078125 v -1.8125 C 2.609375,-2.066406 2.59375,-2.207031 2.5625,-2.3125 2.539062,-2.414062 2.503906,-2.503906 2.453125,-2.578125 2.398438,-2.660156 2.332031,-2.722656 2.25,-2.765625 c -0.085938,-0.039063 -0.183594,-0.0625 -0.296875,-0.0625 -0.136719,0 -0.277344,0.054687 -0.421875,0.15625 -0.148438,0.09375 -0.292969,0.242187 -0.4375,0.4375 v 2.15625 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 1.066406,-0.0195312 1.050781,-0.0078125 1.03125,0 1.007812,0 0.976562,0 0.9375,0 0.90625,0.0078125 0.859375,0.015625 0.796875,0.015625 0.742188,0.015625 0.695312,0.0078125 0.65625,0 0.625,0 0.597656,0 0.578125,0 0.554688,-0.0078125 0.539062,-0.0195312 0.53125,-0.03125 0.519531,-0.0507812 0.515625,-0.0664062 0.515625,-0.078125 V -3.15625 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007812,-0.019531 0.023438,-0.03125 0.046875,-0.03125 C 0.597656,-3.242188 0.625,-3.25 0.65625,-3.25 c 0.03125,-0.00781 0.070312,-0.015625 0.125,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.019531,0 0.03125,0.011719 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 V -2.75 c 0.175781,-0.195312 0.347656,-0.335938 0.515625,-0.421875 0.175781,-0.09375 0.351563,-0.140625 0.53125,-0.140625 0.195313,0 0.363281,0.039062 0.5,0.109375 0.144531,0.0625 0.257813,0.152344 0.34375,0.265625 0.09375,0.117188 0.15625,0.25 0.1875,0.40625 0.039063,0.15625 0.0625,0.34375 0.0625,0.5625 z m 0,0"
           id="path188"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-8"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.734375,-0.546875 c 0,0.03125 0,0.0625 0,0.09375 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 -0.011719,0.011719 -0.023438,0.027344 -0.03125,0.046875 0,0.011719 -0.015625,0.03125 -0.046875,0.0625 -0.03125,0.03125 -0.085937,0.070313 -0.15625,0.109375 -0.0625,0.042969 -0.136719,0.078125 -0.21875,0.109375 C 2.179688,-0.015625 2.085938,0.0078125 1.984375,0.03125 1.890625,0.0507812 1.785156,0.0625 1.671875,0.0625 1.453125,0.0625 1.253906,0.0234375 1.078125,-0.046875 0.910156,-0.117188 0.769531,-0.222656 0.65625,-0.359375 0.539062,-0.503906 0.453125,-0.675781 0.390625,-0.875 0.335938,-1.082031 0.3125,-1.320312 0.3125,-1.59375 c 0,-0.300781 0.035156,-0.554688 0.109375,-0.765625 0.070313,-0.21875 0.171875,-0.394531 0.296875,-0.53125 0.132812,-0.144531 0.285156,-0.25 0.453125,-0.3125 C 1.347656,-3.273438 1.539062,-3.3125 1.75,-3.3125 c 0.09375,0 0.1875,0.011719 0.28125,0.03125 0.09375,0.023438 0.175781,0.046875 0.25,0.078125 0.082031,0.023437 0.148438,0.054687 0.203125,0.09375 0.0625,0.042969 0.101563,0.078125 0.125,0.109375 0.03125,0.023438 0.050781,0.042969 0.0625,0.0625 0.00781,0.011719 0.019531,0.027344 0.03125,0.046875 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0,0.023438 0,0.054688 0,0.09375 0,0.09375 -0.011719,0.164062 -0.03125,0.203125 -0.023438,0.03125 -0.046875,0.046875 -0.078125,0.046875 -0.03125,0 -0.070313,-0.019531 -0.109375,-0.0625 -0.042969,-0.039062 -0.101562,-0.082031 -0.171875,-0.125 -0.074219,-0.039062 -0.15625,-0.082031 -0.25,-0.125 -0.09375,-0.039062 -0.210937,-0.0625 -0.34375,-0.0625 -0.273437,0 -0.480469,0.105469 -0.625,0.3125 -0.148437,0.210938 -0.21875,0.515625 -0.21875,0.921875 0,0.199219 0.019531,0.371094 0.0625,0.515625 0.039063,0.148438 0.097656,0.273438 0.171875,0.375 0.070312,0.09375 0.160156,0.167969 0.265625,0.21875 0.101563,0.054688 0.222656,0.078125 0.359375,0.078125 0.125,0 0.234375,-0.019531 0.328125,-0.0625 0.101563,-0.039063 0.191406,-0.082031 0.265625,-0.125 0.070312,-0.050781 0.128906,-0.097656 0.171875,-0.140625 0.050781,-0.039062 0.09375,-0.0625 0.125,-0.0625 0.019531,0 0.035156,0.007812 0.046875,0.015625 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0.00781,0.03125 0.015625,0.074219 0.015625,0.125 z m 0,0"
           id="path191"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-9"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.84375,-0.078125 c 0,0.0234375 -0.011719,0.0429688 -0.03125,0.0625 C 2.789062,-0.00390625 2.765625,0 2.734375,0 2.703125,0.0078125 2.65625,0.015625 2.59375,0.015625 2.539062,0.015625 2.492188,0.0078125 2.453125,0 2.421875,0 2.394531,-0.00390625 2.375,-0.015625 2.363281,-0.0351562 2.359375,-0.0546875 2.359375,-0.078125 v -0.3125 C 2.222656,-0.242188 2.070312,-0.128906 1.90625,-0.046875 1.738281,0.0234375 1.5625,0.0625 1.375,0.0625 1.21875,0.0625 1.070312,0.0390625 0.9375,0 0.8125,-0.0390625 0.703125,-0.0976562 0.609375,-0.171875 0.515625,-0.253906 0.441406,-0.351562 0.390625,-0.46875 0.335938,-0.59375 0.3125,-0.726562 0.3125,-0.875 c 0,-0.164062 0.035156,-0.3125 0.109375,-0.4375 0.070313,-0.132812 0.171875,-0.242188 0.296875,-0.328125 0.132812,-0.082031 0.296875,-0.144531 0.484375,-0.1875 0.195313,-0.039063 0.414063,-0.0625 0.65625,-0.0625 H 2.28125 v -0.25 c 0,-0.113281 -0.015625,-0.210937 -0.046875,-0.296875 -0.023437,-0.09375 -0.0625,-0.171875 -0.125,-0.234375 -0.054687,-0.0625 -0.125,-0.109375 -0.21875,-0.140625 -0.085937,-0.03125 -0.1875,-0.046875 -0.3125,-0.046875 -0.136719,0 -0.261719,0.015625 -0.375,0.046875 C 1.085938,-2.78125 0.988281,-2.742188 0.90625,-2.703125 0.820312,-2.660156 0.753906,-2.625 0.703125,-2.59375 c -0.054687,0.03125 -0.09375,0.046875 -0.125,0.046875 -0.023437,0 -0.039063,0 -0.046875,0 C 0.519531,-2.554688 0.507812,-2.570312 0.5,-2.59375 0.488281,-2.613281 0.476562,-2.632812 0.46875,-2.65625 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.050781 0,-0.09375 0,-0.125 0.007812,-0.03125 0.03125,-0.0625 0.0625,-0.09375 0.03125,-0.03125 0.082031,-0.066406 0.15625,-0.109375 0.082031,-0.039062 0.171875,-0.078125 0.265625,-0.109375 0.09375,-0.03125 0.195313,-0.054687 0.3125,-0.078125 0.125,-0.019531 0.242187,-0.03125 0.359375,-0.03125 0.21875,0 0.40625,0.027344 0.5625,0.078125 0.15625,0.042969 0.28125,0.117187 0.375,0.21875 0.09375,0.09375 0.160156,0.214844 0.203125,0.359375 0.050781,0.148438 0.078125,0.3125 0.078125,0.5 z m -0.5625,-1.40625 H 1.796875 c -0.15625,0 -0.292969,0.015625 -0.40625,0.046875 -0.117187,0.023438 -0.210937,0.058594 -0.28125,0.109375 C 1.035156,-1.273438 0.976562,-1.210938 0.9375,-1.140625 0.90625,-1.078125 0.890625,-1 0.890625,-0.90625 c 0,0.167969 0.050781,0.296875 0.15625,0.390625 0.101563,0.09375 0.242187,0.140625 0.421875,0.140625 0.144531,0 0.28125,-0.035156 0.40625,-0.109375 0.132812,-0.082031 0.269531,-0.195313 0.40625,-0.34375 z m 0,0"
           id="path194"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-10"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.328125,-2.953125 c 0,0.042969 -0.00781,0.085937 -0.015625,0.125 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.023438 -0.00781,0.039062 -0.015625,0.046875 C 2.269531,-2.691406 2.253906,-2.6875 2.234375,-2.6875 2.210938,-2.6875 2.1875,-2.691406 2.15625,-2.703125 2.132812,-2.710938 2.109375,-2.722656 2.078125,-2.734375 2.046875,-2.742188 2.007812,-2.753906 1.96875,-2.765625 1.925781,-2.773438 1.878906,-2.78125 1.828125,-2.78125 1.773438,-2.78125 1.722656,-2.769531 1.671875,-2.75 1.617188,-2.726562 1.5625,-2.691406 1.5,-2.640625 c -0.0625,0.054687 -0.132812,0.125 -0.203125,0.21875 -0.0625,0.085937 -0.132813,0.1875 -0.203125,0.3125 v 2.03125 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 1.066406,-0.0195312 1.050781,-0.0078125 1.03125,0 1.007812,0 0.976562,0 0.9375,0 0.90625,0.0078125 0.859375,0.015625 0.796875,0.015625 0.742188,0.015625 0.695312,0.0078125 0.65625,0 0.625,0 0.597656,0 0.578125,0 0.554688,-0.0078125 0.539062,-0.0195312 0.53125,-0.03125 0.519531,-0.0507812 0.515625,-0.0664062 0.515625,-0.078125 V -3.15625 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007812,-0.019531 0.023438,-0.03125 0.046875,-0.03125 C 0.597656,-3.242188 0.625,-3.25 0.65625,-3.25 c 0.03125,-0.00781 0.070312,-0.015625 0.125,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.019531,0 0.03125,0.011719 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 v 0.4375 C 1.113281,-2.84375 1.191406,-2.941406 1.265625,-3.015625 1.335938,-3.085938 1.40625,-3.144531 1.46875,-3.1875 1.539062,-3.238281 1.609375,-3.269531 1.671875,-3.28125 1.742188,-3.300781 1.8125,-3.3125 1.875,-3.3125 c 0.03125,0 0.0625,0 0.09375,0 0.039062,0 0.082031,0.00781 0.125,0.015625 0.039062,0.011719 0.078125,0.023437 0.109375,0.03125 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.011719 0,0.03125 0,0.0625 0.00781,0.03125 0.015625,0.074219 0.015625,0.125 z m 0,0"
           id="path197"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-11"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.171875,-0.078125 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 3.144531,-0.0195312 3.128906,-0.0078125 3.109375,0 3.085938,0 3.054688,0 3.015625,0 2.984375,0.0078125 2.941406,0.015625 2.890625,0.015625 2.835938,0.015625 2.789062,0.0078125 2.75,0 2.71875,0 2.691406,0 2.671875,0 2.648438,-0.0078125 2.632812,-0.0195312 2.625,-0.03125 2.613281,-0.0507812 2.609375,-0.0664062 2.609375,-0.078125 v -1.8125 C 2.609375,-2.066406 2.59375,-2.207031 2.5625,-2.3125 2.539062,-2.414062 2.503906,-2.503906 2.453125,-2.578125 2.398438,-2.660156 2.332031,-2.722656 2.25,-2.765625 c -0.085938,-0.039063 -0.183594,-0.0625 -0.296875,-0.0625 -0.136719,0 -0.277344,0.054687 -0.421875,0.15625 -0.148438,0.09375 -0.292969,0.242187 -0.4375,0.4375 v 2.15625 c 0,0.0117188 -0.00781,0.0273438 -0.015625,0.046875 C 1.066406,-0.0195312 1.050781,-0.0078125 1.03125,0 1.007812,0 0.976562,0 0.9375,0 0.90625,0.0078125 0.859375,0.015625 0.796875,0.015625 0.742188,0.015625 0.695312,0.0078125 0.65625,0 0.625,0 0.597656,0 0.578125,0 0.554688,-0.0078125 0.539062,-0.0195312 0.53125,-0.03125 0.519531,-0.0507812 0.515625,-0.0664062 0.515625,-0.078125 V -4.65625 c 0,-0.00781 0.003906,-0.019531 0.015625,-0.03125 C 0.539062,-4.707031 0.554688,-4.722656 0.578125,-4.734375 0.597656,-4.742188 0.625,-4.75 0.65625,-4.75 c 0.039062,-0.00781 0.085938,-0.015625 0.140625,-0.015625 0.0625,0 0.109375,0.00781 0.140625,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.011719 0.015625,0.023438 0.015625,0.03125 v 1.84375 c 0.15625,-0.164062 0.316406,-0.289062 0.484375,-0.375 0.164063,-0.082031 0.332031,-0.125 0.5,-0.125 0.195313,0 0.363281,0.039062 0.5,0.109375 0.144531,0.0625 0.257813,0.152344 0.34375,0.265625 0.09375,0.117188 0.15625,0.25 0.1875,0.40625 0.039063,0.15625 0.0625,0.351562 0.0625,0.578125 z m 0,0"
           id="path200"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-12"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.125,-0.3125 c 0,0.0625 -0.00781,0.117188 -0.015625,0.15625 C 2.097656,-0.113281 2.082031,-0.0820312 2.0625,-0.0625 2.050781,-0.0507812 2.023438,-0.0351562 1.984375,-0.015625 1.953125,-0.00390625 1.910156,0.00390625 1.859375,0.015625 1.816406,0.0234375 1.769531,0.0351562 1.71875,0.046875 1.664062,0.0546875 1.613281,0.0625 1.5625,0.0625 1.394531,0.0625 1.253906,0.0390625 1.140625,0 1.023438,-0.0390625 0.929688,-0.101562 0.859375,-0.1875 0.785156,-0.28125 0.734375,-0.390625 0.703125,-0.515625 0.671875,-0.648438 0.65625,-0.804688 0.65625,-0.984375 V -2.78125 h -0.4375 c -0.03125,0 -0.058594,-0.015625 -0.078125,-0.046875 -0.023437,-0.039063 -0.03125,-0.101563 -0.03125,-0.1875 0,-0.039063 0,-0.078125 0,-0.109375 0.007813,-0.03125 0.019531,-0.054688 0.03125,-0.078125 0.007813,-0.019531 0.019531,-0.03125 0.03125,-0.03125 C 0.191406,-3.242188 0.210938,-3.25 0.234375,-3.25 H 0.65625 v -0.734375 c 0,-0.00781 0.003906,-0.019531 0.015625,-0.03125 C 0.679688,-4.035156 0.695312,-4.050781 0.71875,-4.0625 0.738281,-4.070312 0.765625,-4.078125 0.796875,-4.078125 0.835938,-4.085938 0.882812,-4.09375 0.9375,-4.09375 c 0.050781,0 0.09375,0.00781 0.125,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.011719 0.015625,0.023437 0.015625,0.03125 V -3.25 h 0.796875 c 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.019531,0 0.035156,0.011719 0.046875,0.03125 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 0,0.085937 -0.011719,0.148437 -0.03125,0.1875 -0.023438,0.03125 -0.046875,0.046875 -0.078125,0.046875 H 1.21875 v 1.71875 c 0,0.210938 0.03125,0.371094 0.09375,0.484375 0.0625,0.105469 0.175781,0.15625 0.34375,0.15625 0.050781,0 0.097656,-0.003906 0.140625,-0.015625 C 1.835938,-0.445312 1.875,-0.457031 1.90625,-0.46875 1.9375,-0.476562 1.960938,-0.488281 1.984375,-0.5 c 0.019531,-0.007812 0.039063,-0.015625 0.0625,-0.015625 0.00781,0 0.019531,0.007813 0.03125,0.015625 0.00781,0 0.015625,0.011719 0.015625,0.03125 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 C 2.117188,-0.382812 2.125,-0.351562 2.125,-0.3125 Z m 0,0"
           id="path203"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-13"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.84375,0.890625 c 0,0.070313 -0.011719,0.125 -0.03125,0.15625 C 1.800781,1.078125 1.78125,1.09375 1.75,1.09375 H 0.875 C 0.84375,1.09375 0.8125,1.085938 0.78125,1.078125 0.757812,1.066406 0.738281,1.050781 0.71875,1.03125 0.695312,1.019531 0.679688,1 0.671875,0.96875 0.660156,0.9375 0.65625,0.898438 0.65625,0.859375 v -5.40625 c 0,-0.039063 0.003906,-0.078125 0.015625,-0.109375 0.007813,-0.03125 0.023437,-0.054688 0.046875,-0.078125 0.019531,-0.019531 0.039062,-0.03125 0.0625,-0.03125 C 0.8125,-4.773438 0.84375,-4.78125 0.875,-4.78125 H 1.75 c 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.00781,0 0.019531,0.011719 0.03125,0.03125 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 0,0.074219 -0.011719,0.125 -0.03125,0.15625 C 1.800781,-4.375 1.78125,-4.359375 1.75,-4.359375 H 1.1875 V 0.6875 H 1.75 c 0.00781,0 0.019531,0 0.03125,0 0.00781,0.007812 0.019531,0.019531 0.03125,0.03125 0.00781,0.019531 0.015625,0.039062 0.015625,0.0625 0.00781,0.03125 0.015625,0.066406 0.015625,0.109375 z m 0,0"
           id="path206"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph3-14"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 1.5,0.859375 C 1.5,0.898438 1.488281,0.9375 1.46875,0.96875 1.457031,1 1.441406,1.019531 1.421875,1.03125 1.398438,1.050781 1.375,1.066406 1.34375,1.078125 1.320312,1.085938 1.300781,1.09375 1.28125,1.09375 h -0.875 C 0.375,1.09375 0.347656,1.078125 0.328125,1.046875 0.316406,1.015625 0.3125,0.960938 0.3125,0.890625 c 0,-0.042969 0,-0.078125 0,-0.109375 0,-0.023438 0.003906,-0.042969 0.015625,-0.0625 0.007813,-0.011719 0.019531,-0.023438 0.03125,-0.03125 0.019531,0 0.035156,0 0.046875,0 h 0.5625 V -4.359375 H 0.40625 C 0.375,-4.359375 0.347656,-4.375 0.328125,-4.40625 0.316406,-4.4375 0.3125,-4.488281 0.3125,-4.5625 c 0,-0.039062 0,-0.070312 0,-0.09375 0,-0.03125 0.003906,-0.054688 0.015625,-0.078125 0.007813,-0.019531 0.019531,-0.03125 0.03125,-0.03125 0.019531,-0.00781 0.035156,-0.015625 0.046875,-0.015625 h 0.875 c 0.019531,0 0.039062,0.00781 0.0625,0.015625 0.03125,0 0.054688,0.011719 0.078125,0.03125 C 1.441406,-4.710938 1.457031,-4.6875 1.46875,-4.65625 1.488281,-4.625 1.5,-4.585938 1.5,-4.546875 Z m 0,0"
           id="path209"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-0"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 4.296875,-5.6875 V 0 H 0.1875 v -5.6875 z m -0.375,5.328125 v -4.96875 H 0.5625 v 4.96875 z M 3.375,-3.75 c 0,0.167969 -0.027344,0.320312 -0.078125,0.453125 -0.054687,0.136719 -0.125,0.25 -0.21875,0.34375 C 2.984375,-2.859375 2.875,-2.785156 2.75,-2.734375 2.625,-2.679688 2.488281,-2.648438 2.34375,-2.640625 l -0.03125,0.65625 c 0,0.03125 -0.023438,0.054687 -0.0625,0.0625 -0.042969,0.011719 -0.105469,0.015625 -0.1875,0.015625 -0.042969,0 -0.078125,0 -0.109375,0 -0.023437,0 -0.042969,0 -0.0625,0 C 1.867188,-1.914062 1.851562,-1.925781 1.84375,-1.9375 1.832031,-1.945312 1.828125,-1.960938 1.828125,-1.984375 L 1.8125,-2.78125 C 1.800781,-2.875 1.816406,-2.9375 1.859375,-2.96875 1.898438,-3.007812 1.957031,-3.03125 2.03125,-3.03125 h 0.078125 c 0.132813,0 0.242187,-0.015625 0.328125,-0.046875 0.09375,-0.039063 0.164062,-0.085937 0.21875,-0.140625 0.050781,-0.0625 0.085938,-0.132812 0.109375,-0.21875 0.019531,-0.09375 0.03125,-0.1875 0.03125,-0.28125 0,-0.21875 -0.0625,-0.390625 -0.1875,-0.515625 -0.117187,-0.125 -0.304687,-0.1875 -0.5625,-0.1875 -0.117187,0 -0.21875,0.011719 -0.3125,0.03125 C 1.648438,-4.367188 1.570312,-4.34375 1.5,-4.3125 1.4375,-4.28125 1.382812,-4.253906 1.34375,-4.234375 1.300781,-4.210938 1.269531,-4.203125 1.25,-4.203125 c -0.011719,0 -0.023438,0 -0.03125,0 -0.011719,-0.00781 -0.023438,-0.019531 -0.03125,-0.03125 0,-0.019531 -0.00781,-0.039063 -0.015625,-0.0625 0,-0.03125 0,-0.070313 0,-0.125 0,-0.050781 0,-0.09375 0,-0.125 0.00781,-0.03125 0.023437,-0.054687 0.046875,-0.078125 0.019531,-0.019531 0.0625,-0.039062 0.125,-0.0625 0.0625,-0.03125 0.128906,-0.054688 0.203125,-0.078125 0.082031,-0.03125 0.171875,-0.050781 0.265625,-0.0625 0.101562,-0.019531 0.203125,-0.03125 0.296875,-0.03125 0.21875,0 0.40625,0.03125 0.5625,0.09375 C 2.835938,-4.710938 2.96875,-4.632812 3.0625,-4.53125 3.164062,-4.4375 3.242188,-4.320312 3.296875,-4.1875 3.347656,-4.050781 3.375,-3.90625 3.375,-3.75 Z m -0.96875,2.546875 c 0,0.0625 -0.00781,0.117187 -0.015625,0.15625 C 2.378906,-1.003906 2.363281,-0.96875 2.34375,-0.9375 2.320312,-0.914062 2.289062,-0.898438 2.25,-0.890625 2.207031,-0.878906 2.15625,-0.875 2.09375,-0.875 2.019531,-0.875 1.960938,-0.878906 1.921875,-0.890625 1.878906,-0.898438 1.84375,-0.914062 1.8125,-0.9375 1.789062,-0.96875 1.773438,-1.003906 1.765625,-1.046875 1.753906,-1.085938 1.75,-1.140625 1.75,-1.203125 c 0,-0.0625 0.00391,-0.113281 0.015625,-0.15625 0.00781,-0.039063 0.023437,-0.070313 0.046875,-0.09375 0.03125,-0.03125 0.066406,-0.050781 0.109375,-0.0625 0.039063,-0.00781 0.097656,-0.015625 0.171875,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039062,0.011719 0.070312,0.03125 0.09375,0.0625 0.019531,0.023437 0.035156,0.054687 0.046875,0.09375 0.00781,0.042969 0.015625,0.09375 0.015625,0.15625 z M 0,1.75 Z m 0,0"
           id="path212"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-1"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.3125,-5.359375 c 0,0.054687 -0.00781,0.101563 -0.015625,0.140625 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 -0.011719,0.023437 -0.027344,0.039063 -0.046875,0.046875 -0.023437,0.011719 -0.042969,0.015625 -0.0625,0.015625 h -1.59375 v 4.9375 c 0,0.0234375 -0.011719,0.0429688 -0.03125,0.0625 -0.011719,0.0117188 -0.03125,0.0234375 -0.0625,0.03125 C 2.460938,-0.00390625 2.425781,0.00390625 2.375,0.015625 2.320312,0.0234375 2.257812,0.03125 2.1875,0.03125 2.125,0.03125 2.066406,0.0234375 2.015625,0.015625 1.960938,0.00390625 1.921875,-0.00390625 1.890625,-0.015625 1.859375,-0.0234375 1.835938,-0.0351562 1.828125,-0.046875 1.816406,-0.0664062 1.8125,-0.0859375 1.8125,-0.109375 v -4.9375 H 0.21875 c -0.023438,0 -0.042969,-0.00391 -0.0625,-0.015625 C 0.132812,-5.070312 0.117188,-5.085938 0.109375,-5.109375 0.0976562,-5.140625 0.0859375,-5.175781 0.078125,-5.21875 0.0664062,-5.257812 0.0625,-5.304688 0.0625,-5.359375 0.0625,-5.410156 0.0664062,-5.457031 0.078125,-5.5 0.0859375,-5.550781 0.0976562,-5.585938 0.109375,-5.609375 0.117188,-5.640625 0.132812,-5.660156 0.15625,-5.671875 0.175781,-5.679688 0.195312,-5.6875 0.21875,-5.6875 h 3.953125 c 0.019531,0 0.039063,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.03125 0.046875,0.0625 0.00781,0.023437 0.015625,0.058594 0.015625,0.109375 0.00781,0.042969 0.015625,0.089844 0.015625,0.140625 z m 0,0"
           id="path215"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-2"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.390625,-0.109375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.363281,-0.0351562 1.34375,-0.0195312 1.3125,0 1.289062,0.0078125 1.253906,0.015625 1.203125,0.015625 1.160156,0.0234375 1.101562,0.03125 1.03125,0.03125 0.957031,0.03125 0.894531,0.0234375 0.84375,0.015625 0.800781,0.015625 0.765625,0.0078125 0.734375,0 0.710938,-0.0195312 0.695312,-0.0351562 0.6875,-0.046875 0.675781,-0.0664062 0.671875,-0.0859375 0.671875,-0.109375 V -4.0625 c 0,-0.019531 0.003906,-0.039062 0.015625,-0.0625 0.007812,-0.019531 0.023438,-0.035156 0.046875,-0.046875 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.070312,0 0.128906,0.00781 0.171875,0.015625 0.050781,0 0.085937,0.00781 0.109375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.023438 0.015625,0.042969 0.015625,0.0625 z m 0.09375,-5.296875 c 0,0.179688 -0.039063,0.296875 -0.109375,0.359375 -0.0625,0.054687 -0.179688,0.078125 -0.34375,0.078125 -0.167969,0 -0.289062,-0.023438 -0.359375,-0.078125 -0.0625,-0.0625 -0.09375,-0.175781 -0.09375,-0.34375 0,-0.164063 0.03125,-0.28125 0.09375,-0.34375 0.070313,-0.0625 0.191406,-0.09375 0.359375,-0.09375 0.175781,0 0.296875,0.03125 0.359375,0.09375 0.0625,0.054687 0.09375,0.164063 0.09375,0.328125 z m 0,0"
           id="path218"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-3"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 6.546875,-0.109375 c 0,0.0234375 -0.011719,0.0429688 -0.03125,0.0625 C 6.503906,-0.0351562 6.484375,-0.0195312 6.453125,0 6.429688,0.0078125 6.394531,0.015625 6.34375,0.015625 6.300781,0.0234375 6.242188,0.03125 6.171875,0.03125 6.097656,0.03125 6.035156,0.0234375 5.984375,0.015625 5.941406,0.015625 5.90625,0.0078125 5.875,0 5.851562,-0.0195312 5.835938,-0.0351562 5.828125,-0.046875 5.816406,-0.0664062 5.8125,-0.0859375 5.8125,-0.109375 v -2.40625 C 5.8125,-2.679688 5.796875,-2.832031 5.765625,-2.96875 5.734375,-3.101562 5.6875,-3.21875 5.625,-3.3125 5.5625,-3.414062 5.476562,-3.492188 5.375,-3.546875 c -0.09375,-0.0625 -0.210938,-0.09375 -0.34375,-0.09375 -0.167969,0 -0.339844,0.070313 -0.515625,0.203125 -0.167969,0.125 -0.351563,0.3125 -0.546875,0.5625 v 2.765625 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 3.941406,-0.0351562 3.921875,-0.0195312 3.890625,0 3.859375,0.0078125 3.816406,0.015625 3.765625,0.015625 3.722656,0.0234375 3.671875,0.03125 3.609375,0.03125 3.535156,0.03125 3.472656,0.0234375 3.421875,0.015625 3.378906,0.015625 3.34375,0.0078125 3.3125,0 3.289062,-0.0195312 3.273438,-0.0351562 3.265625,-0.046875 3.253906,-0.0664062 3.25,-0.0859375 3.25,-0.109375 v -2.40625 c 0,-0.164063 -0.023438,-0.316406 -0.0625,-0.453125 -0.03125,-0.132812 -0.078125,-0.25 -0.140625,-0.34375 -0.0625,-0.101562 -0.148437,-0.179688 -0.25,-0.234375 -0.09375,-0.0625 -0.210937,-0.09375 -0.34375,-0.09375 -0.167969,0 -0.335937,0.070313 -0.5,0.203125 -0.167969,0.125 -0.355469,0.3125 -0.5625,0.5625 v 2.765625 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.363281,-0.0351562 1.34375,-0.0195312 1.3125,0 1.289062,0.0078125 1.253906,0.015625 1.203125,0.015625 1.160156,0.0234375 1.101562,0.03125 1.03125,0.03125 0.957031,0.03125 0.894531,0.0234375 0.84375,0.015625 0.800781,0.015625 0.765625,0.0078125 0.734375,0 0.710938,-0.0195312 0.695312,-0.0351562 0.6875,-0.046875 0.675781,-0.0664062 0.671875,-0.0859375 0.671875,-0.109375 V -4.0625 c 0,-0.019531 0.003906,-0.039062 0.015625,-0.0625 C 0.695312,-4.144531 0.710938,-4.160156 0.734375,-4.171875 0.765625,-4.179688 0.800781,-4.1875 0.84375,-4.1875 0.882812,-4.195312 0.9375,-4.203125 1,-4.203125 c 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.023438 0.015625,0.042969 0.015625,0.0625 v 0.515625 c 0.21875,-0.25 0.429687,-0.429687 0.640625,-0.546875 0.21875,-0.113281 0.429688,-0.171875 0.640625,-0.171875 0.164063,0 0.3125,0.023437 0.4375,0.0625 0.132813,0.03125 0.25,0.085937 0.34375,0.15625 0.101563,0.074219 0.1875,0.15625 0.25,0.25 0.070313,0.09375 0.132813,0.199219 0.1875,0.3125 0.132813,-0.144531 0.257813,-0.265625 0.375,-0.359375 0.113281,-0.101562 0.226563,-0.179688 0.34375,-0.234375 0.113281,-0.0625 0.21875,-0.109375 0.3125,-0.140625 C 4.960938,-4.25 5.070312,-4.265625 5.1875,-4.265625 c 0.25,0 0.457031,0.046875 0.625,0.140625 0.175781,0.085938 0.316406,0.203125 0.421875,0.359375 0.113281,0.148437 0.191406,0.324219 0.234375,0.53125 0.050781,0.199219 0.078125,0.40625 0.078125,0.625 z m 0,0"
           id="path221"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-4"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.046875,-2.265625 c 0,0.117187 -0.03125,0.199219 -0.09375,0.25 -0.054687,0.054687 -0.117187,0.078125 -0.1875,0.078125 h -2.59375 c 0,0.21875 0.019531,0.417969 0.0625,0.59375 0.050781,0.179688 0.125,0.328125 0.21875,0.453125 0.101563,0.125 0.238281,0.226563 0.40625,0.296875 C 2.023438,-0.53125 2.226562,-0.5 2.46875,-0.5 c 0.1875,0 0.351562,-0.015625 0.5,-0.046875 0.144531,-0.03125 0.269531,-0.066406 0.375,-0.109375 0.101562,-0.039062 0.1875,-0.070312 0.25,-0.09375 0.070312,-0.03125 0.128906,-0.046875 0.171875,-0.046875 0.019531,0 0.035156,0.007813 0.046875,0.015625 0.019531,0 0.035156,0.011719 0.046875,0.03125 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 0,0.03125 0,0.078125 0,0.140625 0,0.03125 0,0.0625 0,0.09375 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.023438 -0.00781,0.042969 -0.015625,0.0625 -0.011719,0.011719 -0.027344,0.027344 -0.046875,0.046875 -0.011719,0.011719 -0.058594,0.039063 -0.140625,0.078125 -0.074219,0.03125 -0.171875,0.0703125 -0.296875,0.109375 -0.125,0.03125 -0.273437,0.0546875 -0.4375,0.078125 -0.167969,0.03125 -0.34375,0.046875 -0.53125,0.046875 -0.324219,0 -0.609375,-0.0429688 -0.859375,-0.125 -0.242188,-0.09375 -0.449219,-0.226563 -0.625,-0.40625 -0.167969,-0.175781 -0.292969,-0.398437 -0.375,-0.671875 -0.085938,-0.269531 -0.125,-0.582031 -0.125,-0.9375 0,-0.34375 0.039062,-0.648438 0.125,-0.921875 0.09375,-0.269531 0.222656,-0.5 0.390625,-0.6875 0.164063,-0.1875 0.363281,-0.332031 0.59375,-0.4375 0.238281,-0.101563 0.503906,-0.15625 0.796875,-0.15625 0.300781,0 0.5625,0.054687 0.78125,0.15625 0.21875,0.09375 0.394531,0.230469 0.53125,0.40625 0.144531,0.167969 0.25,0.367187 0.3125,0.59375 0.070312,0.21875 0.109375,0.460937 0.109375,0.71875 z M 3.3125,-2.46875 C 3.320312,-2.851562 3.238281,-3.15625 3.0625,-3.375 2.882812,-3.59375 2.625,-3.703125 2.28125,-3.703125 c -0.179688,0 -0.335938,0.039063 -0.46875,0.109375 -0.136719,0.0625 -0.25,0.152344 -0.34375,0.265625 C 1.375,-3.210938 1.300781,-3.082031 1.25,-2.9375 1.207031,-2.789062 1.179688,-2.632812 1.171875,-2.46875 Z m 0,0"
           id="path224"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-5"
         style="overflow:visible">
        <path
           style="stroke:none"
           d=""
           id="path227"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-6"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.921875,-4.078125 c 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 0,0.011719 0,0.027344 0,0.046875 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 L 2.53125,-0.125 C 2.519531,-0.09375 2.503906,-0.0664062 2.484375,-0.046875 2.460938,-0.0234375 2.429688,-0.0078125 2.390625,0 2.359375,0.0078125 2.3125,0.015625 2.25,0.015625 2.195312,0.0234375 2.125,0.03125 2.03125,0.03125 1.945312,0.03125 1.875,0.0234375 1.8125,0.015625 1.757812,0.015625 1.710938,0.0078125 1.671875,0 1.640625,-0.0195312 1.613281,-0.0390625 1.59375,-0.0625 1.570312,-0.0820312 1.550781,-0.101562 1.53125,-0.125 L 0.1875,-3.890625 C 0.175781,-3.921875 0.164062,-3.945312 0.15625,-3.96875 c 0,-0.03125 0,-0.050781 0,-0.0625 0,-0.019531 0,-0.035156 0,-0.046875 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 C 0.179688,-4.144531 0.195312,-4.160156 0.21875,-4.171875 0.25,-4.179688 0.285156,-4.1875 0.328125,-4.1875 0.378906,-4.195312 0.4375,-4.203125 0.5,-4.203125 c 0.09375,0 0.160156,0.00781 0.203125,0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.007813,0.023438 0.019531,0.042969 0.03125,0.0625 l 1.125,3.265625 L 2.0625,-0.75 2.078125,-0.796875 3.171875,-4.0625 c 0.00781,-0.019531 0.019531,-0.039062 0.03125,-0.0625 0.019531,-0.019531 0.039063,-0.035156 0.0625,-0.046875 C 3.296875,-4.179688 3.332031,-4.1875 3.375,-4.1875 c 0.050781,-0.00781 0.117188,-0.015625 0.203125,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.050781,0 0.085937,0.00781 0.109375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0,0"
           id="path230"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-7"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.34375,-2.125 c 0,0.324219 -0.042969,0.621094 -0.125,0.890625 -0.085938,0.273437 -0.210938,0.507813 -0.375,0.703125 -0.167969,0.1875 -0.382812,0.339844 -0.640625,0.453125 -0.25,0.1015625 -0.542969,0.15625 -0.875,0.15625 C 2.003906,0.078125 1.71875,0.03125 1.46875,-0.0625 1.226562,-0.15625 1.03125,-0.296875 0.875,-0.484375 0.71875,-0.671875 0.597656,-0.894531 0.515625,-1.15625 c -0.085937,-0.257812 -0.125,-0.554688 -0.125,-0.890625 0,-0.320313 0.039063,-0.617187 0.125,-0.890625 0.082031,-0.269531 0.207031,-0.503906 0.375,-0.703125 0.175781,-0.195313 0.390625,-0.347656 0.640625,-0.453125 0.25,-0.113281 0.539062,-0.171875 0.875,-0.171875 0.332031,0 0.617188,0.054687 0.859375,0.15625 0.238281,0.09375 0.4375,0.234375 0.59375,0.421875 0.164063,0.179688 0.285156,0.402344 0.359375,0.671875 0.082031,0.261719 0.125,0.558594 0.125,0.890625 z m -0.75,0.046875 c 0,-0.21875 -0.023438,-0.421875 -0.0625,-0.609375 -0.042969,-0.1875 -0.109375,-0.351562 -0.203125,-0.5 -0.09375,-0.144531 -0.21875,-0.257812 -0.375,-0.34375 -0.148437,-0.082031 -0.339844,-0.125 -0.578125,-0.125 -0.210938,0 -0.390625,0.042969 -0.546875,0.125 -0.15625,0.074219 -0.289063,0.179688 -0.390625,0.3125 -0.09375,0.136719 -0.167969,0.304688 -0.21875,0.5 -0.042969,0.1875 -0.0625,0.398438 -0.0625,0.625 0,0.210938 0.019531,0.414062 0.0625,0.609375 0.039062,0.1875 0.101562,0.355469 0.1875,0.5 0.09375,0.136719 0.21875,0.246094 0.375,0.328125 0.15625,0.085938 0.347656,0.125 0.578125,0.125 0.21875,0 0.398437,-0.035156 0.546875,-0.109375 0.15625,-0.070313 0.285156,-0.175781 0.390625,-0.3125 0.101563,-0.144531 0.175781,-0.3125 0.21875,-0.5 0.050781,-0.1875 0.078125,-0.394531 0.078125,-0.625 z m 0,0"
           id="path233"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-8"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 1.390625,-0.109375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.363281,-0.0351562 1.34375,-0.0195312 1.3125,0 1.289062,0.0078125 1.253906,0.015625 1.203125,0.015625 1.160156,0.0234375 1.101562,0.03125 1.03125,0.03125 0.957031,0.03125 0.894531,0.0234375 0.84375,0.015625 0.800781,0.015625 0.765625,0.0078125 0.734375,0 0.710938,-0.0195312 0.695312,-0.0351562 0.6875,-0.046875 0.675781,-0.0664062 0.671875,-0.0859375 0.671875,-0.109375 v -5.875 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007812,-0.019531 0.023438,-0.035156 0.046875,-0.046875 0.03125,-0.019531 0.066406,-0.03125 0.109375,-0.03125 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.070312,0 0.128906,0.00781 0.171875,0.015625 0.050781,0 0.085937,0.011719 0.109375,0.03125 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0,0"
           id="path236"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-9"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.0625,-0.109375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 4.035156,-0.0351562 4.015625,-0.0195312 3.984375,0 3.960938,0.0078125 3.929688,0.015625 3.890625,0.015625 3.847656,0.0234375 3.796875,0.03125 3.734375,0.03125 3.660156,0.03125 3.601562,0.0234375 3.5625,0.015625 3.519531,0.015625 3.484375,0.0078125 3.453125,0 3.429688,-0.0195312 3.414062,-0.0351562 3.40625,-0.046875 c 0,-0.0195312 0,-0.0390625 0,-0.0625 v -0.53125 c -0.230469,0.25 -0.453125,0.433594 -0.671875,0.546875 -0.21875,0.1132812 -0.445313,0.171875 -0.671875,0.171875 -0.261719,0 -0.484375,-0.0429688 -0.671875,-0.125 C 1.210938,-0.140625 1.066406,-0.257812 0.953125,-0.40625 0.847656,-0.5625 0.769531,-0.738281 0.71875,-0.9375 0.675781,-1.132812 0.65625,-1.378906 0.65625,-1.671875 V -4.0625 c 0,-0.019531 0.003906,-0.039062 0.015625,-0.0625 C 0.679688,-4.144531 0.695312,-4.160156 0.71875,-4.171875 0.75,-4.179688 0.785156,-4.1875 0.828125,-4.1875 c 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.070313,0 0.128906,0.00781 0.171875,0.015625 0.050781,0 0.085938,0.00781 0.109375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.023438 0.015625,0.042969 0.015625,0.0625 v 2.296875 c 0,0.230469 0.015625,0.417969 0.046875,0.5625 0.039063,0.136719 0.09375,0.257813 0.15625,0.359375 0.070313,0.09375 0.160156,0.167969 0.265625,0.21875 0.101562,0.054688 0.226562,0.078125 0.375,0.078125 0.175781,0 0.351562,-0.0625 0.53125,-0.1875 0.1875,-0.125 0.378906,-0.3125 0.578125,-0.5625 V -4.0625 c 0,-0.019531 0.00391,-0.039062 0.015625,-0.0625 0.00781,-0.019531 0.03125,-0.035156 0.0625,-0.046875 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.050781,0 0.085937,0.00781 0.109375,0.015625 C 4,-4.160156 4.019531,-4.144531 4.03125,-4.125 4.050781,-4.101562 4.0625,-4.082031 4.0625,-4.0625 Z m 0,0"
           id="path239"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-10"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.734375,-0.40625 c 0,0.09375 -0.011719,0.167969 -0.03125,0.21875 -0.011719,0.042969 -0.027344,0.078125 -0.046875,0.109375 -0.023438,0.0234375 -0.058594,0.0429688 -0.109375,0.0625 C 2.503906,0.00390625 2.453125,0.0195312 2.390625,0.03125 2.328125,0.0390625 2.257812,0.0507812 2.1875,0.0625 2.125,0.0703125 2.0625,0.078125 2,0.078125 1.789062,0.078125 1.613281,0.0507812 1.46875,0 1.320312,-0.0625 1.203125,-0.144531 1.109375,-0.25 1.015625,-0.363281 0.945312,-0.503906 0.90625,-0.671875 0.863281,-0.835938 0.84375,-1.035156 0.84375,-1.265625 v -2.3125 H 0.296875 c -0.054687,0 -0.09375,-0.019531 -0.125,-0.0625 -0.023437,-0.050781 -0.03125,-0.128906 -0.03125,-0.234375 0,-0.050781 0.003906,-0.097656 0.015625,-0.140625 0.007812,-0.039063 0.019531,-0.070313 0.03125,-0.09375 0.007812,-0.03125 0.023438,-0.046875 0.046875,-0.046875 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 H 0.84375 V -5.125 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 C 0.867188,-5.191406 0.882812,-5.207031 0.90625,-5.21875 0.9375,-5.238281 0.972656,-5.25 1.015625,-5.25 c 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.070313,0 0.128906,0.00781 0.171875,0.015625 0.050781,0 0.085938,0.011719 0.109375,0.03125 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 C 1.554688,-5.160156 1.5625,-5.144531 1.5625,-5.125 v 0.953125 h 1.015625 c 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.035156,0.015625 0.046875,0.046875 0.019531,0.023437 0.03125,0.054687 0.03125,0.09375 0.00781,0.042969 0.015625,0.089844 0.015625,0.140625 0,0.105469 -0.015625,0.183594 -0.046875,0.234375 -0.023438,0.042969 -0.058594,0.0625 -0.109375,0.0625 H 1.5625 V -1.375 c 0,0.273438 0.039062,0.480469 0.125,0.625 0.082031,0.136719 0.226562,0.203125 0.4375,0.203125 0.0625,0 0.117188,-0.003906 0.171875,-0.015625 0.050781,-0.007812 0.097656,-0.019531 0.140625,-0.03125 0.039062,-0.019531 0.078125,-0.035156 0.109375,-0.046875 0.03125,-0.019531 0.054687,-0.03125 0.078125,-0.03125 0.019531,0 0.035156,0.007813 0.046875,0.015625 0.00781,0.011719 0.019531,0.027344 0.03125,0.046875 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0.00781,0.03125 0.015625,0.074219 0.015625,0.125 z m 0,0"
           id="path242"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-11"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.078125,-0.109375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 4.050781,-0.0351562 4.03125,-0.0195312 4,0 3.976562,0.0078125 3.941406,0.015625 3.890625,0.015625 3.847656,0.0234375 3.789062,0.03125 3.71875,0.03125 3.644531,0.03125 3.582031,0.0234375 3.53125,0.015625 3.488281,0.015625 3.453125,0.0078125 3.421875,0 3.398438,-0.0195312 3.382812,-0.0351562 3.375,-0.046875 3.363281,-0.0664062 3.359375,-0.0859375 3.359375,-0.109375 v -2.3125 c 0,-0.226563 -0.023437,-0.410156 -0.0625,-0.546875 -0.03125,-0.132812 -0.085937,-0.25 -0.15625,-0.34375 -0.0625,-0.101562 -0.152344,-0.179688 -0.265625,-0.234375 -0.105469,-0.0625 -0.226562,-0.09375 -0.359375,-0.09375 -0.1875,0 -0.371094,0.070313 -0.546875,0.203125 -0.179688,0.125 -0.371094,0.3125 -0.578125,0.5625 v 2.765625 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.363281,-0.0351562 1.34375,-0.0195312 1.3125,0 1.289062,0.0078125 1.253906,0.015625 1.203125,0.015625 1.160156,0.0234375 1.101562,0.03125 1.03125,0.03125 0.957031,0.03125 0.894531,0.0234375 0.84375,0.015625 0.800781,0.015625 0.765625,0.0078125 0.734375,0 0.710938,-0.0195312 0.695312,-0.0351562 0.6875,-0.046875 0.675781,-0.0664062 0.671875,-0.0859375 0.671875,-0.109375 V -4.0625 c 0,-0.019531 0.003906,-0.039062 0.015625,-0.0625 C 0.695312,-4.144531 0.710938,-4.160156 0.734375,-4.171875 0.765625,-4.179688 0.800781,-4.1875 0.84375,-4.1875 0.882812,-4.195312 0.9375,-4.203125 1,-4.203125 c 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.023438 0.015625,0.042969 0.015625,0.0625 v 0.515625 c 0.21875,-0.25 0.4375,-0.429687 0.65625,-0.546875 0.226563,-0.113281 0.453125,-0.171875 0.671875,-0.171875 0.269531,0 0.492188,0.046875 0.671875,0.140625 0.175781,0.085938 0.320313,0.203125 0.4375,0.359375 0.113281,0.148437 0.191406,0.324219 0.234375,0.53125 0.050781,0.199219 0.078125,0.4375 0.078125,0.71875 z m 0,0"
           id="path245"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-12"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.84375,-5.6875 c 0,0.054688 -0.00781,0.101562 -0.015625,0.140625 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 -0.011719,0.023438 -0.023438,0.039062 -0.03125,0.046875 -0.011719,0 -0.027344,0 -0.046875,0 -0.023437,0 -0.046875,-0.00391 -0.078125,-0.015625 C 2.625,-5.457031 2.585938,-5.472656 2.546875,-5.484375 2.503906,-5.503906 2.453125,-5.519531 2.390625,-5.53125 2.328125,-5.539062 2.257812,-5.546875 2.1875,-5.546875 c -0.117188,0 -0.210938,0.023437 -0.28125,0.0625 -0.074219,0.03125 -0.136719,0.085937 -0.1875,0.15625 C 1.675781,-5.253906 1.644531,-5.15625 1.625,-5.03125 1.601562,-4.914062 1.59375,-4.773438 1.59375,-4.609375 v 0.4375 h 0.875 c 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.035156,0.015625 0.046875,0.046875 0.00781,0.023437 0.019531,0.054687 0.03125,0.09375 C 2.617188,-3.972656 2.625,-3.925781 2.625,-3.875 c 0,0.105469 -0.015625,0.183594 -0.046875,0.234375 -0.023437,0.042969 -0.058594,0.0625 -0.109375,0.0625 h -0.875 v 3.46875 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.566406,-0.0351562 1.546875,-0.0195312 1.515625,0 1.484375,0.0078125 1.441406,0.015625 1.390625,0.015625 1.347656,0.0234375 1.289062,0.03125 1.21875,0.03125 1.15625,0.03125 1.097656,0.0234375 1.046875,0.015625 1.003906,0.015625 0.96875,0.0078125 0.9375,0 0.90625,-0.0195312 0.882812,-0.0351562 0.875,-0.046875 0.863281,-0.0664062 0.859375,-0.0859375 0.859375,-0.109375 v -3.46875 h -0.5625 c -0.042969,0 -0.078125,-0.019531 -0.109375,-0.0625 C 0.164062,-3.691406 0.15625,-3.769531 0.15625,-3.875 c 0,-0.050781 0.003906,-0.097656 0.015625,-0.140625 0.007813,-0.039063 0.019531,-0.070313 0.03125,-0.09375 0.007813,-0.03125 0.019531,-0.046875 0.03125,-0.046875 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 h 0.5625 V -4.59375 c 0,-0.269531 0.023437,-0.503906 0.078125,-0.703125 C 0.988281,-5.492188 1.066406,-5.65625 1.171875,-5.78125 1.273438,-5.90625 1.40625,-6 1.5625,-6.0625 1.726562,-6.125 1.921875,-6.15625 2.140625,-6.15625 c 0.101563,0 0.203125,0.011719 0.296875,0.03125 0.09375,0.023438 0.164062,0.042969 0.21875,0.0625 0.050781,0.023438 0.085938,0.042969 0.109375,0.0625 0.019531,0.011719 0.035156,0.03125 0.046875,0.0625 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 C 2.835938,-5.796875 2.84375,-5.75 2.84375,-5.6875 Z m 0,0"
           id="path248"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-13"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.65625,-0.109375 c 0,0.0429688 -0.015625,0.0742188 -0.046875,0.09375 C 3.585938,-0.00390625 3.554688,0.00390625 3.515625,0.015625 3.472656,0.0234375 3.414062,0.03125 3.34375,0.03125 3.257812,0.03125 3.195312,0.0234375 3.15625,0.015625 3.113281,0.00390625 3.082031,-0.00390625 3.0625,-0.015625 3.039062,-0.0351562 3.03125,-0.0664062 3.03125,-0.109375 V -0.5 C 2.851562,-0.3125 2.65625,-0.164062 2.4375,-0.0625 2.226562,0.03125 2.007812,0.078125 1.78125,0.078125 1.570312,0.078125 1.378906,0.0507812 1.203125,0 1.035156,-0.0507812 0.894531,-0.128906 0.78125,-0.234375 0.664062,-0.335938 0.570312,-0.460938 0.5,-0.609375 0.4375,-0.753906 0.40625,-0.925781 0.40625,-1.125 c 0,-0.21875 0.039062,-0.410156 0.125,-0.578125 0.09375,-0.164063 0.222656,-0.300781 0.390625,-0.40625 0.175781,-0.101563 0.382813,-0.179687 0.625,-0.234375 0.25,-0.0625 0.53125,-0.09375 0.84375,-0.09375 H 2.9375 V -2.75 c 0,-0.144531 -0.023438,-0.273438 -0.0625,-0.390625 -0.03125,-0.125 -0.085938,-0.222656 -0.15625,-0.296875 -0.0625,-0.082031 -0.152344,-0.140625 -0.265625,-0.171875 -0.117187,-0.039063 -0.257813,-0.0625 -0.421875,-0.0625 -0.179688,0 -0.339844,0.023437 -0.484375,0.0625 -0.148437,0.042969 -0.273437,0.089844 -0.375,0.140625 -0.105469,0.054688 -0.195313,0.101562 -0.265625,0.140625 -0.074219,0.042969 -0.125,0.0625 -0.15625,0.0625 -0.03125,0 -0.058594,-0.00391 -0.078125,-0.015625 C 0.660156,-3.289062 0.644531,-3.304688 0.625,-3.328125 c -0.011719,-0.03125 -0.023438,-0.0625 -0.03125,-0.09375 0,-0.039063 0,-0.082031 0,-0.125 0,-0.070313 0.003906,-0.128906 0.015625,-0.171875 C 0.617188,-3.757812 0.644531,-3.796875 0.6875,-3.828125 0.726562,-3.867188 0.796875,-3.914062 0.890625,-3.96875 0.984375,-4.019531 1.09375,-4.066406 1.21875,-4.109375 1.351562,-4.148438 1.492188,-4.1875 1.640625,-4.21875 1.785156,-4.25 1.9375,-4.265625 2.09375,-4.265625 c 0.28125,0 0.519531,0.039063 0.71875,0.109375 0.195312,0.0625 0.359375,0.15625 0.484375,0.28125 0.125,0.117188 0.210937,0.265625 0.265625,0.453125 0.0625,0.1875 0.09375,0.40625 0.09375,0.65625 z M 2.9375,-1.90625 h -0.625 c -0.199219,0 -0.371094,0.015625 -0.515625,0.046875 -0.148437,0.03125 -0.273437,0.085937 -0.375,0.15625 -0.09375,0.0625 -0.167969,0.140625 -0.21875,0.234375 -0.042969,0.085938 -0.0625,0.1875 -0.0625,0.3125 0,0.210938 0.0625,0.375 0.1875,0.5 0.132813,0.117188 0.320313,0.171875 0.5625,0.171875 0.1875,0 0.359375,-0.046875 0.515625,-0.140625 C 2.570312,-0.726562 2.75,-0.878906 2.9375,-1.078125 Z m 0,0"
           id="path251"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-14"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 3.15625,-1.1875 c 0,0.199219 -0.039062,0.382812 -0.109375,0.546875 -0.074219,0.15625 -0.183594,0.292969 -0.328125,0.40625 C 2.582031,-0.128906 2.421875,-0.0507812 2.234375,0 c -0.1875,0.0507812 -0.398437,0.078125 -0.625,0.078125 -0.148437,0 -0.28125,-0.0117188 -0.40625,-0.03125 C 1.078125,0.0234375 0.960938,0 0.859375,-0.03125 0.753906,-0.0625 0.664062,-0.09375 0.59375,-0.125 0.53125,-0.164062 0.484375,-0.203125 0.453125,-0.234375 0.421875,-0.265625 0.394531,-0.304688 0.375,-0.359375 c -0.011719,-0.050781 -0.015625,-0.125 -0.015625,-0.21875 0,-0.050781 0,-0.097656 0,-0.140625 0.007813,-0.039062 0.019531,-0.070312 0.03125,-0.09375 0.007813,-0.019531 0.019531,-0.035156 0.03125,-0.046875 0.019531,-0.007813 0.039063,-0.015625 0.0625,-0.015625 0.03125,0 0.078125,0.023438 0.140625,0.0625 0.0625,0.042969 0.140625,0.089844 0.234375,0.140625 0.09375,0.042969 0.203125,0.085937 0.328125,0.125 C 1.3125,-0.515625 1.457031,-0.5 1.625,-0.5 1.738281,-0.5 1.84375,-0.507812 1.9375,-0.53125 2.039062,-0.5625 2.128906,-0.601562 2.203125,-0.65625 2.285156,-0.707031 2.34375,-0.769531 2.375,-0.84375 2.414062,-0.925781 2.4375,-1.019531 2.4375,-1.125 2.4375,-1.238281 2.40625,-1.332031 2.34375,-1.40625 2.289062,-1.488281 2.21875,-1.554688 2.125,-1.609375 2.03125,-1.671875 1.925781,-1.722656 1.8125,-1.765625 1.695312,-1.816406 1.578125,-1.863281 1.453125,-1.90625 c -0.125,-0.050781 -0.25,-0.109375 -0.375,-0.171875 C 0.960938,-2.140625 0.859375,-2.21875 0.765625,-2.3125 0.671875,-2.40625 0.59375,-2.515625 0.53125,-2.640625 0.476562,-2.765625 0.453125,-2.914062 0.453125,-3.09375 c 0,-0.15625 0.03125,-0.300781 0.09375,-0.4375 0.0625,-0.144531 0.148437,-0.269531 0.265625,-0.375 0.125,-0.101562 0.273438,-0.1875 0.453125,-0.25 0.175781,-0.070312 0.382813,-0.109375 0.625,-0.109375 0.101563,0 0.207031,0.011719 0.3125,0.03125 C 2.316406,-4.210938 2.414062,-4.1875 2.5,-4.15625 2.582031,-4.132812 2.648438,-4.109375 2.703125,-4.078125 2.765625,-4.046875 2.8125,-4.019531 2.84375,-4 c 0.03125,0.023438 0.050781,0.042969 0.0625,0.0625 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0.00781,0.03125 0.015625,0.070313 0.015625,0.109375 0,0.054688 -0.00781,0.101562 -0.015625,0.140625 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 C 2.910156,-3.429688 2.894531,-3.414062 2.875,-3.40625 2.863281,-3.394531 2.851562,-3.390625 2.84375,-3.390625 2.8125,-3.390625 2.769531,-3.40625 2.71875,-3.4375 2.675781,-3.476562 2.613281,-3.515625 2.53125,-3.546875 2.445312,-3.585938 2.351562,-3.625 2.25,-3.65625 2.144531,-3.6875 2.023438,-3.703125 1.890625,-3.703125 c -0.125,0 -0.234375,0.015625 -0.328125,0.046875 -0.09375,0.03125 -0.171875,0.074219 -0.234375,0.125 -0.0625,0.042969 -0.109375,0.101562 -0.140625,0.171875 -0.03125,0.074219 -0.046875,0.152344 -0.046875,0.234375 0,0.117188 0.03125,0.214844 0.09375,0.296875 0.0625,0.074219 0.140625,0.140625 0.234375,0.203125 0.09375,0.054688 0.195312,0.105469 0.3125,0.15625 0.125,0.042969 0.25,0.089844 0.375,0.140625 0.125,0.042969 0.242188,0.09375 0.359375,0.15625 0.125,0.0625 0.234375,0.140625 0.328125,0.234375 0.09375,0.085938 0.164062,0.1875 0.21875,0.3125 0.0625,0.125 0.09375,0.273438 0.09375,0.4375 z m 0,0"
           id="path254"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-15"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 2.984375,-3.8125 c 0,0.074219 -0.00781,0.132812 -0.015625,0.171875 0,0.042969 -0.00781,0.078125 -0.015625,0.109375 0,0.023438 -0.011719,0.039062 -0.03125,0.046875 C 2.910156,-3.472656 2.894531,-3.46875 2.875,-3.46875 c -0.023438,0 -0.054688,-0.00391 -0.09375,-0.015625 C 2.75,-3.492188 2.710938,-3.503906 2.671875,-3.515625 2.628906,-3.535156 2.582031,-3.550781 2.53125,-3.5625 2.476562,-3.570312 2.421875,-3.578125 2.359375,-3.578125 c -0.074219,0 -0.148437,0.015625 -0.21875,0.046875 -0.0625,0.03125 -0.136719,0.085938 -0.21875,0.15625 -0.074219,0.0625 -0.15625,0.152344 -0.25,0.265625 C 1.585938,-3.003906 1.492188,-2.875 1.390625,-2.71875 v 2.609375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.363281,-0.0351562 1.34375,-0.0195312 1.3125,0 1.289062,0.0078125 1.253906,0.015625 1.203125,0.015625 1.160156,0.0234375 1.101562,0.03125 1.03125,0.03125 0.957031,0.03125 0.894531,0.0234375 0.84375,0.015625 0.800781,0.015625 0.765625,0.0078125 0.734375,0 0.710938,-0.0195312 0.695312,-0.0351562 0.6875,-0.046875 0.675781,-0.0664062 0.671875,-0.0859375 0.671875,-0.109375 V -4.0625 c 0,-0.019531 0.003906,-0.039062 0.015625,-0.0625 C 0.695312,-4.144531 0.710938,-4.160156 0.734375,-4.171875 0.765625,-4.179688 0.800781,-4.1875 0.84375,-4.1875 0.882812,-4.195312 0.9375,-4.203125 1,-4.203125 c 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.023438 0.015625,0.042969 0.015625,0.0625 v 0.578125 C 1.429688,-3.648438 1.53125,-3.78125 1.625,-3.875 c 0.101562,-0.101562 0.195312,-0.179688 0.28125,-0.234375 0.082031,-0.0625 0.164062,-0.101563 0.25,-0.125 0.082031,-0.019531 0.164062,-0.03125 0.25,-0.03125 0.039062,0 0.082031,0.00781 0.125,0.015625 0.050781,0 0.101562,0.00781 0.15625,0.015625 0.050781,0.011719 0.097656,0.027344 0.140625,0.046875 0.039063,0.011719 0.070313,0.027344 0.09375,0.046875 0.019531,0.011719 0.03125,0.023437 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 0,0.042969 0,0.09375 0,0.15625 z m 0,0"
           id="path257"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-16"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.0625,-0.109375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 4.035156,-0.0234375 4.015625,-0.0078125 3.984375,0 3.960938,0.0078125 3.929688,0.015625 3.890625,0.015625 3.847656,0.0234375 3.800781,0.03125 3.75,0.03125 3.6875,0.03125 3.632812,0.0234375 3.59375,0.015625 3.550781,0.015625 3.515625,0.0078125 3.484375,0 3.460938,-0.0078125 3.445312,-0.0234375 3.4375,-0.046875 3.425781,-0.0664062 3.421875,-0.0859375 3.421875,-0.109375 v -0.53125 c -0.210937,0.230469 -0.429687,0.40625 -0.65625,0.53125 -0.21875,0.125 -0.464844,0.1875 -0.734375,0.1875 -0.292969,0 -0.542969,-0.0546875 -0.75,-0.15625 C 1.082031,-0.191406 0.914062,-0.34375 0.78125,-0.53125 0.65625,-0.726562 0.5625,-0.957031 0.5,-1.21875 0.445312,-1.476562 0.421875,-1.753906 0.421875,-2.046875 c 0,-0.332031 0.035156,-0.632813 0.109375,-0.90625 0.070312,-0.28125 0.179688,-0.515625 0.328125,-0.703125 0.144531,-0.195312 0.320313,-0.347656 0.53125,-0.453125 0.207031,-0.101563 0.453125,-0.15625 0.734375,-0.15625 0.226562,0 0.4375,0.054687 0.625,0.15625 0.195312,0.105469 0.390625,0.25 0.578125,0.4375 V -5.96875 c 0,-0.019531 0.00391,-0.035156 0.015625,-0.046875 C 3.351562,-6.035156 3.375,-6.050781 3.40625,-6.0625 3.4375,-6.070312 3.472656,-6.082031 3.515625,-6.09375 3.566406,-6.101562 3.625,-6.109375 3.6875,-6.109375 c 0.070312,0 0.128906,0.00781 0.171875,0.015625 0.050781,0.011719 0.085937,0.023438 0.109375,0.03125 C 4,-6.050781 4.019531,-6.035156 4.03125,-6.015625 4.050781,-6.003906 4.0625,-5.988281 4.0625,-5.96875 Z M 3.328125,-2.890625 C 3.128906,-3.128906 2.9375,-3.3125 2.75,-3.4375 2.570312,-3.570312 2.382812,-3.640625 2.1875,-3.640625 2,-3.640625 1.84375,-3.59375 1.71875,-3.5 1.59375,-3.414062 1.488281,-3.300781 1.40625,-3.15625 1.320312,-3.007812 1.257812,-2.847656 1.21875,-2.671875 1.1875,-2.492188 1.171875,-2.3125 1.171875,-2.125 c 0,0.210938 0.015625,0.40625 0.046875,0.59375 0.03125,0.1875 0.082031,0.359375 0.15625,0.515625 0.082031,0.148437 0.1875,0.265625 0.3125,0.359375 0.125,0.085938 0.28125,0.125 0.46875,0.125 0.09375,0 0.1875,-0.007812 0.28125,-0.03125 C 2.53125,-0.59375 2.625,-0.640625 2.71875,-0.703125 2.8125,-0.765625 2.90625,-0.84375 3,-0.9375 3.101562,-1.039062 3.210938,-1.164062 3.328125,-1.3125 Z m 0,0"
           id="path260"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-17"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.3125,-2.140625 c 0,0.34375 -0.039062,0.65625 -0.109375,0.9375 C 4.128906,-0.929688 4.019531,-0.695312 3.875,-0.5 3.726562,-0.3125 3.546875,-0.164062 3.328125,-0.0625 3.117188,0.03125 2.878906,0.078125 2.609375,0.078125 2.484375,0.078125 2.363281,0.0664062 2.25,0.046875 2.144531,0.0234375 2.039062,-0.0078125 1.9375,-0.0625 1.84375,-0.125 1.742188,-0.195312 1.640625,-0.28125 1.535156,-0.363281 1.425781,-0.46875 1.3125,-0.59375 v 0.484375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 1.285156,-0.0234375 1.265625,-0.0078125 1.234375,0 1.210938,0.0078125 1.179688,0.015625 1.140625,0.015625 1.097656,0.0234375 1.046875,0.03125 0.984375,0.03125 0.929688,0.03125 0.882812,0.0234375 0.84375,0.015625 0.800781,0.015625 0.765625,0.0078125 0.734375,0 0.710938,-0.0078125 0.695312,-0.0234375 0.6875,-0.046875 0.675781,-0.0664062 0.671875,-0.0859375 0.671875,-0.109375 v -5.875 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007812,-0.019531 0.023438,-0.035156 0.046875,-0.046875 0.03125,-0.019531 0.066406,-0.03125 0.109375,-0.03125 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.070312,0 0.128906,0.00781 0.171875,0.015625 0.050781,0 0.085937,0.011719 0.109375,0.03125 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 v 2.375 c 0.125,-0.125 0.238281,-0.222656 0.34375,-0.296875 C 1.847656,-3.988281 1.957031,-4.054688 2.0625,-4.109375 2.164062,-4.160156 2.269531,-4.195312 2.375,-4.21875 2.476562,-4.25 2.59375,-4.265625 2.71875,-4.265625 c 0.28125,0 0.519531,0.058594 0.71875,0.171875 0.207031,0.117188 0.375,0.273438 0.5,0.46875 0.132812,0.1875 0.226562,0.414062 0.28125,0.671875 0.0625,0.25 0.09375,0.523437 0.09375,0.8125 z M 3.546875,-2.0625 C 3.546875,-2.257812 3.53125,-2.453125 3.5,-2.640625 3.46875,-2.835938 3.410156,-3.007812 3.328125,-3.15625 3.253906,-3.300781 3.15625,-3.414062 3.03125,-3.5 2.90625,-3.59375 2.75,-3.640625 2.5625,-3.640625 c -0.09375,0 -0.1875,0.015625 -0.28125,0.046875 -0.085938,0.023438 -0.171875,0.0625 -0.265625,0.125 -0.09375,0.0625 -0.195313,0.148438 -0.296875,0.25 -0.105469,0.09375 -0.214844,0.214844 -0.328125,0.359375 v 1.578125 c 0.207031,0.242188 0.398437,0.421875 0.578125,0.546875 0.175781,0.125 0.363281,0.1875 0.5625,0.1875 0.1875,0 0.34375,-0.039063 0.46875,-0.125 0.125,-0.082031 0.226562,-0.195313 0.3125,-0.34375 C 3.394531,-1.160156 3.453125,-1.320312 3.484375,-1.5 c 0.039063,-0.1875 0.0625,-0.375 0.0625,-0.5625 z m 0,0"
           id="path263"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-18"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 2.46875,0 1.953125,1.453125 C 1.929688,1.503906 1.882812,1.539062 1.8125,1.5625 1.738281,1.582031 1.628906,1.59375 1.484375,1.59375 c -0.074219,0 -0.136719,-0.00781 -0.1875,-0.015625 -0.042969,0 -0.078125,-0.011719 -0.109375,-0.03125 -0.023438,-0.011719 -0.039062,-0.03125 -0.046875,-0.0625 0,-0.03125 0.00781,-0.070313 0.03125,-0.109375 L 1.71875,0 C 1.6875,-0.0078125 1.660156,-0.0234375 1.640625,-0.046875 1.617188,-0.078125 1.601562,-0.109375 1.59375,-0.140625 L 0.1875,-3.921875 C 0.164062,-3.984375 0.15625,-4.03125 0.15625,-4.0625 c 0,-0.039062 0.007812,-0.066406 0.03125,-0.078125 0.019531,-0.019531 0.054688,-0.035156 0.109375,-0.046875 0.050781,-0.00781 0.125,-0.015625 0.21875,-0.015625 0.082031,0 0.148437,0.00781 0.203125,0.015625 0.050781,0 0.085938,0.00781 0.109375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.019531,0.023438 0.035156,0.054688 0.046875,0.09375 l 1.125,3.171875 h 0.015625 l 1.09375,-3.1875 c 0.019531,-0.050781 0.039063,-0.082031 0.0625,-0.09375 0.03125,-0.019531 0.066406,-0.035156 0.109375,-0.046875 0.050781,-0.00781 0.125,-0.015625 0.21875,-0.015625 0.082031,0 0.148438,0.00781 0.203125,0.015625 0.050781,0.011719 0.085937,0.027344 0.109375,0.046875 0.03125,0.011719 0.046875,0.039063 0.046875,0.078125 0,0.03125 -0.011719,0.074219 -0.03125,0.125 z m 0,0"
           id="path266"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-19"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 5.046875,-0.3125 c 0,0.0625 -0.011719,0.117188 -0.03125,0.15625 -0.011719,0.042969 -0.03125,0.078125 -0.0625,0.109375 C 4.921875,-0.0234375 4.882812,-0.0078125 4.84375,0 4.8125,0.0078125 4.773438,0.015625 4.734375,0.015625 h -0.25 C 4.410156,0.015625 4.34375,0.0078125 4.28125,0 4.226562,-0.0195312 4.175781,-0.0507812 4.125,-0.09375 4.070312,-0.132812 4.019531,-0.191406 3.96875,-0.265625 3.914062,-0.335938 3.863281,-0.429688 3.8125,-0.546875 L 2.015625,-3.78125 C 1.921875,-3.945312 1.828125,-4.125 1.734375,-4.3125 1.640625,-4.5 1.550781,-4.675781 1.46875,-4.84375 H 1.453125 c 0.00781,0.210938 0.015625,0.421875 0.015625,0.640625 0,0.21875 0,0.4375 0,0.65625 v 3.4375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 -0.011719,0.0117188 -0.03125,0.0234375 -0.0625,0.03125 C 1.367188,-0.00390625 1.332031,0.00390625 1.28125,0.015625 1.238281,0.0234375 1.179688,0.03125 1.109375,0.03125 1.035156,0.03125 0.976562,0.0234375 0.9375,0.015625 0.894531,0.00390625 0.859375,-0.00390625 0.828125,-0.015625 0.804688,-0.0234375 0.785156,-0.0351562 0.765625,-0.046875 0.753906,-0.0664062 0.75,-0.0859375 0.75,-0.109375 v -5.25 c 0,-0.113281 0.03125,-0.195313 0.09375,-0.25 C 0.914062,-5.660156 0.988281,-5.6875 1.0625,-5.6875 h 0.359375 c 0.082031,0 0.148437,0.011719 0.203125,0.03125 0.0625,0.011719 0.113281,0.03125 0.15625,0.0625 0.050781,0.03125 0.097656,0.078125 0.140625,0.140625 0.039063,0.0625 0.085937,0.140625 0.140625,0.234375 l 1.375,2.484375 c 0.082031,0.15625 0.164062,0.308594 0.25,0.453125 0.082031,0.148438 0.160156,0.292969 0.234375,0.4375 0.070313,0.136719 0.140625,0.273438 0.203125,0.40625 0.070312,0.136719 0.144531,0.273438 0.21875,0.40625 0,-0.226562 0,-0.46875 0,-0.71875 0,-0.25 0,-0.488281 0,-0.71875 V -5.5625 c 0,-0.019531 0.00391,-0.035156 0.015625,-0.046875 0.00781,-0.019531 0.023437,-0.035156 0.046875,-0.046875 0.03125,-0.019531 0.066406,-0.03125 0.109375,-0.03125 0.050781,-0.00781 0.113281,-0.015625 0.1875,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.050781,0 0.085937,0.011719 0.109375,0.03125 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 z m 0,0"
           id="path269"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-20"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="M 5.125,-2.921875 C 5.125,-2.429688 5.0625,-2 4.9375,-1.625 4.8125,-1.257812 4.628906,-0.957031 4.390625,-0.71875 4.148438,-0.476562 3.851562,-0.296875 3.5,-0.171875 3.144531,-0.0546875 2.722656,0 2.234375,0 H 1.03125 C 0.96875,0 0.90625,-0.0195312 0.84375,-0.0625 0.78125,-0.113281 0.75,-0.195312 0.75,-0.3125 V -5.375 c 0,-0.113281 0.03125,-0.191406 0.09375,-0.234375 0.0625,-0.050781 0.125,-0.078125 0.1875,-0.078125 h 1.296875 c 0.488281,0 0.898437,0.070312 1.234375,0.203125 0.34375,0.125 0.628906,0.308594 0.859375,0.546875 0.226563,0.230469 0.398437,0.515625 0.515625,0.859375 0.125,0.34375 0.1875,0.730469 0.1875,1.15625 z m -0.796875,0.03125 c 0,-0.3125 -0.039063,-0.597656 -0.109375,-0.859375 -0.074219,-0.269531 -0.195312,-0.5 -0.359375,-0.6875 -0.167969,-0.195312 -0.375,-0.347656 -0.625,-0.453125 C 2.992188,-5.003906 2.675781,-5.0625 2.28125,-5.0625 H 1.515625 v 4.421875 h 0.78125 c 0.351563,0 0.65625,-0.039063 0.90625,-0.125 0.25,-0.09375 0.457031,-0.234375 0.625,-0.421875 0.164063,-0.1875 0.289063,-0.421875 0.375,-0.703125 0.082031,-0.28125 0.125,-0.613281 0.125,-1 z m 0,0"
           id="path272"
           inkscape:connector-curvature="0" />
      </symbol>
      <symbol
         overflow="visible"
         id="glyph4-21"
         style="overflow:visible">
        <path
           style="stroke:none"
           d="m 4.546875,-0.109375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 4.519531,-0.0351562 4.5,-0.0195312 4.46875,0 4.445312,0.0078125 4.410156,0.015625 4.359375,0.015625 4.304688,0.0234375 4.234375,0.03125 4.140625,0.03125 4.066406,0.03125 4.003906,0.0234375 3.953125,0.015625 3.910156,0.015625 3.875,0.0078125 3.84375,0 3.8125,-0.0195312 3.785156,-0.0390625 3.765625,-0.0625 3.753906,-0.0820312 3.742188,-0.113281 3.734375,-0.15625 L 3.203125,-1.5 c -0.0625,-0.144531 -0.125,-0.28125 -0.1875,-0.40625 C 2.953125,-2.039062 2.875,-2.148438 2.78125,-2.234375 2.6875,-2.328125 2.578125,-2.398438 2.453125,-2.453125 2.335938,-2.503906 2.191406,-2.53125 2.015625,-2.53125 h -0.5 v 2.421875 c 0,0.0234375 -0.011719,0.0429688 -0.03125,0.0625 -0.011719,0.0117188 -0.03125,0.0234375 -0.0625,0.03125 C 1.398438,-0.00390625 1.363281,0.00390625 1.3125,0.015625 1.269531,0.0234375 1.210938,0.03125 1.140625,0.03125 1.066406,0.03125 1.003906,0.0234375 0.953125,0.015625 0.898438,0.00390625 0.859375,-0.00390625 0.828125,-0.015625 0.804688,-0.0234375 0.785156,-0.0351562 0.765625,-0.046875 0.753906,-0.0664062 0.75,-0.0859375 0.75,-0.109375 V -5.375 c 0,-0.113281 0.03125,-0.191406 0.09375,-0.234375 0.0625,-0.050781 0.125,-0.078125 0.1875,-0.078125 H 2.25 c 0.144531,0 0.265625,0.00781 0.359375,0.015625 0.09375,0 0.175781,0.00781 0.25,0.015625 0.21875,0.042969 0.410156,0.105469 0.578125,0.1875 0.175781,0.085938 0.316406,0.1875 0.421875,0.3125 0.113281,0.125 0.195313,0.273438 0.25,0.4375 0.0625,0.15625 0.09375,0.335938 0.09375,0.53125 0,0.1875 -0.027344,0.359375 -0.078125,0.515625 -0.042969,0.148437 -0.117188,0.277344 -0.21875,0.390625 -0.09375,0.117188 -0.210938,0.21875 -0.34375,0.3125 -0.136719,0.085938 -0.289062,0.152344 -0.453125,0.203125 0.09375,0.042969 0.175781,0.09375 0.25,0.15625 0.082031,0.0625 0.15625,0.140625 0.21875,0.234375 0.0625,0.085938 0.125,0.183594 0.1875,0.296875 0.0625,0.117187 0.117187,0.246094 0.171875,0.390625 l 0.515625,1.25 c 0.039063,0.105469 0.066406,0.179688 0.078125,0.21875 0.00781,0.042969 0.015625,0.078125 0.015625,0.109375 z m -1.140625,-4 c 0,-0.21875 -0.054688,-0.40625 -0.15625,-0.5625 C 3.15625,-4.828125 2.992188,-4.9375 2.765625,-5 2.691406,-5.019531 2.609375,-5.035156 2.515625,-5.046875 2.421875,-5.054688 2.300781,-5.0625 2.15625,-5.0625 H 1.515625 v 1.921875 H 2.25 c 0.195312,0 0.367188,-0.023437 0.515625,-0.078125 C 2.910156,-3.269531 3.03125,-3.335938 3.125,-3.421875 3.226562,-3.503906 3.300781,-3.601562 3.34375,-3.71875 c 0.039062,-0.125 0.0625,-0.253906 0.0625,-0.390625 z m 0,0"
           id="path275"
           inkscape:connector-curvature="0" />
      </symbol>
    </g>
    <clipPath
       id="clip1">
      <path
         d="m 513,304.94141 h 2 v 234.00781 h -2 z m 0,0"
         id="path280"
         inkscape:connector-curvature="0" />
    </clipPath>
    <clipPath
       id="clip2">
      <path
         d="M 134,304.94141 H 515 V 461 H 134 Z m 0,0"
         id="path283"
         inkscape:connector-curvature="0" />
    </clipPath>
    <clipPath
       id="clip3">
      <path
         d="m 134,466 h 381 v 72.94922 H 134 Z m 0,0"
         id="path286"
         inkscape:connector-curvature="0" />
    </clipPath>
    <clipPath
       id="clip4">
      <path
         d="m 247,465 h 155 v 73.94922 H 247 Z m 0,0"
         id="path289"
         inkscape:connector-curvature="0" />
    </clipPath>
    <clipPath
       id="clip5">
      <path
         d="M 50.398438,295.92187 H 544.80078 V 586.55859 H 50.398438 Z m 0,0"
         id="path292"
         inkscape:connector-curvature="0" />
    </clipPath>
  </defs>
  <g
     id="surface346"
     transform="translate(-50.573427,-295.9914)">
    <path
       style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
       d="M 50.820312,586.30859 H 544.63281 V 296.23828 H 50.820312 Z m 0,0"
       id="path297"
       inkscape:connector-curvature="0" />
    <path
       style="fill:none;stroke:#f0f0f0;stroke-width:0.65836;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="M 97.230469,326.62812 H 535.80078 M 97.230469,349.92891 H 535.80078 M 97.230469,373.31953 H 535.80078 M 97.230469,396.69844 H 535.80078 M 97.230469,420.01094 H 535.80078 M 97.230469,443.38984 H 535.80078 M 97.230469,466.69844 H 535.80078 M 97.230469,490.08906 H 535.80078 M 97.230469,513.47187 H 535.80078 M 97.230469,536.78828 H 535.80078"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path299"
       inkscape:connector-curvature="0" />
    <path
       style="fill:none;stroke:#f0f0f0;stroke-width:0.65836;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="M 159.85156,536.78828 V 303.26875 m 62.71875,233.51953 V 303.26875 m 62.64844,233.51953 V 303.26875 m 62.65234,233.51953 V 303.26875 m 62.64844,233.51953 V 303.26875 m 62.65234,233.51953 V 303.26875 m 62.62891,233.51953 V 303.26875"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path301"
       inkscape:connector-curvature="0" />
    <path
       style="fill:none;stroke:#bdbdbd;stroke-width:0.49377;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="M 97.230469,303.26875 V 536.78828"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path303"
       inkscape:connector-curvature="0" />
    <path
       style="fill:none;stroke:#f0f0f0;stroke-width:0.65836;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="M 97.230469,303.26875 H 535.80078"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path305"
       inkscape:connector-curvature="0" />
    <g
       clip-path="url(#clip1)"
       id="g309"
       style="clip-rule:nonzero">
      <path
         style="fill:none;stroke:#d9e1f3;stroke-width:1.31669998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
         d="M 513.87109,303.26875 V 536.78828"
         transform="matrix(1,0,0,-1,0,841.8)"
         id="path307"
         inkscape:connector-curvature="0" />
    </g>
    <g
       clip-path="url(#clip2)"
       id="g313"
       style="clip-rule:nonzero">
      <path
         style="fill:none;stroke:#2cdc2c;stroke-width:0.98754001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:6.9128, 3.9501;stroke-opacity:1"
         d="m 134.82031,6506.0109 h 0.30078 l 37.59766,-3472.6601 h 0.32031 l 37.60156,-1736.332 h 0.32032 l 37.60937,-868.16021 h 151.91797 l 37.60156,-27.17968 h 0.32032 l 37.53125,-13.50782 H 476.25 l 37.62109,-6.8125"
         transform="matrix(1,0,0,-1,0,841.8)"
         id="path311"
         inkscape:connector-curvature="0" />
    </g>
    <g
       clip-path="url(#clip3)"
       id="g317"
       style="clip-rule:nonzero">
      <path
         style="fill:none;stroke:#2cdc2c;stroke-width:0.82295001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
         d="m 134.82031,-443.98906 h 114.0586 L 286.41016,-5.2625 h 0.30859 l 37.60937,217.10156 h 0.32032 L 362.25,320.31172 h 0.32031 l 37.60156,54.26953 h 113.69922"
         transform="matrix(1,0,0,-1,0,841.8)"
         id="path315"
         inkscape:connector-curvature="0" />
    </g>
    <g
       clip-path="url(#clip4)"
       id="g321"
       style="clip-rule:nonzero">
      <path
         style="fill:none;stroke:#2cdc2c;stroke-width:2.63339996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
         d="m 248.85156,-5.242969 h 37.5586 m 0.30859,217.082029 h 37.60937 m 0.32032,108.47266 H 362.25 m 0.32031,54.26953 h 37.58985"
         transform="matrix(1,0,0,-1,0,841.8)"
         id="path319"
         inkscape:connector-curvature="0" />
    </g>
    <path
       style="fill:none;stroke:#afaf00;stroke-width:2.63339996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="m 210.94922,428.83906 h 37.62109 m 151.91797,-27.16015 h 37.60156 m 0.32032,-13.50782 h 37.53125 m 0.30859,-6.8125 h 37.62109"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path323"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g331">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="540.28998"
         id="use325"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="540.28998"
         id="use327"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-3"
         x="88.75235"
         y="540.28998"
         id="use329"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g339">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="516.90997"
         id="use333"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="516.90997"
         id="use335"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-1"
         x="88.75235"
         y="516.90997"
         id="use337"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g347">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="493.56"
         id="use341"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="493.56"
         id="use343"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-4"
         x="88.75235"
         y="493.56"
         id="use345"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g355">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="470.20999"
         id="use349"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="470.20999"
         id="use351"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-5"
         x="88.75235"
         y="470.20999"
         id="use353"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g363">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="446.85999"
         id="use357"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="446.85999"
         id="use359"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-6"
         x="88.75235"
         y="446.85999"
         id="use361"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g371">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="423.5"
         id="use365"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="423.5"
         id="use367"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-7"
         x="88.75235"
         y="423.5"
         id="use369"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g379">
      <use
         xlink:href="#glyph0-1"
         x="84.264"
         y="400.14999"
         id="use373"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="400.14999"
         id="use375"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-8"
         x="88.75235"
         y="400.14999"
         id="use377"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g387">
      <use
         xlink:href="#glyph1-1"
         x="84.264"
         y="376.79999"
         id="use381"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph1-2"
         x="87.264"
         y="376.79999"
         id="use383"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph1-3"
         x="88.758476"
         y="376.79999"
         id="use385"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g391">
      <use
         xlink:href="#glyph0-4"
         x="88.751999"
         y="353.42001"
         id="use389"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g399">
      <use
         xlink:href="#glyph0-4"
         x="84.264"
         y="330.07001"
         id="use393"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="330.07001"
         id="use395"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-9"
         x="88.75235"
         y="330.07001"
         id="use397"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g407">
      <use
         xlink:href="#glyph0-4"
         x="84.264"
         y="306.72"
         id="use401"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-2"
         x="87.263992"
         y="306.72"
         id="use403"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-3"
         x="88.75235"
         y="306.72"
         id="use405"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g411">
      <use
         xlink:href="#glyph0-10"
         x="95.760002"
         y="547.98999"
         id="use409"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g419">
      <use
         xlink:href="#glyph0-9"
         x="155.39999"
         y="547.98999"
         id="use413"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="158.424"
         y="547.98999"
         id="use415"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="161.448"
         y="547.98999"
         id="use417"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g427">
      <use
         xlink:href="#glyph0-3"
         x="218.09"
         y="547.98999"
         id="use421"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="221.09"
         y="547.98999"
         id="use423"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="224.09"
         y="547.98999"
         id="use425"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g435">
      <use
         xlink:href="#glyph0-1"
         x="280.75"
         y="547.98999"
         id="use429"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="283.75"
         y="547.98999"
         id="use431"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="286.75"
         y="547.98999"
         id="use433"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g443">
      <use
         xlink:href="#glyph0-4"
         x="343.42001"
         y="547.98999"
         id="use437"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="346.41998"
         y="547.98999"
         id="use439"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="349.41998"
         y="547.98999"
         id="use441"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g451">
      <use
         xlink:href="#glyph0-5"
         x="406.07999"
         y="547.98999"
         id="use445"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="409.07999"
         y="547.98999"
         id="use447"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="412.07999"
         y="547.98999"
         id="use449"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g459">
      <use
         xlink:href="#glyph0-6"
         x="468.73999"
         y="547.98999"
         id="use453"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="471.73999"
         y="547.98999"
         id="use455"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="474.73999"
         y="547.98999"
         id="use457"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g467">
      <use
         xlink:href="#glyph0-7"
         x="531.40997"
         y="547.98999"
         id="use461"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="534.40997"
         y="547.98999"
         id="use463"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="537.40997"
         y="547.98999"
         id="use465"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g471">
      <use
         xlink:href="#glyph2-1"
         x="72.288002"
         y="462.38"
         id="use469"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g477">
      <use
         xlink:href="#glyph2-2"
         x="72.288002"
         y="459.23666"
         id="use473"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph2-3"
         x="72.288002"
         y="456.94165"
         id="use475"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g481">
      <use
         xlink:href="#glyph2-4"
         x="72.288002"
         y="453.81146"
         id="use479"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g485">
      <use
         xlink:href="#glyph2-5"
         x="72.288002"
         y="450.33936"
         id="use483"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g489">
      <use
         xlink:href="#glyph2-6"
         x="72.288002"
         y="447.82074"
         id="use487"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g493">
      <use
         xlink:href="#glyph2-7"
         x="72.288002"
         y="442.61255"
         id="use491"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g499">
      <use
         xlink:href="#glyph2-8"
         x="72.288002"
         y="441.12637"
         id="use495"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph2-9"
         x="72.288002"
         y="438.9234"
         id="use497"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g505">
      <use
         xlink:href="#glyph2-2"
         x="72.288002"
         y="437.33859"
         id="use501"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph2-3"
         x="72.288002"
         y="435.04358"
         id="use503"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g511">
      <use
         xlink:href="#glyph2-8"
         x="72.288002"
         y="431.91339"
         id="use507"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph2-10"
         x="72.288002"
         y="429.71042"
         id="use509"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g515">
      <use
         xlink:href="#glyph2-9"
         x="72.287994"
         y="426.46848"
         id="use513"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g519">
      <use
         xlink:href="#glyph2-11"
         x="72.287994"
         y="424.89023"
         id="use517"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g523">
      <use
         xlink:href="#glyph2-12"
         x="72.287994"
         y="422.92401"
         id="use521"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g527">
      <use
         xlink:href="#glyph2-13"
         x="72.287994"
         y="417.33441"
         id="use525"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g531">
      <use
         xlink:href="#glyph2-13"
         x="72.287994"
         y="413.86227"
         id="use529"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g535">
      <use
         xlink:href="#glyph2-5"
         x="72.287994"
         y="410.39014"
         id="use533"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g539">
      <use
         xlink:href="#glyph2-14"
         x="72.287994"
         y="407.87152"
         id="use537"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g543">
      <use
         xlink:href="#glyph3-1"
         x="275.39999"
         y="558.58002"
         id="use541"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g549">
      <use
         xlink:href="#glyph3-2"
         x="278.56964"
         y="558.58002"
         id="use545"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph3-3"
         x="280.08212"
         y="558.58002"
         id="use547"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g553">
      <use
         xlink:href="#glyph3-4"
         x="285.31662"
         y="558.58002"
         id="use551"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g557">
      <use
         xlink:href="#glyph3-5"
         x="288.55856"
         y="558.58002"
         id="use555"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g561">
      <use
         xlink:href="#glyph3-6"
         x="290.22888"
         y="558.58002"
         id="use559"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g567">
      <use
         xlink:href="#glyph3-2"
         x="292.7738"
         y="558.58002"
         id="use563"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph3-7"
         x="294.28629"
         y="558.58002"
         id="use565"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g573">
      <use
         xlink:href="#glyph3-8"
         x="297.75839"
         y="558.58002"
         id="use569"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph3-4"
         x="300.54004"
         y="558.58002"
         id="use571"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g577">
      <use
         xlink:href="#glyph3-5"
         x="303.78201"
         y="558.58002"
         id="use575"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g581">
      <use
         xlink:href="#glyph3-6"
         x="305.36026"
         y="558.58002"
         id="use579"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g585">
      <use
         xlink:href="#glyph3-4"
         x="307.90518"
         y="558.58002"
         id="use583"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g591">
      <use
         xlink:href="#glyph3-9"
         x="311.14713"
         y="558.58002"
         id="use587"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph3-10"
         x="314.29703"
         y="558.58002"
         id="use589"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g597">
      <use
         xlink:href="#glyph3-8"
         x="316.61179"
         y="558.58002"
         id="use593"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph3-11"
         x="319.39343"
         y="558.58002"
         id="use595"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g601">
      <use
         xlink:href="#glyph3-5"
         x="322.87213"
         y="558.58002"
         id="use599"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g605">
      <use
         xlink:href="#glyph3-6"
         x="324.45038"
         y="558.58002"
         id="use603"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g609">
      <use
         xlink:href="#glyph3-12"
         x="326.9953"
         y="558.58002"
         id="use607"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g615">
      <use
         xlink:href="#glyph3-9"
         x="329.21799"
         y="558.58002"
         id="use611"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph3-10"
         x="332.36789"
         y="558.58002"
         id="use613"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g619">
      <use
         xlink:href="#glyph3-12"
         x="334.68265"
         y="558.58002"
         id="use617"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g623">
      <use
         xlink:href="#glyph3-6"
         x="336.90533"
         y="558.58002"
         id="use621"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g627">
      <use
         xlink:href="#glyph3-5"
         x="339.45023"
         y="558.58002"
         id="use625"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g631">
      <use
         xlink:href="#glyph3-13"
         x="340.95615"
         y="558.58002"
         id="use629"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g635">
      <use
         xlink:href="#glyph3-6"
         x="342.94867"
         y="558.58002"
         id="use633"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g639">
      <use
         xlink:href="#glyph3-14"
         x="345.49359"
         y="558.58002"
         id="use637"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g649">
      <use
         xlink:href="#glyph4-1"
         x="219.89"
         y="319.75"
         id="use641"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-2"
         x="224.38988"
         y="319.75"
         id="use643"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-3"
         x="226.51508"
         y="319.75"
         id="use645"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-4"
         x="233.89784"
         y="319.75"
         id="use647"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g653">
      <use
         xlink:href="#glyph4-5"
         x="238.4624"
         y="319.75"
         id="use651"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g657">
      <use
         xlink:href="#glyph4-4"
         x="240.50444"
         y="319.75"
         id="use655"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g661">
      <use
         xlink:href="#glyph4-6"
         x="245.01357"
         y="319.75"
         id="use659"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g667">
      <use
         xlink:href="#glyph4-7"
         x="249.11612"
         y="319.75"
         id="use663"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-8"
         x="253.9856"
         y="319.75"
         id="use665"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g673">
      <use
         xlink:href="#glyph4-9"
         x="256.13852"
         y="319.75"
         id="use669"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-10"
         x="260.98953"
         y="319.75"
         id="use671"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g679">
      <use
         xlink:href="#glyph4-2"
         x="264.03873"
         y="319.75"
         id="use675"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-7"
         x="266.16391"
         y="319.75"
         id="use677"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g685">
      <use
         xlink:href="#glyph4-11"
         x="271.06113"
         y="319.75"
         id="use681"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-5"
         x="275.91211"
         y="319.75"
         id="use683"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g691">
      <use
         xlink:href="#glyph4-7"
         x="277.92645"
         y="319.75"
         id="use687"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-12"
         x="282.79593"
         y="319.75"
         id="use689"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g695">
      <use
         xlink:href="#glyph4-5"
         x="285.64185"
         y="319.75"
         id="use693"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g699">
      <use
         xlink:href="#glyph4-3"
         x="287.68387"
         y="319.75"
         id="use697"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g709">
      <use
         xlink:href="#glyph4-4"
         x="295.02969"
         y="319.75"
         id="use701"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-13"
         x="299.6312"
         y="319.75"
         id="use703"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-14"
         x="304.05716"
         y="319.75"
         id="use705"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-9"
         x="307.67001"
         y="319.75"
         id="use707"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g713">
      <use
         xlink:href="#glyph4-15"
         x="312.47479"
         y="319.75"
         id="use711"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g719">
      <use
         xlink:href="#glyph4-4"
         x="315.54248"
         y="319.75"
         id="use715"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-3"
         x="320.14401"
         y="319.75"
         id="use717"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g725">
      <use
         xlink:href="#glyph4-4"
         x="327.47131"
         y="319.75"
         id="use721"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-11"
         x="332.07285"
         y="319.75"
         id="use723"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g733">
      <use
         xlink:href="#glyph4-10"
         x="336.78525"
         y="319.75"
         id="use727"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-14"
         x="339.88065"
         y="319.75"
         id="use729"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-5"
         x="343.49347"
         y="319.75"
         id="use731"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g739">
      <use
         xlink:href="#glyph4-13"
         x="345.51703"
         y="319.75"
         id="use735"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-11"
         x="349.94299"
         y="319.75"
         id="use737"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g747">
      <use
         xlink:href="#glyph4-16"
         x="354.75705"
         y="319.75"
         id="use741"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-5"
         x="359.60803"
         y="319.75"
         id="use743"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-2"
         x="361.69629"
         y="319.75"
         id="use745"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g751">
      <use
         xlink:href="#glyph4-11"
         x="363.83997"
         y="319.75"
         id="use749"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g755">
      <use
         xlink:href="#glyph4-10"
         x="368.57083"
         y="319.75"
         id="use753"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g761">
      <use
         xlink:href="#glyph4-4"
         x="371.57385"
         y="319.75"
         id="use757"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-15"
         x="376.17535"
         y="319.75"
         id="use759"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g765">
      <use
         xlink:href="#glyph4-6"
         x="379.46481"
         y="319.75"
         id="use763"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g775">
      <use
         xlink:href="#glyph4-13"
         x="383.49344"
         y="319.75"
         id="use767"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-8"
         x="387.9194"
         y="319.75"
         id="use769"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-14"
         x="390.04459"
         y="319.75"
         id="use771"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-5"
         x="393.65744"
         y="319.75"
         id="use773"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g783">
      <use
         xlink:href="#glyph4-2"
         x="395.6348"
         y="319.75"
         id="use777"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-11"
         x="397.76001"
         y="319.75"
         id="use779"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-5"
         x="402.61099"
         y="319.75"
         id="use781"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g791">
      <use
         xlink:href="#glyph4-17"
         x="404.71771"
         y="319.75"
         id="use785"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-2"
         x="409.56873"
         y="319.75"
         id="use787"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-11"
         x="411.69391"
         y="319.75"
         id="use789"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g797">
      <use
         xlink:href="#glyph4-13"
         x="416.49872"
         y="319.75"
         id="use793"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-15"
         x="420.92468"
         y="319.75"
         id="use795"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g803">
      <use
         xlink:href="#glyph4-18"
         x="424.21411"
         y="319.75"
         id="use799"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-5"
         x="428.39984"
         y="319.75"
         id="use801"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g807">
      <use
         xlink:href="#glyph4-19"
         x="430.43265"
         y="319.75"
         id="use805"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g813">
      <use
         xlink:href="#glyph4-20"
         x="436.42017"
         y="319.75"
         id="use809"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph4-21"
         x="442.10275"
         y="319.75"
         id="use811"
         width="100%"
         height="100%" />
    </g>
    <path
       style="fill:none;stroke:#a3a3a3;stroke-width:0.98754001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="M 86.558594,264.99141 H 103.14844"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path815"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g819">
      <use
         xlink:href="#glyph0-11"
         x="105"
         y="578.57001"
         id="use817"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g823">
      <use
         xlink:href="#glyph0-12"
         x="107.68539"
         y="578.57001"
         id="use821"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g829">
      <use
         xlink:href="#glyph0-13"
         x="110.67902"
         y="578.57001"
         id="use825"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-14"
         x="113.51854"
         y="578.57001"
         id="use827"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g835">
      <use
         xlink:href="#glyph0-15"
         x="115.55184"
         y="578.57001"
         id="use831"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-16"
         x="118.05939"
         y="578.57001"
         id="use833"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g841">
      <use
         xlink:href="#glyph0-17"
         x="121.14194"
         y="578.57001"
         id="use837"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-12"
         x="122.48167"
         y="578.57001"
         id="use839"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g845">
      <use
         xlink:href="#glyph0-18"
         x="125.41603"
         y="578.57001"
         id="use843"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g849">
      <use
         xlink:href="#glyph0-19"
         x="128.57565"
         y="578.57001"
         id="use847"
         width="100%"
         height="100%" />
    </g>
    <path
       style="fill:none;stroke:#2cdc2c;stroke-width:0.98754001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:6.9128, 3.9501;stroke-opacity:1"
       d="m 142.48828,264.99141 h 16.58984"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path851"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g855">
      <use
         xlink:href="#glyph0-20"
         x="160.94"
         y="578.57001"
         id="use853"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g859">
      <use
         xlink:href="#glyph0-21"
         x="164.73392"
         y="578.57001"
         id="use857"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g863">
      <use
         xlink:href="#glyph0-22"
         x="168.42114"
         y="578.57001"
         id="use861"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g869">
      <use
         xlink:href="#glyph0-17"
         x="171.56297"
         y="578.57001"
         id="use865"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-23"
         x="172.90271"
         y="578.57001"
         id="use867"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g873">
      <use
         xlink:href="#glyph0-24"
         x="176.04454"
         y="578.57001"
         id="use871"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g877">
      <use
         xlink:href="#glyph0-24"
         x="179.11525"
         y="578.57001"
         id="use875"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g881">
      <use
         xlink:href="#glyph0-12"
         x="182.18596"
         y="578.57001"
         id="use879"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g885">
      <use
         xlink:href="#glyph0-14"
         x="185.1796"
         y="578.57001"
         id="use883"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g891">
      <use
         xlink:href="#glyph0-17"
         x="187.21883"
         y="578.57001"
         id="use887"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-25"
         x="188.55855"
         y="578.57001"
         id="use889"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g895">
      <use
         xlink:href="#glyph0-26"
         x="191.63518"
         y="578.57001"
         id="use893"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g899">
      <use
         xlink:href="#glyph0-23"
         x="194.7711"
         y="578.57001"
         id="use897"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g903">
      <use
         xlink:href="#glyph0-18"
         x="197.8418"
         y="578.57001"
         id="use901"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g907">
      <use
         xlink:href="#glyph0-19"
         x="200.97771"
         y="578.57001"
         id="use905"
         width="100%"
         height="100%" />
    </g>
    <path
       style="fill:none;stroke:#2cdc2c;stroke-width:0.82295001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="m 215.01172,264.99141 h 16.58984"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path909"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g913">
      <use
         xlink:href="#glyph0-20"
         x="233.47"
         y="578.57001"
         id="use911"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g917">
      <use
         xlink:href="#glyph0-21"
         x="237.26392"
         y="578.57001"
         id="use915"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g921">
      <use
         xlink:href="#glyph0-22"
         x="240.98077"
         y="578.57001"
         id="use919"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g929">
      <use
         xlink:href="#glyph0-17"
         x="244.14633"
         y="578.57001"
         id="use923"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-27"
         x="245.48605"
         y="578.57001"
         id="use925"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-26"
         x="246.8495"
         y="578.57001"
         id="use927"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g933">
      <use
         xlink:href="#glyph0-28"
         x="249.99727"
         y="578.57001"
         id="use931"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g937">
      <use
         xlink:href="#glyph0-12"
         x="254.26543"
         y="578.57001"
         id="use935"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g945">
      <use
         xlink:href="#glyph0-14"
         x="257.19385"
         y="578.57001"
         id="use939"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-17"
         x="259.26273"
         y="578.57001"
         id="use941"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-25"
         x="260.60245"
         y="578.57001"
         id="use943"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g949">
      <use
         xlink:href="#glyph0-26"
         x="263.67316"
         y="578.57001"
         id="use947"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g953">
      <use
         xlink:href="#glyph0-23"
         x="266.83279"
         y="578.57001"
         id="use951"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g957">
      <use
         xlink:href="#glyph0-18"
         x="269.90347"
         y="578.57001"
         id="use955"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g961">
      <use
         xlink:href="#glyph0-19"
         x="273.06311"
         y="578.57001"
         id="use959"
         width="100%"
         height="100%" />
    </g>
    <path
       style="fill:none;stroke:#2cdc2c;stroke-width:2.30430007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="M 286.91016,264.99141 H 303.5"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path963"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g969">
      <use
         xlink:href="#glyph0-29"
         x="305.38"
         y="578.57001"
         id="use965"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-12"
         x="310.44843"
         y="578.57001"
         id="use967"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g975">
      <use
         xlink:href="#glyph0-13"
         x="313.37094"
         y="578.57001"
         id="use971"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-30"
         x="316.21045"
         y="578.57001"
         id="use973"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g981">
      <use
         xlink:href="#glyph0-23"
         x="318.59943"
         y="578.57001"
         id="use977"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-14"
         x="321.71164"
         y="578.57001"
         id="use979"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g985">
      <use
         xlink:href="#glyph0-12"
         x="323.75681"
         y="578.57001"
         id="use983"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g993">
      <use
         xlink:href="#glyph0-19"
         x="326.75043"
         y="578.57001"
         id="use987"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-17"
         x="329.86264"
         y="578.57001"
         id="use989"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-27"
         x="331.20236"
         y="578.57001"
         id="use991"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g997">
      <use
         xlink:href="#glyph0-26"
         x="332.53616"
         y="578.57001"
         id="use995"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1003">
      <use
         xlink:href="#glyph0-30"
         x="335.6958"
         y="578.57001"
         id="use999"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-30"
         x="338.01364"
         y="578.57001"
         id="use1001"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1009">
      <use
         xlink:href="#glyph0-17"
         x="340.30185"
         y="578.57001"
         id="use1005"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-31"
         x="341.64157"
         y="578.57001"
         id="use1007"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1013">
      <use
         xlink:href="#glyph0-31"
         x="344.64114"
         y="578.57001"
         id="use1011"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1019">
      <use
         xlink:href="#glyph0-17"
         x="347.56958"
         y="578.57001"
         id="use1015"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-10"
         x="348.9093"
         y="578.57001"
         id="use1017"
         width="100%"
         height="100%" />
    </g>
    <path
       style="fill:none;stroke:#afaf00;stroke-width:2.30430007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="m 362.57812,264.99141 h 16.59375"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path1021"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1027">
      <use
         xlink:href="#glyph0-29"
         x="381.07001"
         y="578.57001"
         id="use1023"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-12"
         x="386.13843"
         y="578.57001"
         id="use1025"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1033">
      <use
         xlink:href="#glyph0-13"
         x="389.06094"
         y="578.57001"
         id="use1029"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-30"
         x="391.90045"
         y="578.57001"
         id="use1031"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1037">
      <use
         xlink:href="#glyph0-23"
         x="394.26572"
         y="578.57001"
         id="use1035"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1043">
      <use
         xlink:href="#glyph0-14"
         x="397.33643"
         y="578.57001"
         id="use1039"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-12"
         x="399.4053"
         y="578.57001"
         id="use1041"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1047">
      <use
         xlink:href="#glyph0-19"
         x="402.39301"
         y="578.57001"
         id="use1045"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1055">
      <use
         xlink:href="#glyph0-17"
         x="405.46371"
         y="578.57001"
         id="use1049"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-27"
         x="406.80344"
         y="578.57001"
         id="use1051"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-26"
         x="408.1669"
         y="578.57001"
         id="use1053"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1059">
      <use
         xlink:href="#glyph0-30"
         x="411.31467"
         y="578.57001"
         id="use1057"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1063">
      <use
         xlink:href="#glyph0-30"
         x="413.59692"
         y="578.57001"
         id="use1061"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1069">
      <use
         xlink:href="#glyph0-17"
         x="415.87921"
         y="578.57001"
         id="use1065"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-32"
         x="417.21893"
         y="578.57001"
         id="use1067"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1073">
      <use
         xlink:href="#glyph0-31"
         x="420.21851"
         y="578.57001"
         id="use1071"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1081">
      <use
         xlink:href="#glyph0-17"
         x="423.14694"
         y="578.57001"
         id="use1075"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-33"
         x="424.48666"
         y="578.57001"
         id="use1077"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-34"
         x="427.55145"
         y="578.57001"
         id="use1079"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1085">
      <use
         xlink:href="#glyph0-22"
         x="430.01157"
         y="578.57001"
         id="use1083"
         width="100%"
         height="100%" />
    </g>
    <path
       style="fill:none;stroke:#ff5050;stroke-width:2.30430007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
       d="m 444.01953,264.99141 h 16.58984"
       transform="matrix(1,0,0,-1,0,841.8)"
       id="path1087"
       inkscape:connector-curvature="0" />
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1093">
      <use
         xlink:href="#glyph0-29"
         x="462.53"
         y="578.57001"
         id="use1089"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-12"
         x="467.59845"
         y="578.57001"
         id="use1091"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1099">
      <use
         xlink:href="#glyph0-13"
         x="470.52094"
         y="578.57001"
         id="use1095"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-30"
         x="473.36044"
         y="578.57001"
         id="use1097"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1103">
      <use
         xlink:href="#glyph0-23"
         x="475.72574"
         y="578.57001"
         id="use1101"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1107">
      <use
         xlink:href="#glyph0-14"
         x="478.79642"
         y="578.57001"
         id="use1105"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1111">
      <use
         xlink:href="#glyph0-12"
         x="480.83566"
         y="578.57001"
         id="use1109"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1115">
      <use
         xlink:href="#glyph0-19"
         x="483.82932"
         y="578.57001"
         id="use1113"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1123">
      <use
         xlink:href="#glyph0-17"
         x="486.89999"
         y="578.57001"
         id="use1117"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-27"
         x="488.23975"
         y="578.57001"
         id="use1119"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-26"
         x="489.60318"
         y="578.57001"
         id="use1121"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1127">
      <use
         xlink:href="#glyph0-30"
         x="492.75095"
         y="578.57001"
         id="use1125"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1131">
      <use
         xlink:href="#glyph0-30"
         x="495.03323"
         y="578.57001"
         id="use1129"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1137">
      <use
         xlink:href="#glyph0-17"
         x="497.31549"
         y="578.57001"
         id="use1133"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-35"
         x="498.65524"
         y="578.57001"
         id="use1135"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1143">
      <use
         xlink:href="#glyph0-17"
         x="501.65479"
         y="578.57001"
         id="use1139"
         width="100%"
         height="100%" />
      <use
         xlink:href="#glyph0-33"
         x="502.99454"
         y="578.57001"
         id="use1141"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1147">
      <use
         xlink:href="#glyph0-34"
         x="506.00003"
         y="578.57001"
         id="use1145"
         width="100%"
         height="100%" />
    </g>
    <g
       style="fill:#575757;fill-opacity:1"
       id="g1151">
      <use
         xlink:href="#glyph0-22"
         x="508.51349"
         y="578.57001"
         id="use1149"
         width="100%"
         height="100%" />
    </g>
    <g
       clip-path="url(#clip5)"
       id="g1155"
       style="clip-rule:nonzero">
      <path
         style="fill:none;stroke:#d9d9d9;stroke-width:0.49377;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
         d="M 50.820312,255.49141 H 544.63281 V 545.56172 H 50.820312 Z m 0,0"
         transform="matrix(1,0,0,-1,0,841.8)"
         id="path1153"
         inkscape:connector-curvature="0" />
    </g>
  </g>
</svg>