Spaces:
Running
Running
File size: 76,281 Bytes
8951992 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 |
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="932.452812pt" height="307.598312pt" viewBox="0 0 932.452812 307.598312" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF 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#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2025-02-13T13:38:34.924119</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.8.2, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 307.598312
L 932.452812 307.598312
L 932.452812 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 42.952813 269.928
L 239.893989 269.928
L 239.893989 42.624
L 42.952813 42.624
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<path d="M 62.64693 269.928
L 62.64693 42.624
" clip-path="url(#p3182a44e30)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_2">
<defs>
<path id="mb46ec4cfeb" d="M 0 0
L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mb46ec4cfeb" x="62.64693" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<!-- 1024 -->
<g transform="translate(65.362555 294.148312) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="GuardianSansCond-Regular-31" d="M 832 0
L 1363 0
L 1363 4474
L 1171 4474
L 141 4083
L 141 3776
L 832 3846
L 832 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-30" d="M 1722 -70
C 2656 -70 3155 646 3155 2061
L 3155 2406
C 3155 3891 2598 4499 1715 4499
C 819 4499 269 3834 269 2368
L 269 2042
C 269 499 845 -70 1722 -70
z
M 1728 384
C 1069 384 845 979 845 2016
L 845 2490
C 845 3494 1088 4051 1709 4051
C 2336 4051 2592 3514 2592 2458
L 2592 1978
C 2592 934 2374 384 1728 384
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-32" d="M 173 0
L 2470 0
L 2470 461
L 800 461
L 800 480
L 1574 1421
C 2067 2035 2419 2528 2419 3264
C 2419 4026 2029 4499 1222 4499
C 806 4499 499 4410 269 4282
L 269 3853
C 467 3949 730 4032 1056 4032
C 1619 4032 1850 3750 1850 3213
C 1850 2630 1542 2189 1152 1670
L 173 397
L 173 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-34" d="M 1805 0
L 2330 0
L 2330 1107
L 2957 1107
L 2957 1562
L 2330 1562
L 2330 4435
L 1869 4435
L 70 1504
L 70 1107
L 1805 1107
L 1805 0
z
M 608 1562
L 608 1581
L 1779 3475
L 1805 3475
L 1805 1562
L 608 1562
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="82.299973"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="124.799957"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_3">
<path d="M 102.035165 269.928
L 102.035165 42.624
" clip-path="url(#p3182a44e30)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_4">
<g>
<use xlink:href="#mb46ec4cfeb" x="102.035165" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<!-- 4096 -->
<g transform="translate(104.75079 296.799875) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="GuardianSansCond-Regular-39" d="M 1171 -70
C 2176 -70 2854 448 2854 2221
L 2854 2586
C 2854 3795 2432 4499 1523 4499
C 691 4499 243 3917 243 3021
C 243 2202 653 1683 1389 1683
C 1766 1683 2074 1818 2285 1984
C 2266 608 1798 397 1107 397
C 851 397 563 467 429 518
L 429 96
C 563 0 858 -70 1171 -70
z
M 1542 2150
C 1056 2150 806 2445 806 3072
C 806 3712 1043 4045 1523 4045
C 2048 4045 2285 3558 2285 2592
L 2285 2374
C 2138 2272 1882 2150 1542 2150
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-36" d="M 1632 384
C 1082 384 845 915 845 1837
L 845 2054
C 992 2150 1254 2278 1594 2278
C 2086 2278 2323 1984 2323 1357
C 2323 742 2086 384 1632 384
z
M 1632 -70
C 2438 -70 2886 544 2886 1408
C 2886 2234 2490 2746 1754 2746
C 1363 2746 1056 2611 845 2445
C 877 3853 1440 4038 2029 4038
C 2291 4038 2554 3974 2688 3930
L 2688 4352
C 2547 4442 2272 4499 1958 4499
C 1043 4499 275 3981 275 2208
L 275 1843
C 275 691 717 -70 1632 -70
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-34"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="47.399994"/>
<use xlink:href="#GuardianSansCond-Regular-39" x="100.899979"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="149.799973"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_5">
<path d="M 141.423401 269.928
L 141.423401 42.624
" clip-path="url(#p3182a44e30)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_6">
<g>
<use xlink:href="#mb46ec4cfeb" x="141.423401" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<!-- 16384 -->
<g transform="translate(144.139026 298.599875) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="GuardianSansCond-Regular-33" d="M 1094 -64
C 1920 -64 2432 416 2432 1248
C 2432 1939 2112 2253 1606 2362
L 1606 2381
C 2042 2515 2310 2803 2310 3405
C 2310 4096 1882 4499 1158 4499
C 787 4499 486 4429 275 4320
L 275 3891
C 461 3968 678 4038 998 4038
C 1478 4038 1754 3866 1754 3302
C 1754 2797 1478 2547 1018 2547
L 717 2547
L 717 2086
L 1056 2086
C 1600 2086 1869 1837 1869 1267
C 1869 646 1517 403 947 403
C 646 403 358 493 147 608
L 147 166
C 358 32 640 -64 1094 -64
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-38" d="M 1581 -64
C 2445 -64 2931 467 2931 1139
C 2931 1760 2592 2074 2106 2330
C 2490 2541 2822 2899 2822 3424
C 2822 4077 2394 4499 1606 4499
C 819 4499 384 4013 384 3398
C 384 2848 678 2509 1069 2285
C 602 2054 230 1683 230 1082
C 230 384 710 -64 1581 -64
z
M 1587 390
C 1082 390 768 678 768 1126
C 768 1581 1037 1894 1414 2080
C 2029 1792 2387 1574 2387 1082
C 2387 614 2054 390 1587 390
z
M 1754 2522
C 1210 2778 928 3021 928 3430
C 928 3821 1171 4051 1606 4051
C 2067 4051 2285 3782 2285 3398
C 2285 3008 2099 2765 1754 2522
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="77.699982"/>
<use xlink:href="#GuardianSansCond-Regular-38" x="119.899979"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="169.299973"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_7">
<path d="M 180.811636 269.928
L 180.811636 42.624
" clip-path="url(#p3182a44e30)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<g>
<use xlink:href="#mb46ec4cfeb" x="180.811636" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<!-- 65536 -->
<g transform="translate(183.527261 299.348312) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="GuardianSansCond-Regular-35" d="M 1094 -64
C 1971 -64 2445 512 2445 1363
C 2445 2298 1997 2707 1165 2707
C 1011 2707 890 2694 794 2675
L 877 3974
L 2342 3974
L 2342 4435
L 429 4435
L 294 2170
C 467 2208 710 2246 966 2246
C 1587 2246 1875 1990 1875 1363
C 1875 717 1587 397 954 397
C 627 397 365 474 154 582
L 154 147
C 352 26 672 -64 1094 -64
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-36"/>
<use xlink:href="#GuardianSansCond-Regular-35" x="48.899994"/>
<use xlink:href="#GuardianSansCond-Regular-35" x="90.999985"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="133.099976"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="175.299973"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_9">
<path d="M 220.199871 269.928
L 220.199871 42.624
" clip-path="url(#p3182a44e30)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_10">
<g>
<use xlink:href="#mb46ec4cfeb" x="220.199871" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<!-- 131072 -->
<g transform="translate(222.915496 300.398312) rotate(-90) scale(0.1 -0.1)">
<defs>
<path id="GuardianSansCond-Regular-37" d="M 461 0
L 1018 0
L 2387 3994
L 2387 4435
L 109 4435
L 109 3974
L 1850 3974
L 1850 3949
L 461 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-31" x="70.999985"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="99.799973"/>
<use xlink:href="#GuardianSansCond-Regular-37" x="153.299957"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="192.199951"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_11">
<path d="M 42.952813 269.928
L 239.893989 269.928
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_12">
<defs>
<path id="mbb5392dbf9" d="M 0 0
L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_6">
<!-- 0 -->
<g transform="translate(30.602813 273.598312) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-30"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_13">
<path d="M 42.952813 239.6208
L 239.893989 239.6208
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_14">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="239.6208" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_7">
<!-- 20 -->
<g transform="translate(26.352813 243.291112) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-32"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="42.499985"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_15">
<path d="M 42.952813 209.3136
L 239.893989 209.3136
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_16">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="209.3136" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_8">
<!-- 40 -->
<g transform="translate(25.862188 212.983912) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-34"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="47.399994"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_17">
<path d="M 42.952813 179.0064
L 239.893989 179.0064
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_18">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="179.0064" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_9">
<!-- 60 -->
<g transform="translate(25.712188 182.676712) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-36"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="48.899994"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_19">
<path d="M 42.952813 148.6992
L 239.893989 148.6992
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_20">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="148.6992" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_10">
<!-- 80 -->
<g transform="translate(25.662188 152.369512) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-38"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="49.399994"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_21">
<path d="M 42.952813 118.392
L 239.893989 118.392
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_22">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="118.392" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_11">
<!-- 100 -->
<g transform="translate(22.373125 122.062312) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="82.299973"/>
</g>
</g>
</g>
<g id="ytick_7">
<g id="line2d_23">
<path d="M 42.952813 88.0848
L 239.893989 88.0848
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_24">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="88.0848" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_12">
<!-- 120 -->
<g transform="translate(23.473125 91.755112) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="71.299973"/>
</g>
</g>
</g>
<g id="ytick_8">
<g id="line2d_25">
<path d="M 42.952813 57.7776
L 239.893989 57.7776
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_26">
<g>
<use xlink:href="#mbb5392dbf9" x="42.952813" y="57.7776" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_13">
<!-- 140 -->
<g transform="translate(22.9825 61.447912) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="76.199982"/>
</g>
</g>
</g>
<g id="text_14">
<!-- Memory Usage (GB) -->
<g transform="translate(16.00875 198.348187) rotate(-90) scale(0.12 -0.12)">
<defs>
<path id="GuardianSansCond-Regular-4d" d="M 416 0
L 909 0
L 909 2675
C 909 3098 883 3846 883 3846
L 902 3846
C 902 3846 1056 3130 1126 2861
L 1875 0
L 2426 0
L 3187 2899
C 3277 3251 3411 3859 3411 3859
L 3430 3859
C 3430 3859 3405 3098 3405 2682
L 3405 0
L 3917 0
L 3917 4435
L 3098 4435
L 2368 1510
C 2266 1107 2182 608 2182 608
L 2170 608
C 2170 608 2086 1101 1984 1510
L 1242 4435
L 416 4435
L 416 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-65" d="M 1555 -51
C 1984 -51 2317 102 2470 243
L 2470 627
C 2240 499 1965 397 1613 397
C 1037 397 742 698 723 1466
L 2554 1466
L 2554 1798
C 2554 2893 2176 3334 1402 3334
C 659 3334 186 2810 186 1722
L 186 1549
C 186 499 634 -51 1555 -51
z
M 1382 2906
C 1830 2906 2010 2611 2010 1894
L 723 1894
C 736 2630 992 2906 1382 2906
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-6d" d="M 346 0
L 870 0
L 870 2688
C 1050 2790 1267 2886 1523 2886
C 1856 2886 1971 2758 1971 2464
L 1971 0
L 2490 0
L 2490 2688
C 2682 2797 2912 2886 3136 2886
C 3488 2886 3590 2746 3590 2464
L 3590 0
L 4115 0
L 4115 2528
C 4115 3104 3821 3334 3347 3334
C 2995 3334 2688 3187 2419 2995
L 2394 2995
C 2266 3226 2061 3334 1722 3334
C 1395 3334 1088 3181 870 3021
L 845 3021
L 845 3283
L 346 3283
L 346 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-6f" d="M 1459 -51
C 2272 -51 2733 570 2733 1542
L 2733 1747
C 2733 2771 2291 3334 1459 3334
C 659 3334 186 2714 186 1741
L 186 1530
C 186 531 614 -51 1459 -51
z
M 1466 378
C 992 378 723 762 723 1472
L 723 1818
C 723 2451 947 2906 1453 2906
C 1920 2906 2195 2560 2195 1805
L 2195 1466
C 2195 826 1958 378 1466 378
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-72" d="M 346 0
L 870 0
L 870 2605
C 1062 2752 1306 2842 1587 2842
C 1638 2842 1728 2835 1786 2829
L 1786 3302
C 1747 3315 1677 3328 1606 3328
C 1306 3328 1030 3142 870 2938
L 845 2938
L 845 3283
L 346 3283
L 346 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-79" d="M 570 -1261
C 1082 -1261 1306 -960 1485 -365
L 2592 3283
L 2067 3283
L 1485 1197
C 1421 992 1376 787 1376 787
L 1363 787
C 1363 787 1331 928 1248 1203
L 621 3283
L 51 3283
L 1120 13
L 1018 -294
C 896 -698 749 -826 480 -826
C 384 -826 262 -813 186 -800
L 186 -1171
C 282 -1222 435 -1261 570 -1261
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-20" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-55" d="M 1760 -70
C 2682 -70 3110 410 3110 1344
L 3110 4435
L 2598 4435
L 2598 1395
C 2598 659 2368 384 1786 384
C 1197 384 934 666 934 1389
L 934 4435
L 397 4435
L 397 1325
C 397 429 832 -70 1760 -70
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-73" d="M 992 -51
C 1658 -51 2054 307 2054 947
C 2054 1485 1818 1709 1306 1888
L 1050 1978
C 768 2074 659 2195 659 2451
C 659 2771 864 2893 1222 2893
C 1517 2893 1760 2810 1914 2739
L 1914 3168
C 1773 3251 1568 3334 1197 3334
C 531 3334 160 2982 160 2406
C 160 1901 422 1658 826 1517
L 1082 1427
C 1408 1312 1536 1184 1536 896
C 1536 582 1370 390 934 390
C 582 390 358 480 154 563
L 154 141
C 358 19 640 -51 992 -51
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-61" d="M 1082 -51
C 1395 -51 1638 77 1779 230
L 1811 230
L 1862 0
L 2291 0
L 2291 2413
C 2291 3027 1958 3334 1293 3334
C 915 3334 634 3258 410 3155
L 410 2771
C 576 2829 806 2886 1094 2886
C 1600 2886 1766 2739 1766 2278
L 1766 1958
L 1088 1856
C 480 1766 160 1466 160 883
C 160 250 525 -51 1082 -51
z
M 1222 358
C 877 358 704 544 704 915
C 704 1274 877 1440 1242 1485
L 1766 1549
L 1766 525
C 1658 435 1459 358 1222 358
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-67" d="M 1325 -1235
C 2240 -1235 2675 -787 2675 -179
C 2675 416 2336 704 1696 704
L 1069 704
C 858 704 774 806 774 966
C 774 1069 826 1178 890 1242
C 1018 1197 1171 1178 1331 1178
C 1939 1178 2413 1530 2413 2208
L 2413 2304
C 2413 2560 2336 2739 2234 2874
L 2682 2874
L 2682 3283
L 1747 3283
C 1626 3315 1485 3334 1325 3334
C 704 3334 250 2944 250 2278
L 250 2182
C 250 1786 429 1510 634 1376
C 422 1210 294 1024 294 787
C 294 544 442 403 627 333
L 627 307
C 320 192 64 -38 64 -422
C 64 -915 506 -1235 1325 -1235
z
M 1312 -819
C 832 -819 595 -640 595 -326
C 595 -51 762 141 966 218
L 1632 218
C 2022 218 2150 45 2150 -237
C 2150 -602 1926 -819 1312 -819
z
M 1331 1581
C 998 1581 762 1773 762 2189
L 762 2323
C 762 2726 973 2931 1331 2931
C 1670 2931 1901 2746 1901 2310
L 1901 2176
C 1901 1779 1683 1581 1331 1581
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-28" d="M 1318 -768
L 1760 -768
C 1267 -166 826 877 826 1869
L 826 2086
C 826 3117 1267 4102 1760 4698
L 1318 4698
C 800 4160 275 3187 275 2029
L 275 1882
C 275 723 800 -237 1318 -768
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-47" d="M 1933 -64
C 2451 -64 2842 51 3098 166
L 3098 2234
L 1837 2234
L 1837 1779
L 2566 1779
L 2566 486
C 2432 435 2208 397 1978 397
C 1056 397 806 1011 806 2099
L 806 2406
C 806 3398 1088 4038 1990 4038
C 2438 4038 2714 3930 2944 3821
L 2944 4275
C 2758 4390 2477 4499 2022 4499
C 909 4499 237 3853 237 2342
L 237 2099
C 237 493 864 -64 1933 -64
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-42" d="M 416 0
L 1562 0
C 2528 0 2944 493 2944 1254
C 2944 1965 2618 2253 2112 2323
L 2112 2349
C 2605 2483 2790 2842 2790 3334
C 2790 4026 2464 4435 1517 4435
L 416 4435
L 416 0
z
M 954 454
L 954 2074
L 1517 2074
C 2086 2074 2381 1875 2381 1293
C 2381 736 2157 454 1517 454
L 954 454
z
M 954 2515
L 954 3974
L 1453 3974
C 1978 3974 2240 3814 2240 3264
C 2240 2707 1920 2515 1402 2515
L 954 2515
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-29" d="M 32 -768
L 480 -768
C 992 -237 1517 717 1517 1882
L 1517 2029
C 1517 3181 992 4160 480 4698
L 32 4698
C 531 4096 973 3053 973 2035
L 973 1818
C 973 813 531 -166 32 -768
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-4d"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="67.699982"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="110.399979"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="179.899963"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="225.499954"/>
<use xlink:href="#GuardianSansCond-Regular-79" x="254.299942"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="295.699936"/>
<use xlink:href="#GuardianSansCond-Regular-55" x="311.499924"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="366.299911"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="400.799896"/>
<use xlink:href="#GuardianSansCond-Regular-67" x="441.69989"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="484.399887"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="527.099884"/>
<use xlink:href="#GuardianSansCond-Regular-28" x="542.899872"/>
<use xlink:href="#GuardianSansCond-Regular-47" x="570.899857"/>
<use xlink:href="#GuardianSansCond-Regular-42" x="624.199844"/>
<use xlink:href="#GuardianSansCond-Regular-29" x="673.199829"/>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 52.799871 269.928
L 72.493989 269.928
L 72.493989 70.788386
L 52.799871 70.788386
z
" clip-path="url(#p3182a44e30)" style="fill: #4ea5b7"/>
</g>
<g id="patch_4">
<path d="M 92.188107 269.928
L 111.882224 269.928
L 111.882224 70.788386
L 92.188107 70.788386
z
" clip-path="url(#p3182a44e30)" style="fill: #4ea5b7"/>
</g>
<g id="patch_5">
<path d="M 131.576342 269.928
L 151.27046 269.928
L 151.27046 70.788386
L 131.576342 70.788386
z
" clip-path="url(#p3182a44e30)" style="fill: #4ea5b7"/>
</g>
<g id="patch_6">
<path d="M 170.964577 269.928
L 190.658695 269.928
L 190.658695 70.788386
L 170.964577 70.788386
z
" clip-path="url(#p3182a44e30)" style="fill: #4ea5b7"/>
</g>
<g id="patch_7">
<path d="M 210.352813 269.928
L 230.04693 269.928
L 230.04693 70.788386
L 210.352813 70.788386
z
" clip-path="url(#p3182a44e30)" style="fill: #4ea5b7"/>
</g>
<g id="patch_8">
<path d="M 52.799871 70.788386
L 72.493989 70.788386
L 72.493989 -128.351228
L 52.799871 -128.351228
z
" clip-path="url(#p3182a44e30)" style="fill: #e889ab"/>
</g>
<g id="patch_9">
<path d="M 92.188107 70.788386
L 111.882224 70.788386
L 111.882224 -128.351228
L 92.188107 -128.351228
z
" clip-path="url(#p3182a44e30)" style="fill: #e889ab"/>
</g>
<g id="patch_10">
<path d="M 131.576342 70.788386
L 151.27046 70.788386
L 151.27046 -128.351228
L 131.576342 -128.351228
z
" clip-path="url(#p3182a44e30)" style="fill: #e889ab"/>
</g>
<g id="patch_11">
<path d="M 170.964577 70.788386
L 190.658695 70.788386
L 190.658695 -128.351228
L 170.964577 -128.351228
z
" clip-path="url(#p3182a44e30)" style="fill: #e889ab"/>
</g>
<g id="patch_12">
<path d="M 210.352813 70.788386
L 230.04693 70.788386
L 230.04693 -128.351228
L 210.352813 -128.351228
z
" clip-path="url(#p3182a44e30)" style="fill: #e889ab"/>
</g>
<g id="patch_13">
<path d="M 52.799871 -128.351228
L 72.493989 -128.351228
L 72.493989 -924.909683
L 52.799871 -924.909683
z
" clip-path="url(#p3182a44e30)" style="fill: #cec0fa"/>
</g>
<g id="patch_14">
<path d="M 92.188107 -128.351228
L 111.882224 -128.351228
L 111.882224 -924.909683
L 92.188107 -924.909683
z
" clip-path="url(#p3182a44e30)" style="fill: #cec0fa"/>
</g>
<g id="patch_15">
<path d="M 131.576342 -128.351228
L 151.27046 -128.351228
L 151.27046 -924.909683
L 131.576342 -924.909683
z
" clip-path="url(#p3182a44e30)" style="fill: #cec0fa"/>
</g>
<g id="patch_16">
<path d="M 170.964577 -128.351228
L 190.658695 -128.351228
L 190.658695 -924.909683
L 170.964577 -924.909683
z
" clip-path="url(#p3182a44e30)" style="fill: #cec0fa"/>
</g>
<g id="patch_17">
<path d="M 210.352813 -128.351228
L 230.04693 -128.351228
L 230.04693 -924.909683
L 210.352813 -924.909683
z
" clip-path="url(#p3182a44e30)" style="fill: #cec0fa"/>
</g>
<g id="patch_18">
<path d="M 52.799871 -924.909682
L 72.493989 -924.909682
L 72.493989 -957.111082
L 52.799871 -957.111082
z
" clip-path="url(#p3182a44e30)" style="fill: #e38a42"/>
</g>
<g id="patch_19">
<path d="M 92.188107 -924.909682
L 111.882224 -924.909682
L 111.882224 -1053.715282
L 92.188107 -1053.715282
z
" clip-path="url(#p3182a44e30)" style="fill: #e38a42"/>
</g>
<g id="patch_20">
<path d="M 131.576342 -924.909682
L 151.27046 -924.909682
L 151.27046 -1440.132082
L 131.576342 -1440.132082
z
" clip-path="url(#p3182a44e30)" style="fill: #e38a42"/>
</g>
<g id="patch_21">
<path d="M 170.964577 -924.909682
L 190.658695 -924.909682
L 190.658695 -2985.799283
L 170.964577 -2985.799283
z
" clip-path="url(#p3182a44e30)" style="fill: #e38a42"/>
</g>
<g id="patch_22">
<path d="M 210.352813 -924.909682
L 230.04693 -924.909682
L 230.04693 -5046.688882
L 210.352813 -5046.688882
z
" clip-path="url(#p3182a44e30)" style="fill: #e38a42"/>
</g>
<g id="line2d_27">
<path d="M 42.952813 148.6992
L 239.893989 148.6992
" clip-path="url(#p3182a44e30)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #ff0000; stroke-width: 2"/>
</g>
<g id="patch_23">
<path d="M 42.952813 269.928
L 42.952813 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_24">
<path d="M 239.893989 269.928
L 239.893989 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_25">
<path d="M 42.952813 269.928
L 239.893989 269.928
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_26">
<path d="M 42.952813 42.624
L 239.893989 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_15">
<!-- No Parallelism -->
<g transform="translate(105.517901 36.624) scale(0.144 -0.144)">
<defs>
<path id="GuardianSansCond-Regular-4e" d="M 416 0
L 909 0
L 909 2912
C 909 3424 877 3757 877 3757
L 896 3757
C 896 3757 1050 3322 1274 2822
L 2547 0
L 3155 0
L 3155 4435
L 2662 4435
L 2662 1568
C 2662 1114 2694 762 2694 762
L 2682 762
C 2682 762 2502 1254 2330 1626
L 1094 4435
L 416 4435
L 416 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-50" d="M 416 0
L 954 0
L 954 1766
L 1555 1766
C 2362 1766 2854 2246 2854 3117
C 2854 4026 2413 4435 1536 4435
L 416 4435
L 416 0
z
M 954 2221
L 954 3974
L 1478 3974
C 2061 3974 2285 3750 2285 3098
C 2285 2496 2054 2221 1472 2221
L 954 2221
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-6c" d="M 358 0
L 877 0
L 877 4698
L 358 4698
L 358 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-69" d="M 358 0
L 883 0
L 883 3283
L 358 3283
L 358 0
z
M 352 3910
L 883 3910
L 883 4474
L 352 4474
L 352 3910
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-4e"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="55.799988"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="101.399979"/>
<use xlink:href="#GuardianSansCond-Regular-50" x="117.199966"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="164.199951"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="205.099945"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="233.899933"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="274.799927"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="294.099915"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="313.399902"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="356.099899"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="375.399887"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="394.699875"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="429.19986"/>
</g>
</g>
</g>
<g id="axes_2">
<g id="patch_27">
<path d="M 279.282224 269.928
L 476.223401 269.928
L 476.223401 42.624
L 279.282224 42.624
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_3">
<g id="xtick_6">
<g id="line2d_28">
<path d="M 298.976342 269.928
L 298.976342 42.624
" clip-path="url(#pa36e028680)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_29">
<g>
<use xlink:href="#mb46ec4cfeb" x="298.976342" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_16">
<!-- 1024 -->
<g transform="translate(301.691967 294.148312) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="82.299973"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="124.799957"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_30">
<path d="M 338.364577 269.928
L 338.364577 42.624
" clip-path="url(#pa36e028680)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_31">
<g>
<use xlink:href="#mb46ec4cfeb" x="338.364577" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_17">
<!-- 4096 -->
<g transform="translate(341.080202 296.799875) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-34"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="47.399994"/>
<use xlink:href="#GuardianSansCond-Regular-39" x="100.899979"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="149.799973"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_32">
<path d="M 377.752813 269.928
L 377.752813 42.624
" clip-path="url(#pa36e028680)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_33">
<g>
<use xlink:href="#mb46ec4cfeb" x="377.752813" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_18">
<!-- 16384 -->
<g transform="translate(380.468437 298.599875) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="77.699982"/>
<use xlink:href="#GuardianSansCond-Regular-38" x="119.899979"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="169.299973"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_34">
<path d="M 417.141048 269.928
L 417.141048 42.624
" clip-path="url(#pa36e028680)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_35">
<g>
<use xlink:href="#mb46ec4cfeb" x="417.141048" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_19">
<!-- 65536 -->
<g transform="translate(419.856673 299.348312) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-36"/>
<use xlink:href="#GuardianSansCond-Regular-35" x="48.899994"/>
<use xlink:href="#GuardianSansCond-Regular-35" x="90.999985"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="133.099976"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="175.299973"/>
</g>
</g>
</g>
<g id="xtick_10">
<g id="line2d_36">
<path d="M 456.529283 269.928
L 456.529283 42.624
" clip-path="url(#pa36e028680)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_37">
<g>
<use xlink:href="#mb46ec4cfeb" x="456.529283" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_20">
<!-- 131072 -->
<g transform="translate(459.244908 300.398312) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-31" x="70.999985"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="99.799973"/>
<use xlink:href="#GuardianSansCond-Regular-37" x="153.299957"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="192.199951"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_4">
<g id="ytick_9">
<g id="line2d_38">
<path d="M 279.282224 269.928
L 476.223401 269.928
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_39">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_10">
<g id="line2d_40">
<path d="M 279.282224 239.6208
L 476.223401 239.6208
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_41">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="239.6208" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_11">
<g id="line2d_42">
<path d="M 279.282224 209.3136
L 476.223401 209.3136
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_43">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="209.3136" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_12">
<g id="line2d_44">
<path d="M 279.282224 179.0064
L 476.223401 179.0064
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_45">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="179.0064" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_13">
<g id="line2d_46">
<path d="M 279.282224 148.6992
L 476.223401 148.6992
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_47">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="148.6992" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_14">
<g id="line2d_48">
<path d="M 279.282224 118.392
L 476.223401 118.392
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_49">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="118.392" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_15">
<g id="line2d_50">
<path d="M 279.282224 88.0848
L 476.223401 88.0848
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_51">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="88.0848" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_16">
<g id="line2d_52">
<path d="M 279.282224 57.7776
L 476.223401 57.7776
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_53">
<g>
<use xlink:href="#mbb5392dbf9" x="279.282224" y="57.7776" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="patch_28">
<path d="M 289.129283 269.928
L 308.823401 269.928
L 308.823401 257.481774
L 289.129283 257.481774
z
" clip-path="url(#pa36e028680)" style="fill: #4ea5b7"/>
</g>
<g id="patch_29">
<path d="M 328.517518 269.928
L 348.211636 269.928
L 348.211636 257.481774
L 328.517518 257.481774
z
" clip-path="url(#pa36e028680)" style="fill: #4ea5b7"/>
</g>
<g id="patch_30">
<path d="M 367.905754 269.928
L 387.599871 269.928
L 387.599871 257.481774
L 367.905754 257.481774
z
" clip-path="url(#pa36e028680)" style="fill: #4ea5b7"/>
</g>
<g id="patch_31">
<path d="M 407.293989 269.928
L 426.988107 269.928
L 426.988107 257.481774
L 407.293989 257.481774
z
" clip-path="url(#pa36e028680)" style="fill: #4ea5b7"/>
</g>
<g id="patch_32">
<path d="M 446.682224 269.928
L 466.376342 269.928
L 466.376342 257.481774
L 446.682224 257.481774
z
" clip-path="url(#pa36e028680)" style="fill: #4ea5b7"/>
</g>
<g id="patch_33">
<path d="M 289.129283 257.481774
L 308.823401 257.481774
L 308.823401 245.035548
L 289.129283 245.035548
z
" clip-path="url(#pa36e028680)" style="fill: #e889ab"/>
</g>
<g id="patch_34">
<path d="M 328.517518 257.481774
L 348.211636 257.481774
L 348.211636 245.035548
L 328.517518 245.035548
z
" clip-path="url(#pa36e028680)" style="fill: #e889ab"/>
</g>
<g id="patch_35">
<path d="M 367.905754 257.481774
L 387.599871 257.481774
L 387.599871 245.035548
L 367.905754 245.035548
z
" clip-path="url(#pa36e028680)" style="fill: #e889ab"/>
</g>
<g id="patch_36">
<path d="M 407.293989 257.481774
L 426.988107 257.481774
L 426.988107 245.035548
L 407.293989 245.035548
z
" clip-path="url(#pa36e028680)" style="fill: #e889ab"/>
</g>
<g id="patch_37">
<path d="M 446.682224 257.481774
L 466.376342 257.481774
L 466.376342 245.035548
L 446.682224 245.035548
z
" clip-path="url(#pa36e028680)" style="fill: #e889ab"/>
</g>
<g id="patch_38">
<path d="M 289.129283 245.035548
L 308.823401 245.035548
L 308.823401 195.250645
L 289.129283 195.250645
z
" clip-path="url(#pa36e028680)" style="fill: #cec0fa"/>
</g>
<g id="patch_39">
<path d="M 328.517518 245.035548
L 348.211636 245.035548
L 348.211636 195.250645
L 328.517518 195.250645
z
" clip-path="url(#pa36e028680)" style="fill: #cec0fa"/>
</g>
<g id="patch_40">
<path d="M 367.905754 245.035548
L 387.599871 245.035548
L 387.599871 195.250645
L 367.905754 195.250645
z
" clip-path="url(#pa36e028680)" style="fill: #cec0fa"/>
</g>
<g id="patch_41">
<path d="M 407.293989 245.035548
L 426.988107 245.035548
L 426.988107 195.250645
L 407.293989 195.250645
z
" clip-path="url(#pa36e028680)" style="fill: #cec0fa"/>
</g>
<g id="patch_42">
<path d="M 446.682224 245.035548
L 466.376342 245.035548
L 466.376342 195.250645
L 446.682224 195.250645
z
" clip-path="url(#pa36e028680)" style="fill: #cec0fa"/>
</g>
<g id="patch_43">
<path d="M 289.129283 195.250645
L 308.823401 195.250645
L 308.823401 184.358995
L 289.129283 184.358995
z
" clip-path="url(#pa36e028680)" style="fill: #e38a42"/>
</g>
<g id="patch_44">
<path d="M 328.517518 195.250645
L 348.211636 195.250645
L 348.211636 151.684045
L 328.517518 151.684045
z
" clip-path="url(#pa36e028680)" style="fill: #e38a42"/>
</g>
<g id="patch_45">
<path d="M 367.905754 195.250645
L 387.599871 195.250645
L 387.599871 20.984245
L 367.905754 20.984245
z
" clip-path="url(#pa36e028680)" style="fill: #e38a42"/>
</g>
<g id="patch_46">
<path d="M 407.293989 195.250645
L 426.988107 195.250645
L 426.988107 -501.814955
L 407.293989 -501.814955
z
" clip-path="url(#pa36e028680)" style="fill: #e38a42"/>
</g>
<g id="patch_47">
<path d="M 446.682224 195.250645
L 466.376342 195.250645
L 466.376342 -1198.880555
L 446.682224 -1198.880555
z
" clip-path="url(#pa36e028680)" style="fill: #e38a42"/>
</g>
<g id="line2d_54">
<path d="M 279.282224 148.6992
L 476.223401 148.6992
" clip-path="url(#pa36e028680)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #ff0000; stroke-width: 2"/>
</g>
<g id="patch_48">
<path d="M 279.282224 269.928
L 279.282224 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_49">
<path d="M 476.223401 269.928
L 476.223401 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_50">
<path d="M 279.282224 269.928
L 476.223401 269.928
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_51">
<path d="M 279.282224 42.624
L 476.223401 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_21">
<!-- TP=16 (with selective recomputation) -->
<g transform="translate(283.392313 36.624) scale(0.144 -0.144)">
<defs>
<path id="GuardianSansCond-Regular-54" d="M 1152 0
L 1690 0
L 1690 3974
L 2746 3974
L 2746 4435
L 90 4435
L 90 3974
L 1152 3974
L 1152 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-3d" d="M 326 2253
L 2566 2253
L 2566 2694
L 326 2694
L 326 2253
z
M 326 1216
L 2566 1216
L 2566 1664
L 326 1664
L 326 1216
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-77" d="M 858 0
L 1402 0
L 1818 1696
C 1920 2099 1984 2426 1984 2426
L 2003 2426
C 2003 2426 2074 2093 2170 1696
L 2586 0
L 3136 0
L 3898 3283
L 3398 3283
L 3002 1344
C 2931 966 2874 704 2874 704
L 2854 704
C 2854 704 2803 954 2707 1350
L 2253 3283
L 1773 3283
L 1325 1350
C 1242 979 1178 704 1178 704
L 1158 704
C 1158 704 1107 973 1030 1350
L 627 3283
L 83 3283
L 858 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-74" d="M 1222 -38
C 1466 -38 1619 26 1722 90
L 1722 442
C 1632 416 1517 390 1382 390
C 1107 390 1005 480 1005 781
L 1005 2848
L 1683 2848
L 1683 3283
L 1005 3283
L 1005 4051
L 486 4051
L 486 3283
L 96 3283
L 96 2848
L 486 2848
L 486 710
C 486 160 774 -38 1222 -38
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-68" d="M 346 0
L 870 0
L 870 2688
C 1037 2778 1306 2886 1587 2886
C 1965 2886 2093 2765 2093 2458
L 2093 0
L 2611 0
L 2611 2528
C 2611 3085 2336 3334 1805 3334
C 1440 3334 1126 3200 896 3034
L 870 3034
L 870 4698
L 346 4698
L 346 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-63" d="M 1498 -51
C 1869 -51 2125 51 2298 173
L 2298 595
C 2163 518 1907 390 1555 390
C 1005 390 723 704 723 1542
L 723 1798
C 723 2464 941 2893 1510 2893
C 1856 2893 2054 2803 2259 2714
L 2259 3149
C 2093 3258 1875 3334 1542 3334
C 768 3334 186 2886 186 1741
L 186 1536
C 186 416 685 -51 1498 -51
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-76" d="M 1075 0
L 1613 0
L 2605 3283
L 2093 3283
L 1504 1190
C 1421 870 1370 653 1370 653
L 1344 653
C 1344 653 1299 877 1216 1190
L 627 3283
L 70 3283
L 1075 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-70" d="M 346 -1222
L 870 -1222
L 870 128
C 1005 38 1242 -51 1542 -51
C 2374 -51 2784 525 2784 1600
L 2784 1818
C 2784 2912 2342 3334 1670 3334
C 1318 3334 1030 3187 870 3034
L 845 3034
L 845 3283
L 346 3283
L 346 -1222
z
M 1466 378
C 1210 378 973 461 870 538
L 870 2688
C 992 2784 1229 2893 1523 2893
C 2035 2893 2246 2573 2246 1798
L 2246 1549
C 2246 742 2003 378 1466 378
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-75" d="M 1158 -51
C 1523 -51 1824 109 2042 262
L 2067 262
L 2118 0
L 2566 0
L 2566 3283
L 2042 3283
L 2042 602
C 1888 512 1626 397 1350 397
C 947 397 858 557 858 838
L 858 3283
L 333 3283
L 333 826
C 333 301 576 -51 1158 -51
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-6e" d="M 346 0
L 870 0
L 870 2688
C 1037 2778 1306 2886 1587 2886
C 1965 2886 2093 2765 2093 2458
L 2093 0
L 2611 0
L 2611 2528
C 2611 3085 2342 3334 1811 3334
C 1440 3334 1107 3194 870 3021
L 845 3021
L 845 3283
L 346 3283
L 346 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-54"/>
<use xlink:href="#GuardianSansCond-Regular-50" x="44.499985"/>
<use xlink:href="#GuardianSansCond-Regular-3d" x="91.499969"/>
<use xlink:href="#GuardianSansCond-Regular-31" x="136.59996"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="165.399948"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="214.299942"/>
<use xlink:href="#GuardianSansCond-Regular-28" x="230.09993"/>
<use xlink:href="#GuardianSansCond-Regular-77" x="258.099915"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="320.299911"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="339.599899"/>
<use xlink:href="#GuardianSansCond-Regular-68" x="368.599884"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="414.699875"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="430.499863"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="464.999847"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="507.699844"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="526.999832"/>
<use xlink:href="#GuardianSansCond-Regular-63" x="569.699829"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="607.499817"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="636.499802"/>
<use xlink:href="#GuardianSansCond-Regular-76" x="655.799789"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="697.699783"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="740.39978"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="756.199768"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="784.999756"/>
<use xlink:href="#GuardianSansCond-Regular-63" x="827.699753"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="865.499741"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="911.099731"/>
<use xlink:href="#GuardianSansCond-Regular-70" x="980.599716"/>
<use xlink:href="#GuardianSansCond-Regular-75" x="1027.199707"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="1072.699692"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="1101.699677"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="1142.59967"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="1171.599655"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="1190.899643"/>
<use xlink:href="#GuardianSansCond-Regular-6e" x="1236.499634"/>
<use xlink:href="#GuardianSansCond-Regular-29" x="1282.599625"/>
</g>
</g>
</g>
<g id="axes_3">
<g id="patch_52">
<path d="M 515.611636 269.928
L 712.552813 269.928
L 712.552813 42.624
L 515.611636 42.624
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_5">
<g id="xtick_11">
<g id="line2d_55">
<path d="M 535.305754 269.928
L 535.305754 42.624
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_56">
<g>
<use xlink:href="#mb46ec4cfeb" x="535.305754" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_22">
<!-- 1024 -->
<g transform="translate(538.021379 294.148312) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="82.299973"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="124.799957"/>
</g>
</g>
</g>
<g id="xtick_12">
<g id="line2d_57">
<path d="M 574.693989 269.928
L 574.693989 42.624
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_58">
<g>
<use xlink:href="#mb46ec4cfeb" x="574.693989" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_23">
<!-- 4096 -->
<g transform="translate(577.409614 296.799875) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-34"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="47.399994"/>
<use xlink:href="#GuardianSansCond-Regular-39" x="100.899979"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="149.799973"/>
</g>
</g>
</g>
<g id="xtick_13">
<g id="line2d_59">
<path d="M 614.082224 269.928
L 614.082224 42.624
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_60">
<g>
<use xlink:href="#mb46ec4cfeb" x="614.082224" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_24">
<!-- 16384 -->
<g transform="translate(616.797849 298.599875) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="77.699982"/>
<use xlink:href="#GuardianSansCond-Regular-38" x="119.899979"/>
<use xlink:href="#GuardianSansCond-Regular-34" x="169.299973"/>
</g>
</g>
</g>
<g id="xtick_14">
<g id="line2d_61">
<path d="M 653.47046 269.928
L 653.47046 42.624
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_62">
<g>
<use xlink:href="#mb46ec4cfeb" x="653.47046" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_25">
<!-- 65536 -->
<g transform="translate(656.186085 299.348312) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-36"/>
<use xlink:href="#GuardianSansCond-Regular-35" x="48.899994"/>
<use xlink:href="#GuardianSansCond-Regular-35" x="90.999985"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="133.099976"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="175.299973"/>
</g>
</g>
</g>
<g id="xtick_15">
<g id="line2d_63">
<path d="M 692.858695 269.928
L 692.858695 42.624
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8; stroke-linecap: square"/>
</g>
<g id="line2d_64">
<g>
<use xlink:href="#mb46ec4cfeb" x="692.858695" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_26">
<!-- 131072 -->
<g transform="translate(695.57432 300.398312) rotate(-90) scale(0.1 -0.1)">
<use xlink:href="#GuardianSansCond-Regular-31"/>
<use xlink:href="#GuardianSansCond-Regular-33" x="28.799988"/>
<use xlink:href="#GuardianSansCond-Regular-31" x="70.999985"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="99.799973"/>
<use xlink:href="#GuardianSansCond-Regular-37" x="153.299957"/>
<use xlink:href="#GuardianSansCond-Regular-32" x="192.199951"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_6">
<g id="ytick_17">
<g id="line2d_65">
<path d="M 515.611636 269.928
L 712.552813 269.928
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_66">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="269.928" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_18">
<g id="line2d_67">
<path d="M 515.611636 239.6208
L 712.552813 239.6208
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_68">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="239.6208" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_19">
<g id="line2d_69">
<path d="M 515.611636 209.3136
L 712.552813 209.3136
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_70">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="209.3136" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_20">
<g id="line2d_71">
<path d="M 515.611636 179.0064
L 712.552813 179.0064
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_72">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="179.0064" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_21">
<g id="line2d_73">
<path d="M 515.611636 148.6992
L 712.552813 148.6992
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_74">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="148.6992" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_22">
<g id="line2d_75">
<path d="M 515.611636 118.392
L 712.552813 118.392
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_76">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="118.392" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_23">
<g id="line2d_77">
<path d="M 515.611636 88.0848
L 712.552813 88.0848
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_78">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="88.0848" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
<g id="ytick_24">
<g id="line2d_79">
<path d="M 515.611636 57.7776
L 712.552813 57.7776
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 2.96,1.28; stroke-dashoffset: 0; stroke: #b0b0b0; stroke-opacity: 0.3; stroke-width: 0.8"/>
</g>
<g id="line2d_80">
<g>
<use xlink:href="#mbb5392dbf9" x="515.611636" y="57.7776" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
</g>
</g>
<g id="patch_53">
<path d="M 525.458695 269.928
L 545.152812 269.928
L 545.152812 257.481774
L 525.458695 257.481774
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #4ea5b7"/>
</g>
<g id="patch_54">
<path d="M 564.84693 269.928
L 584.541048 269.928
L 584.541048 257.481774
L 564.84693 257.481774
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #4ea5b7"/>
</g>
<g id="patch_55">
<path d="M 604.235165 269.928
L 623.929283 269.928
L 623.929283 257.481774
L 604.235165 257.481774
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #4ea5b7"/>
</g>
<g id="patch_56">
<path d="M 643.623401 269.928
L 663.317518 269.928
L 663.317518 257.481774
L 643.623401 257.481774
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #4ea5b7"/>
</g>
<g id="patch_57">
<path d="M 683.011636 269.928
L 702.705754 269.928
L 702.705754 257.481774
L 683.011636 257.481774
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #4ea5b7"/>
</g>
<g id="patch_58">
<path d="M 525.458695 257.481774
L 545.152812 257.481774
L 545.152812 245.035548
L 525.458695 245.035548
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e889ab"/>
</g>
<g id="patch_59">
<path d="M 564.84693 257.481774
L 584.541048 257.481774
L 584.541048 245.035548
L 564.84693 245.035548
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e889ab"/>
</g>
<g id="patch_60">
<path d="M 604.235165 257.481774
L 623.929283 257.481774
L 623.929283 245.035548
L 604.235165 245.035548
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e889ab"/>
</g>
<g id="patch_61">
<path d="M 643.623401 257.481774
L 663.317518 257.481774
L 663.317518 245.035548
L 643.623401 245.035548
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e889ab"/>
</g>
<g id="patch_62">
<path d="M 683.011636 257.481774
L 702.705754 257.481774
L 702.705754 245.035548
L 683.011636 245.035548
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e889ab"/>
</g>
<g id="patch_63">
<path d="M 525.458695 245.035548
L 545.152812 245.035548
L 545.152812 195.250645
L 525.458695 195.250645
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #cec0fa"/>
</g>
<g id="patch_64">
<path d="M 564.84693 245.035548
L 584.541048 245.035548
L 584.541048 195.250645
L 564.84693 195.250645
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #cec0fa"/>
</g>
<g id="patch_65">
<path d="M 604.235165 245.035548
L 623.929283 245.035548
L 623.929283 195.250645
L 604.235165 195.250645
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #cec0fa"/>
</g>
<g id="patch_66">
<path d="M 643.623401 245.035548
L 663.317518 245.035548
L 663.317518 195.250645
L 643.623401 195.250645
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #cec0fa"/>
</g>
<g id="patch_67">
<path d="M 683.011636 245.035548
L 702.705754 245.035548
L 702.705754 195.250645
L 683.011636 195.250645
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #cec0fa"/>
</g>
<g id="patch_68">
<path d="M 525.458695 195.250645
L 545.152812 195.250645
L 545.152812 193.356445
L 525.458695 193.356445
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e38a42"/>
</g>
<g id="patch_69">
<path d="M 564.84693 195.250645
L 584.541048 195.250645
L 584.541048 187.673845
L 564.84693 187.673845
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e38a42"/>
</g>
<g id="patch_70">
<path d="M 604.235165 195.250645
L 623.929283 195.250645
L 623.929283 164.943445
L 604.235165 164.943445
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e38a42"/>
</g>
<g id="patch_71">
<path d="M 643.623401 195.250645
L 663.317518 195.250645
L 663.317518 74.021845
L 643.623401 74.021845
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e38a42"/>
</g>
<g id="patch_72">
<path d="M 683.011636 195.250645
L 702.705754 195.250645
L 702.705754 -47.206955
L 683.011636 -47.206955
z
" clip-path="url(#p3a3cb6ae00)" style="fill: #e38a42"/>
</g>
<g id="line2d_81">
<path d="M 515.611636 148.6992
L 712.552813 148.6992
" clip-path="url(#p3a3cb6ae00)" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #ff0000; stroke-width: 2"/>
</g>
<g id="patch_73">
<path d="M 515.611636 269.928
L 515.611636 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_74">
<path d="M 712.552813 269.928
L 712.552813 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_75">
<path d="M 515.611636 269.928
L 712.552813 269.928
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_76">
<path d="M 515.611636 42.624
L 712.552813 42.624
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_27">
<!-- TP=16 (with full recomputation) -->
<g transform="translate(534.057599 36.624) scale(0.144 -0.144)">
<defs>
<path id="GuardianSansCond-Regular-66" d="M 493 0
L 1018 0
L 1018 2848
L 1626 2848
L 1626 3283
L 1018 3283
L 1018 3712
C 1018 4115 1146 4307 1478 4307
C 1632 4307 1754 4282 1837 4262
L 1837 4640
C 1747 4685 1587 4742 1363 4742
C 826 4742 493 4429 493 3757
L 493 3283
L 96 3283
L 96 2848
L 493 2848
L 493 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-54"/>
<use xlink:href="#GuardianSansCond-Regular-50" x="44.499985"/>
<use xlink:href="#GuardianSansCond-Regular-3d" x="91.499969"/>
<use xlink:href="#GuardianSansCond-Regular-31" x="136.59996"/>
<use xlink:href="#GuardianSansCond-Regular-36" x="165.399948"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="214.299942"/>
<use xlink:href="#GuardianSansCond-Regular-28" x="230.09993"/>
<use xlink:href="#GuardianSansCond-Regular-77" x="258.099915"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="320.299911"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="339.599899"/>
<use xlink:href="#GuardianSansCond-Regular-68" x="368.599884"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="414.699875"/>
<use xlink:href="#GuardianSansCond-Regular-66" x="430.499863"/>
<use xlink:href="#GuardianSansCond-Regular-75" x="457.19986"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="502.699844"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="521.999832"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="541.29982"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="557.099808"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="585.899796"/>
<use xlink:href="#GuardianSansCond-Regular-63" x="628.599792"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="666.39978"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="711.999771"/>
<use xlink:href="#GuardianSansCond-Regular-70" x="781.499756"/>
<use xlink:href="#GuardianSansCond-Regular-75" x="828.099747"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="873.599731"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="902.599716"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="943.49971"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="972.499695"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="991.799683"/>
<use xlink:href="#GuardianSansCond-Regular-6e" x="1037.399673"/>
<use xlink:href="#GuardianSansCond-Regular-29" x="1083.499664"/>
</g>
</g>
</g>
<g id="text_28">
<!-- Memory Usage for 70B Model -->
<g transform="translate(283.841563 19.055) scale(0.16 -0.16)">
<defs>
<path id="GuardianSansCond-Regular-64" d="M 1357 -51
C 1690 -51 1965 77 2125 243
L 2150 243
L 2195 0
L 2637 0
L 2637 4698
L 2118 4698
L 2118 3174
C 1978 3264 1734 3334 1466 3334
C 634 3334 198 2739 198 1670
L 198 1523
C 198 339 723 -51 1357 -51
z
M 1504 378
C 992 378 742 749 742 1542
L 742 1728
C 742 2541 979 2893 1536 2893
C 1779 2893 2003 2835 2118 2758
L 2118 595
C 1984 493 1773 378 1504 378
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-4d"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="67.699982"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="110.399979"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="179.899963"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="225.499954"/>
<use xlink:href="#GuardianSansCond-Regular-79" x="254.299942"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="295.699936"/>
<use xlink:href="#GuardianSansCond-Regular-55" x="311.499924"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="366.299911"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="400.799896"/>
<use xlink:href="#GuardianSansCond-Regular-67" x="441.69989"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="484.399887"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="527.099884"/>
<use xlink:href="#GuardianSansCond-Regular-66" x="542.899872"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="569.599869"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="615.19986"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="643.999847"/>
<use xlink:href="#GuardianSansCond-Regular-37" x="659.799835"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="698.699829"/>
<use xlink:href="#GuardianSansCond-Regular-42" x="752.199814"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="801.199799"/>
<use xlink:href="#GuardianSansCond-Regular-4d" x="816.999786"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="884.699768"/>
<use xlink:href="#GuardianSansCond-Regular-64" x="930.299759"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="976.89975"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="1019.599747"/>
</g>
</g>
<g id="legend_1">
<g id="patch_77">
<path d="M 807.352813 199.35
L 922.852813 199.35
Q 925.252813 199.35 925.252813 196.95
L 925.252813 112.65
Q 925.252813 110.25 922.852813 110.25
L 807.352813 110.25
Q 804.952813 110.25 804.952813 112.65
L 804.952813 196.95
Q 804.952813 199.35 807.352813 199.35
z
" style="fill: #ffffff; opacity: 0.8; stroke: #cccccc; stroke-linejoin: miter"/>
</g>
<g id="line2d_82">
<path d="M 809.752813 119.65875
L 821.752813 119.65875
L 833.752813 119.65875
" style="fill: none; stroke-dasharray: 7.4,3.2; stroke-dashoffset: 0; stroke: #ff0000; stroke-width: 2"/>
</g>
<g id="text_29">
<!-- 80GB limit -->
<g transform="translate(843.352813 123.85875) scale(0.12 -0.12)">
<use xlink:href="#GuardianSansCond-Regular-38"/>
<use xlink:href="#GuardianSansCond-Regular-30" x="49.399994"/>
<use xlink:href="#GuardianSansCond-Regular-47" x="102.899979"/>
<use xlink:href="#GuardianSansCond-Regular-42" x="156.199966"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="205.199951"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="220.999939"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="240.299927"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="259.599915"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="329.099899"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="348.399887"/>
</g>
</g>
<g id="patch_78">
<path d="M 809.752813 140.95875
L 833.752813 140.95875
L 833.752813 132.55875
L 809.752813 132.55875
z
" style="fill: #4ea5b7"/>
</g>
<g id="text_30">
<!-- Model Parameters -->
<g transform="translate(843.352813 140.95875) scale(0.12 -0.12)">
<use xlink:href="#GuardianSansCond-Regular-4d"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="67.699982"/>
<use xlink:href="#GuardianSansCond-Regular-64" x="113.299973"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="159.899963"/>
<use xlink:href="#GuardianSansCond-Regular-6c" x="202.59996"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="221.899948"/>
<use xlink:href="#GuardianSansCond-Regular-50" x="237.699936"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="284.699921"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="325.599915"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="354.399902"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="395.299896"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="464.799881"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="507.499878"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="536.499863"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="579.19986"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="607.999847"/>
</g>
</g>
<g id="patch_79">
<path d="M 809.752813 158.05875
L 833.752813 158.05875
L 833.752813 149.65875
L 809.752813 149.65875
z
" style="fill: #e889ab"/>
</g>
<g id="text_31">
<!-- Gradients -->
<g transform="translate(843.352813 158.05875) scale(0.12 -0.12)">
<use xlink:href="#GuardianSansCond-Regular-47"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="53.299988"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="82.099976"/>
<use xlink:href="#GuardianSansCond-Regular-64" x="122.999969"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="169.59996"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="188.899948"/>
<use xlink:href="#GuardianSansCond-Regular-6e" x="231.599945"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="277.699936"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="306.699921"/>
</g>
</g>
<g id="patch_80">
<path d="M 809.752813 175.15875
L 833.752813 175.15875
L 833.752813 166.75875
L 809.752813 166.75875
z
" style="fill: #cec0fa"/>
</g>
<g id="text_32">
<!-- Optimizer States -->
<g transform="translate(843.352813 175.15875) scale(0.12 -0.12)">
<defs>
<path id="GuardianSansCond-Regular-4f" d="M 1818 -64
C 2886 -64 3398 736 3398 2054
L 3398 2374
C 3398 3814 2842 4499 1818 4499
C 768 4499 237 3725 237 2362
L 237 2067
C 237 576 819 -64 1818 -64
z
M 1824 384
C 1056 384 806 1037 806 2074
L 806 2477
C 806 3398 1082 4051 1805 4051
C 2573 4051 2829 3418 2829 2374
L 2829 1965
C 2829 998 2534 384 1824 384
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-7a" d="M 179 0
L 2246 0
L 2246 435
L 794 435
L 794 454
L 2259 2918
L 2259 3283
L 256 3283
L 256 2854
L 1626 2854
L 1626 2835
L 179 384
L 179 0
z
" transform="scale(0.015625)"/>
<path id="GuardianSansCond-Regular-53" d="M 1184 -70
C 2138 -70 2509 499 2509 1248
C 2509 2029 2112 2259 1562 2502
L 1242 2643
C 858 2810 730 2970 730 3360
C 730 3808 986 4038 1459 4038
C 1843 4038 2144 3936 2336 3840
L 2336 4301
C 2157 4397 1914 4499 1466 4499
C 653 4499 198 4058 198 3322
C 198 2637 544 2349 1024 2138
L 1344 1997
C 1760 1811 1958 1677 1958 1197
C 1958 659 1702 397 1146 397
C 794 397 442 512 166 646
L 166 186
C 390 51 723 -70 1184 -70
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-4f"/>
<use xlink:href="#GuardianSansCond-Regular-70" x="56.799988"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="103.399979"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="132.399963"/>
<use xlink:href="#GuardianSansCond-Regular-6d" x="151.699951"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="221.199936"/>
<use xlink:href="#GuardianSansCond-Regular-7a" x="240.499924"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="278.699921"/>
<use xlink:href="#GuardianSansCond-Regular-72" x="321.399918"/>
<use xlink:href="#GuardianSansCond-Regular-20" x="350.199905"/>
<use xlink:href="#GuardianSansCond-Regular-53" x="365.999893"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="408.19989"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="437.199875"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="478.099869"/>
<use xlink:href="#GuardianSansCond-Regular-65" x="507.099854"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="549.79985"/>
</g>
</g>
<g id="patch_81">
<path d="M 809.752813 192.25875
L 833.752813 192.25875
L 833.752813 183.85875
L 809.752813 183.85875
z
" style="fill: #e38a42"/>
</g>
<g id="text_33">
<!-- Activations -->
<g transform="translate(843.352813 192.25875) scale(0.12 -0.12)">
<defs>
<path id="GuardianSansCond-Regular-41" d="M 70 0
L 576 0
L 909 1222
L 2310 1222
L 2656 0
L 3206 0
L 1933 4435
L 1338 4435
L 70 0
z
M 1619 3776
C 1619 3776 1696 3430 1754 3213
L 2176 1677
L 1043 1677
L 1466 3213
C 1530 3437 1600 3776 1600 3776
L 1619 3776
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#GuardianSansCond-Regular-41"/>
<use xlink:href="#GuardianSansCond-Regular-63" x="51.099991"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="88.899979"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="117.899963"/>
<use xlink:href="#GuardianSansCond-Regular-76" x="137.199951"/>
<use xlink:href="#GuardianSansCond-Regular-61" x="179.099945"/>
<use xlink:href="#GuardianSansCond-Regular-74" x="219.999939"/>
<use xlink:href="#GuardianSansCond-Regular-69" x="248.999924"/>
<use xlink:href="#GuardianSansCond-Regular-6f" x="268.299911"/>
<use xlink:href="#GuardianSansCond-Regular-6e" x="313.899902"/>
<use xlink:href="#GuardianSansCond-Regular-73" x="359.999893"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p3182a44e30">
<rect x="42.952813" y="42.624" width="196.941176" height="227.304"/>
</clipPath>
<clipPath id="pa36e028680">
<rect x="279.282224" y="42.624" width="196.941176" height="227.304"/>
</clipPath>
<clipPath id="p3a3cb6ae00">
<rect x="515.611636" y="42.624" width="196.941176" height="227.304"/>
</clipPath>
</defs>
</svg>
|