1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="352.98032mm"
height="158.38843mm"
viewBox="0 0 352.98032 158.38843"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="release-pipeline.svg"
inkscape:export-filename="/tmp/release-pipeline.png"
inkscape:export-xdpi="150"
inkscape:export-ydpi="150">
<defs
id="defs2">
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="marker6980"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path6978"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5870"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path5868"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="marker5729"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path5727"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5645"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path5643"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="marker5567"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path5565"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5356"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path5354"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="marker4118"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path4116"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker4064"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4062"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="marker3920"
style="overflow:visible"
inkscape:isstock="true"
inkscape:collect="always">
<path
id="path3918"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker3872"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lend"
inkscape:collect="always">
<path
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path3870"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="marker3464"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path3462"
style="fill:#8adfff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow2Lend"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lend"
style="overflow:visible"
inkscape:isstock="true">
<path
id="path3201"
style="fill:#8adfff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<clipPath
id="clipPath833"
clipPathUnits="userSpaceOnUse">
<path
inkscape:connector-curvature="0"
id="path831"
d="M 0,551.986 H 530.973 V 0 H 0 Z" />
</clipPath>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="606.08838"
inkscape:cy="269.52805"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="2891"
inkscape:window-height="1039"
inkscape:window-x="945"
inkscape:window-y="1100"
inkscape:window-maximized="0"
showguides="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:measure-start="0,0"
inkscape:measure-end="0,0" />
<metadata
id="metadata5">
<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>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(1.2013695,-12.058096)">
<rect
style="fill:#ffd493;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect8504"
width="61.739258"
height="42.462448"
x="289.90741"
y="107.50591"
ry="2.932086" />
<rect
ry="2.932086"
y="107.50591"
x="215.07195"
height="42.084473"
width="61.739273"
id="rect7212"
style="fill:#ffd493;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
style="fill:#ffd493;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect7072"
width="61.739273"
height="79.111771"
x="143.17644"
y="28.394127"
ry="2.932086" />
<rect
ry="2.932086"
y="28.394127"
x="71.360962"
height="89.268013"
width="61.739258"
id="rect6586"
style="fill:#ffd493;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<rect
style="fill:#ffd493;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect6584"
width="61.739265"
height="141.9201"
x="-1.0690778"
y="28.394127"
ry="2.932086" />
<g
id="g835"
transform="matrix(0.47993568,0,0,-0.47993568,7.9575302,12.058096)">
<path
d="m 0,0 c -8.995,0 -16.288,-7.293 -16.288,-16.29 0,-7.197 4.667,-13.302 11.14,-15.457 0.815,-0.149 1.112,0.354 1.112,0.786 0,0.386 -0.014,1.411 -0.022,2.77 -4.531,-0.984 -5.487,2.184 -5.487,2.184 -0.741,1.881 -1.809,2.382 -1.809,2.382 -1.479,1.011 0.112,0.991 0.112,0.991 1.635,-0.116 2.495,-1.679 2.495,-1.679 1.453,-2.489 3.813,-1.77 4.741,-1.354 0.148,1.053 0.568,1.771 1.034,2.178 -3.617,0.411 -7.42,1.809 -7.42,8.051 0,1.778 0.635,3.232 1.677,4.371 -0.168,0.412 -0.727,2.068 0.159,4.311 0,0 1.368,0.438 4.48,-1.67 1.299,0.361 2.693,0.542 4.078,0.548 1.383,-0.006 2.777,-0.187 4.078,-0.548 3.11,2.108 4.475,1.67 4.475,1.67 0.889,-2.243 0.33,-3.899 0.162,-4.311 1.044,-1.139 1.675,-2.593 1.675,-4.371 0,-6.258 -3.809,-7.635 -7.438,-8.038 0.585,-0.503 1.106,-1.497 1.106,-3.017 0,-2.177 -0.02,-3.934 -0.02,-4.468 0,-0.436 0.293,-0.943 1.12,-0.784 6.468,2.159 11.131,8.26 11.131,15.455 C 16.291,-7.293 8.997,0 0,0"
style="fill:#1b1817;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path837"
inkscape:connector-curvature="0" />
</g>
<g
id="g2196"
transform="matrix(0.21208061,0,0,0.21208061,89.313214,27.438395)">
<path
d="m -54.424383,-37.831747 c 0,0 -11.067592,7.790075 -11.500556,10.757959 l 0.830545,-0.170744 c 0,0 13.253544,-8.784873 23.759725,-9.856259 l 0.237984,-1.333147 -13.327698,0.602191"
style="fill:#cd2345;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1901"
inkscape:connector-curvature="0" />
<path
d="m -37.050641,-38.945113 -8.71788,6.183171 0.471276,0.378143 c 0.355423,-0.286491 15.485711,-4.907492 15.485711,-4.907492 l 3.189816,-1.999897 c -2.140303,0.266347 -10.428923,0.346075 -10.428923,0.346075"
style="fill:#cd2345;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1903"
inkscape:connector-curvature="0" />
<path
d="m -29.473573,-31.466577 c 6.190192,0 15.469659,-6.062839 15.469659,-6.062839 l -2.99967,-0.571147 c -0.148519,0.148519 -4.836936,-0.164395 -4.836936,-0.164395 l -2.225675,-0.618066 -5.317773,6.058958 -0.432858,1.051278 c 0.382411,-0.154869 0.343253,0.306211 0.343253,0.306211"
style="fill:#cd2345;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1905"
inkscape:connector-curvature="0" />
<path
d="m -55.607035,-8.5014475 c -0.04272,-0.019403 -0.08558,-0.039123 -0.12827,-0.058949 -0.304553,-0.2628194 -0.553579,-0.4776258 -0.716033,-0.6176433 z m 46.3338712,-3.6297305 -1.9124082,0.538409 -8.835673,-0.190888 -5.527675,-4.298633 -6.680554,1.671426 -7.727315,-0.668478 -4.32689,4.728316 -8.119393,2.4249238 -4.054052,-1.2564887 c -0.129011,-0.1114778 -0.204117,-0.1761066 -0.204117,-0.1761066 l 1.819698,4.4555836 c 0,0 4.121574,4.41883472 6.423872,4.93849053 2.301875,0.52007209 6.460667,-0.03706636 9.579999,-0.51993098 3.118873,-0.48258944 5.606662,-1.59672525 6.609257,-3.41561225 1.002242,-1.8199807 1.150761,-2.3396224 1.150761,-2.3396224 0,0 2.971095,4.1959744 5.532967,4.6788461 2.561872,0.4825894 10.173759,-2.1169385 10.173759,-2.1169385 0,0 4.64185,-1.2622742 5.4585309,-2.858876 0.8166806,-1.5967428 2.9707418,-6.8318946 2.9707418,-6.8318946 l -2.3315085,1.237474"
style="fill:#cd2345;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1907"
inkscape:connector-curvature="0" />
<path
d="m -1.7667577,-43.695619 c -0.019403,-0.238831 -0.045861,-0.477309 -0.074789,-0.714375 -0.020814,-0.168275 -0.047272,-0.343959 -0.0762,-0.506589 -0.6378223,-0.536575 -1.3624279,-1.014236 -2.1170196,-1.4478 -0.8173862,-0.477661 -1.6732251,-0.905228 -2.5463502,-1.302809 -0.8671278,-0.409222 -1.757539,-0.779286 -2.6535946,-1.140883 -0.4469694,-0.181328 -0.8978189,-0.357011 -1.3507859,-0.525286 -0.451203,-0.176036 -0.906992,-0.340078 -1.364192,-0.506236 0.959203,0.15875 1.908528,0.376414 2.8507974,0.619125 0.6131278,0.158397 1.2227278,0.335844 1.8280945,0.525286 -4.3077699,-11.258551 -14.6071179,-18.590685 -25.8526149,-18.590685 -11.246663,0 -21.545446,7.332134 -25.852087,18.590685 0.605649,-0.189442 1.215143,-0.366889 1.82686,-0.525286 0.94354,-0.242711 1.893006,-0.460375 2.851856,-0.619125 -0.45847,0.166158 -0.912813,0.3302 -1.365921,0.506236 -0.450603,0.168275 -0.90177,0.343958 -1.350751,0.525286 -0.895843,0.361597 -1.784138,0.731661 -2.653136,1.140883 -0.871325,0.397581 -1.727517,0.825148 -2.545115,1.302809 -0.754451,0.433564 -1.478492,0.911225 -2.118572,1.4478 -0.0266,0.16263 -0.05362,0.338314 -0.07468,0.506589 -0.02854,0.237066 -0.05528,0.475544 -0.07458,0.714375 -0.04173,0.479425 -0.05884,0.960967 -0.06297,1.444272 -0.0095,0.964847 0.05553,1.929695 0.177906,2.884664 0.131868,0.957439 0.307446,1.908528 0.567196,2.827867 0.128023,0.460728 0.273262,0.914753 0.441113,1.354314 0.08435,0.219428 0.175966,0.435681 0.271604,0.645936 0.04756,0.104775 0.0973,0.208139 0.147038,0.30727 l 0.06121,0.116769 c 0.07084,0.03598 0.145097,0.07267 0.215794,0.106892 l 0.428166,0.204611 c 0.238513,0.108303 0.569102,0.265289 0.842399,0.387703 l 0.04381,-0.04022 -0.794985,-3.027892 c 0.168522,-0.04621 1.677882,-0.43568 4.279618,-0.930628 -0.210009,-0.03986 -0.421958,-0.08608 -0.630308,-0.135466 -0.592279,-0.147461 -1.176973,-0.327025 -1.742546,-0.556331 -0.280847,-0.118533 -0.557671,-0.248003 -0.821161,-0.396875 -0.264019,-0.150989 -0.523663,-0.322792 -0.724429,-0.550333 2.85817,0.932039 8.763635,0.509764 14.013145,-0.03246 4.8012,-0.494947 9.613583,-0.815975 14.450555,-0.825147 4.837642,0.0092 9.652001,0.3302 14.450837,0.825147 5.251803,0.54222 11.1573035,0.964495 14.0151564,0.03246 -0.2007305,0.227541 -0.4600222,0.399344 -0.7239,0.550333 -0.263525,0.148872 -0.5404556,0.278342 -0.8212667,0.396875 -0.5662084,0.229306 -1.1504084,0.40887 -1.7423696,0.556331 -0.087842,0.02081 -0.1763889,0.04022 -0.2642306,0.05927 2.8525613,0.529167 4.5130864,0.95885 4.6905337,1.006828 l -0.7602362,2.884664 c 0.1527528,-0.06879 0.3072695,-0.135819 0.4586111,-0.204258 l 0.4275667,-0.204611 c 0.070908,-0.03422 0.1432278,-0.07091 0.2159001,-0.106892 l 0.058914,-0.116769 c 0.052211,-0.09913 0.1019528,-0.202495 0.1492251,-0.30727 0.095956,-0.210255 0.1876777,-0.426508 0.2716389,-0.645936 0.1679222,-0.439561 0.3136194,-0.893586 0.441325,-1.354314 0.2599972,-0.919339 0.4356806,-1.870428 0.5672667,-2.827867 0.1227667,-0.954969 0.187325,-1.919817 0.1781528,-2.884664 -0.00423,-0.483305 -0.021519,-0.964847 -0.0635,-1.444272"
style="fill:#f3f29c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1909"
inkscape:connector-curvature="0" />
<path
d="m -29.880679,-3.656115 c -0.378531,0.057185 -0.757061,0.1048809 -1.133122,0.1333853 -0.242711,0.011712 -0.499181,0.036407 -0.732014,0.036407 l -0.08608,0.00205 c 0.292453,-0.6533092 0.513997,-1.1596159 0.682272,-1.5434029 0.342195,0.383787 0.777875,0.8597548 1.268942,1.3715648"
style="fill:#e5c9a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1911"
inkscape:connector-curvature="0" />
<path
d="m -29.058001,-2.817421 c 1.175103,1.1637434 2.631017,1.82974201 4.234039,1.94825418 -2.692047,1.09333602 -5.229225,1.51556871 -7.183614,1.64689378 -1.948392,0.13049956 -3.923595,-0.0992188 -5.859287,-0.63017757 0.16249,-0.0289384 0.280847,-0.0497452 0.42418,-0.06697134 0.158891,-0.019431 3.630295,-0.47197789 5.194865,-2.79851575 l 0.146756,0.00346 0.384175,-0.00346 c 0.259997,0 0.496358,-0.021237 0.744714,-0.03115 0.59055,-0.051118 1.167694,-0.1350433 1.734961,-0.2496961 0.05962,0.060643 0.118533,0.1202972 0.179211,0.1813631"
style="fill:#e5c9a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1913"
inkscape:connector-curvature="0" />
<path
d="m -25.727779,-37.654652 c -0.112536,0.147108 -0.238477,0.309033 -0.372533,0.477661 -0.687564,0.869245 -1.641122,1.980847 -2.772128,3.068461 -1.31445,-0.04092 -2.665589,-0.06315 -4.056239,-0.06315 -2.297642,0 -4.500775,0.06068 -6.592782,0.162278 2.955749,-1.226609 6.50741,-2.424642 10.35304,-3.144661 1.123245,-0.212373 2.272948,-0.382059 3.440642,-0.500592"
style="fill:#5d6661;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1915"
inkscape:connector-curvature="0" />
<path
d="m -43.028566,-36.33103 c -1.055018,0.741186 -2.246878,1.687336 -3.402507,2.835275 -2.959488,0.296016 -5.540693,0.655144 -7.67073,0.999385 3.274625,-1.505268 7.011459,-2.890626 11.073237,-3.83466"
style="fill:#5d6661;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1917"
inkscape:connector-curvature="0" />
<path
d="m -6.8714525,-30.221659 -1.2036778,8.4219 -5.7661527,4.0386 -15.038918,-1.709597 -2.263775,-7.455182 c -0.05362,-0.181363 -0.206728,-0.314749 -0.394053,-0.345335 -0.557389,-0.08999 -1.05022,-0.13589 -1.460853,-0.13589 -0.41275,0 -0.903817,0.0459 -1.463675,0.13589 -0.185561,0.03059 -0.337961,0.163972 -0.393347,0.345335 l -2.208389,7.273572 -14.954886,3.327683 -5.926244,-4.151066 -1.16773,-9.451023 c 0.254247,-0.143581 0.512622,-0.286738 0.77403,-0.429648 0.366571,-0.07899 0.779427,-0.162631 1.236098,-0.250402 l 1.100349,8.917835 c 0.01711,0.139065 0.09388,0.26349 0.208245,0.343535 l 4.076771,2.85683 c 0.08407,0.05676 0.183409,0.08749 0.282928,0.08749 0.03595,0 0.0707,-0.0034 0.108867,-0.01157 l 12.295541,-2.735827 c 0.04216,-0.0095 0.08421,-0.02466 0.122379,-0.0441 0.11437,-0.06061 0.20447,-0.16577 0.242676,-0.293934 l 2.214068,-7.290506 c 0.593761,-0.152683 2.115291,-0.50793 3.452319,-0.50793 1.3335,0 2.855736,0.355247 3.450167,0.50793 l 2.214033,7.290506 c 0.0575,0.18923 0.221898,0.324696 0.418395,0.34798 l 12.295717,1.396647 c 0.118886,0.01295 0.240948,-0.01806 0.338314,-0.08615 l 4.07917,-2.853902 c 0.110419,-0.07842 0.184856,-0.201472 0.2039055,-0.336656 l 1.0893779,-7.618907 c 0.8173861,0.156669 1.5014223,0.299861 2.0383501,0.41589"
style="fill:#5d6661;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1919"
inkscape:connector-curvature="0" />
<path
d="m -5.3527441,-35.503413 -1.0583334,4.015599 c -2.1642918,-0.477202 -6.9200895,-1.413863 -13.3921505,-2.044277 2.11455,-0.9017 4.267906,-2.032705 6.235347,-3.446286 3.8512756,0.544336 6.6791424,1.127125 8.2151369,1.474964"
style="fill:#5d6661;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1921"
inkscape:connector-curvature="0" />
<path
d="m -30.339643,-32.809884 c -0.592314,0.479707 -1.21673,0.92837 -1.866547,1.320024 l -2.168525,1.308841 c -1.359959,0.165805 -2.540459,0.50232 -2.607557,0.521723 -0.03983,0.01132 -0.07786,0.02826 -0.112607,0.04978 -0.105128,0.06103 -0.185491,0.16189 -0.223661,0.282469 l -2.208142,7.276748 -11.803064,2.625019 -3.717537,-2.603782 -1.081616,-8.761589 c 2.111163,-0.387774 4.934761,-0.836472 8.326261,-1.216378 -0.363537,0.435328 -0.716597,0.891857 -1.051031,1.371282 l -2.019229,2.897999 2.940156,-1.960386 c 0.04381,-0.0303 1.915901,-1.262133 4.978718,-2.760063 3.052374,-0.229305 6.420697,-0.376767 10.025345,-0.376767 0.878769,0 1.740958,0.0102 2.589036,0.02508 z m -18.372491,9.869629 c 0.838376,-0.452931 1.785937,-0.385974 3.268557,-0.383893 0.15875,0.0036 0.322862,0.0018 0.494453,-0.0021 0.145627,-0.0018 0.292417,-0.0038 0.447146,-0.0077 1.528269,-0.01489 2.798798,0.130105 2.77622,-2.26949 -0.02304,-2.399171 -1.08906,-4.338744 -2.61553,-4.323327 -1.528233,0.01312 -3.006725,1.979154 -2.915391,4.376949 0.0247,0.624382 0.116593,1.075267 0.263913,1.400211 -1.331595,0.334045 -1.698731,1.157428 -1.719368,1.209357"
style="fill:#e4c795;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1923"
inkscape:connector-curvature="0" />
<path
d="m -9.882411,-30.818912 -1.064331,7.449291 -3.748264,2.624314 -11.787364,-1.339179 -2.198864,-7.242564 c -0.04974,-0.160373 -0.175684,-0.284268 -0.336198,-0.332246 -0.07303,-0.0212 -1.532466,-0.437515 -3.07975,-0.571465 l 0.282575,-0.01873 c 0.244475,-0.01764 4.310239,-0.516079 9.164462,-2.189692 5.376334,0.412715 9.7663,1.073467 12.767734,1.620273 z m -7.532864,6.89476 c -0.01517,-0.05719 -0.336198,-1.02168 -1.757539,-0.852735 0.164041,-0.356623 0.236714,-0.837847 0.185208,-1.497118 -0.187678,-2.394056 -1.580092,-4.296587 -3.106561,-4.24367 -1.52647,0.05443 -2.504723,2.038809 -2.420409,4.438403 0.08396,2.397796 1.365956,2.380827 2.892425,2.32724 2.051756,-0.03845 3.178881,-0.668902 4.206876,-0.17212"
style="fill:#e4c795;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1925"
inkscape:connector-curvature="0" />
<path
d="m -30.339643,-32.809884 c -0.592314,0.479707 -1.21673,0.92837 -1.866547,1.320024 l -2.168525,1.308841 c -1.359959,0.165805 -2.540459,0.50232 -2.607557,0.521723 -0.03983,0.01132 -0.07786,0.02826 -0.112607,0.04978 -0.105128,0.06103 -0.185491,0.16189 -0.223661,0.282469 l -2.208142,7.276748 -11.803064,2.625019 -3.717537,-2.603782 -1.081616,-8.761589 c 2.111163,-0.387774 4.934761,-0.836472 8.326261,-1.216378 -0.363537,0.435328 -0.716597,0.891857 -1.051031,1.371282 l -2.019229,2.897999 2.940156,-1.960386 c 0.04381,-0.0303 1.915901,-1.262133 4.978718,-2.760063 3.052374,-0.229305 6.420697,-0.376767 10.025345,-0.376767 0.878769,0 1.740958,0.0102 2.589036,0.02508 z m -18.372491,9.869629 c 0.838376,-0.452931 1.785937,-0.385974 3.268557,-0.383893 0.15875,0.0036 0.322862,0.0018 0.494453,-0.0021 0.145627,-0.0018 0.292417,-0.0038 0.447146,-0.0077 1.528269,-0.01489 2.798798,0.130105 2.77622,-2.26949 -0.02304,-2.399171 -1.08906,-4.338744 -2.61553,-4.323327 -1.528233,0.01312 -3.006725,1.979154 -2.915391,4.376949 0.0247,0.624382 0.116593,1.075267 0.263913,1.400211 -1.331595,0.334045 -1.698731,1.157428 -1.719368,1.209357"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1927"
inkscape:connector-curvature="0" />
<path
d="m -9.882411,-30.818912 -1.064331,7.449291 -3.748264,2.624314 -11.787364,-1.339179 -2.198864,-7.242564 c -0.04974,-0.160373 -0.175684,-0.284268 -0.336198,-0.332246 -0.07303,-0.0212 -1.532466,-0.437515 -3.07975,-0.571465 l 0.282575,-0.01873 c 0.244475,-0.01764 4.310239,-0.516079 9.164462,-2.189692 5.376334,0.412715 9.7663,1.073467 12.767734,1.620273 z m -7.532864,6.89476 c -0.01517,-0.05719 -0.336198,-1.02168 -1.757539,-0.852735 0.164041,-0.356623 0.236714,-0.837847 0.185208,-1.497118 -0.187678,-2.394056 -1.580092,-4.296587 -3.106561,-4.24367 -1.52647,0.05443 -2.504723,2.038809 -2.420409,4.438403 0.08396,2.397796 1.365956,2.380827 2.892425,2.32724 2.051756,-0.03845 3.178881,-0.668902 4.206876,-0.17212"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1929"
inkscape:connector-curvature="0" />
<path
d="m -4.7371468,-27.542347 c 0.1806222,0.148978 0.32385,0.534564 0.1622778,2.332355 -0.1986139,2.20084 -1.1239501,6.063757 -1.6968612,6.686515 -0.6321778,0.122344 -1.9582696,-0.02261 -2.7664835,-0.211666 0.1397,-0.554673 0.1795639,-0.820209 0.2924528,-1.387158 l 1.4139334,-0.989542 c 0.1125361,-0.07828 0.1869722,-0.201083 0.2060222,-0.334468 l 0.9881306,-6.923547 c 0.5997223,0.324803 1.2167307,0.676205 1.4005279,0.827511"
style="fill:#e5c9a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1931"
inkscape:connector-curvature="0" />
<path
d="m -56.858691,-18.506261 c 0.07084,0.250507 0.145098,0.500627 0.222003,0.747183 -0.760695,0.223379 -2.310024,0.437515 -3.010888,0.315419 -0.580848,-0.585259 -1.664264,-4.611864 -1.901155,-6.750051 -0.19304,-1.732456 -0.05743,-2.107141 0.118534,-2.252521 0.204505,-0.171732 0.97028,-0.607448 1.633643,-0.962695 l 0.895879,7.272867 c 0.01693,0.139735 0.09151,0.263454 0.20821,0.343958 l 1.833774,1.28584"
style="fill:#e5c9a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1933"
inkscape:connector-curvature="0" />
<path
d="m -28.258959,-18.404555 -0.05362,0.464255 c 0,0 -1.62948,1.510877 -4.252383,1.848768 -2.623256,0.338031 -4.684784,-1.273846 -4.684784,-1.273846 0.08611,0.280141 0.208633,0.912672 0.80257,1.453551 -0.6991,-0.08407 -1.453727,-0.140159 -2.245254,-0.140159 -0.285927,0 -0.574922,0.0085 -0.85397,0.02191 -1.614381,0.08435 -3.88553,2.525537 -5.482378,4.984363 -0.783555,0.24832 -3.23275,1.02556 -6.067778,1.8627018 -2.646116,-3.6664198 -3.947408,-7.4126028 -4.078994,-7.8006578 l 0.0019,-0.0018 c -0.0533,-0.148802 -0.107068,-0.298345 -0.156809,-0.451168 l 0.680614,0.475968 v 0.0017 l 1.681056,1.177008 0.561976,0.391477 c 0.08378,0.05969 0.183126,0.08999 0.282504,0.08999 0.03637,0 0.0725,-0.0038 0.108585,-0.0109 l 15.448352,-3.439301 c 0.173355,-0.03803 0.313231,-0.16824 0.36449,-0.337891 l 2.203167,-7.252476 c 0.380295,-0.05154 0.714023,-0.07828 1.000831,-0.07828 0.284692,0 0.620889,0.02674 1.001183,0.07828 l 2.266951,7.467988 c 0.05785,0.189089 0.221897,0.327025 0.41663,0.347416 l 1.055159,0.121144"
style="fill:#e5c9a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1935"
inkscape:connector-curvature="0" />
<path
d="m -10.625361,-18.805699 0.498828,-0.350308 c -0.0829,0.346427 -0.172509,0.689998 -0.265995,1.030076 -0.693208,2.222076 -1.5113,4.187437 -2.420408,5.923774 -0.200731,0.01418 -0.413103,0.02191 -0.639939,0.02191 -0.701675,0 -1.417814,-0.05951 -2.210506,-0.131868 -1.375833,-0.126365 -3.559175,-0.376484 -4.249208,-0.45653 -0.593725,-0.47378 -2.626431,-2.088832 -4.317648,-3.419898 -0.06632,-0.05387 -0.123472,-0.103611 -0.179564,-0.149508 -0.297744,-0.251918 -0.636058,-0.537986 -1.321858,-0.537986 -0.623006,0 -1.532467,0.226554 -3.730978,0.891858 1.142294,-0.853687 1.150055,-1.956118 1.150055,-1.956118 l 0.05362,-0.464255 14.492817,1.646343 c 0.117828,0.01337 0.240242,-0.01697 0.339725,-0.08573 l 1.455914,-1.020304 1.345142,-0.941458"
style="fill:#e5c9a2;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1937"
inkscape:connector-curvature="0" />
<path
d="m -21.291598,-49.297025 c 0.04375,1.289403 0.01164,3.62585 -0.588786,5.813425 -0.02434,0.08431 -0.02081,0.170039 0,0.250473 -0.763764,-0.08043 -1.528233,-0.149225 -2.29235,-0.210256 0.857603,-1.797756 1.044928,-3.712281 1.085497,-4.386439 0.658636,-0.468136 1.31445,-1.029406 1.795639,-1.467203"
style="fill:#e9d586;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1939"
inkscape:connector-curvature="0" />
<path
d="m -43.158671,-47.829822 c 0.03997,0.674158 0.227118,2.584803 1.083416,4.380795 -0.76454,0.06103 -1.528233,0.131586 -2.290833,0.212372 0.02067,-0.07902 0.023,-0.162631 0,-0.246945 -0.599722,-2.183341 -0.630449,-4.521906 -0.588292,-5.813425 0.481365,0.437797 1.134815,0.999067 1.795709,1.467203"
style="fill:#e9d586;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1941"
inkscape:connector-curvature="0" />
<path
d="m -22.212701,-27.437466 c 0.430036,-0.0095 0.773642,-0.365196 0.766234,-0.794844 -0.0074,-0.431765 -0.362656,-0.775723 -0.795161,-0.765916 -0.431448,0.0072 -0.773642,0.362691 -0.765528,0.794421 0.0078,0.429824 0.363008,0.774065 0.794455,0.766339 z m 4.797426,3.513314 c -1.027995,-0.496782 -2.15512,0.133667 -4.206876,0.17212 -1.526469,0.05359 -2.808464,0.07056 -2.892425,-2.32724 -0.08431,-2.399594 0.893939,-4.383969 2.420409,-4.438403 1.526469,-0.05292 2.918883,1.849614 3.106561,4.24367 0.05151,0.659271 -0.02117,1.140495 -0.185208,1.497118 1.421341,-0.168945 1.742369,0.79555 1.757539,0.852735"
style="fill:#292c30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1943"
inkscape:connector-curvature="0" />
<path
d="m -21.446467,-28.23231 c 0.0074,0.429648 -0.336198,0.785319 -0.766234,0.794844 -0.431447,0.0077 -0.786694,-0.336515 -0.794455,-0.766339 -0.0081,-0.43173 0.33408,-0.787259 0.765528,-0.794421 0.432505,-0.0098 0.787752,0.334151 0.795161,0.765916"
style="fill:#f0f9fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1945"
inkscape:connector-curvature="0" />
<path
d="m -44.085383,-26.858981 c 0.429789,-0.01087 0.770185,-0.370664 0.758613,-0.800488 -0.01157,-0.43173 -0.370275,-0.771843 -0.800241,-0.760131 -0.432152,0.01129 -0.772512,0.370417 -0.7608,0.800383 0.01143,0.432152 0.37084,0.771948 0.802428,0.760236 z m 2.359625,1.255536 c 0.02258,2.399595 -1.247951,2.254603 -2.77622,2.26949 -0.154729,0.0039 -0.301519,0.0059 -0.447146,0.0077 -0.171591,0.0038 -0.335703,0.0056 -0.494453,0.0021 -1.48262,-0.0021 -2.430181,-0.06904 -3.268557,0.383893 0.02064,-0.05193 0.387773,-0.875312 1.719368,-1.209357 -0.14732,-0.324944 -0.239218,-0.775829 -0.263913,-1.400211 -0.09133,-2.397795 1.387158,-4.363826 2.915391,-4.376949 1.52647,-0.01542 2.592494,1.924156 2.61553,4.323327"
style="fill:#292c30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1947"
inkscape:connector-curvature="0" />
<path
d="m -43.32677,-27.659469 c 0.01157,0.429824 -0.328824,0.789622 -0.758613,0.800488 -0.431588,0.01171 -0.790998,-0.328084 -0.802428,-0.760236 -0.01171,-0.429966 0.328648,-0.789094 0.7608,-0.800383 0.429966,-0.01171 0.78867,0.328401 0.800241,0.760131"
style="fill:#f0f9fc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1949"
inkscape:connector-curvature="0" />
<path
d="m -53.805646,-41.642452 -0.177518,-0.335139 -0.007,-0.877006 0.462492,-5.229931 8.024425,-1.943453 0.499286,6.747229 c -0.388902,-0.527756 -0.971233,-1.721556 -1.332301,-3.359856 -0.192934,-0.874889 -0.813576,-1.12395 -1.527669,-1.12395 -0.622758,0 -1.316743,0.189441 -1.859809,0.318911 -1.166389,0.277636 -2.69367,0.666397 -2.943366,1.277055 -0.484787,1.184981 -0.72196,4.27602 -0.72196,4.27602 l -0.41656,0.25012"
style="fill:#ecdb8a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1951"
inkscape:connector-curvature="0" />
<path
d="m -12.367731,-41.642452 -0.416983,-0.25012 c 0,0 -0.236714,-3.091039 -0.721431,-4.27602 -0.250119,-0.610658 -1.777294,-0.999419 -2.943225,-1.277055 -0.543278,-0.12947 -1.237544,-0.318911 -1.860197,-0.318911 -0.714375,0 -1.334911,0.249061 -1.527881,1.12395 -0.360539,1.6383 -0.944033,2.8321 -1.332794,3.359856 l 0.500239,-6.747229 8.024636,1.943453 0.3937,4.456289 -0.01411,1.793523 -0.101953,0.192264"
style="fill:#ecdb8a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1953"
inkscape:connector-curvature="0" />
<path
d="m -24.923445,-42.853891 -16.176556,-0.02963 -0.83827,-1.887361 -0.599299,-3.235325 -1.318366,-1.048103 -0.03006,-7.534275 1.856352,-5.490634 c 0,0 0.305647,16.17204 4.08492,16.17204 3.779203,0 4.535559,0 4.535559,0 h 0.75565 c 0,0 0.75565,0 4.534958,0 3.779309,0 3.991681,-16.179096 3.991681,-16.179096 l 2.457803,9.069212 -1.786114,5.100814 -0.09031,1.437923 -0.629356,2.276475 -0.748594,1.347964"
style="fill:#ecdb8c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1955"
inkscape:connector-curvature="0" />
<path
d="m -8.4734165,-39.965699 c 0,0 -0.2282472,-0.111478 -0.9126361,-0.445912 0.051505,0.02505 0.9126361,0.445912 0.9126361,0.445912 m -0.9126361,-0.445912 c 0,-3.52e-4 0,-3.52e-4 0,-3.52e-4 v 3.52e-4 m 0,-3.52e-4 c -7.056e-4,-3.53e-4 -0.00141,-7.06e-4 -0.00247,-0.0011 v 0 c 0,0 0.00106,3.53e-4 0.00247,0.0011 m -0.00247,-0.0011 -2.8818424,-0.868891 0.0046,-0.552803 0.147814,-0.279753 -0.133703,-1.51377 0.02716,-3.372203 c 0,0 0.777522,5.580945 2.8359814,6.58742"
style="fill:#ecdb8c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1957"
inkscape:connector-curvature="0" />
<path
d="m -12.265778,-41.834716 0.01411,-1.793523 0.133703,1.51377 -0.147814,0.279753"
style="fill:#ead787;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1959"
inkscape:connector-curvature="0" />
<path
d="m -57.774678,-39.965699 c -1.42e-4,0 0.914893,-0.447323 0.914893,-0.447323 v 0 0 c -0.686152,0.335492 -0.914893,0.447323 -0.914893,0.447323 m 0.914893,-0.447323 c 2.058494,-1.006475 2.836263,-6.58742 2.836263,-6.58742 l 0.03334,4.145845 -0.06544,0.740128 0.07246,0.136878 0.0057,0.695678 -2.882301,0.868891"
style="fill:#ecdb8c;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1961"
inkscape:connector-curvature="0" />
<path
d="m -53.983164,-41.977591 -0.07246,-0.136878 0.06544,-0.740128 0.007,0.877006"
style="fill:#ead787;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1963"
inkscape:connector-curvature="0" />
<path
d="m -45.252442,-43.141758 -0.03475,-0.08749 c -0.702522,-2.556228 -0.671901,-5.236986 -0.60893,-6.472767 l -7.296291,2.074686 c -0.49075,3.194403 -0.261691,5.542492 -0.212231,5.97394 0.605648,-0.164395 1.213238,-0.315384 1.824778,-0.456495 1.008592,-0.223661 2.024909,-0.410633 3.043273,-0.582789 1.020445,-0.170039 2.044171,-0.299861 3.068073,-0.424039 0.07274,-0.0099 0.143299,-0.01482 0.216077,-0.02505 z m 3.177187,-0.307269 c -0.856298,-1.795992 -1.043446,-3.706637 -1.083416,-4.380795 -0.660894,-0.468136 -1.314344,-1.029406 -1.795709,-1.467203 -0.04216,1.291519 -0.01143,3.630084 0.588292,5.813425 0.023,0.08431 0.02067,0.167923 0,0.246945 0.7626,-0.08079 1.526293,-0.151342 2.290833,-0.212372 z m 20.194871,-0.03457 c 0.600428,-2.187575 0.632531,-4.524022 0.588786,-5.813425 -0.481189,0.437797 -1.137003,0.999067 -1.795639,1.467203 -0.04057,0.674158 -0.227542,2.588683 -1.08585,4.386439 0.76447,0.06103 1.528939,0.129822 2.292703,0.210256 -0.02081,-0.08043 -0.02434,-0.166159 0,-0.250473 z m 9.037109,1.831975 c 0.04939,-0.42933 0.280811,-2.777772 -0.210608,-5.975703 l -7.298268,-2.074686 c 0.06526,1.235781 0.09419,3.916539 -0.60713,6.472767 l -0.03598,0.09172 c 0.07232,0.0074 0.144991,0.01341 0.215547,0.02293 2.051755,0.23495 4.093986,0.563386 6.113639,1.006475 0.609247,0.141464 1.218847,0.292453 1.822803,0.456494 z m 1.172633,0.344312 c 0.980017,0.320675 1.9656782,0.660752 2.8585588,1.182511 -0.4780139,-0.189089 -0.9708445,-0.324909 -1.4679088,-0.447323 -0.494594,-0.125941 -0.993069,-0.232833 -1.494014,-0.328436 -1.002947,-0.189089 -2.009422,-0.34925 -3.022247,-0.472016 -1.010708,-0.131586 -2.022828,-0.242711 -3.039534,-0.328789 -1.016352,-0.08572 -2.030589,-0.17145 -3.049058,-0.23107 -4.071056,-0.250119 -8.153401,-0.312914 -12.238567,-0.317147 -4.084039,0.0021 -8.16663,0.07867 -12.238321,0.319264 -1.01794,0.05927 -2.032459,0.145344 -3.048917,0.231422 -1.016,0.08537 -2.03066,0.194734 -3.039393,0.328084 -1.012719,0.122766 -2.01937,0.28328 -3.022318,0.472016 -0.500486,0.09384 -0.999349,0.202847 -1.495848,0.326672 -0.494701,0.122414 -0.989859,0.258234 -1.467344,0.447323 0.892422,-0.521759 1.878012,-0.8636 2.860005,-1.184981 0.08237,-0.02646 0.166158,-0.04939 0.250084,-0.07585 l -0.01528,-0.06315 c -0.01711,-0.112889 -0.380224,-2.795412 0.252165,-6.631517 0.03073,-0.183445 0.16249,-0.332317 0.342159,-0.382059 l 1.037414,-0.295628 c 0.225284,-8.047214 3.539773,-11.831814 3.643242,-11.948231 -2.961252,4.764617 -2.934264,10.415765 -2.883006,11.731979 l 6.447861,-1.832328 0.01503,-0.0035 0.08033,-0.01129 0.0266,-0.0021 c 0.03281,-0.0018 0.06932,0.0021 0.105693,0.0095 l 0.01901,0.0056 0.0798,0.02681 0.03059,0.01729 0.06297,0.03986 0.01736,0.01164 0.01147,0.01164 0.01916,0.01517 c 0.0041,0.006 0.175684,0.175683 0.448945,0.430036 -0.06477,-2.124781 0.03637,-8.219017 2.938533,-13.27009 -0.06131,0.177095 -2.363611,6.910212 -1.570284,14.456482 0.257563,0.206375 0.528496,0.408516 0.792656,0.586316 0.1276,0.08784 0.206305,0.232834 0.207963,0.387703 0.0023,0.02505 0.05719,2.430286 1.119787,4.476398 0.01499,0.03034 0.02646,0.06279 0.03637,0.0956 2.642094,-0.179563 5.291808,-0.252236 7.935525,-0.254352 2.644775,0.0021 5.292725,0.07867 7.934325,0.259997 0.0095,-0.03457 0.02117,-0.06844 0.03845,-0.101247 1.061861,-2.046112 1.1176,-4.451351 1.1176,-4.476398 0.0032,-0.154869 0.08184,-0.299861 0.210255,-0.387703 0.263525,-0.1778 0.530931,-0.379941 0.790928,-0.586316 0.794456,-7.54627 -1.508125,-14.279387 -1.568803,-14.456482 2.899834,5.051073 3.003551,11.145309 2.938639,13.27009 0.270934,-0.254353 0.443089,-0.424039 0.448381,-0.430036 l 0.01905,-0.01517 0.01164,-0.01164 0.01729,-0.01164 0.06279,-0.04198 0.02893,-0.01517 0.08396,-0.02857 0.01729,-0.0039 c 0.03422,-0.0074 0.07126,-0.01129 0.105128,-0.0095 l 0.0247,0.0021 0.0822,0.01129 0.01517,0.0035 6.44772,1.832328 c 0.05221,-1.316214 0.07867,-6.967362 -2.882195,-11.731979 0.102659,0.116417 3.417359,3.901017 3.64102,11.948231 l 1.039283,0.295628 c 0.177448,0.04974 0.311503,0.198614 0.342195,0.382059 0.632178,3.836105 0.267406,6.518628 0.251883,6.631517 l -0.01517,0.06456 c 0.08396,0.02505 0.165805,0.04974 0.250119,0.07691"
style="fill:#292c30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1965"
inkscape:connector-curvature="0" />
<path
d="m -26.722965,-57.106114 v -3.481565 h -12.528127 v 3.481565 h 1.712912 v -1.768828 h 3.543759 v 10.749845 h -1.458383 v 1.9939 h 4.931481 v -1.9939 h -1.458384 v -10.749845 h 3.543653 v 1.768828 z m -13.814955,-4.768498 h 15.104711 v 6.055431 h -4.2926 v -1.769181 h -0.967317 v 8.173509 h 1.461558 v 4.570589 h -7.508064 v -4.570589 h 1.455455 v -8.173509 h -0.964318 v 1.769181 h -4.289425 v -6.055431"
style="fill:#292c30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1967"
inkscape:connector-curvature="0" />
<path
d="m -26.722965,-60.587679 v 3.481565 h -1.713089 v -1.768828 h -3.543653 v 10.749845 h 1.458384 v 1.9939 h -4.931481 v -1.9939 h 1.458383 v -10.749845 h -3.543759 v 1.768828 h -1.712912 v -3.481565 h 7.271385 3.38702 1.869722"
style="fill:#cd2345;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1969"
inkscape:connector-curvature="0" />
<path
d="m -60.501545,-35.503413 c 0.625757,-0.141817 1.471048,-0.322439 2.507897,-0.522817 -0.637081,0.43427 -1.390438,0.979311 -2.213116,1.635125 l -0.294781,-1.112308"
style="fill:#5d6661;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1971"
inkscape:connector-curvature="0" />
<path
d="m -37.590567,-18.907264 c 0,0 0.175013,1.125714 -1.400493,1.607185 -1.575082,0.481895 -11.553049,3.455459 -12.690899,3.294628 -1.137849,-0.16055 -4.026077,-2.089539 -4.026077,-2.089539 l -0.700193,-2.490928 4.273727,2.664424 14.543935,-2.98577"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1973"
inkscape:connector-curvature="0" />
<path
d="m -28.651954,-19.125421 c 0,0 -0.125942,1.131781 1.46932,1.545202 1.594555,0.413138 11.692467,2.950386 12.822062,2.740095 1.129594,-0.210291 3.931003,-2.262328 3.931003,-2.262328 l 0.591608,-2.51961 -3.928181,2.343221 -14.885812,-1.84658"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1975"
inkscape:connector-curvature="0" />
<path
d="m -61.313216,-20.978881 c 0,0 1.382607,2.765461 3.61569,1.807986 l 1.595226,0.584977 -0.15942,1.170093 -3.350014,0.425133 -0.903993,-0.531637 -0.797489,-3.456552"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1977"
inkscape:connector-curvature="0" />
<path
d="m -4.7124524,-21.738023 c 0,0 -2.2595418,2.886004 -4.4926252,1.929377 l -0.7182556,0.463162 0.1594555,1.169388 3.349978,0.425838 0.903464,-0.531954 0.7979833,-3.455811"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1979"
inkscape:connector-curvature="0" />
<path
d="m -39.664901,-0.01285162 c 0,0 8.191078,4.12984272 17.465606,-1.48952308 l -2.978503,-0.203126 c 0,0 -6.498873,2.57211002 -11.643819,1.15066596 l -2.843284,0.54198312"
style="fill:#c3af8f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1981"
inkscape:connector-curvature="0" />
<path
d="m -57.993648,-36.02623 c -1.036849,0.200378 -1.88214,0.381 -2.507897,0.522817 l 0.294781,1.112308 c 0.822678,-0.655814 1.576035,-1.200855 2.213116,-1.635125 z m 1.35696,18.267152 c -0.07747,-0.246556 -0.150918,-0.497064 -0.220768,-0.747465 l -1.835821,-1.284888 c -0.116169,-0.08117 -0.189759,-0.204223 -0.20835,-0.344628 l -0.894786,-7.272867 c -0.662975,0.355247 -1.42875,0.791245 -1.633255,0.962695 -0.176495,0.14538 -0.31115,0.519359 -0.119592,2.252098 0.23742,2.137481 1.320165,6.164792 1.901966,6.750474 0.69977,0.123049 2.250194,-0.09204 3.010606,-0.315419 z m 10.972342,-19.276449 c 1.360523,-0.381 2.763944,-0.714375 4.201513,-0.994128 -2.062092,0.07549 -4.125842,0.171097 -6.186311,0.287514 -1.197081,0.06597 -2.388271,0.147108 -3.579566,0.237419 -0.596688,0.04586 -1.189673,0.09349 -1.780858,0.158045 -0.169227,0.01658 -0.334997,0.03493 -0.504366,0.05715 -1.55388,0.929922 -7.514167,4.671448 -11.605684,9.563771 3.975629,-2.763661 10.902492,-6.915821 19.455272,-9.309771 z m -0.767962,3.539067 c 1.156159,-1.147234 2.349253,-2.093736 3.402648,-2.833511 -4.06012,0.942622 -7.797518,2.326922 -11.071437,3.832895 2.130425,-0.343958 4.709971,-0.702663 7.668789,-0.999384 z m 15.583254,-4.675012 c -0.821619,-0.01305 -1.64465,-0.02046 -2.465917,-0.02222 h -0.0018 c -1.205794,0.0018 -2.414058,0.01482 -3.623945,0.03881 l -2.22952,1.056569 -0.03129,0.01693 c -0.335139,0.163689 -3.26263,1.640769 -6.017472,4.275631 2.469445,-1.298539 6.098364,-2.993989 10.368704,-4.308792 1.279172,-0.391936 2.619728,-0.753181 4.001206,-1.056923 z m -1.357136,6.682035 c 0.649817,-0.392077 1.27388,-0.841445 1.866547,-1.320165 -0.848783,-0.01446 -1.710267,-0.02579 -2.588331,-0.02579 -3.605353,0 -6.973288,0.147461 -10.02605,0.377437 -3.062253,1.496836 -4.934903,2.728384 -4.978718,2.759816 l -2.940721,1.96148 2.019794,-2.898422 c 0.33334,-0.480801 0.686929,-0.937331 1.051454,-1.371565 -3.391641,0.378848 -6.216085,0.828216 -8.32612,1.217083 l 1.080664,8.760496 3.717784,2.603782 11.80264,-2.623926 2.209412,-7.278511 c 0.03694,-0.119909 0.117828,-0.220769 0.222956,-0.281799 0.03475,-0.02219 0.07165,-0.03845 0.112042,-0.04978 0.06823,-0.01831 1.248516,-0.355247 2.60918,-0.521018 z m 1.193094,27.9674129 c 0.375356,-0.029633 0.752828,-0.077576 1.132417,-0.1343731 -0.491772,-0.5115278 -0.926394,-0.9870723 -1.268942,-1.3719528 -0.167569,0.3848805 -0.389819,0.891152 -0.682978,1.5434028 h 0.08678 c 0.233539,0 0.489303,-0.025365 0.732719,-0.037077 z m 6.188428,2.65327003 c -1.601611,-0.11782072 -3.05823,-0.78425323 -4.233333,-1.94799663 -0.06068,-0.062159 -0.119592,-0.1216731 -0.178506,-0.1820334 -0.568677,0.1139472 -1.145116,0.1985786 -1.736372,0.2504017 -0.248356,0.00921 -0.484011,0.030727 -0.743656,0.030727 l -0.385233,0.00385 -0.146756,-0.00385 c -1.563511,2.32584291 -5.035973,2.77880255 -5.194723,2.79933422 -0.143299,0.01612547 -0.261126,0.03665714 -0.423616,0.06587067 1.935692,0.53068364 3.910895,0.76067713 5.859287,0.62976481 1.95333,-0.13049956 4.491214,-0.55424567 7.182908,-1.64606837 z M -26.100312,-37.177344 c 0.134056,-0.167569 0.259292,-0.329141 0.371475,-0.476603 -1.167342,0.117828 -2.316339,0.287162 -3.439584,0.500592 -3.846336,0.72002 -7.398244,1.916995 -10.353746,3.142898 2.093948,-0.101248 4.295846,-0.161925 6.594193,-0.161925 1.389945,0 2.741437,0.02399 4.055887,0.06279 1.130653,-1.086556 2.084564,-2.198158 2.771775,-3.067756 z m 10.625667,-0.329141 -0.01094,-0.0042 c -1.163814,-0.08608 -2.327275,-0.165453 -3.494969,-0.231422 -1.619956,-0.09243 -3.240617,-0.169686 -4.860926,-0.237772 -0.09419,0.140053 -0.285397,0.415925 -0.559858,0.791633 -0.881592,1.193095 -2.631017,3.382434 -4.873978,5.238715 3.175,-0.568995 8.681509,-1.977637 13.44542,-5.301157 0.119592,-0.08502 0.23742,-0.173566 0.355247,-0.255763 z m 5.347406,18.350054 -0.49918,0.349603 -1.344084,0.942587 -1.456619,1.020304 c -0.09913,0.06847 -0.220486,0.09977 -0.33902,0.08682 l -14.492465,-1.647861 -1.054805,-0.119874 c -0.195439,-0.02233 -0.359481,-0.15875 -0.416631,-0.34798 l -2.268361,-7.46827 c -0.378883,-0.05154 -0.716492,-0.07758 -0.99942,-0.07758 -0.287866,0 -0.623005,0.02604 -1.001889,0.07758 l -2.202462,7.252758 c -0.05154,0.169369 -0.191276,0.298486 -0.36449,0.336656 l -15.448493,3.440254 c -0.03665,0.0071 -0.07331,0.01048 -0.108585,0.01048 -0.09938,0 -0.19886,-0.02963 -0.283633,-0.08985 l -0.561411,-0.390525 -1.681056,-1.176549 v -0.0039 l -0.679521,-0.474874 c 0.04812,0.152823 0.102941,0.302366 0.156704,0.451168 l -0.0021,0.0018 c 0.130774,0.388479 1.43263,4.133568 4.07857,7.7995642 2.833546,-0.8360482 5.284364,-1.6128652 6.066684,-1.8616082 1.59632,-2.45992 3.868703,-4.899731 5.483649,-4.984363 0.277918,-0.01309 0.567478,-0.02191 0.854498,-0.02191 0.789905,0 1.545061,0.05718 2.244161,0.140159 -0.594501,-0.539786 -0.715892,-1.17341 -0.80257,-1.453163 0,0 2.06047,1.611066 4.684078,1.274551 2.624314,-0.338984 4.253442,-1.850954 4.253442,-1.850954 0,0 -0.0074,1.103524 -1.150761,1.957211 2.198864,-0.664634 3.108325,-0.892951 3.730625,-0.892951 0.686859,0 1.025525,0.287161 1.321859,0.540173 0.05715,0.04575 0.1143,0.09521 0.180269,0.148837 1.690511,1.331031 3.723217,2.946118 4.318353,3.419475 0.688622,0.08075 2.871964,0.329212 4.247798,0.45653 0.793397,0.07123 1.509536,0.132292 2.211211,0.132292 0.226483,0 0.438503,-0.0092 0.63888,-0.02233 0.910167,-1.735632 1.727553,-3.70265 2.421467,-5.923069 0.09349,-0.340783 0.184503,-0.685024 0.265289,-1.031205 z m -0.819503,-4.212802 1.064331,-7.450349 c -3.001434,-0.546382 -7.390695,-1.207594 -12.767734,-1.619885 -4.853517,1.673895 -8.918928,2.172335 -9.164109,2.18888 l -0.283281,0.02011 c 1.548342,0.132998 3.006726,0.549275 3.080103,0.571183 0.160514,0.04798 0.28575,0.171027 0.335492,0.331576 l 2.200275,7.243657 11.785954,1.338756 z m 2.8705533,1.569191 1.2040307,-8.421194 c -0.5355167,-0.115746 -1.2202585,-0.258939 -2.0383502,-0.415607 l -1.0879667,7.618871 c -0.020108,0.134514 -0.094192,0.257987 -0.2046111,0.335986 l -4.080228,2.853478 c -0.09596,0.06809 -0.218722,0.09952 -0.336903,0.08657 l -12.29607,-1.397494 c -0.19685,-0.02219 -0.360892,-0.158327 -0.418395,-0.346004 l -2.214386,-7.291635 c -0.593372,-0.153106 -2.115961,-0.508353 -3.448756,-0.508353 -1.338791,0 -2.859969,0.355247 -3.452812,0.508353 l -2.215198,7.291635 c -0.03874,0.126647 -0.127212,0.232198 -0.242676,0.292417 -0.03708,0.02053 -0.07923,0.035 -0.121814,0.04449 l -12.296105,2.735827 c -0.03874,0.0077 -0.07165,0.01157 -0.108585,0.01157 -0.09948,0 -0.198861,-0.0296 -0.281658,-0.08886 l -4.078606,-2.855701 c -0.114088,-0.07937 -0.189759,-0.204647 -0.207927,-0.344382 l -1.099255,-8.917411 c -0.456707,0.08844 -0.868998,0.173214 -1.23751,0.250084 -0.261267,0.143898 -0.519218,0.287479 -0.773183,0.431482 l 1.16706,9.449083 5.927478,4.15216 14.954886,-3.327012 2.207825,-7.272868 c 0.05539,-0.182738 0.207786,-0.317076 0.394053,-0.34671 0.559858,-0.08999 1.049161,-0.13589 1.464027,-0.13589 0.410281,0 0.9017,0.0459 1.459795,0.13589 0.188031,0.02963 0.340431,0.163972 0.394053,0.34671 l 2.26448,7.453525 15.038213,1.709879 z m 1.6644057,-9.687772 1.0590389,-4.015599 c -1.5356417,-0.347839 -4.3638613,-0.929922 -8.2158419,-1.474964 -1.966736,1.413933 -4.119387,2.544586 -6.234642,3.446639 6.472061,0.630061 11.2278587,1.567004 13.391445,2.043924 z m 1.8358557,6.276693 c 0.1622777,-1.796662 0.020814,-2.183342 -0.1619251,-2.330803 -0.1823861,-0.152823 -0.7990417,-0.502285 -1.3994695,-0.828322 l -0.9884834,6.922982 c -0.018344,0.134338 -0.094192,0.256434 -0.2060222,0.335139 l -1.414639,0.989154 c -0.1121833,0.56649 -0.1524,0.833966 -0.2906889,1.388075 0.8082139,0.187713 2.1339529,0.333763 2.7654252,0.211666 0.5729111,-0.622159 1.4986001,-4.485499 1.6958029,-6.687891 z m 4.26614189,-17.082912 c 0.0522111,1.036461 0.0243417,2.074686 -0.092075,3.105856 -0.10830278,1.029405 -0.30374168,2.049639 -0.57573336,3.0607 -0.14216943,0.502708 -0.30585833,0.999419 -0.49918063,1.492956 -0.097719,0.246591 -0.2024944,0.491772 -0.3167944,0.7366 -0.05715,0.121355 -0.1178278,0.2413 -0.1859139,0.364419 l -0.1012473,0.182386 c -0.037042,0.06636 -0.066322,0.116099 -0.1234722,0.204294 l -0.104775,0.162595 -0.1640417,0.08393 c -0.1749778,0.0907 -0.3182056,0.158503 -0.4773083,0.232481 l -0.4614334,0.208244 c -0.3097389,0.132292 -0.6205362,0.257387 -0.932039,0.378813 -0.2173111,0.08502 -0.4088694,0.162595 -0.5909028,0.239924 l -0.5136444,1.951567 c -0.0127,-0.0036 -0.1675695,-0.04272 -0.4564945,-0.112183 l -0.027869,0.203835 c 0.566914,0.296404 1.6806335,0.897078 2.0602224,1.210451 0.7641167,0.631437 0.8177389,1.631174 0.6484056,3.499803 -0.086783,0.959661 -0.4049889,2.826208 -0.8470195,4.540638 -0.7627056,2.951762 -1.1676945,3.29819 -1.6905112,3.43214 -0.2652889,0.06823 -0.6738056,0.136278 -1.0699751,0.136278 -0.8060973,0 -1.9039418,0.02219 -2.6423057,-0.155963 -0.1894417,0.671371 -0.7309552,2.422843 -1.8026942,4.610065 0.05362,-0.02604 0.106892,-0.04752 0.15487,-0.07331 1.3218575,-0.694267 3.8632688,-1.801354 3.9698077,-1.848909 l 2.0073056,-0.872454 -1.0276417,1.933257 c -0.023989,0.04191 -2.2281446,4.1870493 -3.5778724,6.8939134 -1.3402022,2.680829 -3.8537442,3.2645704 -5.3583412,3.610328 -0.226484,0.053622 -0.441325,0.1033639 -0.616303,0.1513064 -1.0795,0.3034594 -3.264959,0.8249003 -5.192537,1.2884715 l -0.06985,0.015155 c -1.186039,0.73298057 -2.48038,1.38672016 -3.89643,1.92429356 -5.181601,1.96260164 -10.642601,1.85208344 -15.594226,0.0329353 -0.804086,0.10335331 -1.861467,0.22999348 -3.269544,0.39012285 -0.611999,0.0680755 -1.206324,0.10335339 -1.773273,0.10335339 -4.717556,0 -7.217869,-2.3957211 -9.042824,-4.7412631 -1.953789,-2.5119191 -4.343294,-6.2407451 -4.444718,-6.3966023 l -1.384794,-2.161857 2.342127,1.053112 c 1.121163,0.504754 4.454349,2.0474867 5.407978,2.4894114 0.07701,-0.021766 0.152823,-0.044097 0.228177,-0.066287 -1.585137,-2.2609524 -2.885194,-4.8389824 -3.804074,-7.6944014 -0.780768,0.235374 -1.983246,0.417689 -2.918672,0.417689 -0.341877,0 -0.647947,-0.02579 -0.88332,-0.08117 -0.52324,-0.119627 -1.119787,-0.623711 -1.931882,-3.483681 -0.471135,-1.66056 -0.82296,-3.472674 -0.925901,-4.405877 -0.202847,-1.821356 -0.16577,-2.79714 0.591185,-3.427166 0.456389,-0.381035 1.995523,-1.189249 2.314152,-1.354631 l -0.06809,-0.56194 c -4.890523,2.87401 -7.821613,5.41334 -7.88059,5.465163 l -3.496635,3.069167 2.491356,-3.928957 c 1.971989,-3.113934 4.249452,-5.630933 6.345022,-7.569835 -0.08668,-0.035 -0.167569,-0.06985 -0.252447,-0.104705 l -0.462175,-0.208244 c -0.158362,-0.07398 -0.301942,-0.141782 -0.476673,-0.232481 l -0.164112,-0.08393 -0.104881,-0.162595 c -0.05884,-0.08819 -0.0846,-0.137936 -0.123331,-0.204294 l -0.103082,-0.182386 c -0.06435,-0.123119 -0.127176,-0.243064 -0.184115,-0.364419 -0.116169,-0.244828 -0.220874,-0.490009 -0.316512,-0.7366 -0.19364,-0.493537 -0.357328,-0.990248 -0.499286,-1.492956 -0.274356,-1.011061 -0.467713,-2.031295 -0.576298,-3.0607 -0.114088,-1.03117 -0.143581,-2.069395 -0.09218,-3.105856 0.02769,-0.517525 0.07744,-1.034697 0.149119,-1.548694 0.0369,-0.257881 0.07564,-0.515762 0.127177,-0.771878 0.05334,-0.260703 0.105163,-0.50412 0.184255,-0.789517 l 0.0551,-0.200378 0.143616,-0.112889 c 0.815799,-0.640997 1.695662,-1.124655 2.590695,-1.553633 0.736705,-0.346075 1.487734,-0.651934 2.244689,-0.930275 2.113774,-5.865989 5.748197,-11.068051 10.524773,-14.693196 4.938607,-3.747205 10.745788,-5.728406 16.794376,-5.728406 6.048728,0 11.856156,1.981201 16.794339,5.728406 4.776259,3.625145 8.4112811,8.827207 10.5237145,14.691432 0.7584723,0.280105 1.5077723,0.583494 2.2461363,0.932039 0.8942917,0.428978 1.7748251,0.912636 2.59009459,1.553633 l 0.14393334,0.112889 0.0553861,0.200378 c 0.0811389,0.285397 0.13229167,0.528814 0.18379723,0.789517 0.0522111,0.256116 0.0924278,0.513997 0.12700001,0.771878 0.0723194,0.513997 0.12382501,1.031169 0.14922501,1.548694 z M -57.014125,-48.808781 c -0.894927,0.360892 -1.784174,0.733073 -2.653277,1.141589 -0.871079,0.397934 -1.727235,0.825148 -2.544974,1.30175 -0.754486,0.434623 -1.478351,0.911578 -2.117478,1.449564 -0.02745,0.161573 -0.05306,0.338667 -0.07511,0.506237 -0.02773,0.237066 -0.05542,0.474838 -0.07387,0.714375 -0.04216,0.478366 -0.05884,0.960966 -0.0641,1.443214 -0.0093,0.964847 0.0568,1.930047 0.178329,2.885369 0.132433,0.957792 0.307446,1.909939 0.566808,2.82822 0.129258,0.460728 0.272838,0.915458 0.442066,1.353255 0.08294,0.221545 0.175013,0.436739 0.271039,0.646642 0.0477,0.104775 0.0973,0.208139 0.147038,0.30727 l 0.06107,0.116064 c 0.07151,0.03704 0.145238,0.07338 0.215088,0.106891 l 0.429013,0.204259 c 0.239501,0.110772 0.569102,0.267052 0.841552,0.388761 l 0.0441,-0.04057 -0.793468,-3.027186 c 0.16757,-0.04586 1.677635,-0.436386 4.27923,-0.931686 -0.210008,-0.03845 -0.423474,-0.08467 -0.631437,-0.134761 -0.591185,-0.146756 -1.176972,-0.327378 -1.741981,-0.555625 -0.28,-0.119592 -0.558236,-0.248356 -0.821161,-0.397934 -0.263349,-0.150989 -0.523099,-0.322086 -0.7239,-0.54998 2.857641,0.933097 8.762824,0.509764 14.012616,-0.03175 4.801906,-0.495653 9.613054,-0.815623 14.450202,-0.826559 4.836937,0.01094 9.652354,0.330906 14.450485,0.826559 5.253214,0.541514 11.1587141,0.964847 14.0158615,0.03175 -0.2007305,0.227894 -0.4600222,0.398991 -0.7235472,0.54998 -0.2628195,0.149578 -0.5411612,0.278342 -0.820914,0.397934 -0.5672667,0.228247 -1.1511139,0.408869 -1.7437806,0.555625 -0.086783,0.02011 -0.1749778,0.04092 -0.2635251,0.05927 2.8525613,0.528461 4.5130864,0.959203 4.6898281,1.007181 l -0.7602361,2.883253 c 0.1531055,-0.06809 0.3072694,-0.134056 0.4579055,-0.204258 l 0.4296834,-0.204259 c 0.06985,-0.03351 0.1435806,-0.06985 0.2151945,-0.106891 l 0.058914,-0.116064 c 0.051506,-0.09913 0.1012473,-0.202495 0.1492251,-0.30727 0.095956,-0.209903 0.1876777,-0.425097 0.2726972,-0.646642 0.1675694,-0.437797 0.3125611,-0.892527 0.4395611,-1.353255 0.2599973,-0.918281 0.4367389,-1.870428 0.5672667,-2.82822 0.1234723,-0.955322 0.1880306,-1.920522 0.1788584,-2.885369 -0.00353,-0.482248 -0.021872,-0.964848 -0.062442,-1.443214 -0.020108,-0.239537 -0.046214,-0.477309 -0.075847,-0.714375 -0.020108,-0.16757 -0.047978,-0.344664 -0.075495,-0.506237 -0.6392333,-0.537986 -1.3624278,-1.014941 -2.1177251,-1.449564 -0.8173862,-0.476602 -1.6732251,-0.903816 -2.5463502,-1.30175 -0.8671278,-0.408516 -1.7578917,-0.780697 -2.652889,-1.141589 -0.447675,-0.180269 -0.8992302,-0.357363 -1.3518442,-0.524933 -0.45085,-0.174978 -0.907697,-0.340078 -1.364192,-0.505883 0.95885,0.158397 1.909587,0.377119 2.8500917,0.618419 0.6131279,0.158397 1.2248446,0.337256 1.8284474,0.526697 -4.3070641,-11.259609 -14.6071171,-18.591742 -25.8519091,-18.591742 -11.246663,0 -21.544882,7.332133 -25.851558,18.591742 0.605543,-0.189441 1.215038,-0.3683 1.826331,-0.526697 0.942869,-0.2413 1.892723,-0.460022 2.852526,-0.618419 -0.458858,0.165805 -0.913483,0.330905 -1.366591,0.505883 -0.451167,0.16757 -0.902052,0.344664 -1.351421,0.524933 z m 25.65319,41.1863852 0.566562,0.6756754 c 0.0127,0.016263 1.272469,1.5151453 2.811991,3.0416149 1.024114,1.0149064 2.260953,1.5286567 3.678767,1.5286567 0.484364,0 0.992717,-0.062583 1.506362,-0.1863372 0.476602,-0.1160286 0.994127,-0.2395009 1.524705,-0.3665361 1.914878,-0.4579409 4.083756,-0.9775826 5.135387,-1.2720815 0.207786,-0.058985 0.439914,-0.1121833 0.684389,-0.1679928 1.399469,-0.3231445 3.318228,-0.7690556 4.33458,-2.8056771 0.76447,-1.5280923 1.7952866,-3.5117975 2.5594033,-4.9656295 -0.6625167,0.305505 -1.3571362,0.636799 -1.8506723,0.896408 -0.760236,0.39938 -1.756128,0.592702 -3.043414,0.592702 -0.765528,0 -1.517297,-0.0642 -2.3495,-0.138359 -1.662642,-0.152683 -4.476398,-0.483694 -4.505326,-0.487539 l -0.215547,-0.02399 -0.169686,-0.136137 c -0.0254,-0.01835 -2.490964,-1.982999 -4.483806,-3.549968 -0.08079,-0.06643 -0.154164,-0.127035 -0.220486,-0.182457 -0.209903,-0.178858 -0.209903,-0.178858 -0.335139,-0.178858 -0.639233,0 -2.496608,0.576439 -6.566606,1.838008 l -0.249766,0.07938 -0.245181,-0.09246 c -0.02787,-0.0091 -2.697692,-0.999349 -5.897422,-0.999349 -0.26169,0 -0.522816,0.0066 -0.777063,0.01972 -0.320534,0.01655 -2.119278,0.870656 -4.419389,4.5096292 l -0.149084,0.2334331 -0.26349,0.084737 c -0.03817,0.012982 -3.997007,1.2910962 -8.195204,2.4916343 l -0.272415,0.077329 -0.257987,-0.1200503 c -0.02741,-0.010866 -1.67005,-0.7729361 -3.233279,-1.4915798 0.852594,1.2595226 1.942747,2.8303716 2.902021,4.0625892 1.675412,2.1580123 3.787528,4.15190185 7.836606,4.15190185 0.507965,0 1.047609,-0.0314184 1.601717,-0.0941211 4.118928,-0.46577605 5.179766,-0.65346445 5.750525,-0.75282075 0.193075,-0.03321 0.34604,-0.061048 0.541443,-0.084751 0.03115,-0.00386 3.404271,-0.439861 4.350774,-2.5633011 0.975783,-2.1815426 1.172633,-2.7012196 1.180041,-2.7209399 l 0.344664,-0.9185981 c 0,0 0.04269,-0.238125 0.112537,-0.3118203 l 0.0018,0.00162 0.0067,0.00568 c 0.108656,0.077717 0.269522,0.3206397 0.269522,0.3206397"
style="fill:#292c30;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.03527778"
id="path1983"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(0.04830008,0,0,0.04830008,195.63997,77.083402)"
id="layer1-7"
inkscape:label="Layer 1">
<g
style="fill:#32322a;fill-opacity:1"
id="g3857"
transform="matrix(4.709109,0,0,4.709109,863.83643,638.12708)">
<path
inkscape:connector-curvature="0"
d="M -67.28125,-41.59375 A 1.6144056,1.6144056 0 0 0 -67.5,-38.4375 c 0,0 3.931695,1.301049 10.625,1.84375 5.374689,0.435786 11.46875,-0.375 11.46875,-0.375 a 1.6144056,1.6144056 0 1 0 -0.40625,-3.1875 c 0,0 -5.961605,0.737066 -10.8125,0.34375 C -63.013171,-40.330461 -66.5,-41.5 -66.5,-41.5 a 1.6144056,1.6144056 0 0 0 -0.78125,-0.09375 z m 0,-8 A 1.6144056,1.6144056 0 0 0 -67.5,-46.4375 c 0,0 3.931695,1.301049 10.625,1.84375 5.374689,0.435786 11.46875,-0.375 11.46875,-0.375 a 1.6144056,1.6144056 0 1 0 -0.40625,-3.1875 c 0,0 -5.961605,0.737066 -10.8125,0.34375 C -63.013171,-48.330461 -66.5,-49.5 -66.5,-49.5 a 1.6144056,1.6144056 0 0 0 -0.78125,-0.09375 z m 0,-8 A 1.6144056,1.6144056 0 0 0 -67.5,-54.4375 c 0,0 3.931695,1.301049 10.625,1.84375 5.374689,0.435786 11.46875,-0.375 11.46875,-0.375 a 1.6144056,1.6144056 0 1 0 -0.40625,-3.1875 c 0,0 -5.961605,0.737066 -10.8125,0.34375 C -63.013171,-56.330461 -66.5,-57.5 -66.5,-57.5 a 1.6144056,1.6144056 0 0 0 -0.78125,-0.09375 z m 0,-8 A 1.6144056,1.6144056 0 0 0 -67.5,-62.4375 c 0,0 3.931695,1.301049 10.625,1.84375 5.374689,0.435786 11.46875,-0.375 11.46875,-0.375 a 1.6144056,1.6144056 0 1 0 -0.40625,-3.1875 c 0,0 -5.961605,0.737066 -10.8125,0.34375 C -63.013171,-64.330461 -66.5,-65.5 -66.5,-65.5 a 1.6144056,1.6144056 0 0 0 -0.78125,-0.09375 z m -11.207892,-8.437005 c -8.407221,0.05606 -11.539425,2.645057 -11.539425,2.645057 v 62.7837755 c 0,0 3.05858,-2.6415165 12.905554,-2.2381255 9.846974,0.403391 11.878255,3.8552765 23.979914,4.0983855 12.101659,0.243109 15.143679,-1.86026 15.143679,-1.86026 l 0.174399,-64.0045705 c 0,0 -5.446133,1.541392 -16.044742,1.627727 -10.598609,0.08634 -13.146074,-2.696144 -22.875385,-3.022922 -0.608082,-0.02042 -1.183512,-0.0328 -1.743994,-0.02907 z m 7.034109,4.098386 c 0,0 5.094376,1.68402 14.504214,2.150925 7.953019,0.39462 15.928477,-0.784797 15.928477,-0.784797 v 56.883263 c 0,0 -4.036665,2.1158549 -14.12635,1.395195 -7.819331,-0.558499 -16.422608,-3.517054 -16.422608,-3.517054 z m -4.912249,1.482394 a 1.6277275,1.6277275 0 0 1 0,3.255455 c 0,0 -2.634985,0.01353 -4.243719,0.1744 -2.701025,0.270103 -4.534383,1.249862 -4.534383,1.249862 a 1.6251955,1.6251955 0 1 1 -1.511462,-2.87759 c 0,0 2.391605,-1.26521 5.726113,-1.598661 1.926801,-0.192699 4.563451,-0.203466 4.563451,-0.203466 z m -1.569595,8.022372 c 0.899775,-0.02279 1.569595,0 1.569595,0 a 1.625,1.625 0 0 1 0,3.226388 c 0,0 -2.634985,0.01352 -4.243719,0.174399 -2.701025,0.270104 -4.534383,1.249863 -4.534383,1.249863 a 1.6251955,1.6251955 0 0 1 -1.511462,-2.87759 c 0,0 2.391605,-1.26521 5.726113,-1.598661 0.963401,-0.09635 2.094081,-0.151612 2.993856,-0.174399 z m 1.569595,7.993304 a 1.6277275,1.6277275 0 0 1 0,3.255455 c 0,0 -2.634985,-0.01554 -4.243719,0.145333 -2.701025,0.270103 -4.534383,1.249862 -4.534383,1.249862 a 1.6251952,1.6251952 0 0 1 -1.511462,-2.877589 c 0,0 2.391605,-1.265211 5.726113,-1.598661 1.926801,-0.1927 4.563451,-0.1744 4.563451,-0.1744 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#32322a;fill-opacity:1;stroke:none;stroke-width:3.22848845;marker:none;enable-background:accumulate"
id="path3929-8" />
</g>
</g>
<g
transform="matrix(0.15856748,0,0,0.15856748,240.86623,-18.716912)"
id="g7132"
inkscape:export-xdpi="81.836845"
inkscape:export-ydpi="81.836845"
inkscape:transform-center-x="10.156242"
inkscape:transform-center-y="0.53453905">
<g
id="g4913"
transform="translate(-2257.2276,-96.96281)">
<g
id="g4915"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.8845054,0,0,4.8845054,3516.0799,527.1875)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4917"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4919"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4921"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path4923"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path4925"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path4927"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(4.8845053,0,0,4.8845053,3531.7032,514.40474)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g4929">
<path
inkscape:connector-curvature="0"
id="path4931"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path4933"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path4935"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path4937"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path4939"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path4941"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g4943"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.8845053,0,0,4.8845053,3500.4564,551.33268)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4945"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4947"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path4949"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path4951"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path4953"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path4955"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g4989"
transform="translate(-2257.2276,-96.96281)">
<g
transform="matrix(4.8845053,0,0,4.8845053,3516.0798,557.0139)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g4991">
<path
inkscape:connector-curvature="0"
id="path4993"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path4995"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path4997"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path4999"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5001"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5003"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g5005"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.8845053,0,0,4.8845053,3516.0798,538.54993)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5007"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5009"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5011"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5013"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5015"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5017"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(1.0875356,0,0,1.0875356,-234.9615,-68.934961)"
id="g5019">
<g
transform="matrix(4.4913521,0,0,4.4913521,3506.5838,565.11843)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5021">
<path
inkscape:connector-curvature="0"
id="path5023"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5025"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5027"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5029"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5031"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5033"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g5035">
<g
transform="matrix(4.4913521,0,0,4.4913521,3492.218,570.34238)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5037">
<path
inkscape:connector-curvature="0"
id="path5039"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5041"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5043"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5045"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5047"
style="fill:#ffd242;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5049"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<circle
transform="matrix(0.93969262,-0.34202015,0,1,0,0)"
cy="1823.899"
cx="2835.2185"
id="circle5051"
style="fill:#ffffff;fill-opacity:1"
r="2.966594" />
</g>
<g
id="g5053"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.4913521,0,0,4.4913521,3477.8522,575.56632)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5055"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5057"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5059"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5061"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#ffd242;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5063"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5065"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(4.4913521,0,0,4.4913521,3463.4863,580.79026)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5067">
<path
inkscape:connector-curvature="0"
id="path5069"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5071"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5073"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5075"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5077"
style="fill:#ffffff;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5079"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g5081"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.4913521,0,0,4.4913521,3506.5838,548.14063)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5083"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5085"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5087"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5089"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#ffd242;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5091"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5093"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(4.4913521,0,0,4.4913521,3506.5838,531.16282)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5095">
<path
inkscape:connector-curvature="0"
id="path5097"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5099"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5101"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5103"
style="fill:#ffc91d;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5105"
style="fill:#ffd242;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5107"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
transform="matrix(4.4913521,0,0,4.4913521,3492.218,553.36457)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5109">
<path
inkscape:connector-curvature="0"
id="path5111"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5113"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5115"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5117"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5119"
style="fill:#ffd242;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5121"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g5123"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.4913521,0,0,4.4913521,3492.218,536.38676)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5125"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5127"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5129"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5131"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#3775a9;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5133"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5135"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(4.4913521,0,0,4.4913521,3492.218,519.40896)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5137">
<path
inkscape:connector-curvature="0"
id="path5139"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5141"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5143"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5145"
style="fill:#2f6491;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5147"
style="fill:#3775a9;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5149"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g5151"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.4913521,0,0,4.4913521,3477.8522,558.58851)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5153"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5155"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5157"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5159"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#ffd242;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5161"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5163"
inkscape:connector-curvature="0" />
</g>
<g
transform="matrix(4.4913521,0,0,4.4913521,3477.8522,541.6107)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5165">
<path
inkscape:connector-curvature="0"
id="path5167"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5169"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5171"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5173"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5175"
style="fill:#3775a9;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5177"
style="fill:#efeeea;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
transform="matrix(4.4913521,0,0,4.4913521,3463.4863,563.81245)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5179">
<path
inkscape:connector-curvature="0"
id="path5181"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5183"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5185"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5187"
style="fill:#f7f7f4;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5189"
style="fill:#3775a9;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5191"
style="fill:#2f6491;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<g
id="g5193"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
transform="matrix(4.4913521,0,0,4.4913521,3463.4863,546.83464)">
<path
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5195"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5197"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
id="path5199"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z"
style="fill:#2f6491;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5201"
inkscape:connector-curvature="0" />
<path
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z"
style="fill:#3775a9;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5203"
inkscape:connector-curvature="0" />
<path
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z"
style="fill:#2f6491;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="path5205"
inkscape:connector-curvature="0" />
</g>
<g
id="g5207">
<g
transform="matrix(4.4913521,0,0,4.4913521,3477.8522,524.6329)"
style="fill:#a29d86;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
id="g5209">
<path
inkscape:connector-curvature="0"
id="path5211"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#e9e9ff;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -186.32897,59.726319 3.18465,1.159119 v 3.742997 l -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5213"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#353564;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,60.902593 v 3.742997 l 3.23178,-1.176274 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5215"
style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#afafde;fill-opacity:1;fill-rule:nonzero;stroke:#cccccc;stroke-width:0.07269443;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
d="m -189.56075,64.64559 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5217"
style="fill:#2f6491;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 3.23178,-1.176273 -3.18465,-1.159119 z" />
<path
inkscape:connector-curvature="0"
id="path5219"
style="fill:#3775a9;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -186.3761,62.061711 v 3.742997 l 3.23178,-1.176273 v -3.742997 z" />
<path
inkscape:connector-curvature="0"
id="path5221"
style="fill:#2f6491;fill-opacity:1;stroke:#cccccc;stroke-width:0.07269443;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none"
d="m -189.56075,60.902593 3.18465,1.159118 v 3.742997 l -3.18465,-1.159118 z" />
</g>
<circle
transform="matrix(0.93969262,-0.34202015,0,1,0,0)"
cy="1772.9225"
cx="2816.0166"
id="circle5223"
style="fill:#ffffff;fill-opacity:1"
r="2.966594" />
</g>
</g>
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="16.981113"
y="21.94397"
id="text2884"><tspan
sodipodi:role="line"
id="tspan2882"
x="16.981113"
y="21.94397"
style="stroke-width:0.26458332px">cheshirekow/</tspan><tspan
sodipodi:role="line"
x="16.981113"
y="26.882858"
style="stroke-width:0.26458332px"
id="tspan2886"> cmake-format</tspan></text>
<g
transform="matrix(0.47993568,0,0,-0.47993568,149.72367,12.402972)"
id="g2890">
<path
inkscape:connector-curvature="0"
id="path2888"
style="fill:#1b1817;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 0,0 c -8.995,0 -16.288,-7.293 -16.288,-16.29 0,-7.197 4.667,-13.302 11.14,-15.457 0.815,-0.149 1.112,0.354 1.112,0.786 0,0.386 -0.014,1.411 -0.022,2.77 -4.531,-0.984 -5.487,2.184 -5.487,2.184 -0.741,1.881 -1.809,2.382 -1.809,2.382 -1.479,1.011 0.112,0.991 0.112,0.991 1.635,-0.116 2.495,-1.679 2.495,-1.679 1.453,-2.489 3.813,-1.77 4.741,-1.354 0.148,1.053 0.568,1.771 1.034,2.178 -3.617,0.411 -7.42,1.809 -7.42,8.051 0,1.778 0.635,3.232 1.677,4.371 -0.168,0.412 -0.727,2.068 0.159,4.311 0,0 1.368,0.438 4.48,-1.67 1.299,0.361 2.693,0.542 4.078,0.548 1.383,-0.006 2.777,-0.187 4.078,-0.548 3.11,2.108 4.475,1.67 4.475,1.67 0.889,-2.243 0.33,-3.899 0.162,-4.311 1.044,-1.139 1.675,-2.593 1.675,-4.371 0,-6.258 -3.809,-7.635 -7.438,-8.038 0.585,-0.503 1.106,-1.497 1.106,-3.017 0,-2.177 -0.02,-3.934 -0.02,-4.468 0,-0.436 0.293,-0.943 1.12,-0.784 6.468,2.159 11.131,8.26 11.131,15.455 C 16.291,-7.293 8.997,0 0,0" />
</g>
<text
id="text2896"
y="21.940037"
x="158.19467"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="stroke-width:0.26458332px"
y="21.940037"
x="158.19467"
id="tspan2892"
sodipodi:role="line">cheshirekow/</tspan><tspan
id="tspan2894"
style="stroke-width:0.26458332px"
y="26.878925"
x="158.19467"
sodipodi:role="line"> cmake-format-rtd</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:7.9375px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="12.473214"
y="39.220234"
id="text2917"><tspan
sodipodi:role="line"
x="12.473214"
y="46.243061"
style="stroke-width:0.26458332px"
id="tspan2919" /></text>
<g
id="g2942"
transform="translate(1.8898809,5.2212525)">
<rect
ry="3.0657308"
y="30.904762"
x="0"
height="18.750113"
width="35.151787"
id="rect2933"
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g2906"
inkscape:label="ink_ext_XXXXXX"
transform="matrix(0.05866149,0,0,-0.05866149,1.9348149,39.363968)">
<g
id="g2908"
transform="scale(0.1)">
<path
d="M 901.543,500.352 500.352,901.527 c -23.094,23.11 -60.567,23.11 -83.692,0 L 333.359,818.211 439.031,712.535 c 24.563,8.293 52.727,2.727 72.297,-16.847 19.688,-19.696 25.203,-48.102 16.699,-72.75 L 629.883,521.094 c 24.648,8.496 53.066,3.004 72.754,-16.711 27.5,-27.492 27.5,-72.059 0,-99.574 -27.52,-27.516 -72.078,-27.516 -99.61,0 -20.683,20.703 -25.8,51.097 -15.312,76.582 l -95,94.992 V 326.414 c 6.699,-3.32 13.027,-7.742 18.613,-13.312 27.5,-27.497 27.5,-72.059 0,-99.598 -27.5,-27.488 -72.09,-27.488 -99.57,0 -27.5,27.539 -27.5,72.101 0,99.598 6.797,6.789 14.668,11.925 23.066,15.363 v 252.281 c -8.398,3.438 -16.25,8.531 -23.066,15.367 -20.828,20.821 -25.84,51.395 -15.156,76.977 L 292.422,777.285 17.3242,502.211 c -23.10545,-23.129 -23.10545,-60.602 0,-83.711 L 418.535,17.3242 c 23.098,-23.10545 60.559,-23.10545 83.692,0 L 901.543,416.641 c 23.113,23.113 23.113,60.605 0,83.711"
style="fill:#f03c2e;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2910"
inkscape:connector-curvature="0" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="8.7717342"
y="37.173725"
id="text2927"><tspan
sodipodi:role="line"
x="8.7717342"
y="37.173725"
style="stroke-width:0.26458332px"
id="tspan2925">* master</tspan><tspan
id="tspan2931"
sodipodi:role="line"
x="8.7717342"
y="42.112614"
style="stroke-width:0.26458332px">* staging</tspan></text>
</g>
<g
id="g3068"
transform="translate(15.580869,1.3363476)">
<rect
ry="2.9320977"
y="30.645294"
x="61.402252"
height="21.823713"
width="49.450706"
id="rect2944"
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="80.457626"
y="38.113777"
id="text2965"><tspan
id="tspan2969"
sodipodi:role="line"
x="80.457626"
y="38.113777"
style="stroke-width:0.26458332px">* test</tspan><tspan
id="tspan2973"
sodipodi:role="line"
x="80.457626"
y="43.052666"
style="stroke-width:0.26458332px">* lint</tspan><tspan
id="tspan2975"
sodipodi:role="line"
x="80.457626"
y="47.991554"
style="stroke-width:0.26458332px">* push-tag</tspan></text>
<g
transform="matrix(0.04339698,0,0,0.04339698,63.045548,32.908802)"
id="g3041">
<g
id="g2983">
<path
inkscape:connector-curvature="0"
d="m 236.25,222.275 c 0.865,-3.233 0.421,-6.608 -1.252,-9.506 l -26.079,-45.174 c -2.232,-3.864 -6.393,-6.267 -10.862,-6.267 -2.186,0 -4.347,0.582 -6.249,1.681 l -13.595,7.85 c -5.525,-4.053 -11.5,-7.526 -17.834,-10.332 v -15.662 c 0,-6.908 -5.621,-12.526 -12.527,-12.526 H 95.688 c -6.906,0 -12.525,5.618 -12.525,12.526 v 15.661 c -6.335,2.806 -12.309,6.28 -17.835,10.333 L 51.733,163.01 c -1.902,-1.099 -4.064,-1.68 -6.25,-1.68 -4.468,0 -8.629,2.401 -10.861,6.266 l -26.08,45.172 c -1.673,2.899 -2.118,6.274 -1.253,9.507 0.867,3.232 2.939,5.934 5.836,7.605 l 13.557,7.826 c -0.365,3.391 -0.559,6.832 -0.559,10.318 0,3.486 0.193,6.928 0.559,10.319 l -13.557,7.827 c -2.898,1.672 -4.969,4.373 -5.836,7.606 -0.865,3.231 -0.42,6.608 1.253,9.505 l 26.079,45.174 c 2.232,3.865 6.394,6.266 10.861,6.266 2.186,0 4.348,-0.58 6.25,-1.68 l 13.596,-7.849 c 5.525,4.052 11.5,7.526 17.834,10.332 v 15.661 c 0,3.346 1.303,6.491 3.67,8.857 2.366,2.365 5.512,3.67 8.855,3.67 h 52.164 c 6.906,0 12.527,-5.62 12.527,-12.527 v -15.662 c 6.334,-2.806 12.308,-6.279 17.833,-10.332 l 13.596,7.849 c 1.902,1.1 4.064,1.68 6.249,1.68 4.47,0 8.63,-2.4 10.862,-6.266 l 26.079,-45.174 c 1.673,-2.897 2.117,-6.273 1.252,-9.505 -0.865,-3.233 -2.938,-5.935 -5.834,-7.606 l -13.557,-7.828 c 0.365,-3.391 0.558,-6.833 0.558,-10.319 0,-3.486 -0.192,-6.928 -0.558,-10.318 l 13.557,-7.827 c 2.898,-1.668 4.97,-4.369 5.835,-7.602 z m -114.48,80.148 c -30.043,0 -54.396,-24.354 -54.396,-54.397 0,-30.041 24.354,-54.396 54.396,-54.396 30.042,0 54.397,24.355 54.397,54.396 0,30.042 -24.354,54.397 -54.397,54.397 z"
id="path2977" />
<path
inkscape:connector-curvature="0"
d="m 167.512,93.593 c -0.572,2.14 -0.277,4.374 0.83,6.29 l 17.256,29.892 c 1.479,2.559 4.231,4.146 7.188,4.146 1.447,0 2.876,-0.384 4.137,-1.111 l 9.002,-5.197 c 3.654,2.68 7.606,4.972 11.795,6.827 v 10.377 c 0,2.214 0.861,4.295 2.428,5.861 1.566,1.566 3.647,2.427 5.86,2.427 h 34.517 c 4.57,0 8.29,-3.718 8.29,-8.288 V 134.44 c 4.188,-1.856 8.14,-4.148 11.794,-6.828 l 9.004,5.198 c 1.258,0.728 2.688,1.111 4.135,1.111 2.957,0 5.711,-1.588 7.188,-4.146 l 17.256,-29.892 c 1.108,-1.916 1.402,-4.15 0.83,-6.29 -0.574,-2.139 -1.944,-3.926 -3.861,-5.033 l -8.975,-5.182 c 0.241,-2.243 0.373,-4.519 0.373,-6.825 0,-2.306 -0.132,-4.581 -0.373,-6.825 l 8.975,-5.181 c 1.917,-1.107 3.287,-2.895 3.861,-5.034 0.572,-2.139 0.277,-4.372 -0.83,-6.29 L 300.936,23.331 c -1.477,-2.558 -4.23,-4.147 -7.188,-4.147 -1.447,0 -2.877,0.385 -4.135,1.113 l -9.004,5.198 c -3.654,-2.68 -7.605,-4.972 -11.794,-6.827 V 8.289 c 0,-4.57 -3.72,-8.289 -8.29,-8.289 h -34.517 c -4.57,0 -8.288,3.719 -8.288,8.289 v 10.378 c -4.188,1.856 -8.141,4.148 -11.794,6.827 l -9.003,-5.198 c -1.261,-0.729 -2.689,-1.113 -4.137,-1.113 -2.956,0 -5.709,1.59 -7.188,4.147 l -17.256,29.892 c -1.107,1.918 -1.402,4.151 -0.83,6.29 0.574,2.14 1.945,3.927 3.861,5.034 l 8.975,5.181 c -0.241,2.243 -0.373,4.519 -0.373,6.825 0,2.307 0.132,4.582 0.373,6.825 l -8.975,5.182 c -1.916,1.108 -3.287,2.895 -3.861,5.034 z m 75.754,-53.035 c 19.881,0 35.996,16.116 35.996,35.995 0,19.879 -16.115,35.995 -35.996,35.995 -19.88,0 -35.995,-16.116 -35.995,-35.995 0,-19.879 16.115,-35.995 35.995,-35.995 z"
id="path2979" />
<path
inkscape:connector-curvature="0"
d="m 354.003,209.477 -6.179,-3.567 c 0.167,-1.544 0.258,-3.111 0.258,-4.699 0,-1.588 -0.091,-3.154 -0.258,-4.699 l 6.179,-3.567 c 1.319,-0.762 2.263,-1.992 2.657,-3.465 0.395,-1.473 0.191,-3.01 -0.57,-4.33 l -11.88,-20.576 c -1.017,-1.762 -2.911,-2.855 -4.946,-2.855 -0.996,0 -1.98,0.265 -2.848,0.766 l -6.197,3.578 c -2.516,-1.845 -5.236,-3.423 -8.119,-4.7 v -7.144 c 0,-3.145 -2.56,-5.706 -5.705,-5.706 h -23.76 c -3.147,0 -5.706,2.561 -5.706,5.706 v 7.144 c -2.884,1.277 -5.603,2.855 -8.119,4.7 l -6.198,-3.578 c -0.866,-0.501 -1.851,-0.766 -2.847,-0.766 -2.035,0 -3.931,1.093 -4.946,2.855 L 252.94,185.15 c -0.764,1.32 -0.967,2.857 -0.572,4.33 0.396,1.473 1.339,2.703 2.658,3.465 l 6.18,3.567 c -0.167,1.544 -0.258,3.11 -0.258,4.698 0,1.588 0.091,3.154 0.258,4.698 l -6.18,3.567 c -1.319,0.761 -2.263,1.99 -2.658,3.464 -0.395,1.473 -0.191,3.011 0.572,4.33 l 11.879,20.576 c 1.016,1.762 2.911,2.855 4.946,2.855 0.996,0 1.98,-0.266 2.847,-0.766 l 6.198,-3.578 c 2.516,1.845 5.235,3.422 8.119,4.7 v 7.144 c 0,1.523 0.593,2.957 1.671,4.034 1.078,1.079 2.512,1.672 4.035,1.672 h 23.76 c 3.145,0 5.705,-2.56 5.705,-5.706 v -7.144 c 2.883,-1.277 5.604,-2.855 8.119,-4.7 l 6.197,3.578 c 0.867,0.5 1.852,0.766 2.848,0.766 2.035,0 3.93,-1.093 4.946,-2.855 l 11.88,-20.576 c 0.762,-1.319 0.965,-2.857 0.57,-4.33 -0.394,-1.472 -1.338,-2.702 -2.657,-3.462 z m -49.488,16.512 c -13.686,0 -24.778,-11.095 -24.778,-24.778 0,-13.685 11.092,-24.779 24.778,-24.779 13.685,0 24.777,11.095 24.777,24.779 0,13.684 -11.093,24.778 -24.777,24.778 z"
id="path2981" />
</g>
<g
id="g2985">
</g>
<g
id="g2987">
</g>
<g
id="g2989">
</g>
<g
id="g2991">
</g>
<g
id="g2993">
</g>
<g
id="g2995">
</g>
<g
id="g2997">
</g>
<g
id="g2999">
</g>
<g
id="g3001">
</g>
<g
id="g3003">
</g>
<g
id="g3005">
</g>
<g
id="g3007">
</g>
<g
id="g3009">
</g>
<g
id="g3011">
</g>
<g
id="g3013">
</g>
</g>
</g>
<g
transform="translate(1.8898809,51.458881)"
id="g3084" />
<text
id="text3090"
y="34.505638"
x="1.7467492"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan3088"
style="stroke-width:0.26458332px"
y="34.505638"
x="1.7467492"
sodipodi:role="line">branches:</tspan></text>
<rect
ry="3.0657308"
y="89.04538"
x="1.8898809"
height="21.357567"
width="54.830036"
id="rect3094"
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g3100"
inkscape:label="ink_ext_XXXXXX"
transform="matrix(0.05866149,0,0,-0.05866149,3.8246958,97.504587)">
<g
id="g3098"
transform="scale(0.1)">
<path
d="M 901.543,500.352 500.352,901.527 c -23.094,23.11 -60.567,23.11 -83.692,0 L 333.359,818.211 439.031,712.535 c 24.563,8.293 52.727,2.727 72.297,-16.847 19.688,-19.696 25.203,-48.102 16.699,-72.75 L 629.883,521.094 c 24.648,8.496 53.066,3.004 72.754,-16.711 27.5,-27.492 27.5,-72.059 0,-99.574 -27.52,-27.516 -72.078,-27.516 -99.61,0 -20.683,20.703 -25.8,51.097 -15.312,76.582 l -95,94.992 V 326.414 c 6.699,-3.32 13.027,-7.742 18.613,-13.312 27.5,-27.497 27.5,-72.059 0,-99.598 -27.5,-27.488 -72.09,-27.488 -99.57,0 -27.5,27.539 -27.5,72.101 0,99.598 6.797,6.789 14.668,11.925 23.066,15.363 v 252.281 c -8.398,3.438 -16.25,8.531 -23.066,15.367 -20.828,20.821 -25.84,51.395 -15.156,76.977 L 292.422,777.285 17.3242,502.211 c -23.10545,-23.129 -23.10545,-60.602 0,-83.711 L 418.535,17.3242 c 23.098,-23.10545 60.559,-23.10545 83.692,0 L 901.543,416.641 c 23.113,23.113 23.113,60.605 0,83.711"
style="fill:#f03c2e;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3096"
inkscape:connector-curvature="0" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="10.661615"
y="95.314346"
id="text3106"><tspan
id="tspan3104"
sodipodi:role="line"
x="10.661615"
y="95.314346"
style="stroke-width:0.26458332px">* pseudo-master</tspan><tspan
id="tspan3172"
sodipodi:role="line"
x="10.661615"
y="100.25323"
style="stroke-width:0.26458332px">* pseudo-staging</tspan><tspan
id="tspan3174"
sodipodi:role="line"
x="10.661615"
y="105.19212"
style="stroke-width:0.26458332px">* v##.##.##</tspan></text>
<path
inkscape:connector-curvature="0"
id="path3862"
d="M 102.09696,53.78473 V 68.751822 H 28.33057 v 19.777945"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3872)"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
id="path3910"
d="m 56.66114,100.28963 19.777945,0"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker3920)"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="1.7467492"
y="87.425003"
id="text3112"><tspan
sodipodi:role="line"
x="1.7467492"
y="87.425003"
style="stroke-width:0.26458332px"
id="tspan3110">tags:</tspan></text>
<rect
ry="2.9320977"
y="87.840973"
x="76.983124"
height="26.100027"
width="49.450706"
id="rect3114"
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="96.038498"
y="95.309456"
id="text3122"><tspan
id="tspan3116"
sodipodi:role="line"
x="96.038498"
y="95.309456"
style="stroke-width:0.26458332px">* test</tspan><tspan
id="tspan3118"
sodipodi:role="line"
x="96.038498"
y="100.24834"
style="stroke-width:0.26458332px">* lint</tspan><tspan
id="tspan3120"
sodipodi:role="line"
x="96.038498"
y="105.18723"
style="stroke-width:0.26458332px">* doc-gen</tspan><tspan
id="tspan3166"
sodipodi:role="line"
x="96.038498"
y="110.12612"
style="stroke-width:0.26458332px">* pkg-build</tspan></text>
<g
transform="matrix(0.04339698,0,0,0.04339698,78.626417,90.104481)"
id="g3162">
<g
id="g3130">
<path
inkscape:connector-curvature="0"
d="m 236.25,222.275 c 0.865,-3.233 0.421,-6.608 -1.252,-9.506 l -26.079,-45.174 c -2.232,-3.864 -6.393,-6.267 -10.862,-6.267 -2.186,0 -4.347,0.582 -6.249,1.681 l -13.595,7.85 c -5.525,-4.053 -11.5,-7.526 -17.834,-10.332 v -15.662 c 0,-6.908 -5.621,-12.526 -12.527,-12.526 H 95.688 c -6.906,0 -12.525,5.618 -12.525,12.526 v 15.661 c -6.335,2.806 -12.309,6.28 -17.835,10.333 L 51.733,163.01 c -1.902,-1.099 -4.064,-1.68 -6.25,-1.68 -4.468,0 -8.629,2.401 -10.861,6.266 l -26.08,45.172 c -1.673,2.899 -2.118,6.274 -1.253,9.507 0.867,3.232 2.939,5.934 5.836,7.605 l 13.557,7.826 c -0.365,3.391 -0.559,6.832 -0.559,10.318 0,3.486 0.193,6.928 0.559,10.319 l -13.557,7.827 c -2.898,1.672 -4.969,4.373 -5.836,7.606 -0.865,3.231 -0.42,6.608 1.253,9.505 l 26.079,45.174 c 2.232,3.865 6.394,6.266 10.861,6.266 2.186,0 4.348,-0.58 6.25,-1.68 l 13.596,-7.849 c 5.525,4.052 11.5,7.526 17.834,10.332 v 15.661 c 0,3.346 1.303,6.491 3.67,8.857 2.366,2.365 5.512,3.67 8.855,3.67 h 52.164 c 6.906,0 12.527,-5.62 12.527,-12.527 v -15.662 c 6.334,-2.806 12.308,-6.279 17.833,-10.332 l 13.596,7.849 c 1.902,1.1 4.064,1.68 6.249,1.68 4.47,0 8.63,-2.4 10.862,-6.266 l 26.079,-45.174 c 1.673,-2.897 2.117,-6.273 1.252,-9.505 -0.865,-3.233 -2.938,-5.935 -5.834,-7.606 l -13.557,-7.828 c 0.365,-3.391 0.558,-6.833 0.558,-10.319 0,-3.486 -0.192,-6.928 -0.558,-10.318 l 13.557,-7.827 c 2.898,-1.668 4.97,-4.369 5.835,-7.602 z m -114.48,80.148 c -30.043,0 -54.396,-24.354 -54.396,-54.397 0,-30.041 24.354,-54.396 54.396,-54.396 30.042,0 54.397,24.355 54.397,54.396 0,30.042 -24.354,54.397 -54.397,54.397 z"
id="path3124" />
<path
inkscape:connector-curvature="0"
d="m 167.512,93.593 c -0.572,2.14 -0.277,4.374 0.83,6.29 l 17.256,29.892 c 1.479,2.559 4.231,4.146 7.188,4.146 1.447,0 2.876,-0.384 4.137,-1.111 l 9.002,-5.197 c 3.654,2.68 7.606,4.972 11.795,6.827 v 10.377 c 0,2.214 0.861,4.295 2.428,5.861 1.566,1.566 3.647,2.427 5.86,2.427 h 34.517 c 4.57,0 8.29,-3.718 8.29,-8.288 V 134.44 c 4.188,-1.856 8.14,-4.148 11.794,-6.828 l 9.004,5.198 c 1.258,0.728 2.688,1.111 4.135,1.111 2.957,0 5.711,-1.588 7.188,-4.146 l 17.256,-29.892 c 1.108,-1.916 1.402,-4.15 0.83,-6.29 -0.574,-2.139 -1.944,-3.926 -3.861,-5.033 l -8.975,-5.182 c 0.241,-2.243 0.373,-4.519 0.373,-6.825 0,-2.306 -0.132,-4.581 -0.373,-6.825 l 8.975,-5.181 c 1.917,-1.107 3.287,-2.895 3.861,-5.034 0.572,-2.139 0.277,-4.372 -0.83,-6.29 L 300.936,23.331 c -1.477,-2.558 -4.23,-4.147 -7.188,-4.147 -1.447,0 -2.877,0.385 -4.135,1.113 l -9.004,5.198 c -3.654,-2.68 -7.605,-4.972 -11.794,-6.827 V 8.289 c 0,-4.57 -3.72,-8.289 -8.29,-8.289 h -34.517 c -4.57,0 -8.288,3.719 -8.288,8.289 v 10.378 c -4.188,1.856 -8.141,4.148 -11.794,6.827 l -9.003,-5.198 c -1.261,-0.729 -2.689,-1.113 -4.137,-1.113 -2.956,0 -5.709,1.59 -7.188,4.147 l -17.256,29.892 c -1.107,1.918 -1.402,4.151 -0.83,6.29 0.574,2.14 1.945,3.927 3.861,5.034 l 8.975,5.181 c -0.241,2.243 -0.373,4.519 -0.373,6.825 0,2.307 0.132,4.582 0.373,6.825 l -8.975,5.182 c -1.916,1.108 -3.287,2.895 -3.861,5.034 z m 75.754,-53.035 c 19.881,0 35.996,16.116 35.996,35.995 0,19.879 -16.115,35.995 -35.996,35.995 -19.88,0 -35.995,-16.116 -35.995,-35.995 0,-19.879 16.115,-35.995 35.995,-35.995 z"
id="path3126" />
<path
inkscape:connector-curvature="0"
d="m 354.003,209.477 -6.179,-3.567 c 0.167,-1.544 0.258,-3.111 0.258,-4.699 0,-1.588 -0.091,-3.154 -0.258,-4.699 l 6.179,-3.567 c 1.319,-0.762 2.263,-1.992 2.657,-3.465 0.395,-1.473 0.191,-3.01 -0.57,-4.33 l -11.88,-20.576 c -1.017,-1.762 -2.911,-2.855 -4.946,-2.855 -0.996,0 -1.98,0.265 -2.848,0.766 l -6.197,3.578 c -2.516,-1.845 -5.236,-3.423 -8.119,-4.7 v -7.144 c 0,-3.145 -2.56,-5.706 -5.705,-5.706 h -23.76 c -3.147,0 -5.706,2.561 -5.706,5.706 v 7.144 c -2.884,1.277 -5.603,2.855 -8.119,4.7 l -6.198,-3.578 c -0.866,-0.501 -1.851,-0.766 -2.847,-0.766 -2.035,0 -3.931,1.093 -4.946,2.855 L 252.94,185.15 c -0.764,1.32 -0.967,2.857 -0.572,4.33 0.396,1.473 1.339,2.703 2.658,3.465 l 6.18,3.567 c -0.167,1.544 -0.258,3.11 -0.258,4.698 0,1.588 0.091,3.154 0.258,4.698 l -6.18,3.567 c -1.319,0.761 -2.263,1.99 -2.658,3.464 -0.395,1.473 -0.191,3.011 0.572,4.33 l 11.879,20.576 c 1.016,1.762 2.911,2.855 4.946,2.855 0.996,0 1.98,-0.266 2.847,-0.766 l 6.198,-3.578 c 2.516,1.845 5.235,3.422 8.119,4.7 v 7.144 c 0,1.523 0.593,2.957 1.671,4.034 1.078,1.079 2.512,1.672 4.035,1.672 h 23.76 c 3.145,0 5.705,-2.56 5.705,-5.706 v -7.144 c 2.883,-1.277 5.604,-2.855 8.119,-4.7 l 6.197,3.578 c 0.867,0.5 1.852,0.766 2.848,0.766 2.035,0 3.93,-1.093 4.946,-2.855 l 11.88,-20.576 c 0.762,-1.319 0.965,-2.857 0.57,-4.33 -0.394,-1.472 -1.338,-2.702 -2.657,-3.462 z m -49.488,16.512 c -13.686,0 -24.778,-11.095 -24.778,-24.778 0,-13.685 11.092,-24.779 24.778,-24.779 13.685,0 24.777,11.095 24.777,24.779 0,13.684 -11.093,24.778 -24.777,24.778 z"
id="path3128" />
</g>
<g
id="g3132">
</g>
<g
id="g3134">
</g>
<g
id="g3136">
</g>
<g
id="g3138">
</g>
<g
id="g3140">
</g>
<g
id="g3142">
</g>
<g
id="g3144">
</g>
<g
id="g3146">
</g>
<g
id="g3148">
</g>
<g
id="g3150">
</g>
<g
id="g3152">
</g>
<g
id="g3154">
</g>
<g
id="g3156">
</g>
<g
id="g3158">
</g>
<g
id="g3160">
</g>
</g>
<rect
ry="2.9320979"
y="109.69025"
x="217.42085"
height="22.358255"
width="57.468796"
id="rect3114-3"
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="236.47623"
y="117.15874"
id="text3122-7"><tspan
id="tspan3166-1"
sodipodi:role="line"
x="236.47623"
y="117.15874"
style="stroke-width:0.26458332px">* sphinx-build</tspan><tspan
sodipodi:role="line"
x="236.47623"
y="122.09763"
style="stroke-width:0.26458332px"
id="tspan6582">* serve docs</tspan></text>
<g
transform="matrix(0.04339698,0,0,0.04339698,219.06414,111.95376)"
id="g3162-5">
<g
id="g3130-0">
<path
inkscape:connector-curvature="0"
d="m 236.25,222.275 c 0.865,-3.233 0.421,-6.608 -1.252,-9.506 l -26.079,-45.174 c -2.232,-3.864 -6.393,-6.267 -10.862,-6.267 -2.186,0 -4.347,0.582 -6.249,1.681 l -13.595,7.85 c -5.525,-4.053 -11.5,-7.526 -17.834,-10.332 v -15.662 c 0,-6.908 -5.621,-12.526 -12.527,-12.526 H 95.688 c -6.906,0 -12.525,5.618 -12.525,12.526 v 15.661 c -6.335,2.806 -12.309,6.28 -17.835,10.333 L 51.733,163.01 c -1.902,-1.099 -4.064,-1.68 -6.25,-1.68 -4.468,0 -8.629,2.401 -10.861,6.266 l -26.08,45.172 c -1.673,2.899 -2.118,6.274 -1.253,9.507 0.867,3.232 2.939,5.934 5.836,7.605 l 13.557,7.826 c -0.365,3.391 -0.559,6.832 -0.559,10.318 0,3.486 0.193,6.928 0.559,10.319 l -13.557,7.827 c -2.898,1.672 -4.969,4.373 -5.836,7.606 -0.865,3.231 -0.42,6.608 1.253,9.505 l 26.079,45.174 c 2.232,3.865 6.394,6.266 10.861,6.266 2.186,0 4.348,-0.58 6.25,-1.68 l 13.596,-7.849 c 5.525,4.052 11.5,7.526 17.834,10.332 v 15.661 c 0,3.346 1.303,6.491 3.67,8.857 2.366,2.365 5.512,3.67 8.855,3.67 h 52.164 c 6.906,0 12.527,-5.62 12.527,-12.527 v -15.662 c 6.334,-2.806 12.308,-6.279 17.833,-10.332 l 13.596,7.849 c 1.902,1.1 4.064,1.68 6.249,1.68 4.47,0 8.63,-2.4 10.862,-6.266 l 26.079,-45.174 c 1.673,-2.897 2.117,-6.273 1.252,-9.505 -0.865,-3.233 -2.938,-5.935 -5.834,-7.606 l -13.557,-7.828 c 0.365,-3.391 0.558,-6.833 0.558,-10.319 0,-3.486 -0.192,-6.928 -0.558,-10.318 l 13.557,-7.827 c 2.898,-1.668 4.97,-4.369 5.835,-7.602 z m -114.48,80.148 c -30.043,0 -54.396,-24.354 -54.396,-54.397 0,-30.041 24.354,-54.396 54.396,-54.396 30.042,0 54.397,24.355 54.397,54.396 0,30.042 -24.354,54.397 -54.397,54.397 z"
id="path3124-9" />
<path
inkscape:connector-curvature="0"
d="m 167.512,93.593 c -0.572,2.14 -0.277,4.374 0.83,6.29 l 17.256,29.892 c 1.479,2.559 4.231,4.146 7.188,4.146 1.447,0 2.876,-0.384 4.137,-1.111 l 9.002,-5.197 c 3.654,2.68 7.606,4.972 11.795,6.827 v 10.377 c 0,2.214 0.861,4.295 2.428,5.861 1.566,1.566 3.647,2.427 5.86,2.427 h 34.517 c 4.57,0 8.29,-3.718 8.29,-8.288 V 134.44 c 4.188,-1.856 8.14,-4.148 11.794,-6.828 l 9.004,5.198 c 1.258,0.728 2.688,1.111 4.135,1.111 2.957,0 5.711,-1.588 7.188,-4.146 l 17.256,-29.892 c 1.108,-1.916 1.402,-4.15 0.83,-6.29 -0.574,-2.139 -1.944,-3.926 -3.861,-5.033 l -8.975,-5.182 c 0.241,-2.243 0.373,-4.519 0.373,-6.825 0,-2.306 -0.132,-4.581 -0.373,-6.825 l 8.975,-5.181 c 1.917,-1.107 3.287,-2.895 3.861,-5.034 0.572,-2.139 0.277,-4.372 -0.83,-6.29 L 300.936,23.331 c -1.477,-2.558 -4.23,-4.147 -7.188,-4.147 -1.447,0 -2.877,0.385 -4.135,1.113 l -9.004,5.198 c -3.654,-2.68 -7.605,-4.972 -11.794,-6.827 V 8.289 c 0,-4.57 -3.72,-8.289 -8.29,-8.289 h -34.517 c -4.57,0 -8.288,3.719 -8.288,8.289 v 10.378 c -4.188,1.856 -8.141,4.148 -11.794,6.827 l -9.003,-5.198 c -1.261,-0.729 -2.689,-1.113 -4.137,-1.113 -2.956,0 -5.709,1.59 -7.188,4.147 l -17.256,29.892 c -1.107,1.918 -1.402,4.151 -0.83,6.29 0.574,2.14 1.945,3.927 3.861,5.034 l 8.975,5.181 c -0.241,2.243 -0.373,4.519 -0.373,6.825 0,2.307 0.132,4.582 0.373,6.825 l -8.975,5.182 c -1.916,1.108 -3.287,2.895 -3.861,5.034 z m 75.754,-53.035 c 19.881,0 35.996,16.116 35.996,35.995 0,19.879 -16.115,35.995 -35.996,35.995 -19.88,0 -35.995,-16.116 -35.995,-35.995 0,-19.879 16.115,-35.995 35.995,-35.995 z"
id="path3126-0" />
<path
inkscape:connector-curvature="0"
d="m 354.003,209.477 -6.179,-3.567 c 0.167,-1.544 0.258,-3.111 0.258,-4.699 0,-1.588 -0.091,-3.154 -0.258,-4.699 l 6.179,-3.567 c 1.319,-0.762 2.263,-1.992 2.657,-3.465 0.395,-1.473 0.191,-3.01 -0.57,-4.33 l -11.88,-20.576 c -1.017,-1.762 -2.911,-2.855 -4.946,-2.855 -0.996,0 -1.98,0.265 -2.848,0.766 l -6.197,3.578 c -2.516,-1.845 -5.236,-3.423 -8.119,-4.7 v -7.144 c 0,-3.145 -2.56,-5.706 -5.705,-5.706 h -23.76 c -3.147,0 -5.706,2.561 -5.706,5.706 v 7.144 c -2.884,1.277 -5.603,2.855 -8.119,4.7 l -6.198,-3.578 c -0.866,-0.501 -1.851,-0.766 -2.847,-0.766 -2.035,0 -3.931,1.093 -4.946,2.855 L 252.94,185.15 c -0.764,1.32 -0.967,2.857 -0.572,4.33 0.396,1.473 1.339,2.703 2.658,3.465 l 6.18,3.567 c -0.167,1.544 -0.258,3.11 -0.258,4.698 0,1.588 0.091,3.154 0.258,4.698 l -6.18,3.567 c -1.319,0.761 -2.263,1.99 -2.658,3.464 -0.395,1.473 -0.191,3.011 0.572,4.33 l 11.879,20.576 c 1.016,1.762 2.911,2.855 4.946,2.855 0.996,0 1.98,-0.266 2.847,-0.766 l 6.198,-3.578 c 2.516,1.845 5.235,3.422 8.119,4.7 v 7.144 c 0,1.523 0.593,2.957 1.671,4.034 1.078,1.079 2.512,1.672 4.035,1.672 h 23.76 c 3.145,0 5.705,-2.56 5.705,-5.706 v -7.144 c 2.883,-1.277 5.604,-2.855 8.119,-4.7 l 6.197,3.578 c 0.867,0.5 1.852,0.766 2.848,0.766 2.035,0 3.93,-1.093 4.946,-2.855 l 11.88,-20.576 c 0.762,-1.319 0.965,-2.857 0.57,-4.33 -0.394,-1.472 -1.338,-2.702 -2.657,-3.462 z m -49.488,16.512 c -13.686,0 -24.778,-11.095 -24.778,-24.778 0,-13.685 11.092,-24.779 24.778,-24.779 13.685,0 24.777,11.095 24.777,24.779 0,13.684 -11.093,24.778 -24.777,24.778 z"
id="path3128-4" />
</g>
<g
id="g3132-0" />
<g
id="g3134-1" />
<g
id="g3136-3" />
<g
id="g3138-7" />
<g
id="g3140-4" />
<g
id="g3142-1" />
<g
id="g3144-1" />
<g
id="g3146-3" />
<g
id="g3148-0" />
<g
id="g3150-3" />
<g
id="g3152-2" />
<g
id="g3154-1" />
<g
id="g3156-7" />
<g
id="g3158-5" />
<g
id="g3160-6" />
</g>
<g
id="g2942-8"
transform="translate(149.46756,5.1671022)">
<rect
ry="3.0657308"
y="30.904762"
x="0"
height="18.750113"
width="35.151787"
id="rect2933-9"
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<g
id="g2906-3"
inkscape:label="ink_ext_XXXXXX"
transform="matrix(0.05866149,0,0,-0.05866149,1.9348149,39.363968)">
<g
id="g2908-1"
transform="scale(0.1)">
<path
d="M 901.543,500.352 500.352,901.527 c -23.094,23.11 -60.567,23.11 -83.692,0 L 333.359,818.211 439.031,712.535 c 24.563,8.293 52.727,2.727 72.297,-16.847 19.688,-19.696 25.203,-48.102 16.699,-72.75 L 629.883,521.094 c 24.648,8.496 53.066,3.004 72.754,-16.711 27.5,-27.492 27.5,-72.059 0,-99.574 -27.52,-27.516 -72.078,-27.516 -99.61,0 -20.683,20.703 -25.8,51.097 -15.312,76.582 l -95,94.992 V 326.414 c 6.699,-3.32 13.027,-7.742 18.613,-13.312 27.5,-27.497 27.5,-72.059 0,-99.598 -27.5,-27.488 -72.09,-27.488 -99.57,0 -27.5,27.539 -27.5,72.101 0,99.598 6.797,6.789 14.668,11.925 23.066,15.363 v 252.281 c -8.398,3.438 -16.25,8.531 -23.066,15.367 -20.828,20.821 -25.84,51.395 -15.156,76.977 L 292.422,777.285 17.3242,502.211 c -23.10545,-23.129 -23.10545,-60.602 0,-83.711 L 418.535,17.3242 c 23.098,-23.10545 60.559,-23.10545 83.692,0 L 901.543,416.641 c 23.113,23.113 23.113,60.605 0,83.711"
style="fill:#f03c2e;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2910-4"
inkscape:connector-curvature="0" />
</g>
</g>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="8.7717342"
y="37.173725"
id="text2927-8"><tspan
sodipodi:role="line"
x="8.7717342"
y="37.173725"
style="stroke-width:0.26458332px"
id="tspan2925-9">* master</tspan><tspan
id="tspan2931-6"
sodipodi:role="line"
x="8.7717342"
y="42.112614"
style="stroke-width:0.26458332px">* staging</tspan></text>
</g>
<text
id="text3090-7"
y="34.451488"
x="144.78084"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan3088-7"
style="stroke-width:0.26458332px"
y="34.451488"
x="144.78084"
sodipodi:role="line">branches:</tspan></text>
<rect
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect4029"
width="46.544685"
height="10.934052"
x="149.15538"
y="89.04538"
ry="3.0657308" />
<g
transform="matrix(0.05866149,0,0,-0.05866149,151.0902,97.504587)"
inkscape:label="ink_ext_XXXXXX"
id="g4035">
<g
transform="scale(0.1)"
id="g4033">
<path
inkscape:connector-curvature="0"
id="path4031"
style="fill:#f03c2e;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 901.543,500.352 500.352,901.527 c -23.094,23.11 -60.567,23.11 -83.692,0 L 333.359,818.211 439.031,712.535 c 24.563,8.293 52.727,2.727 72.297,-16.847 19.688,-19.696 25.203,-48.102 16.699,-72.75 L 629.883,521.094 c 24.648,8.496 53.066,3.004 72.754,-16.711 27.5,-27.492 27.5,-72.059 0,-99.574 -27.52,-27.516 -72.078,-27.516 -99.61,0 -20.683,20.703 -25.8,51.097 -15.312,76.582 l -95,94.992 V 326.414 c 6.699,-3.32 13.027,-7.742 18.613,-13.312 27.5,-27.497 27.5,-72.059 0,-99.598 -27.5,-27.488 -72.09,-27.488 -99.57,0 -27.5,27.539 -27.5,72.101 0,99.598 6.797,6.789 14.668,11.925 23.066,15.363 v 252.281 c -8.398,3.438 -16.25,8.531 -23.066,15.367 -20.828,20.821 -25.84,51.395 -15.156,76.977 L 292.422,777.285 17.3242,502.211 c -23.10545,-23.129 -23.10545,-60.602 0,-83.711 L 418.535,17.3242 c 23.098,-23.10545 60.559,-23.10545 83.692,0 L 901.543,416.641 c 23.113,23.113 23.113,60.605 0,83.711" />
</g>
</g>
<text
id="text4043"
y="95.314346"
x="157.92712"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="stroke-width:0.26458332px"
y="95.314346"
x="157.92712"
sodipodi:role="line"
id="tspan4041">* v##.##.##</tspan></text>
<text
id="text4047"
y="87.425003"
x="149.01225"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan4045"
style="stroke-width:0.26458332px"
y="87.425003"
x="149.01225"
sodipodi:role="line">tags:</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4064)"
d="m 126.15122,98.68601 h 10.31836 l 0,-54.790253 h 12.93408"
id="path4054"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
inkscape:connector-curvature="0"
id="path4114"
d="m 126.15122,101.62598 h 12.82893 v -6.949013 l 10.42351,0"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker4118)"
sodipodi:nodetypes="cccc" />
<rect
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5326"
width="54.295498"
height="21.357559"
x="1.8898809"
y="142.76656"
ry="3.0657308" />
<g
transform="matrix(0.05866149,0,0,-0.05866149,3.8246958,151.22576)"
inkscape:label="ink_ext_XXXXXX"
id="g5332">
<g
transform="scale(0.1)"
id="g5330">
<path
inkscape:connector-curvature="0"
id="path5328"
style="fill:#f03c2e;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 901.543,500.352 500.352,901.527 c -23.094,23.11 -60.567,23.11 -83.692,0 L 333.359,818.211 439.031,712.535 c 24.563,8.293 52.727,2.727 72.297,-16.847 19.688,-19.696 25.203,-48.102 16.699,-72.75 L 629.883,521.094 c 24.648,8.496 53.066,3.004 72.754,-16.711 27.5,-27.492 27.5,-72.059 0,-99.574 -27.52,-27.516 -72.078,-27.516 -99.61,0 -20.683,20.703 -25.8,51.097 -15.312,76.582 l -95,94.992 V 326.414 c 6.699,-3.32 13.027,-7.742 18.613,-13.312 27.5,-27.497 27.5,-72.059 0,-99.598 -27.5,-27.488 -72.09,-27.488 -99.57,0 -27.5,27.539 -27.5,72.101 0,99.598 6.797,6.789 14.668,11.925 23.066,15.363 v 252.281 c -8.398,3.438 -16.25,8.531 -23.066,15.367 -20.828,20.821 -25.84,51.395 -15.156,76.977 L 292.422,777.285 17.3242,502.211 c -23.10545,-23.129 -23.10545,-60.602 0,-83.711 L 418.535,17.3242 c 23.098,-23.10545 60.559,-23.10545 83.692,0 L 901.543,416.641 c 23.113,23.113 23.113,60.605 0,83.711" />
</g>
</g>
<text
id="text5340"
y="149.03552"
x="10.661615"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
style="stroke-width:0.26458332px"
y="149.03552"
x="10.661615"
sodipodi:role="line"
id="tspan5334">* pseudo-master</tspan><tspan
style="stroke-width:0.26458332px"
y="153.97441"
x="10.661615"
sodipodi:role="line"
id="tspan5336">* pseudo-staging</tspan><tspan
style="stroke-width:0.26458332px"
y="158.9133"
x="10.661615"
sodipodi:role="line"
id="tspan5338">* v##.##.##</tspan></text>
<text
id="text5344"
y="141.14618"
x="1.7467492"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan5342"
style="stroke-width:0.26458332px"
y="141.14618"
x="1.7467492"
sodipodi:role="line">releases:</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5356)"
d="m 102.36423,113.92037 v 17.37252 H 29.666917 v 11.22532"
id="path5418"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5567)"
d="M 55.85933,148.93268 H 208.7375 v -20.84702 h 8.81989"
id="path5557"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5645)"
d="m 184.41597,44.163026 h 26.72695 l 0,72.964584 h 6.41447"
id="path5635"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5729)"
d="m 195.95609,94.215772 12.5515,0 v 27.592258 h 8.82872"
id="path5719"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccc" />
<rect
style="fill:#8adfff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect5858"
width="57.468796"
height="17.28014"
x="291.97363"
y="109.91713"
ry="2.9320979" />
<path
inkscape:connector-curvature="0"
id="path5866"
d="M 56.126599,155.34715 H 283.3057 v -36.61592 h 8.01808"
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1.5874999, 1.5874999;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker5870)"
sodipodi:nodetypes="cccc" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="301.67456"
y="119.2565"
id="text6580"><tspan
id="tspan6578"
sodipodi:role="line"
x="301.67456"
y="119.2565"
style="stroke-width:0.26458332px">serve package</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-end:url(#marker6980)"
d="M 36.852677,42.999998 H 77.107142"
id="path6970"
inkscape:connector-curvature="0" />
<text
id="text8762"
y="21.94397"
x="92.576347"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan8760"
style="stroke-width:0.26458332px"
y="21.94397"
x="92.576347"
sodipodi:role="line">travis-ci.com</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="229.78171"
y="99.807068"
id="text8768"><tspan
sodipodi:role="line"
x="229.78171"
y="99.807068"
style="stroke-width:0.26458332px"
id="tspan8766">readthedocs.org</tspan></text>
<text
id="text8778"
y="99.807068"
x="311.80255"
style="font-style:normal;font-weight:normal;font-size:4.93888903px;line-height:100%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve"><tspan
id="tspan8776"
style="stroke-width:0.26458332px"
y="99.807068"
x="311.80255"
sodipodi:role="line">pypi.org</tspan></text>
</g>
</svg>
|