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
|
<?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"
version="1.1"
id="svg2"
xml:space="preserve"
width="572.901"
height="361.17236"
viewBox="0 0 572.901 361.17236"
sodipodi:docname="awkward-0-popularity.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
inkscape:export-filename="/home/pivarski/irishep/awkward-1.0/docs/img/awkward-0-popularity.png"
inkscape:export-xdpi="150.05"
inkscape:export-ydpi="150.05"><metadata
id="metadata8"><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><defs
id="defs6"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath296"><path
d="m 29.098,220.422 h 19.707 v 11.871 H 29.098 Z"
id="path294"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath306"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path304"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath332"><path
d="m 29.098,193.488 h 19.707 v 11.871 H 29.098 Z"
id="path330"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath342"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path340"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath672"><path
d="M 34.926,18.867 H 425.528 V 229.394 H 34.926 Z"
id="path670"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath682"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path680"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath698"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path696"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath714"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path712"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath730"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path728"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath746"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path744"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath762"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path760"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath778"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path776"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath794"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path792"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath814"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path812"
inkscape:connector-curvature="0" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath834"><path
d="M 0,0 H 430 V 271 H 0 Z"
id="path832"
inkscape:connector-curvature="0" /></clipPath></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1535"
inkscape:window-height="1027"
id="namedview4"
showgrid="false"
inkscape:zoom="1.3068553"
inkscape:cx="314.00525"
inkscape:cy="169.28825"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10" /><g
id="g10"
inkscape:groupmode="layer"
inkscape:label="awkward-0-popularity"
transform="matrix(1.3333333,0,0,1.3333333,0,6.3626424e-6)"><g
id="g12"><g
id="g14"
transform="scale(1,-1)"><path
d="m 54.426,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path16"
inkscape:connector-curvature="0" /></g><g
id="g18"
transform="scale(1,-1)"><path
d="m 64.027,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path20"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,508.61875,92.529197)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text24"><tspan
x="0 6.3400002 12.49 18.83 22 28.360001 34.720001 41.079998"
y="0"
sodipodi:role="line"
id="tspan22">Sep 2015</tspan></text>
<g
id="g26"
transform="scale(1,-1)"><path
d="m 92.891,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path28"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,521.33943,32.284365)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text32"><tspan
x="0 2.9400001 9.0600004 15.39 18.559999 24.92 31.280001 37.639999"
y="0"
sodipodi:role="line"
id="tspan30">Jan 2016</tspan></text>
<g
id="g34"
transform="scale(1,-1)"><path
d="m 121.516,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path36"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,538.27775,-11.337049)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text40"><tspan
x="0 8.6199999 14.74 20.65 23.82 30.18 36.540001 42.900002"
y="0"
sodipodi:role="line"
id="tspan38">May 2016</tspan></text>
<g
id="g42"
transform="scale(1,-1)"><path
d="m 150.617,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path44"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,551.9136,-69.049392)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text48"><tspan
x="0 6.3400002 12.49 18.83 22 28.360001 34.720001 41.079998"
y="0"
sodipodi:role="line"
id="tspan46">Sep 2016</tspan></text>
<g
id="g50"
transform="scale(1,-1)"><path
d="m 179.48,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path52"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,564.63428,-129.29422)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text56"><tspan
x="0 2.9400001 9.0600004 15.39 18.559999 24.92 31.280001 37.639999"
y="0"
sodipodi:role="line"
id="tspan54">Jan 2017</tspan></text>
<g
id="g58"
transform="scale(1,-1)"><path
d="m 207.867,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path60"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,581.45431,-172.47416)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text64"><tspan
x="0 8.6199999 14.74 20.65 23.82 30.18 36.540001 42.900002"
y="0"
sodipodi:role="line"
id="tspan62">May 2017</tspan></text>
<g
id="g66"
transform="scale(1,-1)"><path
d="m 236.969,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path68"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,595.09015,-230.18648)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text72"><tspan
x="0 6.3400002 12.49 18.83 22 28.360001 34.720001 41.079998"
y="0"
sodipodi:role="line"
id="tspan70">Sep 2017</tspan></text>
<g
id="g74"
transform="scale(1,-1)"><path
d="m 265.832,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path76"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,607.81084,-290.43133)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text80"><tspan
x="0 2.9400001 9.0600004 18.57 24.93 31.289999 37.650002"
y="0"
sodipodi:role="line"
id="tspan78">Jan2018</tspan></text>
<g
id="g82"
transform="scale(1,-1)"><path
d="m 294.223,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path84"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,624.63087,-333.61127)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text88"><tspan
x="0 8.6199999 14.74 20.65 23.82 30.18 36.540001 42.900002"
y="0"
sodipodi:role="line"
id="tspan86">May 2018</tspan></text>
<g
id="g90"
transform="scale(1,-1)"><path
d="m 323.32,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path92"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,638.26671,-391.3236)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text96"><tspan
x="0 6.3400002 12.49 18.83 22 28.360001 34.720001 41.079998"
y="0"
sodipodi:role="line"
id="tspan94">Sep 2018</tspan></text>
<g
id="g98"
transform="scale(1,-1)"><path
d="m 352.184,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path100"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,650.98739,-451.56844)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text104"><tspan
x="0 2.9400001 9.0600004 15.39 18.559999 24.92 31.280001 37.639999"
y="0"
sodipodi:role="line"
id="tspan102">Jan 2019</tspan></text>
<g
id="g106"
transform="scale(1,-1)"><path
d="m 380.574,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path108"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,667.80743,-494.74838)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text112"><tspan
x="0 8.6199999 14.74 20.65 23.82 30.18 36.540001 42.900002"
y="0"
sodipodi:role="line"
id="tspan110">May 2019</tspan></text>
<g
id="g114"
transform="scale(1,-1)"><path
d="m 409.676,-229.395 v -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path116"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-30,681.44327,-552.46071)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text120"><tspan
x="0 6.3400002 12.49 18.83 22 28.360001 34.720001 41.079998"
y="0"
sodipodi:role="line"
id="tspan118">Sep 2019</tspan></text>
<g
id="g122"
transform="scale(1,-1)"><path
d="m 56.691,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path124"
inkscape:connector-curvature="0" /></g><g
id="g126"
transform="scale(1,-1)"><path
d="m 71.125,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path128"
inkscape:connector-curvature="0" /></g><g
id="g130"
transform="scale(1,-1)"><path
d="m 78.457,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path132"
inkscape:connector-curvature="0" /></g><g
id="g134"
transform="scale(1,-1)"><path
d="m 85.555,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path136"
inkscape:connector-curvature="0" /></g><g
id="g138"
transform="scale(1,-1)"><path
d="m 100.223,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path140"
inkscape:connector-curvature="0" /></g><g
id="g142"
transform="scale(1,-1)"><path
d="m 107.082,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path144"
inkscape:connector-curvature="0" /></g><g
id="g146"
transform="scale(1,-1)"><path
d="m 114.418,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path148"
inkscape:connector-curvature="0" /></g><g
id="g150"
transform="scale(1,-1)"><path
d="m 128.848,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path152"
inkscape:connector-curvature="0" /></g><g
id="g154"
transform="scale(1,-1)"><path
d="m 135.945,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path156"
inkscape:connector-curvature="0" /></g><g
id="g158"
transform="scale(1,-1)"><path
d="m 143.281,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path160"
inkscape:connector-curvature="0" /></g><g
id="g162"
transform="scale(1,-1)"><path
d="m 157.711,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path164"
inkscape:connector-curvature="0" /></g><g
id="g166"
transform="scale(1,-1)"><path
d="m 165.047,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path168"
inkscape:connector-curvature="0" /></g><g
id="g170"
transform="scale(1,-1)"><path
d="m 172.145,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path172"
inkscape:connector-curvature="0" /></g><g
id="g174"
transform="scale(1,-1)"><path
d="m 186.812,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path176"
inkscape:connector-curvature="0" /></g><g
id="g178"
transform="scale(1,-1)"><path
d="m 193.438,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path180"
inkscape:connector-curvature="0" /></g><g
id="g182"
transform="scale(1,-1)"><path
d="m 200.77,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path184"
inkscape:connector-curvature="0" /></g><g
id="g186"
transform="scale(1,-1)"><path
d="m 215.203,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path188"
inkscape:connector-curvature="0" /></g><g
id="g190"
transform="scale(1,-1)"><path
d="m 222.301,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path192"
inkscape:connector-curvature="0" /></g><g
id="g194"
transform="scale(1,-1)"><path
d="m 229.633,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path196"
inkscape:connector-curvature="0" /></g><g
id="g198"
transform="scale(1,-1)"><path
d="m 244.066,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path200"
inkscape:connector-curvature="0" /></g><g
id="g202"
transform="scale(1,-1)"><path
d="m 251.398,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path204"
inkscape:connector-curvature="0" /></g><g
id="g206"
transform="scale(1,-1)"><path
d="m 258.496,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path208"
inkscape:connector-curvature="0" /></g><g
id="g210"
transform="scale(1,-1)"><path
d="m 273.164,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path212"
inkscape:connector-curvature="0" /></g><g
id="g214"
transform="scale(1,-1)"><path
d="m 279.789,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path216"
inkscape:connector-curvature="0" /></g><g
id="g218"
transform="scale(1,-1)"><path
d="m 287.125,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path220"
inkscape:connector-curvature="0" /></g><g
id="g222"
transform="scale(1,-1)"><path
d="m 301.555,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path224"
inkscape:connector-curvature="0" /></g><g
id="g226"
transform="scale(1,-1)"><path
d="m 308.652,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path228"
inkscape:connector-curvature="0" /></g><g
id="g230"
transform="scale(1,-1)"><path
d="m 315.988,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path232"
inkscape:connector-curvature="0" /></g><g
id="g234"
transform="scale(1,-1)"><path
d="m 330.418,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path236"
inkscape:connector-curvature="0" /></g><g
id="g238"
transform="scale(1,-1)"><path
d="m 337.754,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path240"
inkscape:connector-curvature="0" /></g><g
id="g242"
transform="scale(1,-1)"><path
d="m 344.852,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path244"
inkscape:connector-curvature="0" /></g><g
id="g246"
transform="scale(1,-1)"><path
d="m 359.52,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path248"
inkscape:connector-curvature="0" /></g><g
id="g250"
transform="scale(1,-1)"><path
d="m 366.145,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path252"
inkscape:connector-curvature="0" /></g><g
id="g254"
transform="scale(1,-1)"><path
d="m 373.477,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path256"
inkscape:connector-curvature="0" /></g><g
id="g258"
transform="scale(1,-1)"><path
d="m 387.91,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path260"
inkscape:connector-curvature="0" /></g><g
id="g262"
transform="scale(1,-1)"><path
d="m 395.008,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path264"
inkscape:connector-curvature="0" /></g><g
id="g266"
transform="scale(1,-1)"><path
d="m 402.34,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path268"
inkscape:connector-curvature="0" /></g><g
id="g270"
transform="scale(1,-1)"><path
d="m 416.773,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path272"
inkscape:connector-curvature="0" /></g><g
id="g274"
transform="scale(1,-1)"><path
d="m 424.105,-229.395 v -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path276"
inkscape:connector-curvature="0" /></g><g
id="g278"
transform="scale(1,-1)"><path
d="m 54.426,-229.395 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path280"
inkscape:connector-curvature="0" /></g><text
transform="translate(23.42578,232.87956)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text284"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan282">10</tspan></text>
<text
transform="translate(42.111327,229.05143)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text288"><tspan
x="0"
y="0"
id="tspan286">2</tspan></text>
</g><g
id="g290"><g
id="g292"
clip-path="url(#clipPath296)"><g
id="g298"><g
id="g300"><g
id="g302"
clip-path="url(#clipPath306)"><g
id="g308"><path
d="m 36.988,226.566 h 4.383 v 0.582 h -4.383 z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path310"
inkscape:connector-curvature="0" /></g></g></g></g></g></g><g
id="g312"><g
id="g314"
transform="scale(1,-1)"><path
d="m 54.426,-202.051 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path316"
inkscape:connector-curvature="0" /></g><text
transform="translate(23.42578,205.9471)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text320"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan318">10</tspan></text>
<text
transform="translate(42.111327,202.11898)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text324"><tspan
x="0"
y="0"
id="tspan322">1</tspan></text>
</g><g
id="g326"><g
id="g328"
clip-path="url(#clipPath332)"><g
id="g334"><g
id="g336"><g
id="g338"
clip-path="url(#clipPath342)"><g
id="g344"><path
d="m 36.988,199.633 h 4.383 v 0.582 h -4.383 z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path346"
inkscape:connector-curvature="0" /></g></g></g></g></g></g><g
id="g348"><g
id="g350"
transform="scale(1,-1)"><path
d="m 54.426,-174.707 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path352"
inkscape:connector-curvature="0" /></g><text
transform="translate(29.42578,178.18964)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text356"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan354">10</tspan></text>
<text
transform="translate(42.246093,174.36151)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text360"><tspan
x="0"
y="0"
id="tspan358">0</tspan></text>
<g
id="g362"
transform="scale(1,-1)"><path
d="m 54.426,-147.359 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path364"
inkscape:connector-curvature="0" /></g><text
transform="translate(29.42578,151.25719)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text368"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan366">10</tspan></text>
<text
transform="translate(42.246093,147.42907)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text372"><tspan
x="0"
y="0"
id="tspan370">1</tspan></text>
<g
id="g374"
transform="scale(1,-1)"><path
d="m 54.426,-120.016 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path376"
inkscape:connector-curvature="0" /></g><text
transform="translate(29.42578,123.49973)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text380"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan378">10</tspan></text>
<text
transform="translate(42.246093,119.67161)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text384"><tspan
x="0"
y="0"
id="tspan382">2</tspan></text>
<g
id="g386"
transform="scale(1,-1)"><path
d="m 54.426,-92.672 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path388"
inkscape:connector-curvature="0" /></g><text
transform="translate(29.42578,96.154772)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text392"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan390">10</tspan></text>
<text
transform="translate(42.246093,92.326647)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text396"><tspan
x="0"
y="0"
id="tspan394">3</tspan></text>
<g
id="g398"
transform="scale(1,-1)"><path
d="m 54.426,-65.324 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path400"
inkscape:connector-curvature="0" /></g><text
transform="translate(29.42578,69.222323)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text404"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan402">10</tspan></text>
<text
transform="translate(42.246093,65.394198)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text408"><tspan
x="0"
y="0"
id="tspan406">4</tspan></text>
<g
id="g410"
transform="scale(1,-1)"><path
d="m 54.426,-37.98 h -3.5"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path412"
inkscape:connector-curvature="0" /></g><text
transform="translate(29.42578,41.877364)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text416"><tspan
x="0 6.3600001"
y="0"
sodipodi:role="line"
id="tspan414">10</tspan></text>
<text
transform="translate(42.246093,38.049239)"
style="font-variant:normal;font-weight:normal;font-size:7px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text420"><tspan
x="0"
y="0"
id="tspan418">5</tspan></text>
<g
id="g422"
transform="scale(1,-1)"><path
d="m 54.426,-221.164 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path424"
inkscape:connector-curvature="0" /></g><g
id="g426"
transform="scale(1,-1)"><path
d="m 54.426,-216.348 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path428"
inkscape:connector-curvature="0" /></g><g
id="g430"
transform="scale(1,-1)"><path
d="m 54.426,-212.934 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path432"
inkscape:connector-curvature="0" /></g><g
id="g434"
transform="scale(1,-1)"><path
d="m 54.426,-210.281 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path436"
inkscape:connector-curvature="0" /></g><g
id="g438"
transform="scale(1,-1)"><path
d="m 54.426,-208.117 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path440"
inkscape:connector-curvature="0" /></g><g
id="g442"
transform="scale(1,-1)"><path
d="m 54.426,-206.285 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path444"
inkscape:connector-curvature="0" /></g><g
id="g446"
transform="scale(1,-1)"><path
d="m 54.426,-204.699 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path448"
inkscape:connector-curvature="0" /></g><g
id="g450"
transform="scale(1,-1)"><path
d="m 54.426,-203.301 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path452"
inkscape:connector-curvature="0" /></g><g
id="g454"
transform="scale(1,-1)"><path
d="m 54.426,-193.82 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path456"
inkscape:connector-curvature="0" /></g><g
id="g458"
transform="scale(1,-1)"><path
d="m 54.426,-189.004 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path460"
inkscape:connector-curvature="0" /></g><g
id="g462"
transform="scale(1,-1)"><path
d="m 54.426,-185.586 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path464"
inkscape:connector-curvature="0" /></g><g
id="g466"
transform="scale(1,-1)"><path
d="m 54.426,-182.938 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path468"
inkscape:connector-curvature="0" /></g><g
id="g470"
transform="scale(1,-1)"><path
d="m 54.426,-180.773 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path472"
inkscape:connector-curvature="0" /></g><g
id="g474"
transform="scale(1,-1)"><path
d="m 54.426,-178.941 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path476"
inkscape:connector-curvature="0" /></g><g
id="g478"
transform="scale(1,-1)"><path
d="m 54.426,-177.355 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path480"
inkscape:connector-curvature="0" /></g><g
id="g482"
transform="scale(1,-1)"><path
d="m 54.426,-175.957 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path484"
inkscape:connector-curvature="0" /></g><g
id="g486"
transform="scale(1,-1)"><path
d="m 54.426,-166.473 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path488"
inkscape:connector-curvature="0" /></g><g
id="g490"
transform="scale(1,-1)"><path
d="m 54.426,-161.66 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path492"
inkscape:connector-curvature="0" /></g><g
id="g494"
transform="scale(1,-1)"><path
d="m 54.426,-158.242 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path496"
inkscape:connector-curvature="0" /></g><g
id="g498"
transform="scale(1,-1)"><path
d="m 54.426,-155.594 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path500"
inkscape:connector-curvature="0" /></g><g
id="g502"
transform="scale(1,-1)"><path
d="m 54.426,-153.426 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path504"
inkscape:connector-curvature="0" /></g><g
id="g506"
transform="scale(1,-1)"><path
d="m 54.426,-151.598 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path508"
inkscape:connector-curvature="0" /></g><g
id="g510"
transform="scale(1,-1)"><path
d="m 54.426,-150.012 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path512"
inkscape:connector-curvature="0" /></g><g
id="g514"
transform="scale(1,-1)"><path
d="m 54.426,-148.613 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path516"
inkscape:connector-curvature="0" /></g><g
id="g518"
transform="scale(1,-1)"><path
d="m 54.426,-139.129 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path520"
inkscape:connector-curvature="0" /></g><g
id="g522"
transform="scale(1,-1)"><path
d="m 54.426,-134.312 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path524"
inkscape:connector-curvature="0" /></g><g
id="g526"
transform="scale(1,-1)"><path
d="m 54.426,-130.898 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path528"
inkscape:connector-curvature="0" /></g><g
id="g530"
transform="scale(1,-1)"><path
d="m 54.426,-128.246 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path532"
inkscape:connector-curvature="0" /></g><g
id="g534"
transform="scale(1,-1)"><path
d="m 54.426,-126.082 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path536"
inkscape:connector-curvature="0" /></g><g
id="g538"
transform="scale(1,-1)"><path
d="m 54.426,-124.25 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path540"
inkscape:connector-curvature="0" /></g><g
id="g542"
transform="scale(1,-1)"><path
d="m 54.426,-122.664 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path544"
inkscape:connector-curvature="0" /></g><g
id="g546"
transform="scale(1,-1)"><path
d="m 54.426,-121.266 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path548"
inkscape:connector-curvature="0" /></g><g
id="g550"
transform="scale(1,-1)"><path
d="m 54.426,-111.785 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path552"
inkscape:connector-curvature="0" /></g><g
id="g554"
transform="scale(1,-1)"><path
d="m 54.426,-106.969 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path556"
inkscape:connector-curvature="0" /></g><g
id="g558"
transform="scale(1,-1)"><path
d="m 54.426,-103.551 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path560"
inkscape:connector-curvature="0" /></g><g
id="g562"
transform="scale(1,-1)"><path
d="m 54.426,-100.902 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path564"
inkscape:connector-curvature="0" /></g><g
id="g566"
transform="scale(1,-1)"><path
d="m 54.426,-98.738 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path568"
inkscape:connector-curvature="0" /></g><g
id="g570"
transform="scale(1,-1)"><path
d="m 54.426,-96.906 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path572"
inkscape:connector-curvature="0" /></g><g
id="g574"
transform="scale(1,-1)"><path
d="m 54.426,-95.32 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path576"
inkscape:connector-curvature="0" /></g><g
id="g578"
transform="scale(1,-1)"><path
d="m 54.426,-93.922 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path580"
inkscape:connector-curvature="0" /></g><g
id="g582"
transform="scale(1,-1)"><path
d="m 54.426,-84.438 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path584"
inkscape:connector-curvature="0" /></g><g
id="g586"
transform="scale(1,-1)"><path
d="m 54.426,-79.625 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path588"
inkscape:connector-curvature="0" /></g><g
id="g590"
transform="scale(1,-1)"><path
d="m 54.426,-76.207 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path592"
inkscape:connector-curvature="0" /></g><g
id="g594"
transform="scale(1,-1)"><path
d="m 54.426,-73.559 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path596"
inkscape:connector-curvature="0" /></g><g
id="g598"
transform="scale(1,-1)"><path
d="m 54.426,-71.391 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path600"
inkscape:connector-curvature="0" /></g><g
id="g602"
transform="scale(1,-1)"><path
d="m 54.426,-69.562 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path604"
inkscape:connector-curvature="0" /></g><g
id="g606"
transform="scale(1,-1)"><path
d="m 54.426,-67.977 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path608"
inkscape:connector-curvature="0" /></g><g
id="g610"
transform="scale(1,-1)"><path
d="m 54.426,-66.578 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path612"
inkscape:connector-curvature="0" /></g><g
id="g614"
transform="scale(1,-1)"><path
d="m 54.426,-57.094 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path616"
inkscape:connector-curvature="0" /></g><g
id="g618"
transform="scale(1,-1)"><path
d="m 54.426,-52.277 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path620"
inkscape:connector-curvature="0" /></g><g
id="g622"
transform="scale(1,-1)"><path
d="m 54.426,-48.863 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path624"
inkscape:connector-curvature="0" /></g><g
id="g626"
transform="scale(1,-1)"><path
d="m 54.426,-46.211 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path628"
inkscape:connector-curvature="0" /></g><g
id="g630"
transform="scale(1,-1)"><path
d="m 54.426,-44.047 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path632"
inkscape:connector-curvature="0" /></g><g
id="g634"
transform="scale(1,-1)"><path
d="m 54.426,-42.215 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path636"
inkscape:connector-curvature="0" /></g><g
id="g638"
transform="scale(1,-1)"><path
d="m 54.426,-40.629 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path640"
inkscape:connector-curvature="0" /></g><g
id="g642"
transform="scale(1,-1)"><path
d="m 54.426,-39.23 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path644"
inkscape:connector-curvature="0" /></g><g
id="g646"
transform="scale(1,-1)"><path
d="m 54.426,-29.75 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path648"
inkscape:connector-curvature="0" /></g><g
id="g650"
transform="scale(1,-1)"><path
d="m 54.426,-24.934 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path652"
inkscape:connector-curvature="0" /></g><g
id="g654"
transform="scale(1,-1)"><path
d="m 54.426,-21.516 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path656"
inkscape:connector-curvature="0" /></g><g
id="g658"
transform="scale(1,-1)"><path
d="m 54.426,-18.867 h -2"
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path660"
inkscape:connector-curvature="0" /></g><text
transform="rotate(-90,118.16129,106.81364)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text664"><tspan
x="0 6.3400002 9.1099997 15.45 19.049999 21.82 28.15 33.349998 37.27 43.389999 46.16 48.93 54.130001 57.490002 63.830002 69.949997 75.860001 79.029999 82.230003 88.589996 94.949997 98.550003 104.89 111.01 116.92 120.09 129.83 135.94 141.85001 144.62 150.95 157.28999 160.46001 166.58 172.49001 178.64 182.75 188.87 195.21001"
y="0"
sodipodi:role="line"
id="tspan662">pip-installs/day, 60-day moving average</tspan></text>
</g><g
id="g666"><g
id="g668"
clip-path="url(#clipPath672)"><g
id="g674"><g
id="g676"><g
id="g678"
clip-path="url(#clipPath682)"><g
id="g684"><g
id="g686"
transform="scale(1,-1)"><path
d="m 130.031,-73.246 0.711,0.144 2.84,-0.043 0.707,0.297 0.477,-0.043 1.418,0.461 0.472,0.067 1.184,0.457 0.472,0.058 1.184,0.414 0.473,0.039 0.945,0.29 0.473,-0.161 0.476,0.059 0.707,0.199 0.473,-0.187 2.133,0.601 0.707,0.262 0.472,-0.07 1.422,0.214 0.473,-0.058 0.711,0.23 0.234,0.078 0.711,-0.121 0.473,0.075 0.473,0.05 0.71,-0.254 0.473,0.079 0.473,0.043 0.711,-0.184 1.183,0.059 0.473,-0.055 1.184,0.176 0.472,-0.078 0.473,0.121 0.234,0.086 1.184,-0.207 0.473,0.125 1.183,-0.219 0.711,0.254 0.711,-0.059 0.707,0.402 0.473,-0.031 0.711,-0.078 0.711,0.281 0.472,-0.105 0.711,0.277 0.473,0.168 0.707,-0.043 0.949,0.25 0.707,-0.035 0.473,0.133 0.476,0.16 0.707,-0.133 0.473,0.086 0.477,0.024 0.707,-0.118 0.472,0.172 0.477,0.137 0.472,-0.184 1.18,0.047 0.711,-0.199 0.473,0.031 0.472,0.012 0.477,-0.281 1.18,0.246 0.711,-0.293 0.472,0.055 0.239,0.05 0.472,-0.222 0.473,-0.2 0.473,0.106 0.472,0.098 0.473,-0.098 0.711,0.238 0.472,0.114 0.711,-0.09 1.184,0.433 0.473,0.035 0.945,0.309 0.945,-0.176 0.477,0.051 0.472,-0.051 0.235,-0.062 0.711,0.351 0.472,0.164 0.473,-0.062 0.711,0.308 0.238,0.168 1.18,0.141 0.711,0.383 0.711,0.094 1.183,0.507 0.707,-0.027 0.711,0.215 0.711,-0.09 1.18,0.137 0.238,-0.047 0.711,0.387 0.473,0.238 0.473,-0.051 1.418,0.598 h 0.238 l 0.945,0.433 0.945,-0.007 0.477,0.16 0.234,0.215 0.473,-0.02 0.473,-0.09 1.183,0.086 0.473,0.008 1.184,0.293 0.472,-0.113 0.949,0.265 0.946,-0.117 0.711,-0.09 0.707,-0.054 0.949,0.339 0.945,-0.125 0.707,0.145 0.949,-0.238 0.708,0.422 0.71,-0.137 0.473,0.117 0.473,0.437 0.476,-0.078 0.235,-0.105 1.422,0.387 0.945,0.539 0.473,-0.043 0.234,-0.032 0.238,0.153 0.238,-0.024 0.707,0.325 0.473,-0.125 0.949,0.339 0.235,0.133 0.472,0.047 0.239,0.305 0.945,0.433 1.422,0.149 0.473,0.121 0.472,-0.024 0.473,0.172 0.473,0.25 0.238,0.071 0.472,-0.035 0.473,0.14 0.473,0.168 1.183,-0.203 0.473,0.141 0.711,-0.149 0.234,0.141 0.95,-0.074 0.472,-0.028 0.473,0.461 0.472,0.219 1.184,-0.113 0.473,-0.078 1.418,-0.247 0.472,-0.371 2.133,-0.664 0.473,-0.133 0.473,-0.011 1.183,-0.442 0.234,0.063 0.946,-0.383 0.476,0.02 0.473,-0.016 0.473,-0.164 0.472,-0.074 0.711,0.086 0.473,-0.282 0.707,-0.215 0.476,-0.062 0.473,-0.68 0.707,-0.359 0.238,0.121 0.239,-0.016 0.234,0.375 0.238,0.762 0.473,0.164 0.945,0.84 0.711,2.402 0.473,1.207 0.234,0.336 0.239,0.536 0.238,0.167 0.473,0.856 0.472,0.351 0.473,1.172 0.238,0.188 0.473,-0.012 0.472,0.324 0.473,0.008 0.473,0.535 0.711,0.328 0.945,0.184 0.945,0.012 0.239,0.027 0.234,0.168 1.184,0.102 0.711,0.543 0.71,0.07 0.473,0.066 0.945,-0.172 0.239,-0.21 1.179,-0.02 0.239,0.477 1.183,-1.235 0.235,-0.074 0.238,-0.348 0.238,-0.019 0.473,-0.543 0.473,-0.211 0.71,-1.324 0.707,0.152 0.711,-0.098 0.473,-0.691 0.945,-0.457 0.239,-0.098 0.472,0.676 0.473,2.133 0.473,0.16 0.238,0.109 0.473,-0.117 0.238,0.617 0.945,0.055 0.235,-0.297 0.472,-0.074 0.477,-0.051 0.234,-0.109 0.945,0.066 0.477,0.301 0.945,-0.078 0.235,-0.109 0.238,-0.606 0.473,-0.238 0.472,-0.106 0.473,-0.32 0.238,0.012 0.711,-0.282 0.707,0.067 0.711,0.051 0.238,-0.098 0.473,-0.316 0.707,0.07 1.422,0.008 0.473,-0.668 0.234,-0.953 0.238,-1.571 0.239,-0.004 0.707,-0.379 0.238,0.012 0.234,-1.058 0.711,-0.09 0.239,-0.25 1.656,-0.149 0.707,-0.09 0.472,-0.898 0.95,0.344 0.234,-0.352 0.238,-0.051 0.235,-0.175 1.183,-0.078 0.473,-0.079 0.476,0.2 1.18,-0.805 0.949,0.285 0.473,-0.312 0.234,0.129 0.711,2.007 0.239,0.153 0.472,-0.164 0.235,-0.012 0.472,1.008 0.477,-0.067 0.473,-0.097 0.234,0.164 0.711,1.113 0.711,0.066 0.234,0.157 0.711,1.351 0.473,0.082 h 0.711 l 0.472,0.61 0.235,0.101 0.711,0.039 1.183,1.656 0.946,0.418 0.711,-0.082 0.472,-0.16 0.711,0.508 0.707,-0.207 0.238,-0.059 0.473,0.731 0.473,-0.137 0.472,-0.898 0.477,0.843 0.707,1.985 0.238,0.219 0.235,-0.004 0.711,1.328 0.711,0.836 1.417,1.125 0.239,0.031 0.234,-0.086 0.711,0.68 0.238,0.429 0.235,0.149 0.238,0.465 0.473,0.535 0.945,1.172 0.945,0.554 0.95,0.969 0.707,0.563 1.656,1.496 0.238,0.129 0.707,0.761 0.238,0.129 0.946,0.996 0.949,0.168 0.473,0.008 0.472,0.207 0.473,0.16 0.473,0.094 0.71,0.098 0.946,0.695 0.711,0.426 0.472,0.219 1.418,0.582 0.711,-0.153 2.368,-0.636 0.707,0.031 0.949,-0.172 0.707,-0.074 0.949,-0.446 1.418,-0.285 0.473,-0.226 0.472,-0.133 0.711,-0.305 1.184,-0.582 0.707,-0.711 0.476,-0.242 0.473,-0.504 0.473,-0.222 1.656,-1.911 0.234,-0.144 0.711,-0.067 0.946,-0.25 0.472,0.102 0.477,-0.145 0.707,-0.437 0.472,-0.055 0.477,-0.328 0.234,-0.082 0.946,0.125 0.472,-0.262 0.95,-0.523 3.074,-1.094 0.711,0.246 0.472,-0.281 1.418,0.188 0.239,0.214 0.711,1.004 0.707,0.735 1.422,1.246 2.128,1.265 0.473,0.504 0.711,0.465 0.473,0.156 0.945,0.684 0.711,0.328 0.234,0.18 2.84,0.347 0.473,0.012 0.472,0.125 0.473,0.106 0.711,-0.2 0.473,-0.039 0.472,-0.371 0.95,-0.625 0.234,-0.121 0.238,-0.289 1.184,-0.746 0.234,-0.199 0.473,-0.129 1.422,-0.754 0.234,-0.035 0.949,-1.106 2.602,-2.343 0.234,-0.434 0.473,-0.129 0.949,0.117 0.473,-0.179 1.183,-0.047 0.473,-0.207 0.707,-0.129 0.238,0.156 1.184,-0.238 0.711,0.144 0.473,-0.222 0.234,0.027 0.473,0.402 0.476,-0.144 0.473,-0.074 0.945,0.183 0.711,-0.254 0.473,0.153 0.472,0.105 0.711,-0.254 0.473,0.145 0.234,0.121 0.239,-0.004 0.711,-0.246 0.472,0.137 0.473,0.156 0.707,-0.293 0.476,0.176 0.235,0.125 0.238,-0.024 0.473,-0.289 0.472,0.051 0.473,0.258 0.238,-0.012 0.473,-0.258 0.473,0.024 0.472,0.226 0.473,-0.101 0.473,-0.094 0.472,0.183 0.239,0.133 0.472,-0.097 0.473,-0.082 0.949,0.523 0.473,-0.184 0.472,0.129 0.473,0.325 0.473,-0.063 0.238,-0.082 0.707,0.309 0.238,0.152 0.473,-0.078 0.473,-0.059 0.472,0.219 0.473,0.176 0.477,-0.145 0.707,0.25 0.238,0.133 0.472,-0.137 0.473,-0.105 0.473,0.164 0.472,0.109 0.711,-0.187 0.473,0.187 0.473,0.199 0.711,-0.062 0.472,0.23 0.473,0.282 0.473,-0.102 0.711,0.27"
style="fill:none;stroke:#1f77b4;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path688"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g690"><g
id="g692"><g
id="g694"
clip-path="url(#clipPath698)"><g
id="g700"><g
id="g702"
transform="scale(1,-1)"><path
d="m 130.031,-86.266 0.473,0.235 h 0.949 l 1.418,0.16 0.238,-0.07 0.707,0.296 0.473,0.219 0.477,-0.054 1.179,0.394 0.711,-0.051 1.184,0.313 0.472,0.008 1.184,0.375 0.473,-0.008 0.945,0.219 0.473,-0.266 0.476,0.133 0.707,0.332 0.711,-0.16 0.946,0.277 0.472,-0.199 0.711,0.207 0.473,0.008 0.472,-0.188 0.711,0.176 0.239,0.105 0.472,-0.136 0.473,-0.102 0.473,0.156 0.238,0.145 1.18,-0.055 0.711,0.285 0.71,-0.179 0.473,0.175 0.473,0.11 0.711,-0.121 1.183,0.187 0.235,-0.051 0.472,0.258 0.473,0.356 0.238,0.043 0.473,-0.215 0.473,0.078 0.711,0.23 0.711,-0.191 1.179,0.207 0.477,-0.066 0.472,0.207 0.473,0.187 0.711,-0.062 0.945,0.382 0.707,-0.113 0.477,0.207 0.473,0.16 0.707,-0.089 0.238,0.023 0.711,0.312 0.707,-0.07 0.949,0.211 0.707,-0.051 0.949,0.215 0.473,-0.25 0.707,0.074 0.238,0.051 1.184,-0.211 0.711,0.238 0.707,-0.074 0.711,0.086 0.472,-0.058 0.473,-0.11 1.184,0.004 0.472,-0.117 0.946,0.101 0.711,-0.324 0.472,0.024 0.473,-0.028 0.949,-0.304 0.707,0.125 0.473,-0.129 0.476,0.074 0.707,0.18 0.711,-0.176 0.473,0.168 0.473,0.082 0.472,-0.129 1.422,0.121 0.473,-0.129 1.418,-0.219 0.711,0.344 0.472,0.149 0.473,-0.114 0.711,0.282 0.473,0.195 0.711,0.004 0.945,0.508 0.711,0.097 0.473,0.274 0.234,0.289 0.238,0.09 0.945,-0.036 0.95,0.461 0.234,0.004 0.473,0.258 1.183,0.422 0.239,0.094 0.707,0.586 0.472,0.109 h 0.239 l 1.183,0.75 0.711,0.223 0.473,0.351 0.472,0.203 0.473,-0.031 0.711,0.301 0.234,0.437 0.473,0.11 0.473,0.008 0.949,0.507 0.234,-0.074 0.473,0.129 0.949,0.774 0.945,-0.008 0.711,0.199 1.418,-0.195 0.711,-0.141 0.235,0.039 0.472,0.242 0.477,0.137 0.707,-0.258 0.473,0.219 0.238,0.117 0.945,-0.16 0.238,-0.023 0.708,0.824 0.476,-0.094 0.473,0.016 0.472,0.195 0.235,0.238 0.476,-0.14 0.235,-0.289 0.472,0.062 0.95,0.336 0.707,0.527 0.472,0.106 0.473,-0.11 0.238,0.207 0.238,-0.21 0.707,0.535 0.473,-0.039 0.477,0.199 0.472,0.246 0.235,0.141 0.238,-0.043 0.234,0.093 0.477,0.403 0.234,0.07 0.473,0.363 1.184,0.395 0.711,0.508 0.234,-0.106 0.473,0.121 1.183,0.602 0.949,0.156 0.235,0.074 0.945,-0.164 0.949,0.262 0.473,-0.078 0.234,0.25 0.239,-0.086 0.472,0.027 0.473,-0.012 0.238,0.063 0.473,0.691 0.234,0.27 0.477,0.148 0.707,-0.285 0.472,0.016 0.473,-0.16 1.184,-0.274 0.472,-0.32 0.477,-0.219 0.473,-0.367 0.472,-0.191 1.418,-0.711 0.473,-0.219 1.656,-1.176 0.238,-0.266 1.184,-0.136 0.473,-0.313 0.472,-0.207 0.711,0.063 0.235,-0.348 0.472,-0.371 0.473,-0.406 0.476,-0.285 0.473,-1.332 0.473,-0.981 0.234,-0.094 0.238,0.207 0.946,0.149 0.949,0.496 0.473,0.105 1.418,0.813 1.183,0.148 0.711,0.047 8.043,0.957 0.711,-0.23 0.707,-0.032 0.945,-0.347 0.477,-0.039 0.945,-0.317 1.184,-0.203 0.707,0.133 0.711,-0.141 0.472,0.106 1.184,-0.41 0.711,0.097 2.363,-0.437 0.477,-0.027 0.473,0.035 0.707,-0.2 0.472,-0.105 0.477,-0.102 0.945,-0.187 0.711,-0.109 0.707,-0.145 1.422,-0.145 0.473,-0.21 0.945,0.011 0.711,-0.293 0.707,0.227 0.949,-0.52 0.707,0.348 0.238,-0.004 0.473,-0.203 0.473,0.238 0.472,0.289 0.95,0.082 0.945,0.535 0.711,0.04 0.707,0.367 0.949,-0.145 0.707,0.348 1.184,-0.195 0.472,0.171 0.239,-0.011 0.472,-0.262 0.235,-0.016 0.949,0.411 0.234,0.027 0.473,-0.074 0.476,0.324 0.473,-0.016 0.707,-0.371 0.711,0.406 0.238,0.02 0.473,-0.387 1.184,0.199 0.707,-0.531 0.711,0.012 0.945,-0.578 0.711,-0.004 0.473,-0.277 0.472,-0.243 0.473,0.121 0.711,-0.312 0.472,-0.367 0.711,0.047 0.235,-0.028 0.476,-0.426 0.946,0.329 0.234,0.125 0.711,-0.411 0.238,0.149 0.707,-0.242 0.711,-0.813 0.711,-0.039 0.235,-0.152 0.71,-0.903 0.473,0.235 0.473,-0.445 0.472,-0.676 0.239,0.422 0.472,0.457 0.946,2.16 0.238,0.441 0.473,0.356 0.711,1.211 0.472,0.714 0.473,0.278 1.183,1.812 0.473,0.274 0.945,1.355 0.473,0.406 0.238,0.133 0.946,1.11 0.238,0.199 0.473,0.105 0.945,0.95 0.473,0.41 0.238,0.16 1.183,1.426 0.707,0.57 0.95,0.992 1.656,1.016 0.707,-0.117 0.473,0.234 0.476,0.191 0.707,-0.129 0.473,0.27 0.473,0.234 0.476,-0.082 0.473,0.172 0.707,0.395 0.476,-0.117 0.473,0.171 0.234,0.2 0.711,0.05 h 0.473 l 0.473,0.239 0.472,0.242 0.711,-0.055 0.473,0.235 0.473,0.191 0.71,-0.09 0.946,0.481 0.711,-0.145 0.472,0.246 0.473,0.113 0.711,-0.144 0.473,0.207 0.472,0.191 0.711,-0.074 0.946,0.352 0.71,-0.188 1.184,0.074 0.473,-0.109 0.945,0.465 0.473,-0.231 0.472,-0.015 0.711,0.058 0.946,-0.429 0.711,0.168 0.71,-0.211 0.473,0.133 0.234,0.132 h 0.239 l 0.472,-0.25 0.473,0.032 0.711,0.289 0.711,-0.211 0.945,0.355 0.711,-0.25 0.473,0.125 0.473,0.09 0.472,-0.215 0.473,0.031 0.711,0.219 0.472,-0.094 0.473,0.27 0.473,0.391 0.238,0.066 0.473,-0.309 0.472,0.071 0.711,0.445 0.707,0.109 1.184,0.579 0.473,-0.004 0.472,0.195 0.477,0.16 0.707,-0.098 0.472,0.208 0.477,0.183 0.707,-0.133 0.473,0.2 0.476,0.179 0.707,-0.121 0.473,0.211 0.473,0.16 0.476,-0.152 0.707,0.238 0.473,0.16 0.476,-0.117 0.707,0.219 0.239,0.097 0.234,-0.031 0.477,-0.343 0.472,0.039 0.473,0.211 0.473,-0.129 0.472,-0.172 0.711,-0.059 1.184,-0.254 0.472,-0.039 0.473,0.063 0.473,-0.106 1.183,0.121 0.473,-0.148 0.945,0.133 0.239,0.027 0.234,-0.105 0.949,0.191 0.473,0.125 0.473,-0.148 0.711,0.062 0.472,0.102 0.473,-0.125 2.363,0.039 0.238,0.168 0.473,-0.153 0.711,-0.023 0.711,0.129 0.473,-0.059 0.234,0.07 0.473,0.411 0.476,-0.114 0.473,-0.047 0.945,0.204 0.711,-0.239 0.473,0.164 0.472,0.114 0.711,-0.266 0.473,0.09 0.234,0.094 0.473,-0.227 0.477,-0.211 0.472,0.086 0.473,0.109 0.707,-0.296 0.476,0.121 0.473,0.097 0.707,-0.297 0.477,0.168 0.472,0.153 0.473,-0.246 0.473,0.097 0.711,0.364 0.707,-0.122 0.472,0.254 0.239,0.161 0.472,-0.055 0.473,-0.031 0.238,0.058 0.473,0.336 0.238,0.043 0.473,-0.133 0.472,0.141 0.473,0.336 0.238,0.008 0.473,-0.219 0.473,0.058 0.707,0.231 0.711,-0.156 0.472,0.179 0.473,0.157 0.711,-0.133 0.473,0.172 0.472,0.14 0.477,-0.164 0.472,0.063 0.473,0.242 0.473,-0.078 0.472,-0.082 0.473,0.117 0.238,0.129 0.473,-0.106 0.473,-0.136 0.472,0.109 0.239,0.113 0.472,-0.144 0.473,-0.153 0.473,0.016"
style="fill:none;stroke:#ff7f0e;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path704"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g706"><g
id="g708"><g
id="g710"
clip-path="url(#clipPath714)"><g
id="g716"><g
id="g718"
transform="scale(1,-1)"><path
d="m 130.031,-84.121 0.711,0.246 0.473,-0.047 0.473,-0.035 1.183,0.012 0.238,-0.059 0.707,0.305 0.473,0.207 1.184,-0.016 0.472,0.16 h 0.711 l 1.184,0.399 0.472,0.031 0.946,0.395 0.711,-0.004 0.945,0.297 0.473,-0.18 0.476,0.058 0.707,0.223 0.711,-0.234 0.473,0.136 0.473,0.094 0.472,-0.187 0.949,0.3 1.418,-0.07 0.239,0.082 1.179,-0.191 0.477,0.191 0.234,0.352 0.711,-0.008 1.184,0.098 0.472,-0.125 0.473,0.089 0.235,0.098 1.421,-0.09 0.473,0.032 0.711,-0.168 0.473,0.117 0.472,0.074 0.711,-0.234 0.473,0.097 0.473,0.086 0.472,-0.18 0.711,0.239 0.473,0.136 0.945,0.016 0.711,0.328 0.711,-0.027 0.945,0.367 0.707,-0.043 0.239,-0.258 0.711,0.258 0.707,-0.066 1.183,0.48 0.473,0.051 0.949,0.34 0.473,-0.031 1.418,0.382 0.472,-0.039 1.184,0.106 0.473,-0.039 0.949,0.246 0.707,-0.149 0.711,0.035 0.472,-0.062 0.473,-0.109 0.473,0.058 0.472,0.028 0.711,-0.235 0.946,0.094 0.711,-0.305 0.472,0.067 0.239,0.05 0.472,-0.222 0.473,-0.227 0.473,0.043 0.238,0.074 1.183,-0.23 0.707,0.121 0.711,-0.238 h 0.239 l 0.472,0.25 0.473,-0.09 0.473,-0.02 0.945,0.215 0.711,-0.234 1.656,0.004 0.473,0.187 0.472,0.172 0.711,-0.105 0.473,0.199 0.473,0.18 0.711,-0.098 0.945,0.445 0.711,0.012 0.473,0.238 0.234,0.27 0.238,0.09 0.945,-0.114 0.711,0.328 0.473,-0.109 0.711,0.199 0.234,0.2 0.473,0.054 0.238,-0.066 0.473,0.226 0.711,0.469 0.473,0.02 1.418,0.855 0.238,0.031 1.183,0.739 0.707,0.046 0.477,0.208 0.234,0.437 0.473,0.133 0.473,0.035 0.949,0.52 0.473,-0.086 0.945,0.363 0.238,0.359 0.945,0.043 0.473,0.246 0.711,0.051 0.473,0.035 0.234,0.301 0.949,-0.035 0.235,0.055 0.711,0.89 0.238,0.078 0.234,0.582 0.239,0.075 0.234,0.265 0.238,0.559 0.473,0.336 0.473,0.074 0.238,0.73 0.472,-0.05 0.708,0.586 0.476,0.144 0.945,0.793 0.235,0.316 0.949,0.075 1.184,0.715 0.945,0.761 0.473,0.114 0.234,0.062 0.238,0.227 0.473,0.136 0.472,0.332 0.711,0.067 1.184,0.453 0.234,-0.113 0.239,0.324 0.711,0.312 0.472,0.207 0.473,-0.058 0.234,0.109 0.239,-0.242 0.472,0.519 0.473,-0.015 0.473,0.07 0.238,0.086 0.238,-0.289 0.473,0.289 0.472,-0.019 0.946,0.242 0.945,-0.395 0.949,-0.004 0.473,-0.07 0.234,0.137 0.711,-0.196 0.239,0.028 0.472,1.136 0.473,0.524 0.234,0.195 0.477,0.899 0.234,0.062 0.238,-0.097 0.235,0.624 0.472,0.227 0.239,-0.043 0.472,0.953 0.946,-0.004 0.472,-0.23 0.239,0.152 0.711,-0.215 0.234,0.243 0.238,0.058 0.235,0.18 0.238,-0.043 0.945,-0.727 0.239,0.012 0.234,0.609 0.238,0.18 0.235,-0.043 0.238,0.41 0.238,0.793 0.473,-0.019 0.234,0.324 0.238,-0.02 0.235,0.289 0.238,0.086 0.238,0.336 0.473,0.164 0.707,-0.101 0.477,0.39 0.945,0.754 0.473,-0.117 0.234,0.199 0.476,-0.332 0.473,0.535 0.235,-0.007 0.472,-0.754 0.238,-0.016 0.239,0.192 0.234,-0.188 0.238,0.356 0.473,-0.04 0.473,-0.597 0.472,0.211 0.239,0.629 0.234,0.297 0.473,1.027 0.472,0.433 0.239,0.403 0.238,0.043 0.473,0.433 0.472,0.114 0.473,0.98 0.238,0.152 0.473,-0.027 0.472,-0.269 0.235,-0.036 0.476,-0.527 0.473,0.297 0.234,-0.137 0.239,0.02 0.711,-0.383 0.707,-0.156 0.945,-0.071 0.238,-0.195 0.239,-0.039 0.234,-0.445 0.473,0.054 0.472,0.282 0.477,-0.203 0.472,-0.723 0.946,-0.07 0.472,-0.418 0.239,-0.293 0.707,-0.102 0.238,-0.101 0.234,0.078 0.239,0.566 1.656,-2.406 0.238,-0.051 0.473,-0.824 0.473,-0.41 0.71,-1.993 0.707,0.118 0.473,-0.098 0.238,-0.012 0.473,-1.051 0.711,-0.707 0.473,-0.265 0.472,1.105 0.473,3.207 0.238,0.063 0.473,0.363 0.473,-0.129 0.238,0.863 0.473,-0.05 0.472,0.097 0.235,-0.394 0.472,-0.098 0.477,-0.047 0.234,-0.133 0.945,0.047 0.477,0.407 1.18,-0.09 0.238,-0.817 0.473,-0.293 0.472,0.008 0.473,-0.351 h 0.238 l 0.711,-0.325 0.235,0.09 0.71,-0.043 0.473,0.067 0.238,-0.078 0.235,-0.27 0.238,-0.098 0.945,-0.015 1.184,-0.098 0.473,-1.047 0.234,-1.433 0.238,-2.614 0.239,-0.089 0.707,-1.083 0.238,-0.003 0.234,-2.008 0.477,-0.067 0.234,-0.297 0.239,-0.687 0.945,-0.481 0.711,-0.05 0.707,0.062 0.472,-1.73 0.711,0.105 0.239,0.137 0.234,-0.645 0.238,0.059 0.235,-0.387 0.711,-0.418 0.472,-0.14 0.239,-0.098 0.71,0.258 0.235,-0.324 0.238,-0.047 0.945,-0.633 0.711,0.156 0.473,-0.273 1.184,0.301 0.707,-0.344 0.711,0.031 0.945,-0.309 0.473,0.118 0.711,-0.161 0.472,-0.085 0.473,0.109 0.711,-0.164 0.472,-0.258 0.946,-0.328 0.476,-0.297 0.235,0.051 0.238,-0.188 0.234,0.078 0.239,-0.101 0.234,0.058 0.477,-0.269 1.179,0.137 0.711,-0.696 0.711,-0.07 0.473,-0.484 0.472,-0.547 0.473,0.168 0.473,-0.422 0.472,-0.61 0.239,0.504 0.472,0.414 0.946,2.372 0.238,0.464 0.473,0.43 0.472,1.16 0.711,1.211 0.473,0.242 1.183,1.868 0.473,0.253 1.184,1.641 0.472,0.234 0.946,1.114 0.238,0.183 0.473,1.043 0.234,0.235 0.238,0.511 0.946,0.743 0.238,0.128 1.418,1.504 1.422,1.274 1.656,0.637 0.707,-0.235 0.473,0.094 0.238,0.09 0.473,-0.223 0.472,-0.18 0.473,0.157 0.473,0.113 0.476,-0.203 0.473,0.035 0.707,0.273 0.711,-0.203 0.238,0.039 0.234,0.172 0.711,-0.062 0.239,-0.102 0.472,0.102 0.473,-0.336 0.234,0.008 0.477,-0.438 0.473,0.016 0.707,0.289 0.472,-0.27 1.422,0.063 0.473,-0.11 0.472,0.235 0.239,0.105 0.472,-0.14 0.235,-0.098 0.476,0.133 0.707,0.351 0.711,-0.074 0.473,0.227 0.473,0.175 0.71,-0.187 0.473,0.172 0.238,0.125 0.473,-0.125 0.234,-0.125 0.473,0.023 0.477,0.207 0.472,-0.168 0.235,-0.175 0.238,0.019 0.234,-0.117 0.711,-0.02 0.946,-0.617 0.711,0.164 0.71,-0.324 0.473,0.109 0.234,0.137 0.239,-0.023 0.472,-0.336 0.473,-0.02 0.473,0.281 0.238,-0.003 0.711,-0.27 0.473,0.266 0.234,0.148 0.473,-0.117 0.238,-0.098 0.473,0.235 0.472,0.414 0.239,0.043 0.472,-0.227 0.711,0.418 0.473,0.258 0.472,-0.168 0.473,0.223 0.473,0.406 0.472,-0.012 0.239,-0.074 0.472,0.183 0.711,0.567 0.707,0.187 1.184,0.723 0.473,0.043 0.472,0.246 0.477,0.231 0.472,-0.11 0.473,0.164 0.711,0.539 0.473,-0.09 0.707,0.45 0.476,0.261 0.707,-0.05 0.946,0.351 0.476,-0.254 0.473,0.071 0.473,0.308 0.472,-0.156 0.238,-0.113 0.473,0.054 0.473,0.258 0.234,-0.004 0.477,-0.301 0.472,0.063 0.473,0.238 0.473,-0.117 0.472,-0.164 0.711,-0.004 1.184,-0.23 0.472,-0.032 0.473,0.071 0.473,-0.094 1.418,0.035 1.656,-0.254 0.711,-0.121 0.945,-0.055 0.473,-0.125 0.711,0.082 0.238,-0.007 0.473,-0.192 2.363,-0.051 0.238,0.176 0.239,-0.027 0.472,-0.188 0.707,0.071 0.477,0.097 0.473,-0.086 0.234,0.071 0.473,0.441 0.476,-0.109 0.473,-0.055 0.945,0.242 0.473,-0.265 0.472,0.074 0.473,0.289 0.238,0.012 0.711,-0.258 0.235,0.09 0.472,0.554 0.239,0.266 0.472,0.113 1.184,1.215 0.707,0.066 0.476,0.438 0.235,0.352 0.472,0.086 0.239,-0.083 0.234,0.075 0.949,0.64 0.473,-0.191 0.473,0.105 0.711,0.344 0.707,-0.117 0.238,0.098 0.711,0.632 0.945,0.254 0.946,0.547 0.472,0.028 0.473,0.238 0.476,0.207 0.473,0.012 1.18,0.543 0.949,-0.301 0.473,0.023 0.472,-0.316 0.473,-0.278 0.238,-0.027 0.707,0.188 0.711,-0.497 0.473,0.106 0.472,0.102 0.477,-0.286 0.473,0.114 0.707,0.57 0.711,0.031 1.183,0.465 0.235,-0.09 0.476,0.067 0.235,-0.028"
style="fill:none;stroke:#2ca02c;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path720"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g722"><g
id="g724"><g
id="g726"
clip-path="url(#clipPath730)"><g
id="g732"><g
id="g734"
transform="scale(1,-1)"><path
d="m 130.031,-80.16 0.711,0.055 2.129,-0.204 0.473,-0.214 1.422,-0.329 1.418,-0.406 0.711,-0.269 0.707,-0.098 0.71,-0.359 1.184,-0.282 0.473,-0.23 0.945,-0.176 0.711,-0.48 1.184,-0.348 0.472,-0.32 1.184,-0.442 0.234,-0.203 0.477,-0.066 0.472,-0.078 0.473,-0.352 0.473,-0.246 0.234,-0.074 0.711,0.312 0.711,-0.062 0.473,0.254 0.238,0.152 0.234,0.477 0.473,0.019 0.711,0.25 0.473,0.219 0.71,-0.078 0.473,0.218 0.473,0.208 0.711,0.074 0.945,0.484 0.473,-0.023 0.472,0.203 0.711,0.469 0.473,-0.032 0.711,0.328 0.234,0.188 1.422,0.25 0.473,0.207 0.711,0.062 0.472,0.278 0.473,0.285 0.711,0.051 0.945,0.519 1.184,-0.148 0.473,0.191 0.707,-0.058 0.476,0.168 0.473,0.191 0.707,-0.012 0.711,0.231 1.183,-0.043 0.711,0.187 0.707,-0.14 0.239,0.035 0.472,0.277 1.184,-0.094 0.711,0.25 0.707,-0.046 0.711,0.136 0.472,-0.019 0.473,-0.09 0.945,0.168 0.477,-0.277 0.473,-0.043 0.472,0.117 1.418,-0.293 h 0.473 l 0.711,-0.254 2.129,0.25 0.472,0.199 0.711,-0.133 0.473,0.297 0.473,0.231 0.711,-0.028 0.945,0.574 0.945,0.098 0.477,0.18 0.472,0.086 0.235,0.008 0.949,0.695 0.473,0.117 0.472,0.156 1.184,0.668 0.473,0.196 0.945,0.707 0.711,0.277 1.183,0.672 0.707,0.14 0.711,0.301 0.946,0.09 0.945,0.258 0.477,0.016 1.179,0.21 0.239,-0.058 1.418,0.441 0.476,0.075 2.129,0.324 0.473,0.078 0.945,-0.102 0.711,0.117 0.473,-0.183 0.472,0.098 0.946,0.046 0.71,-0.046 0.711,0.207 2.129,-0.118 1.418,0.274 0.473,-0.012 0.945,0.172 0.949,-0.105 0.946,0.234 0.711,-0.027 0.707,0.031 0.949,-0.196 0.945,0.032 0.711,-0.063 0.473,0.125 1.183,-0.109 0.707,0.105 0.711,-0.175 1.184,0.16 1.184,0.402 1.418,-0.242 0.472,0.015 0.473,-0.156 1.656,-0.105 0.473,0.07 0.711,0.02 0.711,-0.145 1.183,0.27 h 0.707 l 0.95,0.183 0.707,0.02 0.472,0.109 3.313,-0.137 0.711,-0.281 0.472,-0.082 0.711,0.113 0.711,-0.031 0.946,0.129 0.945,-0.012 0.472,0.141 0.239,-0.008 0.472,-0.219 1.184,0.043 0.707,-0.125 1.422,0.067 0.473,-0.114 0.71,0.055 0.708,-0.086 0.472,0.071 0.477,0.074 0.707,0.035 0.711,0.141 0.711,0.007 1.418,0.477 1.183,-0.074 0.473,-0.09 1.656,-0.031 1.418,-0.239 1.184,-0.011 1.183,-0.18 4.496,-0.117 0.235,0.054 0.238,0.184 0.473,0.805 0.472,0.238 0.711,0.223 3.547,0.347 0.949,-0.004 0.473,0.11 3.785,-0.203 0.707,-0.137 0.477,-0.059 0.945,-0.156 0.711,-0.074 0.473,-0.262 0.472,-0.414 0.711,-1.062 0.473,-0.372 0.473,-0.414 0.945,-0.109 0.711,-0.406 0.707,0.289 0.476,-0.262 0.473,-0.301 0.473,0.235 1.183,-0.446 0.707,0.317 0.239,-0.008 0.234,-0.133 0.477,0.059 0.707,0.394 0.472,-0.058 0.477,-0.055 0.707,0.332 0.949,-0.25 0.707,0.313 1.184,-0.247 0.472,0.157 0.239,-0.028 0.472,-0.3 0.473,0.062 0.473,0.152 0.472,-0.105 0.239,-0.156 0.234,-0.008 0.476,0.273 0.473,-0.054 0.707,-0.594 0.711,0.367 h 0.238 l 0.473,-0.387 0.473,0.2 0.472,0.191 0.239,-0.043 0.707,-0.504 0.711,0.059 0.945,-0.543 0.711,0.058 0.473,-0.289 0.472,-0.258 0.473,0.137 0.472,-0.113 0.711,-0.598 0.711,0.059 0.235,-0.035 0.476,-0.465 0.707,0.203 0.473,0.258 0.711,-0.36 0.238,0.149 0.473,-0.047 0.234,-0.113 0.711,-0.817 0.711,0.008 0.235,-0.141 0.71,-0.91 0.473,0.25 0.473,-0.422 0.472,-0.703 0.477,0.586 0.234,0.258 0.946,2.024 0.472,0.617 0.239,0.191 0.711,1.16 0.472,0.641 0.473,0.406 0.711,1.418 0.472,0.742 0.473,0.352 0.945,1.433 0.473,0.442 0.238,0.148 0.946,1.188 0.238,0.191 0.473,0.133 1.89,1.898 0.711,0.829 0.473,0.414 0.472,0.425 0.95,1.11 1.656,0.969 0.707,-0.083 0.473,0.208 0.476,0.179 0.707,-0.074 0.946,0.391 0.476,-0.141 0.473,0.133 0.707,0.371 0.711,-0.082 1.183,0.305 0.239,-0.063 0.472,0.18 0.707,0.375 0.711,-0.09 0.473,0.23 0.473,0.176 0.472,-0.109 0.477,0.183 0.707,0.36 0.949,-0.149 0.473,0.25 0.472,-0.093 0.473,-0.059 1.184,0.367 0.472,-0.008 1.184,0.293 0.234,-0.097 0.711,0.172 0.473,0.093 0.711,-0.222 0.472,0.121 0.473,0.058 0.473,-0.222 0.238,0.027 0.473,-0.117 0.234,0.031 0.711,-0.375 0.473,-0.246 0.711,0.09 0.71,-0.285 0.473,0.089 0.234,0.09 0.477,-0.214 0.473,-0.2 0.472,0.129 0.235,0.102 0.472,-0.141 0.477,-0.152 0.473,0.215 0.234,0.136 0.238,-0.015 0.711,-0.289 0.473,0.078 0.234,0.094 0.473,-0.188 0.476,-0.191 0.473,0.062 0.473,0.055 0.707,-0.281 0.476,0.168 0.473,0.121 0.707,-0.223 0.477,0.215 0.472,0.226 0.707,0.09 0.711,0.418 0.473,0.266 0.473,0.051 1.183,0.437 0.238,-0.059 0.473,0.153 0.711,0.332 0.473,-0.164 0.472,0.16 0.711,0.332 0.707,-0.137 0.473,0.215 0.473,0.18 0.711,-0.071 0.472,0.231 0.473,0.18 0.711,-0.032 0.472,0.204 0.473,0.191 0.477,-0.219 0.707,0.199 0.472,0.106 0.711,-0.18 0.473,0.09 0.945,-0.281 1.422,-0.082 0.473,-0.145 1.656,-0.113 0.711,-0.016 0.473,0.082 0.472,-0.117 1.418,0.098 0.711,-0.028 1.184,-0.054 0.711,0.043 0.472,0.058 0.473,-0.129 0.707,-0.007 0.238,0.168 1.418,-0.121 0.477,0.078 0.473,-0.086 0.234,0.066 0.473,0.41 0.476,-0.094 0.473,-0.042 0.945,0.332 0.711,-0.188 0.473,0.18 0.472,0.121 0.711,-0.211 0.473,0.141 0.234,0.093 0.473,-0.168 0.477,-0.175 0.234,0.003 0.711,0.258 0.707,-0.258 0.476,0.145 0.235,0.121 0.238,-0.008 0.707,-0.25 0.477,0.172 0.472,0.086 0.707,-0.254 0.477,0.149 0.234,0.129 0.473,-0.122 0.473,-0.117 0.472,0.145 0.239,0.125 0.472,-0.129 0.473,-0.106 0.473,0.141 0.238,0.121 0.238,-0.019 0.707,-0.379 0.473,0.148 0.238,0.113 0.473,-0.168 0.472,-0.148 0.473,0.137 0.238,0.125 0.473,-0.137 0.473,-0.117 0.472,0.156 0.239,0.129 0.472,-0.094 0.473,-0.117 0.238,0.031 0.473,0.344 0.472,-0.113 0.473,-0.082 0.473,0.156 0.472,0.09 0.477,-0.09 0.473,0.246 0.707,0.418 0.711,-0.035 0.472,0.258 0.473,0.172 0.711,-0.122 0.473,0.125"
style="fill:none;stroke:#d62728;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path736"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g738"><g
id="g740"><g
id="g742"
clip-path="url(#clipPath746)"><g
id="g748"><g
id="g750"
transform="scale(1,-1)"><path
d="m 130.031,-162.984 0.239,-0.45 0.71,0.375 0.473,0.075 0.235,-0.297 0.238,0.074 0.234,-0.074 0.238,0.074 0.239,-0.461 0.472,-0.078 0.473,2.219 0.473,0.32 0.234,-0.125 0.238,0.191 0.239,-0.129 0.234,-0.324 h 0.238 l 0.473,-0.265 0.234,0.136 0.477,-0.339 0.234,-0.344 0.473,-0.215 0.238,0.355 0.235,-0.07 0.238,-0.355 0.472,-0.075 0.239,-0.593 0.234,-0.231 0.238,0.156 0.235,-0.55 0.238,-0.078 0.238,0.316 0.473,1.754 0.707,1.644 0.238,0.293 0.235,0.055 0.238,0.23 0.238,0.055 0.473,0.387 0.473,0.105 0.234,-0.215 h 0.238 l 0.239,0.325 0.472,0.105 0.473,-0.105 0.234,-0.27 0.239,0.16 0.238,0.321 1.89,0.511 0.239,0.395 0.472,-1.442 0.473,-0.109 0.234,0.219 0.239,-0.219 h 0.711 l 0.234,1.207 0.473,-0.051 0.476,0.051 0.235,-0.152 0.238,0.051 0.234,0.347 0.238,-0.199 0.235,-0.047 0.711,0.77 h 0.711 l 0.234,0.14 0.238,0.274 0.235,-0.18 1.183,-2.605 0.473,-0.059 0.477,0.34 0.234,0.168 0.238,-0.168 h 0.235 l 0.238,0.277 0.234,0.055 0.95,-0.442 0.945,0.223 0.234,-0.223 0.477,0.165 0.234,0.382 h 0.238 l 0.235,0.215 0.238,-0.265 0.473,0.371 0.238,-0.266 0.234,0.316 0.239,1 0.234,0.469 0.711,-0.328 0.711,0.141 0.234,-0.973 0.239,0.352 0.234,-0.2 0.238,0.2 0.235,0.574 0.476,0.418 0.235,-0.231 0.238,0.137 0.234,0.492 0.473,-0.582 0.238,0.363 0.238,0.903 0.235,0.285 0.238,0.039 0.707,-0.242 0.473,0.242 0.711,0.703 0.238,-0.191 0.234,0.117 0.239,-0.191 0.234,0.492 0.238,0.222 0.473,0.11 0.238,-0.219 0.473,0.434 0.234,-0.071 0.239,0.828 0.472,-0.035 0.473,0.168 0.238,-0.101 0.234,0.066 0.239,-0.133 0.234,0.332 0.711,-0.433 0.473,-0.032 0.472,-0.136 0.239,-0.278 0.238,-0.648 0.234,-0.149 0.711,0.114 0.235,-0.039 0.238,-0.188 h 0.473 l 0.238,-0.304 0.234,0.113 0.239,-0.231 0.234,-0.523 0.949,-0.891 0.235,-0.406 0.238,0.316 0.234,0.043 0.238,-0.265 0.235,-0.848 0.476,-0.195 0.707,0.051 h 0.711 l 0.239,-0.661 0.234,0.051 0.238,0.41 0.235,0.051 0.238,-0.101 0.473,-1.5 0.711,0.171 0.472,-0.636 0.235,-0.18 0.238,-1.34 0.711,0.848 0.707,-0.32 0.238,0.445 0.234,-0.641 0.477,0.324 0.234,0.254 1.184,-0.511 0.238,0.129 0.473,-0.129 0.707,0.386 0.238,0.309 0.235,0.062 0.238,-0.121 0.238,0.059 0.235,-0.121 0.238,0.062 0.473,0.543 0.472,0.407 0.238,0.058 0.707,-0.703 0.473,0.18 0.238,-0.364 0.239,0.122 0.472,-0.122 0.235,0.063 0.472,-0.5 0.239,-0.063 0.234,0.129 0.238,-0.129 0.473,-0.523 h 0.238 l 0.707,0.715 0.239,-0.063 0.472,-0.32 0.238,0.32 0.235,0.063 0.238,-0.129 0.235,-0.254 0.238,-0.601 0.472,0.07 0.239,0.398 h 0.234 l 0.238,-0.398 0.473,-0.137 0.234,0.137 0.239,-0.278 0.472,0.61 0.239,0.199 0.234,-0.066 0.473,0.066 0.476,-0.066 0.235,-0.067 0.238,0.133 0.234,-0.133 0.239,-0.332 0.234,0.332 0.477,-0.066 0.234,0.199 0.238,0.691 0.235,-0.437 0.472,-0.387 0.473,0.324 0.238,0.379 0.473,0.121 0.238,-0.308 0.234,-0.129 0.239,0.316 0.472,-0.316 0.239,0.191 0.707,-0.254 0.238,0.317 0.234,-0.125 0.239,0.187 0.472,-0.379 0.239,0.063 0.472,-0.191 0.235,0.691 0.949,-0.309 0.234,-0.125 0.473,0.063 0.238,0.246 0.235,-0.059 0.238,-0.187 0.238,-0.516 0.234,0.067 0.473,0.449 0.711,-0.192 0.238,-0.324 1.18,0.387 0.238,-0.32 0.473,0.386 0.238,-0.257 0.235,0.507 h 0.238 l 0.707,0.305 h 0.238 l 0.238,-0.621 0.235,0.066 0.238,0.25 0.234,0.059 0.239,0.246 0.234,-0.246 0.238,-0.059 0.239,0.121 0.234,0.301 0.473,0.063 0.238,-0.301 h 0.234 l 0.239,0.359 0.238,-0.058 0.234,0.406 0.239,0.172 h 0.234 l 0.238,-0.402 0.235,0.058 0.238,-0.234 0.234,0.234 h 0.239 l 0.472,0.289 0.239,-0.347 0.234,-0.661 0.238,0.059 0.473,0.484 h 0.238 l 0.473,0.118 0.234,-0.059 0.238,-0.18 0.235,0.18 h 0.238 l 0.238,0.289 0.473,-0.348 0.234,-0.179 0.473,0.414 0.238,0.343 H 232 l 0.473,-0.519 0.472,-0.117 0.239,0.058 0.234,0.176 0.238,-0.058 0.239,0.117 0.234,-0.356 0.238,0.18 0.235,-0.297 0.238,0.297 0.945,-0.059 0.473,0.633 0.238,-0.34 0.234,0.055 0.239,-0.23 0.234,0.117 0.238,-0.176 0.239,0.059 0.234,-0.118 0.473,0.235 0.472,-0.535 0.477,-0.243 0.234,-0.062 0.239,0.183 0.472,0.063 0.235,-0.184 0.238,0.184 0.238,-0.063 0.235,-0.183 0.945,0.426 0.238,-0.243 0.235,0.364 0.476,-0.18 0.234,0.117 0.239,0.414 0.234,-0.234 h 0.238 l 0.235,-0.18 0.476,0.18 0.235,-0.059 0.238,-0.179 0.473,-0.805 0.234,0.5 0.238,-0.309 0.473,0.063 0.238,-0.063 0.235,-0.32 0.238,0.129 0.234,-0.328 0.239,-0.067 0.472,-0.265 0.473,-0.207 0.238,-0.492 h 0.235 l 0.238,-0.293 0.472,0.218 0.711,-0.902 0.235,0.684 0.238,0.074 0.234,-0.223 0.239,0.074 0.472,0.293 0.239,0.637 h 0.234 l 0.473,0.336 0.472,-0.133 0.239,0.133 0.472,-0.199 0.473,0.199 0.238,-0.199 0.473,0.133 0.238,-0.067 0.235,-0.203 0.472,0.203 0.238,0.399 0.473,-0.2 0.238,0.133 0.235,-0.199 0.238,-0.477 0.234,-0.136 0.239,0.07 0.234,-0.07 0.238,-0.285 0.473,0.07 0.238,0.559 0.473,0.468 0.234,-0.265 0.473,0.199 0.238,0.066 0.239,-0.133 0.234,0.2 0.238,-0.133 0.235,0.133 0.238,-0.133 0.234,0.066 0.239,0.262 h 0.238 l 0.472,0.254 0.235,-0.063 0.238,0.25 0.235,-0.25 0.238,0.188 0.238,-0.125 0.473,0.492 0.234,-0.555 0.238,0.063 0.707,-0.516 h 0.239 l 0.238,-0.398 0.234,0.531 0.239,0.191 0.472,-0.39 0.711,0.066 0.235,0.133 0.238,-0.066 0.234,-0.2 h 0.239 l 0.472,-0.402 0.238,-0.141 0.235,0.071 0.472,-0.567 0.473,-0.367 0.473,0.074 h 0.238 l 0.473,0.438 h 0.238 l 0.473,0.215 0.234,-0.071 0.238,0.141 0.239,-0.5 0.234,-0.074 0.238,-0.223 0.235,-0.379 0.238,-0.078 0.473,-0.312 0.238,0.695 0.234,0.074 0.473,-0.301 0.238,0.301 0.235,0.074 0.238,-0.3 0.711,0.226 0.234,-0.074 0.238,-0.227 0.235,0.153 0.238,-0.309 0.473,-0.078 0.238,-0.316 0.945,0.238 0.235,-0.078 0.238,0.234 0.238,-0.312 0.473,-1 0.234,0.425 0.239,-0.168 0.234,0.086 0.238,-0.086 0.473,-0.519 0.238,-0.09 0.707,0.863 0.238,-0.168 0.235,0.082 0.476,-0.597 0.707,-0.539 0.239,0.09 0.234,-0.278 h 0.238 l 0.239,-0.285 h 0.234 l 0.238,0.832 0.235,-0.269 0.945,0.359 0.238,-0.18 0.239,0.532 0.472,0.085 0.235,0.336 h 0.238 l 0.473,-0.511 0.472,0.343 0.473,-0.695 h 0.238 l 0.711,-0.453 h 0.234 l 0.473,0.895 0.238,0.253 0.235,-0.086 0.238,-0.343 h 0.234 l 0.239,0.261 0.238,-0.085 0.234,0.167 0.239,0.418 0.234,0.082 0.238,-0.414 h 0.235 l 0.238,-0.253 0.238,-0.09 0.235,-0.352 1.656,-0.09 0.238,-0.179 0.235,-0.372 0.472,0.188 0.238,0.633 0.239,0.262 1.652,-0.09 0.238,-0.086 0.239,-0.625 0.234,0.269 0.711,-0.269 0.234,0.269 h 0.239 l 0.238,-0.457 0.945,-0.379 0.235,-0.394 0.476,-0.301 0.235,-0.313 h 0.472 l 0.238,0.208 h 0.473 l 0.234,-0.208 h 0.239 l 0.472,-1.453 0.473,-0.359 0.238,0.242 h 0.235 l 0.949,-2.383 0.234,-0.297 0.473,1.282 h 0.238 l 0.239,0.265 0.234,-0.132 0.238,0.265 0.235,-0.133 0.472,0.262 1.657,-0.941 0.238,-1.02 0.234,-0.465 h 0.238 l 0.239,-0.32 h 0.234 l 0.473,-0.5 0.472,-0.344 0.239,0.512 0.238,-0.168 0.234,-0.52 0.473,2.254 0.238,0.289 0.235,-0.144 0.238,0.426 0.234,0.14 1.657,1.91 h 0.238 l 0.472,1.54 0.239,0.308 0.234,0.684 0.238,-0.098 0.235,0.098 0.238,0.734 0.473,0.527 0.945,0.336 0.473,0.407 0.238,0.625 0.238,0.078 0.235,0.371 h 0.238 l 0.234,-0.149 0.239,0.075 0.234,-0.149 0.238,0.582 0.473,0.489 0.238,0.73 0.707,0.191 0.949,1.313 0.473,0.223 0.707,1.164 0.477,0.199 0.234,0.293 0.945,0.472 0.239,0.676 h 0.238 l 0.473,-0.492 h 0.234 l 0.238,0.359 1.418,0.606 0.473,0.457 0.238,0.316 0.711,-0.605 0.234,-0.082 0.473,0.691 0.238,-0.242 0.473,0.082 0.238,-0.082 0.946,0.242 1.183,-0.281 0.235,0.281 0.238,0.078 0.234,0.383 0.477,-0.226 1.18,0.566 0.238,-0.188 0.711,0.188 0.472,0.219 0.235,-0.074 0.238,0.074 0.234,-0.184 0.477,0.289 0.234,-0.144 0.711,0.109 0.473,-0.289 0.238,0.18 h 0.473 l 0.234,-0.11 0.239,-0.445 0.234,-0.117 0.473,0.117 0.238,0.555 0.711,-0.481 0.234,-0.304 0.711,0.304 0.238,0.371 0.707,-0.562 0.239,0.117 0.472,-0.078 h 0.473 l 0.711,-0.352 h 0.234 l 0.239,-0.156 0.234,0.039 0.949,-0.738 0.235,-0.434 0.238,-0.133 0.473,-0.089 0.238,-0.504 0.234,-0.047 0.238,-0.235 0.235,0.141 0.238,0.418 0.234,0.047 0.711,-0.606 0.239,0.235 h 0.234 l 0.238,-0.235 0.235,0.375 0.238,0.047 0.234,-0.281 0.711,-0.191 0.239,0.144 0.234,0.328 0.473,-0.715 0.238,-0.097 0.238,0.051 0.235,-0.102 0.238,0.297 0.234,0.094 0.473,-0.289 0.238,-0.661 0.473,0.051 0.473,1.508 0.472,-0.656 0.238,-0.098 0.235,-0.293 0.238,0.293 0.238,0.477 0.946,-0.235 0.234,0.141 0.238,0.281 0.239,0.801 0.707,0.172 0.472,0.082 0.477,0.617 h 0.234 l 0.239,0.277 h 0.472 l 0.473,0.231 0.234,0.707 0.238,0.355 0.473,0.106 0.473,-0.426 0.711,0.32 0.472,-0.429 h 0.473 l 0.473,0.429 h 0.476 l 0.235,-0.035 0.472,-0.285 0.473,-0.035 0.238,0.25 0.473,0.176 0.238,-0.176 h 0.235 l 0.238,0.176 0.945,0.242 0.473,-0.453 0.945,0.656 0.238,-0.238 0.239,-0.418 0.234,0.07 0.473,-0.07 0.472,0.035 0.239,-0.215 0.238,-0.551 0.473,0.188 0.234,0.183 0.945,-0.222 0.239,-0.149 h 0.71 l 0.473,0.332 0.235,-0.183 0.238,0.109 0.238,-0.719 0.473,-0.359 0.234,0.238 0.711,-0.32 0.238,0.164 0.235,0.355 0.711,0.27 0.234,-0.195 0.238,-0.43 0.235,-0.082 0.711,0.199 0.238,0.16 0.234,-0.082 0.239,0.082 0.234,0.231 0.238,-0.078 0.473,0.117 0.711,-0.078 0.472,-0.039 0.239,0.156 0.472,-0.27 0.235,-0.359 0.238,0.891 0.234,0.113 0.473,-0.414 0.238,0.152 0.239,-0.039 0.234,-0.265 0.238,0.113 0.235,-0.078 0.472,0.117 0.711,-0.152 0.239,0.074 0.234,-0.074 0.711,0.191 0.711,-0.547 0.472,-0.203 0.235,0.043 0.238,-0.332 0.235,-0.125 0.238,-0.297 0.238,-0.043 0.234,-0.266 0.239,0.176 0.472,-0.086 0.711,-1.008 h 0.473 l 0.234,-0.097 0.239,0.047 0.711,-0.243 0.234,0.098 0.238,-0.195 0.235,0.39 0.238,-0.097 0.473,-0.696 0.234,-0.156 0.711,0.309 0.472,-0.203 0.711,-0.528 0.473,0.321 0.238,-1.328 0.235,0.343 0.711,-0.054 0.472,0.613 0.946,-0.445 h 0.472 l 0.477,-0.457 0.473,-0.418 0.472,-0.122 0.946,0.063 0.472,-0.246 0.238,-0.063 0.235,0.063 0.711,-0.254 0.472,-0.387 0.711,0.762 h 0.235 l 0.238,-0.309 h 0.238 l 0.235,0.125 0.238,-0.254 0.234,0.063 0.473,0.254 0.238,-0.445 0.239,-0.063 0.234,0.063 0.238,0.445 0.473,0.367 0.711,-0.621 0.234,0.254 0.238,-0.254 0.235,0.316 0.238,1.399 0.234,0.379 0.95,-0.942 0.234,-0.715 0.238,0.301 h 0.235 l 0.472,-0.609 0.477,-0.063 0.234,0.371 0.239,0.063 0.707,-0.246 0.238,0.121 0.238,-0.184 h 0.235"
style="fill:none;stroke:#1f77b4;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
id="path752"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g754"><g
id="g756"><g
id="g758"
clip-path="url(#clipPath762)"><g
id="g764"><g
id="g766"
transform="scale(1,-1)"><path
d="m 130.031,-168.758 0.239,1.031 h 0.472 l 0.238,-0.218 h 0.235 l 0.473,-0.114 h 0.238 l 0.472,0.442 0.473,-0.219 0.238,-0.566 0.235,0.343 h 0.238 l 0.234,0.114 0.239,0.437 0.472,0.215 0.239,-0.215 0.707,0.215 0.238,0.52 0.234,0.101 0.477,-0.203 0.234,-0.313 0.239,0.313 0.234,-0.207 0.238,0.707 0.711,-0.297 0.234,0.297 0.711,3.094 0.235,0.148 0.711,-0.301 0.238,0.524 0.234,1.051 0.239,0.265 0.234,0.516 0.711,-0.383 0.711,0.32 0.707,-0.453 0.477,0.133 0.234,0.32 0.238,0.063 0.235,-0.254 0.238,-0.66 0.234,-0.137 0.711,0.137 0.238,-0.07 0.473,0.07 0.473,-0.344 0.472,0.07 0.239,0.204 0.707,-0.067 0.238,-0.348 0.234,0.071 0.239,-0.141 0.238,0.211 0.707,-0.211 0.238,-0.363 h 1.184 l 0.234,0.219 0.238,-0.516 0.708,0.223 0.238,-0.149 0.711,-3.144 0.234,-0.297 0.473,-0.098 0.238,0.199 0.238,-1.144 0.235,-1.758 0.472,-0.648 h 0.239 l 0.234,0.132 h 0.238 l 0.473,-0.402 0.238,0.137 0.235,-0.137 0.238,0.402 0.234,0.133 h 0.239 l 0.234,0.129 0.238,-0.664 0.239,-0.137 0.234,0.801 0.945,0.629 0.238,-0.246 0.239,0.246 0.234,-0.125 0.473,0.605 0.238,0.231 h 0.234 l 0.477,-0.352 0.234,-0.359 0.711,0.598 0.235,-0.356 0.238,0.238 0.473,-0.359 0.238,0.59 0.707,0.344 0.238,-0.344 0.235,1.207 0.476,0.102 0.235,0.507 h 0.472 l 0.711,2 0.238,-0.086 0.235,0.813 0.238,0.234 0.473,0.153 0.472,0.449 0.711,2.14 0.235,-0.246 0.472,-0.062 1.422,0.672 h 0.235 l 0.472,0.117 0.239,0.059 0.238,-0.059 0.234,-0.297 0.473,0.297 0.238,-0.176 0.707,0.293 h 0.238 l 0.239,0.231 0.234,0.933 0.473,-0.054 0.949,0.105 h 0.234 l 0.239,0.363 0.234,0.102 0.238,-0.153 0.235,0.153 h 0.238 l 0.238,-0.254 0.235,-0.055 0.711,0.258 0.234,-0.519 0.476,-0.211 0.235,-0.442 0.238,0.055 0.235,0.277 0.472,-0.558 0.238,-0.586 0.235,0.179 0.238,-0.543 0.238,-0.25 h 0.235 l 0.472,-0.519 0.239,-0.266 0.472,-1.898 0.239,-0.821 0.472,0.086 0.235,0.497 0.238,-0.083 0.234,0.243 0.239,0.769 0.238,-0.226 h 0.473 l 0.472,-0.309 h 0.235 l 0.472,0.309 0.238,-0.075 0.473,-0.312 h 0.238 l 0.235,-0.238 0.238,0.16 0.234,-0.16 0.239,0.703 0.238,-0.078 0.234,-0.703 0.239,-0.165 0.234,0.243 h 0.238 l 0.235,0.472 0.711,-0.078 0.472,-0.883 0.239,0.246 0.234,-0.082 0.238,0.641 0.473,0.684 0.473,-0.375 0.238,0.078 0.234,0.371 0.473,0.363 0.238,0.281 0.238,-0.07 0.473,-0.723 0.234,-0.074 0.711,0.223 0.239,-0.074 0.234,0.218 h 0.238 l 0.473,0.36 0.234,0.48 0.239,0.067 0.234,0.265 0.238,0.067 0.239,0.195 0.234,-0.391 0.238,-0.136 0.235,-0.27 0.238,-1.078 0.473,-0.152 0.238,0.078 0.707,0.875 0.711,0.07 0.238,0.137 0.234,-0.137 0.239,0.137 h 0.234 l 0.473,-0.278 0.711,-1.425 0.238,0.078 0.234,0.543 0.239,0.148 0.234,-0.226 0.238,0.078 0.711,-0.231 0.235,0.602 h 0.238 l 0.234,-0.223 0.239,-0.379 0.472,-0.312 0.239,0.39 0.234,-0.156 0.238,0.383 0.473,-0.383 0.472,-0.394 0.235,-0.078 0.476,0.238 0.473,0.156 0.234,-0.394 0.239,-0.083 0.234,0.083 0.238,-0.165 0.239,0.715 0.707,-0.312 0.238,0.156 0.234,-0.316 0.239,0.16 0.238,-0.078 0.473,0.621 h 0.234 l 0.473,0.445 0.472,-0.223 0.239,-0.222 0.238,-0.465 0.472,-0.238 0.473,0.394 0.711,-0.234 0.473,0.234 0.234,0.078 0.949,-0.39 0.235,-0.743 h 0.238 l 0.234,-0.167 0.239,0.167 0.711,-0.343 0.234,-0.446 0.945,-0.461 0.239,-0.191 0.234,-0.586 0.238,0.098 0.473,-0.614 0.238,0.208 0.707,-0.102 0.238,-0.316 0.239,-0.11 0.234,0.11 0.238,-0.329 0.235,0.645 0.238,-0.211 0.473,0.105 0.238,-0.648 0.473,1.164 0.234,-0.41 h 0.238 l 0.235,0.41 0.238,-0.41 0.234,-0.106 0.477,-0.539 h 0.234 l 0.239,-0.445 0.472,-0.117 0.711,0.781 0.473,-0.437 0.472,-0.934 h 0.473 l 0.238,0.359 0.473,-0.359 0.473,-0.246 0.707,0.246 0.238,-0.121 0.238,-0.375 0.235,-0.125 0.238,-0.523 0.234,-0.133 h 0.239 l 0.234,0.265 0.477,-0.679 h 0.472 l 0.235,0.14 h 0.238 l 0.234,0.274 0.238,-0.137 0.239,0.27 h 0.234 l 0.238,-0.27 0.235,0.137 h 0.472 l 0.239,0.133 0.472,-0.27 0.239,0.137 0.234,-0.84 0.238,0.144 0.235,-0.144 0.711,-1.879 0.238,-1.063 0.234,0.543 0.239,-0.179 0.234,-0.934 0.238,-0.199 h 0.235 l 0.238,-0.605 0.238,-0.211 0.473,1.015 0.234,-0.199 0.239,0.582 0.707,-1.613 0.476,0.426 h 0.473 l 0.234,0.406 0.238,-0.203 0.235,-0.629 0.238,0.832 h 0.238 l 0.235,-0.203 h 0.238 l 0.473,-0.629 0.472,0.426 h 0.239 l 0.472,0.605 h 0.473 l 0.234,-0.402 0.239,0.203 h 0.71 l 0.235,0.398 0.711,-0.601 0.234,-0.629 0.238,-0.219 0.239,0.219 0.234,-0.219 h 0.238 l 0.235,0.848 0.238,-0.203 0.234,0.203 0.239,0.402 h 0.238 l 0.473,0.391 0.234,0.378 0.238,0.719 0.235,0.172 0.238,0.832 0.473,-0.832 0.238,-0.348 0.707,1.34 0.238,0.157 0.235,0.308 0.476,-0.625 0.473,0.473 0.234,0.152 0.238,-0.152 0.235,2.113 h 0.238 l 0.473,0.871 0.238,0.117 0.234,-0.359 0.239,0.121 0.234,0.707 0.238,-0.469 h 0.239 l 0.472,0.121 h 0.235 l 0.472,0.231 0.473,-0.113 0.477,0.343 h 0.234 l 1.184,0.442 0.472,-0.219 0.473,0.109 0.473,-0.109 0.476,-0.109 h 0.473 l 0.234,-0.457 0.473,0.343 0.238,-0.343 0.234,0.23 0.477,-0.23 0.707,0.785 0.238,-0.328 0.235,0.652 0.476,0.211 0.946,-1.09 0.945,-0.469 0.472,-0.484 h 0.239 l 0.234,-1.871 0.473,-0.594 0.238,-0.465 0.238,0.157 h 0.473 l 0.234,-0.317 h 0.239 l 0.234,0.317 h 0.949 l 0.235,-0.317 h 0.238 l 0.234,-0.16 0.239,-0.5 0.238,-0.172 h 0.234 l 0.239,0.172 0.472,-0.344 0.235,0.344 0.238,-0.172 0.234,0.172 0.239,-0.172 0.238,0.34 0.234,-0.168 0.238,0.168 h 0.946 l 0.238,0.168 0.234,0.484 h 0.711 l 0.235,-0.484 0.238,0.164 0.238,-0.164 0.235,-0.508 0.238,-0.891 0.473,-0.769 0.234,-1.031 0.238,-0.219 0.235,0.219 0.238,0.629 0.238,0.203 h 1.18 l 0.238,0.398 0.238,-0.398 h 0.235 l 0.238,-0.203 0.234,0.203 h 0.239 l 0.234,-0.406 0.238,0.605 0.239,-0.199 0.234,0.199 0.238,-0.199 h 0.235 l 0.238,0.199 0.234,-0.402 h 0.473 l 0.238,0.793 h 0.239 l 0.472,0.562 h 0.473 l 0.234,0.18 h 0.477 l 0.234,-0.18 h 1.184 l 0.238,-0.562 0.234,0.742 h 0.239 l 0.472,0.355 0.473,0.512 h 0.234 l 0.239,-0.34 h 0.238 l 0.234,-0.172 0.239,0.172 h 0.234 l 0.238,-0.172 h 0.235 l 0.238,0.172 0.711,-0.527 h 0.473 l 0.234,-0.18 0.238,0.18 0.238,1.199 0.235,0.32 0.238,0.766 0.235,0.148 0.472,0.43 0.711,7.277 0.238,1.168 0.235,-0.07 0.238,0.543 0.473,0.07 0.234,0.582 0.477,-0.066 0.234,-0.254 0.238,-0.066 0.473,0.129 0.234,0.191 0.711,-0.125 h 0.239 l 0.234,0.125 0.473,0.68 0.711,0.527 0.238,0.34 0.234,0.055 0.473,0.492 0.711,-0.11 0.238,0.266 0.473,-0.051 0.234,-0.105 0.238,0.519 h 0.473 l 0.473,0.301 0.472,0.102 0.711,0.339 0.711,0.094 0.473,0.328 0.234,0.094 0.239,-0.094 0.234,-0.375 0.476,-0.191 0.473,0.426 0.235,0.047 0.238,-1.223 0.234,-2.207 0.477,-1.524 0.234,0.071 0.238,-0.578 0.473,-0.375 0.234,-0.786 0.239,0.321 0.238,1.488 0.234,0.137 0.473,2.144 0.238,0.782 0.235,1.703 0.238,0.047 0.234,0.855 0.239,0.172 0.238,0.785 0.234,0.277 0.473,-0.238 0.238,0.16 0.235,-0.082 0.238,0.082 0.238,-0.082 0.234,0.199 0.473,1.801 0.238,0.067 0.235,0.199 0.476,0.164 0.707,0.41 0.239,-0.156 0.234,0.281 0.238,-0.062 0.235,0.367 0.238,0.031 0.473,0.781 0.238,0.196 0.473,-0.055 1.183,-0.055 0.235,0.082 0.472,-0.054 0.477,0.136 0.472,-0.054 h 0.707 l 0.239,0.378 0.472,0.055 0.946,0.211 0.238,0.461 0.234,-0.254 0.239,0.078 0.711,-1.097 0.234,-0.961 0.238,-0.063 0.235,-0.371 0.238,-0.16 0.238,-0.555 0.473,-0.371 1.418,-0.316 0.238,-0.809 0.234,-1.277 0.239,0.168 0.234,-0.086 0.238,0.125 0.711,-0.379 0.235,0.211 0.711,-0.383 0.472,-0.812 0.239,-0.329 0.234,-0.64 0.238,-0.309 0.707,0.055 0.239,-0.055 0.711,0.309 0.234,-0.102 0.473,0.352 0.472,-0.199 0.477,0.296 0.707,0.622 0.238,-0.571 0.234,0.098 0.239,0.473 0.238,0.046 0.234,0.231 0.239,0.402 0.234,0.684 0.238,-0.641 0.235,0.09 0.238,0.301 0.238,0.66 0.235,0.156 0.238,0.391 0.473,0.113 0.234,-0.152 1.184,0.855 0.472,-0.254 0.238,0.43 0.235,0.035 0.238,0.242 0.473,0.106 0.238,-0.137 1.184,0.067 0.234,1.722 2.602,-0.64 0.711,0.156 0.472,-0.25 1.184,-0.223 0.238,1.047 0.234,-0.059 0.239,0.204 0.472,1.164 0.235,-0.078 0.238,0.492 0.473,-0.125 0.472,0.988 0.239,0.824 0.472,0.621 0.473,-0.621 0.473,0.453 0.472,1.403 0.239,0.32 0.472,-0.039 h 0.473 l 0.473,0.559 0.71,-0.161 0.235,0.336 0.476,0.137 0.707,0.473 0.239,0.082 0.234,0.433 0.238,-0.832 0.239,0.25 0.234,2.039 0.238,0.465 0.707,0.094 0.477,0.699 0.473,1.078 0.472,0.094 1.184,1.074 0.472,0.055 0.473,0.684 0.234,1.054 0.477,0.371 0.473,-0.371 0.234,0.035 0.238,-0.207 0.235,0.075 0.238,0.25 0.238,-0.188 0.473,-0.738 0.234,-0.012 0.473,0.531 0.473,0.735 0.238,-0.117 0.473,-0.536 0.238,-0.082 0.707,0.192 0.711,-0.262 0.238,-0.012 0.234,0.11 0.473,-0.184 0.949,-0.262 0.473,0.282 0.234,-0.289 0.477,-0.211 0.234,-1.356 0.239,-0.273 1.179,-0.09 0.477,-0.406 0.234,-0.676 0.238,-0.199 0.473,0.148 0.473,-0.398 0.238,0.089 0.473,-0.117 0.472,-0.062 0.473,-0.985 0.238,-2.152 0.473,-0.086 0.234,0.477 0.239,0.047 0.707,0.503 0.238,-0.125 0.473,0.754 h 0.238 l 0.234,-0.281 0.239,0.352 0.234,0.132 0.238,-0.16 0.239,-0.398 0.234,0.195 0.711,-0.062 0.234,0.133 0.711,1.265 0.473,-0.105 0.711,-0.067 0.234,0.614 0.238,0.203 0.239,0.621 0.234,0.211 0.473,1.164 0.711,0.972 0.238,-0.007 1.418,1.296 0.473,-0.078 0.238,0.071 0.707,0.664 0.238,0.148 0.473,-0.308 1.418,0.589 0.476,-0.175 0.235,-0.043 0.472,1.078 0.239,0.281 0.234,-0.016 0.477,-0.14 0.234,0.109 0.473,0.387 0.238,-0.09 0.707,-0.68 0.238,-0.035 0.238,0.231 0.473,-0.039 0.473,-0.485 0.234,-0.312 0.238,-0.063 0.473,0.153 0.473,0.007 0.238,-0.105 0.234,-0.387 0.239,-0.09 0.711,-1.215 0.472,-1.089 0.235,0.039 0.238,-0.344 0.234,0.008 0.95,-0.805 0.234,0.117 0.473,0.473 0.476,0.519 0.707,-0.562 h 0.238 l 0.473,0.383 0.711,-0.215 0.473,0.547 0.234,0.137 0.238,0.347 0.235,0.094 0.238,-0.258 0.711,-1.906 0.234,0.269 0.239,0.454 0.234,-0.063 0.477,-0.617 0.234,0.047 0.238,-0.309 0.235,0.465 0.472,1.574 0.238,0.231 0.239,-0.02 0.234,1.692 0.238,0.269 0.707,2.27 0.239,0.054 0.238,0.477 0.707,0.207 0.473,0.414 0.472,0.07 0.95,1.614 0.945,0.242 0.238,0.332 0.235,0.054"
style="fill:none;stroke:#8c564b;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
id="path768"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g770"><g
id="g772"><g
id="g774"
clip-path="url(#clipPath778)"><g
id="g780"><g
id="g782"
transform="scale(1,-1)"><path
d="m 130.031,-164.988 0.239,0.09 0.234,-0.356 0.949,-0.086 0.235,1.75 0.71,0.231 0.473,-0.703 0.238,0.078 0.473,1.363 h 0.234 l 0.239,0.422 0.711,-0.492 0.234,0.144 h 0.238 l 0.235,0.141 0.238,0.547 h 0.473 l 0.238,-0.203 0.234,0.792 0.473,-0.062 0.238,0.062 0.235,0.438 0.71,-0.438 0.239,1.157 h 0.234 l 0.949,1.418 0.235,1.125 0.238,0.277 0.707,1.422 0.238,0.16 0.473,-0.082 0.238,-0.039 0.235,0.437 0.238,0.153 0.234,-0.309 0.239,-0.043 0.234,-0.199 0.711,0.703 0.473,0.039 0.238,-0.191 0.473,0.039 0.238,0.191 0.234,0.035 0.238,0.227 0.235,-0.801 h 1.183 l 0.239,0.196 0.472,-0.641 h 0.235 l 0.238,-0.203 0.711,0.285 0.707,-0.203 0.238,-0.293 0.473,-0.129 0.238,0.086 0.235,-0.391 0.472,0.176 0.238,-0.043 0.235,-0.355 0.473,0.312 0.238,0.043 0.238,-0.906 0.707,-0.235 0.238,-0.441 0.235,-0.098 0.476,-1.55 0.707,-1.918 0.239,0.265 0.472,-0.199 0.239,-0.133 0.234,-0.695 0.238,-0.215 0.473,0.07 0.234,-0.218 0.711,-1.407 0.239,0.082 0.234,0.325 0.238,0.082 0.235,0.769 0.238,0.223 0.234,-0.449 h 0.238 l 0.239,-0.387 0.234,0.465 h 0.238 l 0.235,0.297 0.238,-0.149 0.473,0.149 0.238,0.363 0.473,2.332 h 0.472 l 0.473,-0.418 0.234,0.059 0.477,0.242 0.945,0.523 0.235,0.391 0.238,-0.11 0.711,0.219 h 0.234 l 0.473,-0.332 0.238,0.492 0.238,0.883 0.235,0.442 0.472,-0.196 0.711,-0.246 0.235,0.195 h 0.238 l 0.238,0.196 0.235,0.051 0.238,-0.442 0.473,0.098 0.234,0.051 0.238,0.293 0.239,0.878 0.472,0.043 0.235,0.309 0.238,0.043 0.234,0.297 0.239,-0.039 0.238,0.082 0.472,-0.125 0.235,-0.434 0.238,-0.086 0.234,0.176 0.239,-0.133 0.234,0.219 0.477,0.633 0.945,-0.207 0.234,-0.383 0.477,-1.371 0.473,0.047 0.234,0.144 h 0.238 l 0.235,0.192 0.476,-0.239 0.473,-0.097 0.234,-0.242 0.239,-0.051 0.234,-0.504 0.949,-0.746 0.707,0.379 0.238,-0.602 0.235,-0.992 0.476,-0.5 0.235,0.437 0.238,0.184 0.473,-0.062 0.234,-0.305 0.477,0.125 0.234,-0.125 0.238,0.367 h 0.235 l 0.238,-0.305 h 0.473 l 0.238,-1.035 h 0.234 l 0.239,0.332 0.472,0.067 0.235,-0.602 0.238,0.34 0.234,-0.34 0.238,0.137 0.473,-0.07 0.238,-0.067 0.235,0.067 0.238,0.339 0.234,-0.269 0.239,-0.992 0.238,-0.223 0.234,0.371 0.473,-0.223 0.238,0.075 0.235,-0.075 0.238,0.297 0.238,-0.519 0.235,-0.078 0.238,0.152 0.707,-0.227 0.238,0.075 0.235,0.226 h 0.238 l 0.238,-0.148 0.235,0.074 0.238,0.297 0.234,0.074 0.711,1.113 0.238,0.067 0.235,-0.067 0.238,0.067 0.234,-0.203 h 0.239 l 0.234,0.398 0.238,-0.133 0.239,0.324 0.234,-0.453 0.945,-0.203 h 0.239 l 0.234,-0.136 h 0.238 l 0.239,-0.415 0.234,-0.07 0.473,0.485 0.238,0.07 0.234,-0.274 0.239,-0.07 0.472,-0.5 0.238,-0.074 0.708,0.219 0.238,-0.442 0.238,0.934 0.707,0.137 h 0.238 l 0.235,-0.204 0.238,0.067 0.234,0.41 0.239,-0.477 0.711,0.137 0.234,-0.137 0.238,-0.281 0.235,-0.074 0.238,0.074 0.473,-0.289 0.238,0.359 0.234,-0.359 0.239,-0.074 0.234,0.144 0.238,-0.07 0.473,0.215 0.238,0.629 0.235,-0.07 0.238,-0.204 h 0.234 l 0.238,-0.281 0.235,0.211 0.238,-0.07 0.238,-0.215 0.473,0.215 0.234,-0.43 0.239,0.145 0.234,-0.442 1.422,-0.074 0.234,0.801 h 0.239 l 0.238,0.14 h 0.234 l 0.711,-0.793 h 0.235 l 0.238,0.438 0.234,-0.07 0.239,-0.293 h 0.238 l 0.234,-0.149 0.238,-0.691 0.235,0.078 0.238,0.539 0.235,-0.855 0.476,-0.083 0.473,-0.582 0.472,0.254 0.235,-0.867 0.476,-0.094 0.235,-0.089 0.238,0.273 0.234,-0.09 0.239,0.176 0.234,0.352 0.477,-0.086 0.234,0.339 0.238,-0.339 h 0.235 l 0.238,0.589 0.234,-0.336 0.239,0.086 0.472,-0.253 0.238,-1.083 0.235,0.188 0.945,-0.668 0.238,-0.098 0.239,0.578 h 0.472 l 0.235,0.282 0.238,-0.282 0.711,0.372 0.473,0.273 0.472,-0.363 0.235,-1.059 0.238,0.098 0.234,0.297 h 0.239 l 0.238,0.382 0.707,-0.382 0.238,-0.395 h 0.235 l 0.238,0.297 h 0.238 l 0.235,0.852 0.238,0.183 0.472,-0.648 0.235,0.465 h 0.238 l 0.238,0.535 0.473,0.176 0.473,-0.262 0.234,0.601 0.711,0.489 0.238,-0.243 0.707,-0.246 0.239,0.164 0.234,0.407 0.238,-0.407 h 0.473 l 0.238,-0.589 0.473,0.425 0.234,1.039 0.238,0.075 0.473,-0.075 0.473,0.075 0.238,0.226 0.234,-0.226 0.239,0.078 0.234,-0.387 0.238,0.078 0.239,-0.078 0.234,0.078 0.473,-0.234 0.238,-0.078 0.234,0.234 0.239,0.684 h 0.472 l 0.239,0.222 h 0.234 l 0.238,-0.222 0.235,-0.375 h 0.238 l 0.238,-0.153 0.473,0.305 0.234,0.371 0.239,-0.074 0.234,0.074 0.238,-0.148 0.235,0.148 0.238,-0.445 0.472,0.66 0.239,0.074 0.234,-0.586 0.238,-0.074 0.235,0.73 0.238,0.141 0.711,0.07 0.234,-0.425 0.239,-0.145 0.234,0.074 0.238,-0.074 0.473,0.145 0.238,0.285 0.235,-0.356 0.238,0.77 0.234,-0.344 0.473,0.07 h 0.238 l 0.238,0.274 0.473,-0.137 0.235,-0.781 0.238,-0.149 0.472,0.297 0.239,0.141 h 0.234 l 0.238,-0.289 0.235,0.074 0.238,0.774 h 0.234 l 0.477,0.664 0.234,-0.129 0.239,0.195 0.234,-0.066 0.238,0.382 0.235,-0.382 0.238,-0.664 h 0.234 l 0.239,0.339 0.238,0.067 0.234,-0.067 0.239,0.067 0.472,0.765 h 0.473 l 0.473,-0.125 0.472,0.063 0.473,-0.063 0.238,-0.062 0.238,-0.449 0.473,-0.129 0.234,0.258 0.239,0.066 0.234,-1.074 0.711,-0.356 0.711,0.215 0.234,-0.289 h 0.239 l 0.711,-0.523 0.234,0.078 0.238,-1.028 0.473,-0.164 0.473,0.246 0.238,-0.332 0.234,-0.082 0.238,0.739 0.946,-0.407 0.238,-0.164 0.234,0.082 0.473,-0.082 0.238,-1.14 0.235,-0.094 0.472,-1.168 0.477,-0.418 h 0.234 l 0.239,-0.652 h 0.234 l 0.238,-0.344 0.235,0.453 0.238,-0.223 0.238,-0.461 0.473,-0.359 0.473,-1.144 h 0.234 l 0.238,-0.133 h 0.238 l 0.707,-0.84 0.473,0.566 0.238,-0.277 0.235,0.137 0.238,-0.137 0.473,-1.035 h 0.238 l 0.234,0.152 0.473,-0.785 0.238,0.477 h 0.239 l 0.234,0.46 0.238,-0.46 0.235,0.156 h 0.238 l 0.234,0.152 0.239,0.301 h 0.238 l 0.234,0.293 0.711,2.238 0.235,0.238 h 0.238 l 0.234,0.461 0.239,-0.343 0.238,-1.356 0.234,1.238 0.238,0.118 0.235,-0.235 0.238,0.348 0.945,-0.348 h 0.239 l 1.183,0.578 h 0.235 l 0.711,0.336 0.472,-0.449 h 0.235 l 0.476,0.227 0.473,-0.114 0.234,0.114 0.473,-0.227 0.238,-0.348 0.473,0.575 0.472,-0.813 h 0.239 l 0.234,0.238 0.238,-0.238 0.239,0.238 h 0.234 l 0.238,0.348 0.235,0.664 0.238,0.11 0.234,0.523 0.711,-0.633 0.239,0.215 0.234,-0.105 0.238,0.21 h 0.235 l 0.238,-0.21 0.234,0.105 0.239,-0.105 0.472,-1.122 0.239,-0.359 0.234,-0.621 0.238,-0.129 0.235,-0.394 0.476,0.898 0.234,-1.445 0.239,0.277 h 0.234 l 0.238,-0.414 h 0.235 l 0.472,0.277 0.239,0.274 h 0.238 l 0.234,-0.137 0.239,-0.277 0.234,0.547 0.473,-0.407 0.238,0.274 0.238,-0.137 0.235,0.27 0.711,-0.684 0.234,0.277 h 0.711 l 0.238,-0.277 0.473,-0.883 0.234,0.152 h 0.238 l 0.473,-0.777 0.473,1.074 h 0.238 l 0.234,-0.449 0.239,0.152 0.234,-0.152 0.238,0.301 0.239,-0.453 0.234,-1.305 0.238,-0.172 0.235,-0.906 0.238,-0.191 0.234,0.378 0.239,-0.187 0.472,0.371 0.239,-0.562 h 0.472 l 0.235,-0.192 0.238,-0.398 0.238,0.203 0.235,-0.203 0.238,-0.406 h 0.707 l 0.472,-1.559 h 0.239 l 0.238,-0.484 h 0.473 l 0.234,0.718 0.238,-0.234 h 0.235 l 0.238,-0.238 h 0.238 l 0.235,0.472 h 0.238 l 0.234,-0.718 0.239,-0.25 0.234,0.25 h 0.477 l 0.234,-0.504 0.238,0.254 0.235,-0.254 h 0.238 l 0.234,0.254 h 0.473 l 0.238,-0.254 0.238,0.254 0.235,0.734 h 0.238 l 0.235,-0.238 0.238,0.472 h 0.472 l 0.239,-0.472 0.234,-1.012 h 0.473 l 0.949,-1.106 0.234,0.567 0.239,0.273 0.234,1.985 0.238,0.879 0.235,-0.215 0.238,1.23 0.234,-0.398 h 0.239 l 0.238,0.59 0.234,1.097 0.239,0.172 0.234,0.34 0.238,0.965 0.235,0.453 0.238,-0.149 h 0.238 l 0.234,0.149 0.239,0.293 0.234,0.703 0.238,0.137 0.235,0.265 0.238,1.602 h 0.238 l 0.473,0.23 0.234,-0.23 h 0.239 l 0.472,-0.113 0.473,0.457 h 0.238 l 0.473,-0.114 h 0.234 l 0.239,-0.113 0.472,0.336 0.239,0.113 0.234,0.43 0.238,0.105 0.235,-0.32 0.238,0.215 0.473,0.719 0.472,0.492 1.184,0.918 h 0.234 l 0.949,0.605 0.235,0.414 h 0.472 l 0.239,0.555 0.238,1.113 0.234,-0.433 0.239,-0.149 h 0.234 l 0.238,-0.375 0.473,0.598 0.238,-0.074 0.235,-0.524 0.472,0.375 0.238,-0.453 0.708,0.75 0.238,-0.074 0.238,0.074 0.234,-0.222 0.473,0.648 0.238,-0.945 0.235,-0.074 0.476,0.664 0.473,0.07 0.234,0.422 0.473,-0.207 0.238,-0.215 0.239,0.074 0.472,0.621 0.235,0.137 0.238,0.586 h 0.234 l 0.477,-0.195 0.234,0.128 0.239,0.317 0.234,0.125 0.238,-0.063 0.235,-0.312 0.472,-0.324 0.238,-0.262 0.473,0.328 0.238,1.113 0.235,0.176 0.238,-0.176 0.234,0.293 0.95,-0.058 0.234,-0.176 0.473,0.117 0.238,-0.476 0.238,-1.008 0.707,0.129 0.711,-0.602 h 0.235 l 0.238,0.535 0.238,0.067 0.235,-0.129 0.238,0.129 0.234,-0.535 0.238,-0.137 0.235,0.476 0.238,0.129 0.238,0.516 0.235,-0.063 0.472,-0.718 0.239,0.265 0.234,0.067 0.711,-0.535 0.238,0.136 0.235,-0.41 0.238,0.613 0.234,0.129 0.473,-0.129 0.477,-0.613 0.234,0.137 0.238,-0.711 0.235,-0.149 0.472,0.149 0.239,-0.371 0.71,-0.465 h 0.473 l 0.473,0.613 0.238,-0.226 0.234,-0.465 0.239,-1.34 0.234,-0.359 0.238,0.089 0.235,-0.367 h 0.238 l 0.234,-0.281 0.477,0.281 0.234,0.278 0.239,0.089 0.234,0.536 0.949,-0.09 0.473,0.429 0.234,-0.253 0.239,0.085 0.234,-0.171 0.238,0.253 0.238,-0.167 0.235,0.167 0.238,0.821 0.235,0.312 0.238,-0.078 0.234,-0.394 0.238,-0.161 0.235,-0.843 0.476,0.09 0.235,0.425 0.238,-0.339 0.234,-0.086 0.239,-0.266 0.234,0.176 h 0.477 l 0.234,0.176 0.238,-0.528 0.235,-0.183 h 0.238 l 0.711,1.05 h 1.18 l 0.238,0.164 0.472,1.25 0.239,0.293 0.472,0.075 0.235,-0.219 0.238,1.449 0.473,0.691 0.711,-0.121 h 0.234 l 0.238,0.305 0.473,0.984 0.473,-0.226 0.472,-0.52 h 0.239 l 0.472,0.52 1.184,0.058 0.234,0.11 0.239,-0.629 0.472,-0.176 0.238,-0.676 0.235,-0.129 0.238,0.254 h 0.473 l 0.234,0.309 0.477,-0.063 0.234,-0.183 0.945,0.426 0.239,-0.059 0.472,-0.242 0.239,-0.125 0.472,0.062 0.946,-0.316 0.238,0.316 0.234,-0.25 0.473,0.188 0.238,0.062 0.473,-0.25 0.238,-0.582 0.234,-0.269 0.239,-0.07 0.234,0.203 0.238,-0.067 0.235,0.067 0.238,-1.653 0.473,-0.715 0.238,-0.164 0.234,0.329 h 0.239 l 0.234,-0.165 0.238,-0.418 0.473,-1.343 0.238,0.187 0.473,0.094 0.234,0.094 0.239,-0.094 0.234,-0.281 0.238,-0.586 0.711,-0.199 0.235,0.101 0.238,0.395 h 0.234 l 0.238,0.289 0.239,0.093 0.234,0.282 h 0.473 l 0.238,0.179 0.234,-0.089 0.473,1.132 h 0.477 l 0.234,-0.254 0.473,-0.253 0.238,0.339 0.234,-0.168 0.477,0.082 0.234,-0.082 0.239,0.082 0.234,-0.082 0.238,0.082 0.473,0.5 0.238,-0.843 0.473,-0.086 0.945,0.765 0.235,-0.25 0.238,-0.086 0.238,-0.253 0.707,0.171 0.949,-0.261 0.235,-0.352 0.238,0.09 0.234,0.262 0.711,-0.352 0.239,0.176 h 0.234 l 0.238,0.266 0.235,-0.09 0.238,0.09 0.234,-0.176 0.711,0.086 0.238,0.429 0.235,0.086 0.238,-0.515 0.707,-0.535 0.238,-0.372 0.239,0.188 0.472,-0.188 0.235,-0.285 0.472,-1.656 0.477,0.438 0.234,0.824 0.473,0.101 0.238,-0.507 0.707,0.507 0.239,0.098 0.238,-0.199 0.707,-0.098 0.238,-0.516 0.473,0.614 h 0.238 l 0.473,-0.614 0.234,0.208 0.473,-0.528 0.476,-0.109 0.473,-0.672 0.473,-0.59 h 0.234 l 0.711,0.238 h 0.238 l 0.235,-0.238 0.238,0.238 h 0.234 l 0.239,0.121 0.472,-0.238 0.239,-0.488 0.234,0.246 0.473,0.941 h 0.238 l 0.472,-0.343 0.239,-0.844 0.234,-0.383 0.711,1.793 0.473,-0.336 0.238,-0.348 0.234,0.231 0.239,-0.59 0.234,0.121 0.238,0.356 h 0.235 l 0.238,-0.477 0.234,-0.121 0.239,-0.629 0.472,0.383 0.239,0.488 0.234,0.117 0.473,-0.484 h 0.238 l 0.238,1.832 0.235,0.105"
style="fill:none;stroke:#cc00ff;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
id="path784"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g786"><g
id="g788"><g
id="g790"
clip-path="url(#clipPath794)"><g
id="g796"><g
id="g798"
transform="scale(1,-1)"><path
d="m 241.699,-292.316 v 77.218 h 0.711 l 0.235,10.883 0.238,2.164 h 0.945 l 0.473,3.418 h 2.367 l 0.238,2.649 h 0.707 l 0.239,1.132 h 0.472 l 0.238,1.032 h 0.708 l 0.238,0.953 h 2.84 l 0.234,0.879 h 0.473 l 0.238,0.82 h 0.945 l 0.239,1.484 h 1.183 l 0.235,-1.484 h 0.71 l 0.235,-2.652 h 0.238 l 0.711,2.652 h 0.234 l 0.473,-1.699 h 0.711 l 0.238,1.699 h 0.235 l 0.472,3.414 h 0.711 l 0.239,-0.605 h 1.179 l 0.239,0.605 0.238,-0.605 0.234,0.605 0.473,2.168 0.238,-0.508 0.235,1.457 h 0.71 l 0.239,0.449 h 1.179 l 0.239,0.848 h 0.238 l 0.234,-0.418 h 0.239 l 0.234,0.418 h 1.656 l 0.239,0.402 h 1.183 l 0.234,0.766 h 0.239 l 0.234,0.367 0.238,-0.367 h 0.473 l 0.238,-0.375 0.235,0.375 h 0.711 l 0.234,0.367 h 0.238 l 0.239,-0.367 h 0.234 l 0.238,-0.766 0.235,-1.25 h 0.711 l 0.238,-0.449 0.707,1.297 h 0.473 l 0.238,-0.418 0.234,0.418 0.239,-0.418 0.472,-1.828 h 0.238 l 0.235,-1.035 h 0.472 l 0.239,2.863 0.238,0.418 0.707,2.235 h 0.238 l 0.235,0.976 0.238,0.309 h 0.473 l 0.238,1.433 0.234,-0.273 0.239,0.539 h 0.234 l 0.473,0.516 h 0.476 l 0.235,0.25 0.238,-0.25 0.234,1.199 0.238,0.449 h 0.473 l 0.238,0.219 0.235,-0.442 0.711,1.274 0.234,-0.203 h 0.949 l 0.235,0.402 h 0.238 l 0.234,-0.199 0.239,0.781 h 0.234 l 0.238,0.187 0.239,0.364 h 0.234 l 0.238,0.179 0.235,0.688 0.238,0.332 h 0.473 l 0.238,-0.164 h 0.234 l 0.239,-0.168 h 0.234 l 0.238,0.168 0.235,-0.168 0.238,0.168 h 0.238 l 0.234,0.484 0.239,0.157 h 0.234 l 0.473,0.308 0.238,-0.785 0.234,-0.164 0.711,-0.856 0.239,0.52 0.472,-1.063 h 0.473 l 0.238,-0.769 h 0.235 l 0.238,-0.605 h 0.945 l 0.473,-0.645 0.238,0.219 0.235,-1.133 0.238,-0.484 0.472,0.484 0.239,-0.238 0.234,0.703 0.238,-0.231 0.473,-1.222 h 0.234 l 0.239,-0.262 0.234,0.766 0.238,-0.25 0.239,0.25 0.234,-0.25 0.473,0.496 0.472,-0.75 0.477,0.504 h 0.473 l 0.234,0.484 0.238,-0.484 h 0.235 l 0.238,0.246 h 0.238 l 0.235,-0.246 h 0.238 l 0.234,0.246 0.238,-0.246 0.707,0.718 0.239,-0.718 h 0.472 l 0.239,0.484 0.234,-0.238 0.238,0.238 0.235,-0.238 0.238,0.472 0.238,-0.234 0.235,0.234 0.238,-0.718 h 0.234 l 0.239,0.484 0.234,1.348 0.238,0.617 0.239,-0.203 0.234,0.601 h 0.238 l 0.473,0.383 h 0.707 l 0.238,0.187 0.238,-0.187 h 0.473 l 0.235,-0.191 h 0.472 l 0.238,-0.59 h 0.239 l 0.472,0.398 h 0.473 l 0.234,-0.601 0.477,0.793 0.234,-0.192 h 0.239 l 0.234,0.192 0.473,1.097 0.238,1.004 0.234,-0.324 0.239,0.164 0.472,0.785 h 0.473 l 0.473,0.301 h 0.238 l 0.238,0.719 h 0.234 l 0.239,0.812 0.234,0.383 h 0.238 l 0.235,-0.125 0.711,0.375 0.238,-0.375 0.234,0.742 h 0.239 l 0.234,0.117 0.238,-0.117 0.235,0.356 h 0.238 l 0.711,0.675 0.473,-1.031 0.234,0.238 0.238,-0.238 0.239,0.238 0.707,-0.238 0.238,0.117 0.234,0.352 0.477,0.117 h 0.707 l 0.472,-0.117 0.239,0.672 0.234,0.219 0.477,0.625 0.234,0.101 0.238,0.297 0.946,3.094 0.238,0.59 h 0.234 l 0.239,-0.368 0.234,0.368 0.238,-0.145 0.235,0.91 0.238,0.465 0.238,0.129 0.235,-0.461 0.238,0.133 0.234,0.262 0.238,-0.063 0.473,0.508 0.235,0.183 0.238,0.422 0.238,-0.3 0.473,0.359 0.472,0.851 1.184,0.586 0.234,0.661 1.184,0.339 0.945,0.743 0.477,0.043 0.234,0.656 h 0.239 l 0.707,0.699 0.71,0.395 0.239,0.492 0.234,0.109 0.473,0.645 0.238,-0.106 0.945,0.313 0.239,0.402 0.234,-0.066 0.711,-0.86 0.238,-0.183 0.235,0.183 0.238,0.992 0.234,0.231 0.239,-0.098 0.234,-0.433 0.473,0.035 0.476,0.199 0.707,-0.199 0.473,0.101 h 0.238 l 0.238,0.329 0.473,-0.129 0.234,-0.2 1.184,0.067 0.238,-0.235 0.235,-0.414 0.472,-0.14 0.239,-0.18 0.711,-0.219 0.945,-0.332 0.234,0.074 0.239,-0.417 0.238,0.191 0.234,-0.191 h 0.238 l 0.946,0.566 0.238,-0.453 0.234,-0.074 0.239,-0.235 h 0.945 l 0.473,-0.402 0.238,-0.457 h 0.234 l 0.711,0.699 0.473,-0.203 0.238,-0.973 0.235,-0.222 0.472,0.57 0.239,0.086 0.234,-0.215 0.476,0.172 0.473,1.023 0.235,0.231 h 0.238 l 0.707,-0.793 0.711,0.68 0.238,0.113 0.473,-0.153 0.234,0.192 0.238,0.039 0.473,0.484 1.422,1.219 0.473,0.391 0.472,-0.094 0.473,0.379 0.234,0.125 0.238,0.484 0.473,-0.211 0.238,-0.152 0.473,0.887 0.234,1.136 0.477,1.063 0.234,-0.145 0.711,0.379 0.235,0.137 0.238,0.27 0.238,0.089 0.235,-0.066 0.472,0.242 0.711,0.598 0.235,0.187 0.476,-0.168 0.235,0.227 0.238,0.023 0.707,0.633 0.476,-0.433 0.946,0.546 0.234,0.227 0.477,-0.301 0.472,-0.117 0.473,0.418 1.184,0.019 0.234,0.168 2.129,-0.222 0.238,0.054 0.473,-0.265 0.238,-0.02 0.234,-0.191 0.711,0.23 1.184,-1.523 0.234,0.062 0.711,-0.46 0.235,0.222 0.476,-0.199 0.235,0.219 0.238,-0.11 0.473,-0.804 0.472,0.097 0.239,-0.191 0.234,0.07 0.238,-0.168 0.235,-0.316 0.71,-0.098 0.239,-0.254 0.472,0.102 0.235,-0.336 0.472,0.156 0.473,-0.418 0.477,0.238 0.234,-0.105 0.238,0.027 0.235,0.309 0.238,-0.231 0.473,0.231 0.945,-0.551 0.711,0.731 0.473,-0.204 1.183,0.696 0.235,-0.219 0.476,0.051 0.234,0.312 h 0.711 l 0.235,-0.511 0.238,-0.203 0.945,0.57 0.239,0.023 0.234,-0.414 0.238,-0.101 0.239,0.347 0.234,-0.074 0.711,0.555 0.473,-0.532 0.234,-0.074 0.711,0.321 0.238,-0.121 0.473,-0.575 0.711,0.254 0.234,0.293 0.238,0.098 0.707,-0.293 0.711,0.93 0.239,-0.094 0.234,-0.543 0.711,-0.27 0.473,0.223 0.238,0.023 0.945,-0.597 0.235,0.277 0.238,0.512 h 0.473 l 0.238,-0.313 0.234,-0.023 0.711,0.711 0.238,-0.067 0.235,-0.402 0.238,-0.023 0.473,0.285 0.472,0.707 0.473,-0.203 0.238,-0.133 h 0.473 l 0.473,0.64 0.234,-0.195 0.238,-0.023 0.239,-0.153 0.234,0.219 0.238,0.555 0.235,0.187 0.71,1.774 0.239,0.211 0.234,1.996 0.238,0.531 0.707,3.711 0.239,0.223 0.238,0.8 0.473,0.352 0.234,0.102 0.238,0.722 0.235,0.016 0.472,-0.145 0.239,0.289 0.238,0.094 0.234,0.492 0.473,0.231 0.473,0.039 0.711,0.476"
style="fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path800"
inkscape:connector-curvature="0" /></g><g
id="g802"
transform="scale(1,-1)"><path
d="m 241.699,-292.316 v 77.218 h 0.711 l 0.235,10.883 0.238,2.164 h 0.945 l 0.473,3.418 h 2.367 l 0.238,2.649 h 0.707 l 0.239,1.132 h 0.472 l 0.238,1.032 h 0.708 l 0.238,0.953 h 2.84 l 0.234,0.879 h 0.473 l 0.238,0.82 h 0.945 l 0.239,1.484 h 1.183 l 0.235,-1.484 h 0.71 l 0.235,-2.652 h 0.238 l 0.711,2.652 h 0.234 l 0.473,-1.699 h 0.711 l 0.238,1.699 h 0.235 l 0.472,3.414 h 0.711 l 0.239,-0.605 h 1.179 l 0.239,0.605 0.238,-0.605 0.234,0.605 0.473,2.168 0.238,-0.508 0.235,1.457 h 0.71 l 0.239,0.449 h 1.179 l 0.239,0.848 h 0.238 l 0.234,-0.418 h 0.239 l 0.234,0.418 h 1.656 l 0.239,0.402 h 1.183 l 0.234,0.766 h 0.239 l 0.234,0.367 0.238,-0.367 h 0.473 l 0.238,-0.375 0.235,0.375 h 0.711 l 0.234,0.367 h 0.238 l 0.239,-0.367 h 0.234 l 0.238,-0.766 0.235,-1.25 h 0.711 l 0.238,-0.449 0.707,1.297 h 0.473 l 0.238,-0.418 0.234,0.418 0.239,-0.418 0.472,-1.828 h 0.238 l 0.235,-1.035 h 0.472 l 0.239,2.863 0.238,0.418 0.707,2.235 h 0.238 l 0.235,0.976 0.238,0.309 h 0.473 l 0.238,1.433 0.234,-0.273 0.239,0.539 h 0.234 l 0.473,0.516 h 0.476 l 0.235,0.25 0.238,-0.25 0.234,1.199 0.238,0.449 h 0.473 l 0.238,0.219 0.235,-0.442 0.711,1.274 0.234,-0.203 h 0.949 l 0.235,0.402 h 0.238 l 0.234,-0.199 0.239,0.781 h 0.234 l 0.238,0.187 0.239,0.364 h 0.234 l 0.238,0.179 0.235,0.688 0.238,0.332 h 0.473 l 0.238,-0.164 h 0.234 l 0.239,-0.168 h 0.234 l 0.238,0.168 0.235,-0.168 0.238,0.168 h 0.238 l 0.234,0.484 0.239,0.157 h 0.234 l 0.473,0.308 0.238,-0.785 0.234,-0.164 0.711,-0.856 0.239,0.52 0.472,-1.063 h 0.473 l 0.238,-0.769 h 0.235 l 0.238,-0.605 h 0.945 l 0.473,-0.645 0.238,0.219 0.235,-1.133 0.238,-0.484 0.472,0.484 0.239,-0.238 0.234,0.703 0.238,-0.231 0.473,-1.222 h 0.234 l 0.239,-0.262 0.234,0.766 0.238,-0.25 0.239,0.25 0.234,-0.25 0.473,0.496 0.472,-0.75 0.477,0.504 h 0.473 l 0.234,0.484 0.238,-0.484 h 0.235 l 0.238,0.246 h 0.238 l 0.235,-0.246 h 0.238 l 0.234,0.246 0.238,-0.246 0.707,0.718 0.239,-0.718 h 0.472 l 0.239,0.484 0.234,-0.238 0.238,0.238 0.235,-0.238 0.238,0.472 0.238,-0.234 0.235,0.234 0.238,-0.718 h 0.234 l 0.239,0.484 0.234,1.348 0.238,0.617 0.239,-0.203 0.234,0.601 h 0.238 l 0.473,0.383 h 0.707 l 0.238,0.187 0.238,-0.187 h 0.473 l 0.235,-0.191 h 0.472 l 0.238,-0.59 h 0.239 l 0.472,0.398 h 0.473 l 0.234,-0.601 0.477,0.793 0.234,-0.192 h 0.239 l 0.234,0.192 0.473,1.097 0.238,1.004 0.234,-0.324 0.239,0.164 0.472,0.785 h 0.473 l 0.473,0.301 h 0.238 l 0.238,0.719 h 0.234 l 0.239,0.812 0.234,0.383 h 0.238 l 0.235,-0.125 0.711,0.375 0.238,-0.375 0.234,0.742 h 0.239 l 0.234,0.117 0.238,-0.117 0.235,0.356 h 0.238 l 0.711,0.675 0.473,-1.031 0.234,0.238 0.238,-0.238 0.239,0.238 0.707,-0.238 0.238,0.117 0.234,0.352 0.477,0.117 h 0.707 l 0.472,-0.117 0.239,0.672 0.234,0.219 0.477,0.625 0.234,0.101 0.238,0.297 0.946,3.094 0.238,0.59 h 0.234 l 0.239,-0.368 0.234,0.368 0.238,-0.145 0.235,0.91 0.238,0.465 0.238,0.129 0.235,-0.461 0.238,0.133 0.234,0.262 0.238,-0.063 0.473,0.508 0.235,0.183 0.238,0.422 0.238,-0.3 0.473,0.359 0.472,0.851 1.184,0.586 0.234,0.661 1.184,0.339 0.945,0.743 0.477,0.043 0.234,0.656 h 0.239 l 0.707,0.699 0.71,0.395 0.239,0.492 0.234,0.109 0.473,0.645 0.238,-0.106 0.945,0.313 0.239,0.402 0.234,-0.066 0.711,-0.86 0.238,-0.183 0.235,0.183 0.238,0.992 0.234,0.231 0.239,-0.098 0.234,-0.433 0.473,0.035 0.476,0.199 0.707,-0.199 0.473,0.101 h 0.238 l 0.238,0.329 0.473,-0.129 0.234,-0.2 1.184,0.067 0.238,-0.235 0.235,-0.414 0.472,-0.14 0.239,-0.18 0.711,-0.219 0.945,-0.332 0.234,0.074 0.239,-0.417 0.238,0.191 0.234,-0.191 h 0.238 l 0.946,0.566 0.238,-0.453 0.234,-0.074 0.239,-0.235 h 0.945 l 0.473,-0.402 0.238,-0.457 h 0.234 l 0.711,0.699 0.473,-0.203 0.238,-0.973 0.235,-0.222 0.472,0.57 0.239,0.086 0.234,-0.215 0.476,0.172 0.473,1.023 0.235,0.231 h 0.238 l 0.707,-0.793 0.711,0.68 0.238,0.113 0.473,-0.153 0.234,0.192 0.238,0.039 0.473,0.484 1.422,1.219 0.473,0.391 0.472,-0.094 0.473,0.379 0.234,0.125 0.238,0.484 0.473,-0.211 0.238,-0.152 0.473,0.887 0.234,1.136 0.477,1.063 0.234,-0.145 0.711,0.379 0.235,0.137 0.238,0.27 0.238,0.089 0.235,-0.066 0.472,0.242 0.711,0.598 0.235,0.187 0.476,-0.168 0.235,0.227 0.238,0.023 0.707,0.633 0.476,-0.433 0.946,0.546 0.234,0.227 0.477,-0.301 0.472,-0.117 0.473,0.418 1.184,0.019 0.234,0.168 2.129,-0.222 0.238,0.054 0.473,-0.265 0.238,-0.02 0.234,-0.191 0.711,0.23 1.184,-1.523 0.234,0.062 0.711,-0.46 0.235,0.222 0.476,-0.199 0.235,0.219 0.238,-0.11 0.473,-0.804 0.472,0.097 0.239,-0.191 0.234,0.07 0.238,-0.168 0.235,-0.316 0.71,-0.098 0.239,-0.254 0.472,0.102 0.235,-0.336 0.472,0.156 0.473,-0.418 0.477,0.238 0.234,-0.105 0.238,0.027 0.235,0.309 0.238,-0.231 0.473,0.231 0.945,-0.551 0.711,0.731 0.473,-0.204 1.183,0.696 0.235,-0.219 0.476,0.051 0.234,0.312 h 0.711 l 0.235,-0.511 0.238,-0.203 0.945,0.57 0.239,0.023 0.234,-0.414 0.238,-0.101 0.239,0.347 0.234,-0.074 0.711,0.555 0.473,-0.532 0.234,-0.074 0.711,0.321 0.238,-0.121 0.473,-0.575 0.711,0.254 0.234,0.293 0.238,0.098 0.707,-0.293 0.711,0.93 0.239,-0.094 0.234,-0.543 0.711,-0.27 0.473,0.223 0.238,0.023 0.945,-0.597 0.235,0.277 0.238,0.512 h 0.473 l 0.238,-0.313 0.234,-0.023 0.711,0.711 0.238,-0.067 0.235,-0.402 0.238,-0.023 0.473,0.285 0.472,0.707 0.473,-0.203 0.238,-0.133 h 0.473 l 0.473,0.64 0.234,-0.195 0.238,-0.023 0.239,-0.153 0.234,0.219 0.238,0.555 0.235,0.187 0.71,1.774 0.239,0.211 0.234,1.996 0.238,0.531 0.707,3.711 0.239,0.223 0.238,0.8 0.473,0.352 0.234,0.102 0.238,0.722 0.235,0.016 0.472,-0.145 0.239,0.289 0.238,0.094 0.234,0.492 0.473,0.231 0.473,0.039 0.711,0.476"
style="fill:none;stroke:#ff7f0e;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path804"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g806"><g
id="g808"><g
id="g810"
clip-path="url(#clipPath814)"><g
id="g816"><g
id="g818"
transform="scale(1,-1)"><path
d="m 319.062,-292.316 v 68.988 h 1.422 l 0.235,8.23 h 1.894 l 0.473,8.231 h 0.234 l 0.239,2.652 h 0.234 l 0.238,2.164 h 0.473 l 0.238,1.832 h 0.707 l 0.239,2.985 h 0.238 l 0.234,1.25 h 0.945 l 0.239,2.164 0.234,0.953 0.477,5.113 0.472,1.133 0.235,3.683 0.238,18.629 0.234,3.293 0.239,0.309 0.238,0.594 0.473,0.23 0.234,1.238 0.238,0.598 0.235,3.871 0.238,0.176 0.238,2.543 0.235,0.469 0.238,1.246 0.234,2.039 0.238,0.183 0.473,1.887 0.473,0.34 0.238,0.016 0.473,2.929 0.234,0.09 0.238,0.379 0.946,0.383 0.238,0.168 0.234,0.375 0.473,0.055 0.238,0.507 0.239,0.032 0.472,1.828 0.235,0.039 0.238,0.394 0.473,0.118 0.238,0.304 0.473,0.121 1.417,0.25 0.239,0.993 0.472,0.39 1.657,0.328 0.234,-0.015 0.238,-0.871 0.235,-0.36 0.711,0.137 0.711,0.543 0.234,-0.293 0.238,0.148 0.235,-0.593 0.238,0.156 0.238,0.492 0.473,-0.102 0.707,-0.593 0.238,0.121 0.238,1.5 0.235,-0.246 0.238,-0.567 0.234,-0.031 0.239,-0.199 0.234,0.094 0.477,0.722 1.179,-0.086 0.239,-0.34 0.234,0.258 0.477,-0.961 0.234,-0.008 0.238,-0.16 0.707,0.098 0.239,0.652 0.238,0.114 0.234,-0.028 0.238,1.539 0.235,0.434 0.472,0.164 0.239,0.027 0.238,-0.793 0.234,-0.179 0.239,0.961 0.472,0.086 0.946,0.519 0.238,0.149 0.473,0.632 0.472,0.188 0.235,-0.11 0.238,0.125 0.238,-0.113 0.235,0.035 0.238,0.239 0.234,-0.012 0.239,0.305 h 0.234 l 0.238,-0.168 0.238,-0.555 0.235,-0.172 0.238,0.672 0.235,-0.059 0.238,0.348 0.472,-0.145 0.473,-1.378 0.945,0.105 0.473,-0.555 0.238,0.188 0.473,-0.11 0.238,0.415 0.473,0.023 0.473,-0.363 0.472,1.937 0.711,-0.121 0.235,0.895 0.238,-0.246 0.234,0.664 0.238,0.293 0.239,-0.422 2.129,2.285 0.234,0.148 0.473,-0.008 0.238,0.122 0.238,-0.11 0.473,-0.41 0.234,0.223 0.239,0.027 0.945,0.961 0.238,-0.207 0.235,-0.051 0.238,-0.238 0.707,0.164 0.238,-0.141 0.238,-0.433 0.235,0.054 0.238,-0.16 0.234,0.184 0.473,2.25 0.711,0.008 0.473,0.797 0.472,0.406 0.477,-0.129 0.234,0.394 0.239,0.149 0.234,0.484 0.238,0.106 0.946,-0.02 0.472,-0.859 0.711,-0.067 0.235,-0.605 0.238,-0.129 0.472,-0.555 0.239,-0.332 0.707,-0.265 0.238,0.093 0.238,-0.25 0.235,0.329 0.238,-0.629 0.234,-0.055 0.239,-0.285 0.234,-0.016 0.238,1.36 0.235,0.351 0.238,-0.098 0.711,0.469 0.234,0.317 0.239,0.109 0.234,-0.098 0.238,0.184 0.239,-0.047 0.234,0.246 0.473,0.266 0.472,0.66 0.477,0.672 0.472,0.562 0.473,0.434 0.234,0.344 0.473,-0.575 0.238,0.899 0.946,0.223 0.472,0.105 0.477,0.098 0.234,-0.286 0.473,0.329 0.711,1.468 0.473,-0.05 0.238,0.086 0.472,0.738 0.235,0.035 0.473,0.379 1.183,0.269 0.238,0.211 0.235,-0.062 0.238,-0.203 0.473,0.133 0.238,0.507 0.234,0.051 0.239,-0.48 0.234,-0.211 0.711,0.062 0.238,0.063 0.473,-0.227 0.945,-0.144 0.238,0.105 0.473,-0.035 0.707,-0.746 0.711,-0.395 0.238,-0.187 0.946,-1.246 0.472,0.199 0.711,-0.895 0.473,-0.015 0.473,0.191 0.472,-0.957 0.473,-1.07 0.238,-0.59 0.711,0.449 0.473,-0.863 0.472,-0.172 0.235,-0.121 0.238,0.207 0.238,0.043 0.473,-0.473 0.234,-0.113 0.239,-0.301 0.472,0.207 0.235,-0.019 0.238,-0.285 0.238,-1.008 0.235,0.367 0.238,-0.371 0.234,0.039 0.473,0.426 0.711,-0.649 0.473,0.879 0.238,-0.004 0.234,0.145 0.238,-0.219 0.239,0.008 0.234,0.433 0.238,-0.148 0.473,1.277 0.234,0.243 0.239,-0.11 0.472,0.457 0.711,0.328 0.235,-0.242 0.238,-0.598 0.234,-0.191 0.239,0.09 0.238,-0.141 0.707,1.282 0.238,0.089 0.235,-0.265 0.476,0.25 0.235,0.101"
style="fill:none;stroke:#ffffff;stroke-width:6;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path820"
inkscape:connector-curvature="0" /></g><g
id="g822"
transform="scale(1,-1)"><path
d="m 319.062,-292.316 v 68.988 h 1.422 l 0.235,8.23 h 1.894 l 0.473,8.231 h 0.234 l 0.239,2.652 h 0.234 l 0.238,2.164 h 0.473 l 0.238,1.832 h 0.707 l 0.239,2.985 h 0.238 l 0.234,1.25 h 0.945 l 0.239,2.164 0.234,0.953 0.477,5.113 0.472,1.133 0.235,3.683 0.238,18.629 0.234,3.293 0.239,0.309 0.238,0.594 0.473,0.23 0.234,1.238 0.238,0.598 0.235,3.871 0.238,0.176 0.238,2.543 0.235,0.469 0.238,1.246 0.234,2.039 0.238,0.183 0.473,1.887 0.473,0.34 0.238,0.016 0.473,2.929 0.234,0.09 0.238,0.379 0.946,0.383 0.238,0.168 0.234,0.375 0.473,0.055 0.238,0.507 0.239,0.032 0.472,1.828 0.235,0.039 0.238,0.394 0.473,0.118 0.238,0.304 0.473,0.121 1.417,0.25 0.239,0.993 0.472,0.39 1.657,0.328 0.234,-0.015 0.238,-0.871 0.235,-0.36 0.711,0.137 0.711,0.543 0.234,-0.293 0.238,0.148 0.235,-0.593 0.238,0.156 0.238,0.492 0.473,-0.102 0.707,-0.593 0.238,0.121 0.238,1.5 0.235,-0.246 0.238,-0.567 0.234,-0.031 0.239,-0.199 0.234,0.094 0.477,0.722 1.179,-0.086 0.239,-0.34 0.234,0.258 0.477,-0.961 0.234,-0.008 0.238,-0.16 0.707,0.098 0.239,0.652 0.238,0.114 0.234,-0.028 0.238,1.539 0.235,0.434 0.472,0.164 0.239,0.027 0.238,-0.793 0.234,-0.179 0.239,0.961 0.472,0.086 0.946,0.519 0.238,0.149 0.473,0.632 0.472,0.188 0.235,-0.11 0.238,0.125 0.238,-0.113 0.235,0.035 0.238,0.239 0.234,-0.012 0.239,0.305 h 0.234 l 0.238,-0.168 0.238,-0.555 0.235,-0.172 0.238,0.672 0.235,-0.059 0.238,0.348 0.472,-0.145 0.473,-1.378 0.945,0.105 0.473,-0.555 0.238,0.188 0.473,-0.11 0.238,0.415 0.473,0.023 0.473,-0.363 0.472,1.937 0.711,-0.121 0.235,0.895 0.238,-0.246 0.234,0.664 0.238,0.293 0.239,-0.422 2.129,2.285 0.234,0.148 0.473,-0.008 0.238,0.122 0.238,-0.11 0.473,-0.41 0.234,0.223 0.239,0.027 0.945,0.961 0.238,-0.207 0.235,-0.051 0.238,-0.238 0.707,0.164 0.238,-0.141 0.238,-0.433 0.235,0.054 0.238,-0.16 0.234,0.184 0.473,2.25 0.711,0.008 0.473,0.797 0.472,0.406 0.477,-0.129 0.234,0.394 0.239,0.149 0.234,0.484 0.238,0.106 0.946,-0.02 0.472,-0.859 0.711,-0.067 0.235,-0.605 0.238,-0.129 0.472,-0.555 0.239,-0.332 0.707,-0.265 0.238,0.093 0.238,-0.25 0.235,0.329 0.238,-0.629 0.234,-0.055 0.239,-0.285 0.234,-0.016 0.238,1.36 0.235,0.351 0.238,-0.098 0.711,0.469 0.234,0.317 0.239,0.109 0.234,-0.098 0.238,0.184 0.239,-0.047 0.234,0.246 0.473,0.266 0.472,0.66 0.477,0.672 0.472,0.562 0.473,0.434 0.234,0.344 0.473,-0.575 0.238,0.899 0.946,0.223 0.472,0.105 0.477,0.098 0.234,-0.286 0.473,0.329 0.711,1.468 0.473,-0.05 0.238,0.086 0.472,0.738 0.235,0.035 0.473,0.379 1.183,0.269 0.238,0.211 0.235,-0.062 0.238,-0.203 0.473,0.133 0.238,0.507 0.234,0.051 0.239,-0.48 0.234,-0.211 0.711,0.062 0.238,0.063 0.473,-0.227 0.945,-0.144 0.238,0.105 0.473,-0.035 0.707,-0.746 0.711,-0.395 0.238,-0.187 0.946,-1.246 0.472,0.199 0.711,-0.895 0.473,-0.015 0.473,0.191 0.472,-0.957 0.473,-1.07 0.238,-0.59 0.711,0.449 0.473,-0.863 0.472,-0.172 0.235,-0.121 0.238,0.207 0.238,0.043 0.473,-0.473 0.234,-0.113 0.239,-0.301 0.472,0.207 0.235,-0.019 0.238,-0.285 0.238,-1.008 0.235,0.367 0.238,-0.371 0.234,0.039 0.473,0.426 0.711,-0.649 0.473,0.879 0.238,-0.004 0.234,0.145 0.238,-0.219 0.239,0.008 0.234,0.433 0.238,-0.148 0.473,1.277 0.234,0.243 0.239,-0.11 0.472,0.457 0.711,0.328 0.235,-0.242 0.238,-0.598 0.234,-0.191 0.239,0.09 0.238,-0.141 0.707,1.282 0.238,0.089 0.235,-0.265 0.476,0.25 0.235,0.101"
style="fill:none;stroke:#d62728;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path824"
inkscape:connector-curvature="0" /></g></g></g></g></g><g
id="g826"><g
id="g828"><g
id="g830"
clip-path="url(#clipPath834)"><g
id="g836"><g
id="g838"
transform="scale(1,-1)"><path
d="m 388.617,-292.316 v 68.988 h 1.184 l 0.472,16.461 h 0.239 l 0.234,8.234 0.238,2.649 h 0.473 l 0.238,1.132 h 0.235 l 0.238,1.032 h 1.184 l 0.472,1.832 0.235,1.586 h 0.476 l 0.945,2.648 h 0.473 l 0.235,0.582 h 2.839 l 0.239,0.551 h 0.472 l 0.239,1.035 h 0.234 l 0.473,0.949 h 0.472 l 0.239,0.449 0.234,0.848 0.476,0.793 h 0.235 l 0.238,0.375 0.234,-0.375 h 0.239 l 0.234,1.098 h 0.711 l 0.238,0.344 0.235,-0.7 h 0.238 l 0.473,-2.383 h 0.472 l 0.239,-0.449 h 0.234 l 0.238,-0.465 h 0.235 l 0.238,0.465 h 0.473 l 0.238,0.449 0.234,-0.449 h 0.473 l 0.473,0.879 0.949,-1.828 h 0.945 l 0.238,0.484 h 0.707 l 0.239,0.465 0.234,0.879 h 1.184 l 0.238,-0.43 h 0.707 l 0.238,0.848 0.473,-0.848 h 0.238 l 0.473,0.848 0.472,-1.297 0.239,-0.465 0.234,0.465 0.238,-0.465 0.235,0.465 0.238,0.879 0.234,-1.344 h 0.711 l 0.239,-0.992 h 0.234 l 0.711,1.457 h 0.945 l 0.239,2.09 h 0.234 l 0.238,-0.391 0.946,1.489"
style="fill:none;stroke:#2ca02c;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path840"
inkscape:connector-curvature="0" /></g></g></g></g></g><path
d="m 237.141,202.926 h 156.512 v 9.113 H 237.141 Z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path842"
inkscape:connector-curvature="0" /></g></g><g
id="g844"><g
id="g846"
transform="scale(1,-1)"><path
d="M 54.426,-229.395 V -18.867"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path848"
inkscape:connector-curvature="0" /></g><g
id="g850"
transform="scale(1,-1)"><path
d="M 425.527,-229.395 V -18.867"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path852"
inkscape:connector-curvature="0" /></g><g
id="g854"
transform="scale(1,-1)"><path
d="M 54.426,-229.395 H 425.527"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path856"
inkscape:connector-curvature="0" /></g><g
id="g858"
transform="scale(1,-1)"><path
d="M 54.426,-18.867 H 425.527"
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path860"
inkscape:connector-curvature="0" /></g><text
transform="translate(74.233589,12.867187)"
style="font-variant:normal;font-weight:normal;font-size:12px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text864"><tspan
x="0 7.6079998 10.932 18.540001 22.860001 26.184 33.779999 40.02 44.723999 52.068001 55.391998 58.716 64.956001 68.760002 76.092003 83.688004 87.491997 97.835999 105.216 111.804 121.248 128.856 132.66 140.004 147.60001 155.20799 159.01199 170.868 174.192 181.78799 189.396 196.728 206.532 212.772 216.576 221.256 228.85201 236.18401 240.888 244.728 252.336 259.67999 264.384 270.97198 278.56799 282.37201 285.69601 293.02802 300.63599 306.87601"
y="0"
sodipodi:role="line"
id="tspan862">pip-installs on MacOS and Windows (not batch jobs)</tspan></text>
<g
id="g866"
transform="scale(1,-1)"><path
d="m 61.297,-58.297 h 20"
style="fill:none;stroke:#1f77b4;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path868"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,61.797333)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text872"><tspan
x="0 6.3299999 12.66 22.4 28.74"
y="0"
sodipodi:role="line"
id="tspan870">numpy</tspan></text>
<g
id="g874"
transform="scale(1,-1)"><path
d="m 61.297,-72.969 h 20"
style="fill:none;stroke:#ff7f0e;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path876"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,76.469208)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text880"><tspan
x="0 5.1999998 10.69 13.46 19.799999"
y="0"
sodipodi:role="line"
id="tspan878">scipy</tspan></text>
<g
id="g882"
transform="scale(1,-1)"><path
d="m 61.297,-87.641 h 20"
style="fill:none;stroke:#2ca02c;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path884"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,91.141082)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text888"><tspan
x="0 6.3400002 12.46 18.790001 25.129999 31.25"
y="0"
sodipodi:role="line"
id="tspan886">pandas</tspan></text>
<g
id="g890"
transform="scale(1,-1)"><path
d="m 61.297,-102.312 h 20"
style="fill:none;stroke:#d62728;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path892"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,105.81296)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text896"><tspan
x="0 9.7399998 15.86 19.780001 26.120001 28.889999 35 38.919998 41.689999 44.459999"
y="0"
sodipodi:role="line"
id="tspan894">matplotlib</tspan></text>
<g
id="g898"
transform="scale(1,-1)"><path
d="m 61.297,-143.883 h 20"
style="fill:none;stroke:#1f77b4;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
id="path900"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,147.38157)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text904"><tspan
x="0 4.1100001 10.22 16.33 20.25 23.85 30.18 36.509998 46.25 52.59"
y="0"
sodipodi:role="line"
id="tspan902">root-numpy</tspan></text>
<g
id="g906"
transform="scale(1,-1)"><path
d="m 61.297,-158.555 h 20"
style="fill:none;stroke:#8c564b;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
id="path908"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,162.05345)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text912"><tspan
x="0 2.77 12.51 15.28 21.610001 27.940001 30.709999"
y="0"
sodipodi:role="line"
id="tspan910">iminuit</tspan></text>
<g
id="g914"
transform="scale(1,-1)"><path
d="m 61.297,-173.227 h 20"
style="fill:none;stroke:#cc00ff;stroke-width:1.5;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:3, 3;stroke-dashoffset:0;stroke-opacity:1"
id="path916"
inkscape:connector-curvature="0" /></g><text
transform="translate(89.29659,176.72532)"
style="font-variant:normal;font-weight:normal;font-size:10px;font-family:'DejaVu Sans';-inkscape-font-specification:DejaVuSans;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="text922"><tspan
x="0 4.1100001 10.22 16.33 20.25 26.59"
y="0"
sodipodi:role="line"
id="tspan918">rootpy</tspan><tspan
x="131.48373 137.81374 144.15373 148.26373 154.37373 160.48373 204.49373 210.61372 218.78374 224.57373 232.74373 238.86372 242.97372 280.65372 286.14374 292.25372 295.77374 299.29373 305.44373"
y="33.929352"
sodipodi:role="line"
id="tspan920">uprootawkwardcoffea</tspan></text>
</g></g></svg>
|