File size: 408,351 Bytes
678c124 | 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 | filename,hf_path,diagnosis,fine_label_idx,coarse_label,uploaded
a194f783-357f-11eb-9ee2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a194f783-357f-11eb-9ee2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a194f796-357f-11eb-b46b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a194f796-357f-11eb-b46b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ea1-357f-11eb-9e7b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ea1-357f-11eb-9e7b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ea2-357f-11eb-ba28-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ea2-357f-11eb-ba28-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ea4-357f-11eb-a591-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ea4-357f-11eb-a591-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951eac-357f-11eb-9493-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951eac-357f-11eb-9493-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951eb1-357f-11eb-815d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951eb1-357f-11eb-815d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951eb2-357f-11eb-88a6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951eb2-357f-11eb-88a6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951eb5-357f-11eb-98dd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951eb5-357f-11eb-98dd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951eb7-357f-11eb-a05f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951eb7-357f-11eb-a05f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ebf-357f-11eb-bccd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ebf-357f-11eb-bccd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ec6-357f-11eb-8633-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ec6-357f-11eb-8633-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ecb-357f-11eb-bea5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ecb-357f-11eb-bea5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ecc-357f-11eb-bef2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ecc-357f-11eb-bef2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ede-357f-11eb-9766-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ede-357f-11eb-9766-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ee4-357f-11eb-9d0b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ee4-357f-11eb-9d0b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ef1-357f-11eb-94c7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ef1-357f-11eb-94c7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951ef2-357f-11eb-afc3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951ef2-357f-11eb-afc3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f10-357f-11eb-87e9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f10-357f-11eb-87e9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f12-357f-11eb-86fa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f12-357f-11eb-86fa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f13-357f-11eb-ae4f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f13-357f-11eb-ae4f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f23-357f-11eb-bcf1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f23-357f-11eb-bcf1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f24-357f-11eb-8b7d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f24-357f-11eb-8b7d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f26-357f-11eb-869e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f26-357f-11eb-869e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1951f27-357f-11eb-9a65-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1951f27-357f-11eb-9a65-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195459f-357f-11eb-8313-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195459f-357f-11eb-8313-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545a0-357f-11eb-840d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545a0-357f-11eb-840d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545ae-357f-11eb-8960-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545ae-357f-11eb-8960-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545b0-357f-11eb-a234-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545b0-357f-11eb-a234-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545b1-357f-11eb-a00c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545b1-357f-11eb-a00c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545b8-357f-11eb-ae95-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545b8-357f-11eb-ae95-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545bf-357f-11eb-afb1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545bf-357f-11eb-afb1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545c3-357f-11eb-add5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545c3-357f-11eb-add5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545c5-357f-11eb-9865-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545c5-357f-11eb-9865-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545c6-357f-11eb-8fa3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545c6-357f-11eb-8fa3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545d3-357f-11eb-a997-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545d3-357f-11eb-a997-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545ea-357f-11eb-9dc0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545ea-357f-11eb-9dc0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545ec-357f-11eb-8af8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545ec-357f-11eb-8af8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545ed-357f-11eb-9ed0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545ed-357f-11eb-9ed0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19545fc-357f-11eb-babc-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19545fc-357f-11eb-babc-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1954602-357f-11eb-a469-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1954602-357f-11eb-a469-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cac-357f-11eb-aee6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cac-357f-11eb-aee6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cad-357f-11eb-b824-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cad-357f-11eb-b824-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cb2-357f-11eb-9c47-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cb2-357f-11eb-9c47-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cb8-357f-11eb-932d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cb8-357f-11eb-932d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cb9-357f-11eb-9c2a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cb9-357f-11eb-9c2a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cbc-357f-11eb-bfe1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cbc-357f-11eb-bfe1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cd8-357f-11eb-b547-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cd8-357f-11eb-b547-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cdb-357f-11eb-a2b4-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cdb-357f-11eb-a2b4-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cde-357f-11eb-a8bc-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cde-357f-11eb-a8bc-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956ce4-357f-11eb-9ca6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956ce4-357f-11eb-9ca6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cf0-357f-11eb-ad40-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cf0-357f-11eb-ad40-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cf3-357f-11eb-b68f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cf3-357f-11eb-b68f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cf5-357f-11eb-a5f6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cf5-357f-11eb-a5f6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cf6-357f-11eb-a19e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cf6-357f-11eb-a19e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956cfa-357f-11eb-9673-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956cfa-357f-11eb-9673-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956d06-357f-11eb-856b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956d06-357f-11eb-856b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956d0f-357f-11eb-86f1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956d0f-357f-11eb-86f1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1956d15-357f-11eb-af96-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1956d15-357f-11eb-af96-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593bf-357f-11eb-96fe-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593bf-357f-11eb-96fe-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593c1-357f-11eb-bb24-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593c1-357f-11eb-bb24-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593c2-357f-11eb-b9c0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593c2-357f-11eb-b9c0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593c6-357f-11eb-b657-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593c6-357f-11eb-b657-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593c9-357f-11eb-b474-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593c9-357f-11eb-b474-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593ce-357f-11eb-b8ef-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593ce-357f-11eb-b8ef-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593d0-357f-11eb-9fea-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593d0-357f-11eb-9fea-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593d8-357f-11eb-b8b7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593d8-357f-11eb-b8b7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593df-357f-11eb-86a4-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593df-357f-11eb-86a4-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593e1-357f-11eb-ad0e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593e1-357f-11eb-ad0e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593e2-357f-11eb-a6ac-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593e2-357f-11eb-a6ac-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593ec-357f-11eb-8adf-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593ec-357f-11eb-8adf-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593ee-357f-11eb-a1ac-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593ee-357f-11eb-a1ac-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19593fd-357f-11eb-98f7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19593fd-357f-11eb-98f7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1959414-357f-11eb-a366-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1959414-357f-11eb-a366-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1959422-357f-11eb-b8d5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1959422-357f-11eb-b8d5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1959427-357f-11eb-8e4e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1959427-357f-11eb-8e4e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1959428-357f-11eb-86b8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1959428-357f-11eb-86b8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195942f-357f-11eb-93a5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195942f-357f-11eb-93a5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195943f-357f-11eb-bfb8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195943f-357f-11eb-bfb8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1959440-357f-11eb-99c0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1959440-357f-11eb-99c0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bacc-357f-11eb-803c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bacc-357f-11eb-803c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bad0-357f-11eb-ae3c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bad0-357f-11eb-ae3c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bad3-357f-11eb-9b59-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bad3-357f-11eb-9b59-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bad4-357f-11eb-99ae-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bad4-357f-11eb-99ae-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bad6-357f-11eb-8742-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bad6-357f-11eb-8742-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bad9-357f-11eb-8923-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bad9-357f-11eb-8923-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bae0-357f-11eb-b35c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bae0-357f-11eb-b35c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bae9-357f-11eb-b01c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bae9-357f-11eb-b01c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195baf8-357f-11eb-a6b5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195baf8-357f-11eb-a6b5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb02-357f-11eb-baf6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb02-357f-11eb-baf6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb11-357f-11eb-b4f1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb11-357f-11eb-b4f1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb12-357f-11eb-b112-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb12-357f-11eb-b112-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb17-357f-11eb-a21d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb17-357f-11eb-a21d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb18-357f-11eb-8a27-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb18-357f-11eb-8a27-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb20-357f-11eb-a78e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb20-357f-11eb-a78e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb32-357f-11eb-b275-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb32-357f-11eb-b275-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb35-357f-11eb-8ea2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb35-357f-11eb-8ea2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb37-357f-11eb-972f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb37-357f-11eb-972f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb4c-357f-11eb-8ade-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb4c-357f-11eb-8ade-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb4d-357f-11eb-907d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb4d-357f-11eb-907d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb51-357f-11eb-9b14-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb51-357f-11eb-9b14-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195bb52-357f-11eb-93f8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195bb52-357f-11eb-93f8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e1cf-357f-11eb-a906-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e1cf-357f-11eb-a906-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e1f1-357f-11eb-8f80-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e1f1-357f-11eb-8f80-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e1f5-357f-11eb-815e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e1f5-357f-11eb-815e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e1f7-357f-11eb-b516-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e1f7-357f-11eb-b516-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e1f8-357f-11eb-b29e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e1f8-357f-11eb-b29e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e202-357f-11eb-b1aa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e202-357f-11eb-b1aa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e207-357f-11eb-8fb6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e207-357f-11eb-8fb6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e209-357f-11eb-a95d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e209-357f-11eb-a95d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e20d-357f-11eb-89f6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e20d-357f-11eb-89f6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e214-357f-11eb-b09c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e214-357f-11eb-b09c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e217-357f-11eb-bd46-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e217-357f-11eb-bd46-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e21c-357f-11eb-b93b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e21c-357f-11eb-b93b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e220-357f-11eb-88fe-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e220-357f-11eb-88fe-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e22d-357f-11eb-95fa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e22d-357f-11eb-95fa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e233-357f-11eb-9083-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e233-357f-11eb-9083-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e235-357f-11eb-8350-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e235-357f-11eb-8350-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e255-357f-11eb-aed1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e255-357f-11eb-aed1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e256-357f-11eb-87f2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e256-357f-11eb-87f2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e259-357f-11eb-ba43-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e259-357f-11eb-ba43-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e263-357f-11eb-aa84-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e263-357f-11eb-aa84-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e265-357f-11eb-a245-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e265-357f-11eb-a245-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e26c-357f-11eb-95a8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e26c-357f-11eb-95a8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e272-357f-11eb-9885-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e272-357f-11eb-9885-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e275-357f-11eb-906a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e275-357f-11eb-906a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a195e276-357f-11eb-afa4-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a195e276-357f-11eb-afa4-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19608e8-357f-11eb-ac12-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19608e8-357f-11eb-ac12-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19608fe-357f-11eb-ab16-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19608fe-357f-11eb-ab16-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960904-357f-11eb-a35d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960904-357f-11eb-a35d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196090c-357f-11eb-8d54-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196090c-357f-11eb-8d54-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960911-357f-11eb-880f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960911-357f-11eb-880f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196091a-357f-11eb-ad55-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196091a-357f-11eb-ad55-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196091b-357f-11eb-ad04-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196091b-357f-11eb-ad04-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196091d-357f-11eb-a53f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196091d-357f-11eb-a53f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960924-357f-11eb-97c5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960924-357f-11eb-97c5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196092c-357f-11eb-b412-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196092c-357f-11eb-b412-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196092d-357f-11eb-974f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196092d-357f-11eb-974f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960931-357f-11eb-abad-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960931-357f-11eb-abad-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960932-357f-11eb-8252-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960932-357f-11eb-8252-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960933-357f-11eb-9059-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960933-357f-11eb-9059-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960940-357f-11eb-8fd3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960940-357f-11eb-8fd3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960947-357f-11eb-8838-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960947-357f-11eb-8838-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960948-357f-11eb-bf70-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960948-357f-11eb-bf70-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196094c-357f-11eb-a102-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196094c-357f-11eb-a102-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960955-357f-11eb-86ae-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960955-357f-11eb-86ae-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960959-357f-11eb-a0f1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960959-357f-11eb-a0f1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196095a-357f-11eb-bf18-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196095a-357f-11eb-bf18-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196095b-357f-11eb-8039-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196095b-357f-11eb-8039-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196095f-357f-11eb-a830-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196095f-357f-11eb-a830-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960967-357f-11eb-836b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960967-357f-11eb-836b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960970-357f-11eb-a5cc-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960970-357f-11eb-a5cc-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960972-357f-11eb-bdf6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960972-357f-11eb-bdf6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960973-357f-11eb-ab24-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960973-357f-11eb-ab24-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196097a-357f-11eb-b2ed-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196097a-357f-11eb-b2ed-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960981-357f-11eb-a860-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960981-357f-11eb-a860-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960984-357f-11eb-a866-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960984-357f-11eb-a866-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196098b-357f-11eb-bd9a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196098b-357f-11eb-bd9a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196098d-357f-11eb-bfb7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196098d-357f-11eb-bfb7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196098f-357f-11eb-b049-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196098f-357f-11eb-b049-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1960998-357f-11eb-9566-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1960998-357f-11eb-9566-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196099b-357f-11eb-8cf7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196099b-357f-11eb-8cf7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196099e-357f-11eb-96dd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196099e-357f-11eb-96dd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609b4-357f-11eb-b94f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609b4-357f-11eb-b94f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609b7-357f-11eb-b0be-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609b7-357f-11eb-b0be-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609bb-357f-11eb-a131-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609bb-357f-11eb-a131-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609be-357f-11eb-9409-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609be-357f-11eb-9409-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609c7-357f-11eb-be55-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609c7-357f-11eb-be55-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609ca-357f-11eb-91b1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609ca-357f-11eb-91b1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19609cb-357f-11eb-b0b6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19609cb-357f-11eb-b0b6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1962fef-357f-11eb-8a18-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1962fef-357f-11eb-8a18-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1962ff2-357f-11eb-8dff-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1962ff2-357f-11eb-8dff-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963008-357f-11eb-9e5e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963008-357f-11eb-9e5e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196300c-357f-11eb-9960-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196300c-357f-11eb-9960-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963013-357f-11eb-8c98-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963013-357f-11eb-8c98-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963015-357f-11eb-a1d3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963015-357f-11eb-a1d3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196301b-357f-11eb-a1b2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196301b-357f-11eb-a1b2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963020-357f-11eb-b911-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963020-357f-11eb-b911-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963023-357f-11eb-9fb6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963023-357f-11eb-9fb6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963028-357f-11eb-8624-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963028-357f-11eb-8624-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196302b-357f-11eb-9166-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196302b-357f-11eb-9166-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196302e-357f-11eb-8d1e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196302e-357f-11eb-8d1e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196303d-357f-11eb-b8ae-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196303d-357f-11eb-b8ae-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963046-357f-11eb-aff6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963046-357f-11eb-aff6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963048-357f-11eb-a46d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963048-357f-11eb-a46d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963056-357f-11eb-bb90-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963056-357f-11eb-bb90-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963058-357f-11eb-8b07-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963058-357f-11eb-8b07-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196305e-357f-11eb-9b1d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196305e-357f-11eb-9b1d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963063-357f-11eb-9d67-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963063-357f-11eb-9d67-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963064-357f-11eb-bc18-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963064-357f-11eb-bc18-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196306a-357f-11eb-91a9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196306a-357f-11eb-91a9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196306c-357f-11eb-9ccf-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196306c-357f-11eb-9ccf-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963071-357f-11eb-a209-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963071-357f-11eb-a209-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196307c-357f-11eb-9002-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196307c-357f-11eb-9002-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196307f-357f-11eb-b607-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196307f-357f-11eb-b607-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1963089-357f-11eb-ab3b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1963089-357f-11eb-ab3b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19656f6-357f-11eb-968c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19656f6-357f-11eb-968c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19656f7-357f-11eb-994c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19656f7-357f-11eb-994c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19656fb-357f-11eb-885d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19656fb-357f-11eb-885d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965704-357f-11eb-a679-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965704-357f-11eb-a679-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965705-357f-11eb-a0e8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965705-357f-11eb-a0e8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196571a-357f-11eb-899b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196571a-357f-11eb-899b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196572b-357f-11eb-a30c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196572b-357f-11eb-a30c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965733-357f-11eb-8d99-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965733-357f-11eb-8d99-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965736-357f-11eb-a2f3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965736-357f-11eb-a2f3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965738-357f-11eb-be9e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965738-357f-11eb-be9e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196573d-357f-11eb-8282-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196573d-357f-11eb-8282-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196573e-357f-11eb-adf2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196573e-357f-11eb-adf2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965743-357f-11eb-be52-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965743-357f-11eb-be52-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965745-357f-11eb-aeae-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965745-357f-11eb-aeae-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965749-357f-11eb-801a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965749-357f-11eb-801a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196574a-357f-11eb-a0d8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196574a-357f-11eb-a0d8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965756-357f-11eb-b1e0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965756-357f-11eb-b1e0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965763-357f-11eb-8703-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965763-357f-11eb-8703-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965766-357f-11eb-92da-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965766-357f-11eb-92da-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965768-357f-11eb-903c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965768-357f-11eb-903c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965769-357f-11eb-979d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965769-357f-11eb-979d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196576b-357f-11eb-b10e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196576b-357f-11eb-b10e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965771-357f-11eb-821a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965771-357f-11eb-821a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965781-357f-11eb-8a50-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965781-357f-11eb-8a50-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965782-357f-11eb-8f87-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965782-357f-11eb-8f87-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965786-357f-11eb-9e26-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965786-357f-11eb-9e26-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196578a-357f-11eb-bcaa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196578a-357f-11eb-bcaa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196578b-357f-11eb-a121-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196578b-357f-11eb-a121-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1965792-357f-11eb-baaf-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1965792-357f-11eb-baaf-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196579a-357f-11eb-8fad-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196579a-357f-11eb-8fad-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657a3-357f-11eb-af30-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657a3-357f-11eb-af30-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657b0-357f-11eb-af77-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657b0-357f-11eb-af77-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657b9-357f-11eb-9fbf-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657b9-357f-11eb-9fbf-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657ba-357f-11eb-9b1e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657ba-357f-11eb-9b1e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657c5-357f-11eb-80ef-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657c5-357f-11eb-80ef-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657c7-357f-11eb-8073-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657c7-357f-11eb-8073-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19657c8-357f-11eb-83d2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19657c8-357f-11eb-83d2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e47-357f-11eb-9153-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e47-357f-11eb-9153-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e51-357f-11eb-936f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e51-357f-11eb-936f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e52-357f-11eb-bca8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e52-357f-11eb-bca8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e57-357f-11eb-b087-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e57-357f-11eb-b087-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e59-357f-11eb-8403-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e59-357f-11eb-8403-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e5a-357f-11eb-95d9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e5a-357f-11eb-95d9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e5f-357f-11eb-a25e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e5f-357f-11eb-a25e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e70-357f-11eb-a1fe-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e70-357f-11eb-a1fe-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e72-357f-11eb-bac8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e72-357f-11eb-bac8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e85-357f-11eb-a311-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e85-357f-11eb-a311-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e88-357f-11eb-b1fc-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e88-357f-11eb-b1fc-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e8a-357f-11eb-a4e6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e8a-357f-11eb-a4e6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e8f-357f-11eb-a881-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e8f-357f-11eb-a881-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e91-357f-11eb-baaa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e91-357f-11eb-baaa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1967e9a-357f-11eb-bdc1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1967e9a-357f-11eb-bdc1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a53d-357f-11eb-9ee7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a53d-357f-11eb-9ee7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a541-357f-11eb-92ea-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a541-357f-11eb-92ea-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a546-357f-11eb-921e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a546-357f-11eb-921e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a548-357f-11eb-ab49-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a548-357f-11eb-ab49-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a54b-357f-11eb-82ed-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a54b-357f-11eb-82ed-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a552-357f-11eb-9468-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a552-357f-11eb-9468-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a559-357f-11eb-8be1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a559-357f-11eb-8be1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a55d-357f-11eb-bb93-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a55d-357f-11eb-bb93-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a563-357f-11eb-9547-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a563-357f-11eb-9547-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a566-357f-11eb-ba94-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a566-357f-11eb-ba94-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a568-357f-11eb-9e79-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a568-357f-11eb-9e79-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a56a-357f-11eb-90a9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a56a-357f-11eb-90a9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a56b-357f-11eb-9fb1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a56b-357f-11eb-9fb1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a572-357f-11eb-a0ee-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a572-357f-11eb-a0ee-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a575-357f-11eb-a073-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a575-357f-11eb-a073-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a57a-357f-11eb-b1e2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a57a-357f-11eb-b1e2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a59b-357f-11eb-a53c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a59b-357f-11eb-a53c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a5c2-357f-11eb-b534-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a5c2-357f-11eb-b534-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a5c5-357f-11eb-8f00-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a5c5-357f-11eb-8f00-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196a5c6-357f-11eb-a1d8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196a5c6-357f-11eb-a1d8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc43-357f-11eb-a1ab-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc43-357f-11eb-a1ab-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc46-357f-11eb-89bd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc46-357f-11eb-89bd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc4a-357f-11eb-9cee-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc4a-357f-11eb-9cee-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc4e-357f-11eb-b56b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc4e-357f-11eb-b56b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc54-357f-11eb-9ffb-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc54-357f-11eb-9ffb-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc57-357f-11eb-bf07-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc57-357f-11eb-bf07-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc58-357f-11eb-b24a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc58-357f-11eb-b24a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc5d-357f-11eb-bc9a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc5d-357f-11eb-bc9a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc6a-357f-11eb-b95b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc6a-357f-11eb-b95b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc70-357f-11eb-aba9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc70-357f-11eb-aba9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc76-357f-11eb-b72c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc76-357f-11eb-b72c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196cc7b-357f-11eb-b556-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196cc7b-357f-11eb-b556-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f366-357f-11eb-a4eb-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f366-357f-11eb-a4eb-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f370-357f-11eb-8f4c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f370-357f-11eb-8f4c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f376-357f-11eb-b10a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f376-357f-11eb-b10a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f37e-357f-11eb-90f8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f37e-357f-11eb-90f8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f388-357f-11eb-a3fa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f388-357f-11eb-a3fa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f38b-357f-11eb-8cb2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f38b-357f-11eb-8cb2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f392-357f-11eb-b88c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f392-357f-11eb-b88c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3a2-357f-11eb-bb13-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3a2-357f-11eb-bb13-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3a9-357f-11eb-9fa0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3a9-357f-11eb-9fa0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3af-357f-11eb-a1aa-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3af-357f-11eb-a1aa-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3b5-357f-11eb-9b58-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3b5-357f-11eb-9b58-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3c0-357f-11eb-8057-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3c0-357f-11eb-8057-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3c1-357f-11eb-b477-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3c1-357f-11eb-b477-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3c5-357f-11eb-a3f1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3c5-357f-11eb-a3f1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3ca-357f-11eb-bcc1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3ca-357f-11eb-bcc1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3d0-357f-11eb-943f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3d0-357f-11eb-943f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a196f3d1-357f-11eb-bc78-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a196f3d1-357f-11eb-bc78-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971a7c-357f-11eb-b5e5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971a7c-357f-11eb-b5e5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971a80-357f-11eb-8e5c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971a80-357f-11eb-8e5c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971a87-357f-11eb-aacb-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971a87-357f-11eb-aacb-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971a8a-357f-11eb-bd90-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971a8a-357f-11eb-bd90-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971a98-357f-11eb-9923-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971a98-357f-11eb-9923-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971a9d-357f-11eb-8a1b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971a9d-357f-11eb-8a1b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971aa3-357f-11eb-8416-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971aa3-357f-11eb-8416-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971aa4-357f-11eb-ac81-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971aa4-357f-11eb-ac81-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971aa7-357f-11eb-806d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971aa7-357f-11eb-806d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971aab-357f-11eb-9a6e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971aab-357f-11eb-9a6e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ab0-357f-11eb-af1d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ab0-357f-11eb-af1d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ab9-357f-11eb-bdda-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ab9-357f-11eb-bdda-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971abb-357f-11eb-907a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971abb-357f-11eb-907a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ac7-357f-11eb-801b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ac7-357f-11eb-801b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ad0-357f-11eb-93cb-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ad0-357f-11eb-93cb-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ad3-357f-11eb-9412-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ad3-357f-11eb-9412-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ad6-357f-11eb-af4a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ad6-357f-11eb-af4a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1971ad8-357f-11eb-aa02-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1971ad8-357f-11eb-aa02-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197419e-357f-11eb-9993-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197419e-357f-11eb-9993-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741aa-357f-11eb-8e5c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741aa-357f-11eb-8e5c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741af-357f-11eb-b7ce-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741af-357f-11eb-b7ce-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741b5-357f-11eb-af91-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741b5-357f-11eb-af91-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741b8-357f-11eb-8459-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741b8-357f-11eb-8459-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741bb-357f-11eb-89f8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741bb-357f-11eb-89f8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741bf-357f-11eb-a086-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741bf-357f-11eb-a086-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741c2-357f-11eb-898c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741c2-357f-11eb-898c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741c3-357f-11eb-a705-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741c3-357f-11eb-a705-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741c9-357f-11eb-ada3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741c9-357f-11eb-ada3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741d4-357f-11eb-90e0-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741d4-357f-11eb-90e0-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741d6-357f-11eb-9911-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741d6-357f-11eb-9911-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741d9-357f-11eb-a319-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741d9-357f-11eb-a319-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741da-357f-11eb-8a51-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741da-357f-11eb-8a51-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741e1-357f-11eb-91e6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741e1-357f-11eb-91e6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741e8-357f-11eb-9926-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741e8-357f-11eb-9926-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741ec-357f-11eb-892d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741ec-357f-11eb-892d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19741fb-357f-11eb-90a2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19741fb-357f-11eb-90a2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197688a-357f-11eb-acd9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197688a-357f-11eb-acd9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1976896-357f-11eb-b03c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1976896-357f-11eb-b03c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197689e-357f-11eb-99eb-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197689e-357f-11eb-99eb-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197689f-357f-11eb-8e48-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197689f-357f-11eb-8e48-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768a0-357f-11eb-b12f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768a0-357f-11eb-b12f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768a7-357f-11eb-bccf-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768a7-357f-11eb-bccf-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768a8-357f-11eb-8d68-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768a8-357f-11eb-8d68-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768b0-357f-11eb-923c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768b0-357f-11eb-923c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768b1-357f-11eb-ac81-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768b1-357f-11eb-ac81-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768b3-357f-11eb-b7d3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768b3-357f-11eb-b7d3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768b4-357f-11eb-84d7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768b4-357f-11eb-84d7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768b7-357f-11eb-9fbf-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768b7-357f-11eb-9fbf-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768bb-357f-11eb-b0d2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768bb-357f-11eb-b0d2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768bf-357f-11eb-bd14-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768bf-357f-11eb-bd14-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768c2-357f-11eb-a1c1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768c2-357f-11eb-a1c1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19768c7-357f-11eb-a936-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19768c7-357f-11eb-a936-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978f83-357f-11eb-bb43-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978f83-357f-11eb-bb43-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978f93-357f-11eb-a0fe-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978f93-357f-11eb-a0fe-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978f95-357f-11eb-a282-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978f95-357f-11eb-a282-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978f99-357f-11eb-8a04-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978f99-357f-11eb-8a04-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fa9-357f-11eb-8008-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fa9-357f-11eb-8008-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978faa-357f-11eb-87c5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978faa-357f-11eb-87c5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fab-357f-11eb-aaa9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fab-357f-11eb-aaa9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fac-357f-11eb-a084-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fac-357f-11eb-a084-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fb1-357f-11eb-88f5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fb1-357f-11eb-88f5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fb6-357f-11eb-b94e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fb6-357f-11eb-b94e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fb7-357f-11eb-85f2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fb7-357f-11eb-85f2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fb8-357f-11eb-90ba-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fb8-357f-11eb-90ba-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fc3-357f-11eb-877d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fc3-357f-11eb-877d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fc6-357f-11eb-8799-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fc6-357f-11eb-8799-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fcc-357f-11eb-804c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fcc-357f-11eb-804c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fd0-357f-11eb-989c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fd0-357f-11eb-989c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fd7-357f-11eb-b940-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fd7-357f-11eb-b940-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fdb-357f-11eb-8d75-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fdb-357f-11eb-8d75-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fdf-357f-11eb-bfb6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fdf-357f-11eb-bfb6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fe9-357f-11eb-99fd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fe9-357f-11eb-99fd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978fed-357f-11eb-85b7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978fed-357f-11eb-85b7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978ff4-357f-11eb-89b7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978ff4-357f-11eb-89b7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1978ff9-357f-11eb-b368-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1978ff9-357f-11eb-b368-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6ab-357f-11eb-a35b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6ab-357f-11eb-a35b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6ae-357f-11eb-a88b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6ae-357f-11eb-a88b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6c1-357f-11eb-921c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6c1-357f-11eb-921c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6c8-357f-11eb-8dd8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6c8-357f-11eb-8dd8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6cc-357f-11eb-bb52-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6cc-357f-11eb-bb52-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6de-357f-11eb-b52b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6de-357f-11eb-b52b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6e3-357f-11eb-90e8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6e3-357f-11eb-90e8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6e5-357f-11eb-af61-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6e5-357f-11eb-af61-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6ec-357f-11eb-ac1f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6ec-357f-11eb-ac1f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b6ee-357f-11eb-9b38-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b6ee-357f-11eb-9b38-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b700-357f-11eb-9b54-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b700-357f-11eb-9b54-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b702-357f-11eb-9003-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b702-357f-11eb-9003-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b70a-357f-11eb-81c9-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b70a-357f-11eb-81c9-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b70b-357f-11eb-8738-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b70b-357f-11eb-8738-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197b70c-357f-11eb-bd0b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197b70c-357f-11eb-bd0b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197ddab-357f-11eb-9b1b-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197ddab-357f-11eb-9b1b-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197ddb3-357f-11eb-b37a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197ddb3-357f-11eb-b37a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197dddb-357f-11eb-b654-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197dddb-357f-11eb-b654-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197dded-357f-11eb-83f2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197dded-357f-11eb-83f2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197ddee-357f-11eb-b60a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197ddee-357f-11eb-b60a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197de01-357f-11eb-bec4-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197de01-357f-11eb-bec4-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197de12-357f-11eb-80d2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197de12-357f-11eb-80d2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197de17-357f-11eb-9d58-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197de17-357f-11eb-9d58-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197de2d-357f-11eb-9392-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197de2d-357f-11eb-9392-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a197de30-357f-11eb-82e7-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a197de30-357f-11eb-82e7-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804bb-357f-11eb-9859-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804bb-357f-11eb-9859-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804c0-357f-11eb-8fa1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804c0-357f-11eb-8fa1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804c1-357f-11eb-b311-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804c1-357f-11eb-b311-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804c5-357f-11eb-bd31-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804c5-357f-11eb-bd31-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804c6-357f-11eb-8c2c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804c6-357f-11eb-8c2c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804d1-357f-11eb-9518-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804d1-357f-11eb-9518-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804d7-357f-11eb-9743-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804d7-357f-11eb-9743-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804f2-357f-11eb-a9c3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804f2-357f-11eb-a9c3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804f5-357f-11eb-a001-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804f5-357f-11eb-a001-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804f7-357f-11eb-80fd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804f7-357f-11eb-80fd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19804f9-357f-11eb-ad7e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19804f9-357f-11eb-ad7e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198050e-357f-11eb-af44-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198050e-357f-11eb-af44-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198051c-357f-11eb-a7cb-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198051c-357f-11eb-a7cb-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198051e-357f-11eb-9e94-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198051e-357f-11eb-9e94-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980523-357f-11eb-93c2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980523-357f-11eb-93c2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980528-357f-11eb-bf38-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980528-357f-11eb-bf38-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198052c-357f-11eb-b975-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198052c-357f-11eb-b975-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198053e-357f-11eb-8c13-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198053e-357f-11eb-8c13-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980542-357f-11eb-8067-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980542-357f-11eb-8067-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198054d-357f-11eb-889f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198054d-357f-11eb-889f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980550-357f-11eb-ad65-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980550-357f-11eb-ad65-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980556-357f-11eb-b9de-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980556-357f-11eb-b9de-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980563-357f-11eb-b8ef-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980563-357f-11eb-b8ef-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198056a-357f-11eb-a925-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198056a-357f-11eb-a925-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980586-357f-11eb-b1a4-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980586-357f-11eb-b1a4-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980594-357f-11eb-aa58-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980594-357f-11eb-aa58-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1980595-357f-11eb-94c6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1980595-357f-11eb-94c6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a198059b-357f-11eb-a3d4-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a198059b-357f-11eb-a3d4-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805a2-357f-11eb-aa74-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805a2-357f-11eb-aa74-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805b4-357f-11eb-8a94-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805b4-357f-11eb-8a94-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805b8-357f-11eb-965e-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805b8-357f-11eb-965e-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805b9-357f-11eb-acf2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805b9-357f-11eb-acf2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805ba-357f-11eb-aa37-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805ba-357f-11eb-aa37-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805bb-357f-11eb-b3b5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805bb-357f-11eb-b3b5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805bc-357f-11eb-8e95-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805bc-357f-11eb-8e95-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805bd-357f-11eb-b68a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805bd-357f-11eb-b68a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805c1-357f-11eb-9b43-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805c1-357f-11eb-9b43-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19805c7-357f-11eb-8525-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19805c7-357f-11eb-8525-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982bcb-357f-11eb-af52-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982bcb-357f-11eb-af52-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982bd6-357f-11eb-8b3a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982bd6-357f-11eb-8b3a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982be9-357f-11eb-9749-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982be9-357f-11eb-9749-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c06-357f-11eb-a2ba-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c06-357f-11eb-a2ba-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c08-357f-11eb-8fc3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c08-357f-11eb-8fc3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c18-357f-11eb-8053-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c18-357f-11eb-8053-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c2a-357f-11eb-970d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c2a-357f-11eb-970d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c33-357f-11eb-b746-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c33-357f-11eb-b746-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c3d-357f-11eb-a1a2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c3d-357f-11eb-a1a2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c40-357f-11eb-ba7c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c40-357f-11eb-ba7c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c4d-357f-11eb-86e1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c4d-357f-11eb-86e1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c53-357f-11eb-a4f3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c53-357f-11eb-a4f3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c55-357f-11eb-81f5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c55-357f-11eb-81f5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c57-357f-11eb-b9f3-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c57-357f-11eb-b9f3-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c58-357f-11eb-a902-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c58-357f-11eb-a902-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c59-357f-11eb-9e4a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c59-357f-11eb-9e4a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c5a-357f-11eb-b2e8-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c5a-357f-11eb-b2e8-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c63-357f-11eb-b699-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c63-357f-11eb-b699-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c67-357f-11eb-bef1-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c67-357f-11eb-bef1-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c68-357f-11eb-8c77-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c68-357f-11eb-8c77-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c79-357f-11eb-af7c-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c79-357f-11eb-af7c-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c7c-357f-11eb-abcd-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c7c-357f-11eb-abcd-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c82-357f-11eb-981f-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c82-357f-11eb-981f-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c8e-357f-11eb-bf23-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c8e-357f-11eb-bf23-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c9a-357f-11eb-93b5-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c9a-357f-11eb-93b5-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982c9f-357f-11eb-ba06-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982c9f-357f-11eb-ba06-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982cb1-357f-11eb-8638-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982cb1-357f-11eb-8638-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982cb4-357f-11eb-8b33-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982cb4-357f-11eb-8b33-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982cb7-357f-11eb-9973-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982cb7-357f-11eb-9973-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982cbd-357f-11eb-81a2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982cbd-357f-11eb-81a2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982cc5-357f-11eb-bd32-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982cc5-357f-11eb-bd32-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a1982ccf-357f-11eb-9475-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a1982ccf-357f-11eb-9475-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852dd-357f-11eb-b03d-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852dd-357f-11eb-b03d-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852e9-357f-11eb-92f6-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852e9-357f-11eb-92f6-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852eb-357f-11eb-a568-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852eb-357f-11eb-a568-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852ee-357f-11eb-876a-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852ee-357f-11eb-876a-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852f1-357f-11eb-80b2-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852f1-357f-11eb-80b2-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852f6-357f-11eb-be05-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852f6-357f-11eb-be05-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a19852f8-357f-11eb-8c26-001a7dda7111.ndpi,data/Glioblastoma IDH-wildtype/a19852f8-357f-11eb-8c26-001a7dda7111.ndpi,"Glioblastoma, IDH-wildtype",0,Adult-Type Diffuse Gliomas,True
a194f776-357f-11eb-b9f5-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a194f776-357f-11eb-b9f5-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a194f778-357f-11eb-98ab-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a194f778-357f-11eb-98ab-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951e97-357f-11eb-a272-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951e97-357f-11eb-a272-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951ea6-357f-11eb-9377-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951ea6-357f-11eb-9377-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951ebe-357f-11eb-b20a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951ebe-357f-11eb-b20a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951ee2-357f-11eb-b1ed-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951ee2-357f-11eb-b1ed-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951ef5-357f-11eb-aac2-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951ef5-357f-11eb-aac2-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951f19-357f-11eb-9cd2-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951f19-357f-11eb-9cd2-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951f1a-357f-11eb-b1fd-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1951f1a-357f-11eb-b1fd-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19545a3-357f-11eb-9197-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19545a3-357f-11eb-9197-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19545af-357f-11eb-b028-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19545af-357f-11eb-b028-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19545dc-357f-11eb-824f-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19545dc-357f-11eb-824f-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19545dd-357f-11eb-9d10-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19545dd-357f-11eb-9d10-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1954606-357f-11eb-b30e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1954606-357f-11eb-b30e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1956cab-357f-11eb-a7bd-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1956cab-357f-11eb-a7bd-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1956cae-357f-11eb-9d10-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1956cae-357f-11eb-9d10-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1956cb0-357f-11eb-bdde-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1956cb0-357f-11eb-bdde-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1956cf1-357f-11eb-9a90-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1956cf1-357f-11eb-9a90-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1956d0b-357f-11eb-989a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1956d0b-357f-11eb-989a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19593c5-357f-11eb-8cfe-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19593c5-357f-11eb-8cfe-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19593c8-357f-11eb-91a2-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19593c8-357f-11eb-91a2-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19593d5-357f-11eb-8d1b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19593d5-357f-11eb-8d1b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19593e6-357f-11eb-a112-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19593e6-357f-11eb-a112-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19593e8-357f-11eb-b17a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19593e8-357f-11eb-b17a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195941a-357f-11eb-9a92-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195941a-357f-11eb-9a92-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195942c-357f-11eb-b181-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195942c-357f-11eb-b181-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1959444-357f-11eb-b587-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1959444-357f-11eb-b587-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195bac8-357f-11eb-93f0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195bac8-357f-11eb-93f0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195bae1-357f-11eb-a7ce-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195bae1-357f-11eb-a7ce-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195bafc-357f-11eb-a770-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195bafc-357f-11eb-a770-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195bb06-357f-11eb-a923-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195bb06-357f-11eb-a923-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195bb4b-357f-11eb-b33d-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195bb4b-357f-11eb-b33d-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e1d9-357f-11eb-947e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e1d9-357f-11eb-947e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e1e3-357f-11eb-b9b4-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e1e3-357f-11eb-b9b4-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e204-357f-11eb-af67-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e204-357f-11eb-af67-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e212-357f-11eb-9c76-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e212-357f-11eb-9c76-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e22c-357f-11eb-9a38-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e22c-357f-11eb-9a38-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e231-357f-11eb-a880-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e231-357f-11eb-a880-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e238-357f-11eb-a8d6-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e238-357f-11eb-a8d6-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e23c-357f-11eb-9b1b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e23c-357f-11eb-9b1b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e251-357f-11eb-897b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e251-357f-11eb-897b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e26a-357f-11eb-8afb-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e26a-357f-11eb-8afb-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e273-357f-11eb-be1d-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e273-357f-11eb-be1d-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a195e277-357f-11eb-894f-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a195e277-357f-11eb-894f-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19608f6-357f-11eb-8fe6-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19608f6-357f-11eb-8fe6-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19608f8-357f-11eb-a596-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19608f8-357f-11eb-a596-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19608fa-357f-11eb-8aba-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19608fa-357f-11eb-8aba-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960905-357f-11eb-b713-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960905-357f-11eb-b713-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960906-357f-11eb-b887-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960906-357f-11eb-b887-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960912-357f-11eb-ad3d-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960912-357f-11eb-ad3d-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960926-357f-11eb-a3e5-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960926-357f-11eb-a3e5-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960930-357f-11eb-b1e6-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960930-357f-11eb-b1e6-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196094a-357f-11eb-8145-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196094a-357f-11eb-8145-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960952-357f-11eb-ae5b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960952-357f-11eb-ae5b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196096d-357f-11eb-94db-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196096d-357f-11eb-94db-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960974-357f-11eb-a6f5-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960974-357f-11eb-a6f5-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960979-357f-11eb-ad32-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960979-357f-11eb-ad32-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196098e-357f-11eb-98ac-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196098e-357f-11eb-98ac-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1960992-357f-11eb-b2f1-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1960992-357f-11eb-b2f1-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19609aa-357f-11eb-83f6-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19609aa-357f-11eb-83f6-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19609c3-357f-11eb-b6d7-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19609c3-357f-11eb-b6d7-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19609c5-357f-11eb-9ae7-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19609c5-357f-11eb-9ae7-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1962fee-357f-11eb-b6bf-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1962fee-357f-11eb-b6bf-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1962ff9-357f-11eb-95f7-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1962ff9-357f-11eb-95f7-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1962fff-357f-11eb-8973-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1962fff-357f-11eb-8973-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1963012-357f-11eb-90c0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1963012-357f-11eb-90c0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1963017-357f-11eb-a640-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1963017-357f-11eb-a640-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1963042-357f-11eb-aebc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1963042-357f-11eb-aebc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1963055-357f-11eb-a825-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1963055-357f-11eb-a825-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196574e-357f-11eb-87c3-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196574e-357f-11eb-87c3-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1965755-357f-11eb-9d56-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1965755-357f-11eb-9d56-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1965758-357f-11eb-8adc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1965758-357f-11eb-8adc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196575b-357f-11eb-aecb-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196575b-357f-11eb-aecb-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196575e-357f-11eb-875f-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196575e-357f-11eb-875f-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196576d-357f-11eb-9736-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196576d-357f-11eb-9736-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196577c-357f-11eb-bd47-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196577c-357f-11eb-bd47-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19657a4-357f-11eb-86a0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19657a4-357f-11eb-86a0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19657a5-357f-11eb-8152-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19657a5-357f-11eb-8152-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19657a6-357f-11eb-81d1-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19657a6-357f-11eb-81d1-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19657be-357f-11eb-b4e1-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19657be-357f-11eb-b4e1-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1967e53-357f-11eb-a3bf-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1967e53-357f-11eb-a3bf-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a53b-357f-11eb-8bdc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a53b-357f-11eb-8bdc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a54f-357f-11eb-b51e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a54f-357f-11eb-b51e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a55b-357f-11eb-bacc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a55b-357f-11eb-bacc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a569-357f-11eb-82a4-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a569-357f-11eb-82a4-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a578-357f-11eb-960e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a578-357f-11eb-960e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a57b-357f-11eb-b989-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a57b-357f-11eb-b989-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a58f-357f-11eb-92af-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a58f-357f-11eb-92af-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a599-357f-11eb-8088-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a599-357f-11eb-8088-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a5a9-357f-11eb-a3c2-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a5a9-357f-11eb-a3c2-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196a5ba-357f-11eb-be11-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196a5ba-357f-11eb-be11-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc44-357f-11eb-85d2-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc44-357f-11eb-85d2-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc61-357f-11eb-8fce-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc61-357f-11eb-8fce-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc6e-357f-11eb-9c45-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc6e-357f-11eb-9c45-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc73-357f-11eb-b1b8-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc73-357f-11eb-b1b8-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc85-357f-11eb-93fb-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc85-357f-11eb-93fb-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc86-357f-11eb-8b2f-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc86-357f-11eb-8b2f-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc88-357f-11eb-86f1-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc88-357f-11eb-86f1-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196cc8b-357f-11eb-a7ae-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196cc8b-357f-11eb-a7ae-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196f36e-357f-11eb-963b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196f36e-357f-11eb-963b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196f379-357f-11eb-a184-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196f379-357f-11eb-a184-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196f383-357f-11eb-a40c-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196f383-357f-11eb-a40c-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196f3a1-357f-11eb-9dbc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196f3a1-357f-11eb-9dbc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196f3ad-357f-11eb-9559-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196f3ad-357f-11eb-9559-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a196f3c2-357f-11eb-8737-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a196f3c2-357f-11eb-8737-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971a88-357f-11eb-9c29-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971a88-357f-11eb-9c29-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971a91-357f-11eb-818d-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971a91-357f-11eb-818d-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971a92-357f-11eb-baf7-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971a92-357f-11eb-baf7-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971a97-357f-11eb-89d4-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971a97-357f-11eb-89d4-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971aba-357f-11eb-9545-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971aba-357f-11eb-9545-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971ac5-357f-11eb-9909-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971ac5-357f-11eb-9909-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1971adf-357f-11eb-8ca3-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1971adf-357f-11eb-8ca3-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19741b3-357f-11eb-b014-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19741b3-357f-11eb-b014-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19741d5-357f-11eb-b92a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19741d5-357f-11eb-b92a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19741e4-357f-11eb-91b5-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19741e4-357f-11eb-91b5-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19741ea-357f-11eb-8e32-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19741ea-357f-11eb-8e32-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19741fd-357f-11eb-bf7e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19741fd-357f-11eb-bf7e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19741fe-357f-11eb-950e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19741fe-357f-11eb-950e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197420a-357f-11eb-9ece-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197420a-357f-11eb-9ece-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1976881-357f-11eb-baa6-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1976881-357f-11eb-baa6-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197688e-357f-11eb-9832-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197688e-357f-11eb-9832-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19768a2-357f-11eb-bf7a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19768a2-357f-11eb-bf7a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1978f84-357f-11eb-bfaa-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1978f84-357f-11eb-bfaa-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1978f96-357f-11eb-b109-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1978f96-357f-11eb-b109-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1978f9c-357f-11eb-85ab-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1978f9c-357f-11eb-85ab-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1978fad-357f-11eb-afa6-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1978fad-357f-11eb-afa6-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1978fd8-357f-11eb-8b23-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1978fd8-357f-11eb-8b23-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b6c6-357f-11eb-9073-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b6c6-357f-11eb-9073-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b6cb-357f-11eb-bc0c-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b6cb-357f-11eb-bc0c-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b6ea-357f-11eb-9483-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b6ea-357f-11eb-9483-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b6f3-357f-11eb-a5dc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b6f3-357f-11eb-a5dc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b6fc-357f-11eb-9db9-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b6fc-357f-11eb-9db9-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b703-357f-11eb-88eb-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b703-357f-11eb-88eb-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b708-357f-11eb-8c9e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b708-357f-11eb-8c9e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197b711-357f-11eb-8194-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197b711-357f-11eb-8194-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197ddb1-357f-11eb-a3a9-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197ddb1-357f-11eb-a3a9-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197ddc8-357f-11eb-bc48-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197ddc8-357f-11eb-bc48-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197dddc-357f-11eb-a0f1-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197dddc-357f-11eb-a0f1-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197ddfe-357f-11eb-b033-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197ddfe-357f-11eb-b033-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197de0f-357f-11eb-95da-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197de0f-357f-11eb-95da-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197de1e-357f-11eb-b5ba-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197de1e-357f-11eb-b5ba-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a197de2f-357f-11eb-92dd-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a197de2f-357f-11eb-92dd-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19804cb-357f-11eb-a76b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19804cb-357f-11eb-a76b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19804e1-357f-11eb-aa98-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19804e1-357f-11eb-aa98-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19804fa-357f-11eb-8f47-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19804fa-357f-11eb-8f47-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a198050c-357f-11eb-9c2e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a198050c-357f-11eb-9c2e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a198050d-357f-11eb-a6f0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a198050d-357f-11eb-a6f0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980513-357f-11eb-bed2-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980513-357f-11eb-bed2-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980537-357f-11eb-9e3b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980537-357f-11eb-9e3b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980546-357f-11eb-91fa-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980546-357f-11eb-91fa-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a198054b-357f-11eb-8299-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a198054b-357f-11eb-8299-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a198055a-357f-11eb-8df5-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a198055a-357f-11eb-8df5-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980564-357f-11eb-af8a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980564-357f-11eb-af8a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980574-357f-11eb-8cd0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980574-357f-11eb-8cd0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980582-357f-11eb-8513-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980582-357f-11eb-8513-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1980598-357f-11eb-8082-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1980598-357f-11eb-8082-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19805c0-357f-11eb-8a81-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19805c0-357f-11eb-8a81-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982bd7-357f-11eb-b078-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982bd7-357f-11eb-b078-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982bed-357f-11eb-bdac-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982bed-357f-11eb-bdac-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982bef-357f-11eb-bef0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982bef-357f-11eb-bef0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c01-357f-11eb-9a45-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c01-357f-11eb-9a45-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c36-357f-11eb-a771-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c36-357f-11eb-a771-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c3c-357f-11eb-9e82-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c3c-357f-11eb-9e82-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c4c-357f-11eb-93ba-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c4c-357f-11eb-93ba-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c4f-357f-11eb-be28-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c4f-357f-11eb-be28-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c5d-357f-11eb-bffc-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c5d-357f-11eb-bffc-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c6d-357f-11eb-953e-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c6d-357f-11eb-953e-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c89-357f-11eb-8d3b-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c89-357f-11eb-8d3b-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982c97-357f-11eb-881a-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982c97-357f-11eb-881a-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982cba-357f-11eb-8cff-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982cba-357f-11eb-8cff-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982cc1-357f-11eb-b1da-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982cc1-357f-11eb-b1da-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1982cca-357f-11eb-b2b0-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a1982cca-357f-11eb-b2b0-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a19852e7-357f-11eb-bf93-001a7dda7111.ndpi,data/Pilocytic astrocytoma/a19852e7-357f-11eb-bf93-001a7dda7111.ndpi,Pilocytic astrocytoma,1,Circumscribed Astrocytic Gliomas,True
a1951eb6-357f-11eb-bd22-001a7dda7111.ndpi,data/Meningothelial meningioma/a1951eb6-357f-11eb-bd22-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1951ed0-357f-11eb-904b-001a7dda7111.ndpi,data/Meningothelial meningioma/a1951ed0-357f-11eb-904b-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1951eea-357f-11eb-a2ff-001a7dda7111.ndpi,data/Meningothelial meningioma/a1951eea-357f-11eb-a2ff-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1951f1b-357f-11eb-842a-001a7dda7111.ndpi,data/Meningothelial meningioma/a1951f1b-357f-11eb-842a-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19545e3-357f-11eb-ad6e-001a7dda7111.ndpi,data/Meningothelial meningioma/a19545e3-357f-11eb-ad6e-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19545e8-357f-11eb-ba36-001a7dda7111.ndpi,data/Meningothelial meningioma/a19545e8-357f-11eb-ba36-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1956ced-357f-11eb-a0ca-001a7dda7111.ndpi,data/Meningothelial meningioma/a1956ced-357f-11eb-a0ca-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1956d09-357f-11eb-af17-001a7dda7111.ndpi,data/Meningothelial meningioma/a1956d09-357f-11eb-af17-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1956d12-357f-11eb-80e9-001a7dda7111.ndpi,data/Meningothelial meningioma/a1956d12-357f-11eb-80e9-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19593bd-357f-11eb-bd86-001a7dda7111.ndpi,data/Meningothelial meningioma/a19593bd-357f-11eb-bd86-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19593cb-357f-11eb-be5f-001a7dda7111.ndpi,data/Meningothelial meningioma/a19593cb-357f-11eb-be5f-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19593eb-357f-11eb-ba02-001a7dda7111.ndpi,data/Meningothelial meningioma/a19593eb-357f-11eb-ba02-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1959436-357f-11eb-8e0a-001a7dda7111.ndpi,data/Meningothelial meningioma/a1959436-357f-11eb-8e0a-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195944a-357f-11eb-8f2e-001a7dda7111.ndpi,data/Meningothelial meningioma/a195944a-357f-11eb-8f2e-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bac3-357f-11eb-9ec6-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bac3-357f-11eb-9ec6-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bae8-357f-11eb-88e6-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bae8-357f-11eb-88e6-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195baf2-357f-11eb-b274-001a7dda7111.ndpi,data/Meningothelial meningioma/a195baf2-357f-11eb-b274-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bafd-357f-11eb-9444-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bafd-357f-11eb-9444-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bb01-357f-11eb-b7ed-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bb01-357f-11eb-b7ed-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bb0b-357f-11eb-b83a-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bb0b-357f-11eb-b83a-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bb0e-357f-11eb-a2e7-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bb0e-357f-11eb-a2e7-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195bb26-357f-11eb-b2c8-001a7dda7111.ndpi,data/Meningothelial meningioma/a195bb26-357f-11eb-b2c8-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e1d5-357f-11eb-904d-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e1d5-357f-11eb-904d-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e1f3-357f-11eb-b304-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e1f3-357f-11eb-b304-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e1f9-357f-11eb-a81e-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e1f9-357f-11eb-a81e-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e1ff-357f-11eb-93c9-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e1ff-357f-11eb-93c9-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e213-357f-11eb-bdb6-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e213-357f-11eb-bdb6-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e23f-357f-11eb-9d96-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e23f-357f-11eb-9d96-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e24c-357f-11eb-8e31-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e24c-357f-11eb-8e31-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a195e268-357f-11eb-9eb5-001a7dda7111.ndpi,data/Meningothelial meningioma/a195e268-357f-11eb-9eb5-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19608f5-357f-11eb-b3e1-001a7dda7111.ndpi,data/Meningothelial meningioma/a19608f5-357f-11eb-b3e1-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1960917-357f-11eb-91fe-001a7dda7111.ndpi,data/Meningothelial meningioma/a1960917-357f-11eb-91fe-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1960986-357f-11eb-93d3-001a7dda7111.ndpi,data/Meningothelial meningioma/a1960986-357f-11eb-93d3-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19609a4-357f-11eb-8589-001a7dda7111.ndpi,data/Meningothelial meningioma/a19609a4-357f-11eb-8589-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19609c6-357f-11eb-ad5d-001a7dda7111.ndpi,data/Meningothelial meningioma/a19609c6-357f-11eb-ad5d-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1962ff8-357f-11eb-a3cf-001a7dda7111.ndpi,data/Meningothelial meningioma/a1962ff8-357f-11eb-a3cf-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196300e-357f-11eb-adfd-001a7dda7111.ndpi,data/Meningothelial meningioma/a196300e-357f-11eb-adfd-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196301d-357f-11eb-9cc1-001a7dda7111.ndpi,data/Meningothelial meningioma/a196301d-357f-11eb-9cc1-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1963070-357f-11eb-abfd-001a7dda7111.ndpi,data/Meningothelial meningioma/a1963070-357f-11eb-abfd-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19656fd-357f-11eb-ad72-001a7dda7111.ndpi,data/Meningothelial meningioma/a19656fd-357f-11eb-ad72-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196570b-357f-11eb-885b-001a7dda7111.ndpi,data/Meningothelial meningioma/a196570b-357f-11eb-885b-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1965722-357f-11eb-9f09-001a7dda7111.ndpi,data/Meningothelial meningioma/a1965722-357f-11eb-9f09-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19657b4-357f-11eb-b41d-001a7dda7111.ndpi,data/Meningothelial meningioma/a19657b4-357f-11eb-b41d-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19657b7-357f-11eb-85c3-001a7dda7111.ndpi,data/Meningothelial meningioma/a19657b7-357f-11eb-85c3-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1967e4c-357f-11eb-94f6-001a7dda7111.ndpi,data/Meningothelial meningioma/a1967e4c-357f-11eb-94f6-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1967e98-357f-11eb-9765-001a7dda7111.ndpi,data/Meningothelial meningioma/a1967e98-357f-11eb-9765-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1967e9c-357f-11eb-9153-001a7dda7111.ndpi,data/Meningothelial meningioma/a1967e9c-357f-11eb-9153-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196a542-357f-11eb-97ea-001a7dda7111.ndpi,data/Meningothelial meningioma/a196a542-357f-11eb-97ea-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196a556-357f-11eb-9aa9-001a7dda7111.ndpi,data/Meningothelial meningioma/a196a556-357f-11eb-9aa9-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196a5bf-357f-11eb-b088-001a7dda7111.ndpi,data/Meningothelial meningioma/a196a5bf-357f-11eb-b088-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196cc78-357f-11eb-bee6-001a7dda7111.ndpi,data/Meningothelial meningioma/a196cc78-357f-11eb-bee6-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196cc8a-357f-11eb-993b-001a7dda7111.ndpi,data/Meningothelial meningioma/a196cc8a-357f-11eb-993b-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196cc8c-357f-11eb-8067-001a7dda7111.ndpi,data/Meningothelial meningioma/a196cc8c-357f-11eb-8067-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196f3a5-357f-11eb-a582-001a7dda7111.ndpi,data/Meningothelial meningioma/a196f3a5-357f-11eb-a582-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196f3c4-357f-11eb-acad-001a7dda7111.ndpi,data/Meningothelial meningioma/a196f3c4-357f-11eb-acad-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a196f3d5-357f-11eb-95b9-001a7dda7111.ndpi,data/Meningothelial meningioma/a196f3d5-357f-11eb-95b9-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1971a8f-357f-11eb-9144-001a7dda7111.ndpi,data/Meningothelial meningioma/a1971a8f-357f-11eb-9144-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1971aa0-357f-11eb-9b45-001a7dda7111.ndpi,data/Meningothelial meningioma/a1971aa0-357f-11eb-9b45-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1971aa2-357f-11eb-a17d-001a7dda7111.ndpi,data/Meningothelial meningioma/a1971aa2-357f-11eb-a17d-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1971ab3-357f-11eb-8cd3-001a7dda7111.ndpi,data/Meningothelial meningioma/a1971ab3-357f-11eb-8cd3-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1971ad4-357f-11eb-b274-001a7dda7111.ndpi,data/Meningothelial meningioma/a1971ad4-357f-11eb-b274-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1971ae1-357f-11eb-b8f2-001a7dda7111.ndpi,data/Meningothelial meningioma/a1971ae1-357f-11eb-b8f2-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19741cd-357f-11eb-953d-001a7dda7111.ndpi,data/Meningothelial meningioma/a19741cd-357f-11eb-953d-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19741ee-357f-11eb-bffc-001a7dda7111.ndpi,data/Meningothelial meningioma/a19741ee-357f-11eb-bffc-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19741f2-357f-11eb-8aaa-001a7dda7111.ndpi,data/Meningothelial meningioma/a19741f2-357f-11eb-8aaa-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19741f9-357f-11eb-9b22-001a7dda7111.ndpi,data/Meningothelial meningioma/a19741f9-357f-11eb-9b22-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a197689d-357f-11eb-a002-001a7dda7111.ndpi,data/Meningothelial meningioma/a197689d-357f-11eb-a002-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19768af-357f-11eb-b858-001a7dda7111.ndpi,data/Meningothelial meningioma/a19768af-357f-11eb-b858-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19768c0-357f-11eb-8c65-001a7dda7111.ndpi,data/Meningothelial meningioma/a19768c0-357f-11eb-8c65-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1978f8b-357f-11eb-9717-001a7dda7111.ndpi,data/Meningothelial meningioma/a1978f8b-357f-11eb-9717-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1978fcb-357f-11eb-8e09-001a7dda7111.ndpi,data/Meningothelial meningioma/a1978fcb-357f-11eb-8e09-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a197b6b3-357f-11eb-9b9c-001a7dda7111.ndpi,data/Meningothelial meningioma/a197b6b3-357f-11eb-9b9c-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a197b6b5-357f-11eb-af03-001a7dda7111.ndpi,data/Meningothelial meningioma/a197b6b5-357f-11eb-af03-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a197b6bf-357f-11eb-940e-001a7dda7111.ndpi,data/Meningothelial meningioma/a197b6bf-357f-11eb-940e-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a197b6c4-357f-11eb-a9cc-001a7dda7111.ndpi,data/Meningothelial meningioma/a197b6c4-357f-11eb-a9cc-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a197de25-357f-11eb-ac05-001a7dda7111.ndpi,data/Meningothelial meningioma/a197de25-357f-11eb-ac05-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19804bc-357f-11eb-bbc0-001a7dda7111.ndpi,data/Meningothelial meningioma/a19804bc-357f-11eb-bbc0-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19804e5-357f-11eb-b666-001a7dda7111.ndpi,data/Meningothelial meningioma/a19804e5-357f-11eb-b666-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1980522-357f-11eb-b389-001a7dda7111.ndpi,data/Meningothelial meningioma/a1980522-357f-11eb-b389-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1980561-357f-11eb-86de-001a7dda7111.ndpi,data/Meningothelial meningioma/a1980561-357f-11eb-86de-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a198059a-357f-11eb-b10a-001a7dda7111.ndpi,data/Meningothelial meningioma/a198059a-357f-11eb-b10a-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19805a0-357f-11eb-b836-001a7dda7111.ndpi,data/Meningothelial meningioma/a19805a0-357f-11eb-b836-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19805a1-357f-11eb-abd3-001a7dda7111.ndpi,data/Meningothelial meningioma/a19805a1-357f-11eb-abd3-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19805c6-357f-11eb-8bea-001a7dda7111.ndpi,data/Meningothelial meningioma/a19805c6-357f-11eb-8bea-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982bcf-357f-11eb-9b10-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982bcf-357f-11eb-9b10-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982bdf-357f-11eb-9bdd-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982bdf-357f-11eb-9bdd-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982bf8-357f-11eb-b2e7-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982bf8-357f-11eb-b2e7-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c02-357f-11eb-b71d-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c02-357f-11eb-b71d-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c04-357f-11eb-a37f-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c04-357f-11eb-a37f-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c0f-357f-11eb-9684-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c0f-357f-11eb-9684-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c10-357f-11eb-b9d6-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c10-357f-11eb-b9d6-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c26-357f-11eb-884a-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c26-357f-11eb-884a-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c27-357f-11eb-8f3e-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c27-357f-11eb-8f3e-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c54-357f-11eb-8316-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c54-357f-11eb-8316-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c70-357f-11eb-a60c-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c70-357f-11eb-a60c-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c76-357f-11eb-90fb-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c76-357f-11eb-90fb-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c7d-357f-11eb-a44f-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c7d-357f-11eb-a44f-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c86-357f-11eb-8a21-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c86-357f-11eb-8a21-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c8c-357f-11eb-b0ef-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c8c-357f-11eb-b0ef-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982c8f-357f-11eb-b0e4-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982c8f-357f-11eb-b0e4-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982cab-357f-11eb-b6ff-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982cab-357f-11eb-b6ff-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a1982cd0-357f-11eb-a386-001a7dda7111.ndpi,data/Meningothelial meningioma/a1982cd0-357f-11eb-a386-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19852ea-357f-11eb-9d55-001a7dda7111.ndpi,data/Meningothelial meningioma/a19852ea-357f-11eb-9d55-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a19852ec-357f-11eb-9602-001a7dda7111.ndpi,data/Meningothelial meningioma/a19852ec-357f-11eb-9602-001a7dda7111.ndpi,Meningothelial meningioma,2,Meningiomas,True
a194f77a-357f-11eb-a486-001a7dda7111.ndpi,data/Pituitary adenoma/a194f77a-357f-11eb-a486-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1951e8a-357f-11eb-9dd2-001a7dda7111.ndpi,data/Pituitary adenoma/a1951e8a-357f-11eb-9dd2-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1951ea7-357f-11eb-a3c0-001a7dda7111.ndpi,data/Pituitary adenoma/a1951ea7-357f-11eb-a3c0-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1951eae-357f-11eb-935a-001a7dda7111.ndpi,data/Pituitary adenoma/a1951eae-357f-11eb-935a-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1951ebc-357f-11eb-9c2a-001a7dda7111.ndpi,data/Pituitary adenoma/a1951ebc-357f-11eb-9c2a-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1951ec2-357f-11eb-a5e7-001a7dda7111.ndpi,data/Pituitary adenoma/a1951ec2-357f-11eb-a5e7-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1951ed6-357f-11eb-b600-001a7dda7111.ndpi,data/Pituitary adenoma/a1951ed6-357f-11eb-b600-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19545a1-357f-11eb-a24d-001a7dda7111.ndpi,data/Pituitary adenoma/a19545a1-357f-11eb-a24d-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19545a6-357f-11eb-8e3d-001a7dda7111.ndpi,data/Pituitary adenoma/a19545a6-357f-11eb-8e3d-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19545e2-357f-11eb-a7ea-001a7dda7111.ndpi,data/Pituitary adenoma/a19545e2-357f-11eb-a7ea-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19545e4-357f-11eb-bd19-001a7dda7111.ndpi,data/Pituitary adenoma/a19545e4-357f-11eb-bd19-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19593c4-357f-11eb-910e-001a7dda7111.ndpi,data/Pituitary adenoma/a19593c4-357f-11eb-910e-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19593fb-357f-11eb-8d3b-001a7dda7111.ndpi,data/Pituitary adenoma/a19593fb-357f-11eb-8d3b-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a195940b-357f-11eb-b92d-001a7dda7111.ndpi,data/Pituitary adenoma/a195940b-357f-11eb-b92d-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1959411-357f-11eb-9863-001a7dda7111.ndpi,data/Pituitary adenoma/a1959411-357f-11eb-9863-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1959429-357f-11eb-b06b-001a7dda7111.ndpi,data/Pituitary adenoma/a1959429-357f-11eb-b06b-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a195bac5-357f-11eb-9620-001a7dda7111.ndpi,data/Pituitary adenoma/a195bac5-357f-11eb-9620-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a195badf-357f-11eb-b3a5-001a7dda7111.ndpi,data/Pituitary adenoma/a195badf-357f-11eb-b3a5-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a195e21f-357f-11eb-90f4-001a7dda7111.ndpi,data/Pituitary adenoma/a195e21f-357f-11eb-90f4-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a195e25a-357f-11eb-a98b-001a7dda7111.ndpi,data/Pituitary adenoma/a195e25a-357f-11eb-a98b-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a195e25e-357f-11eb-b2d3-001a7dda7111.ndpi,data/Pituitary adenoma/a195e25e-357f-11eb-b2d3-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19608ef-357f-11eb-93e6-001a7dda7111.ndpi,data/Pituitary adenoma/a19608ef-357f-11eb-93e6-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19608f1-357f-11eb-bda6-001a7dda7111.ndpi,data/Pituitary adenoma/a19608f1-357f-11eb-bda6-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1960918-357f-11eb-9c02-001a7dda7111.ndpi,data/Pituitary adenoma/a1960918-357f-11eb-9c02-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196092a-357f-11eb-9cc6-001a7dda7111.ndpi,data/Pituitary adenoma/a196092a-357f-11eb-9cc6-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196094e-357f-11eb-b475-001a7dda7111.ndpi,data/Pituitary adenoma/a196094e-357f-11eb-b475-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1960971-357f-11eb-81c8-001a7dda7111.ndpi,data/Pituitary adenoma/a1960971-357f-11eb-81c8-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1960996-357f-11eb-9da5-001a7dda7111.ndpi,data/Pituitary adenoma/a1960996-357f-11eb-9da5-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19609b3-357f-11eb-96b4-001a7dda7111.ndpi,data/Pituitary adenoma/a19609b3-357f-11eb-96b4-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1962feb-357f-11eb-8880-001a7dda7111.ndpi,data/Pituitary adenoma/a1962feb-357f-11eb-8880-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1962ff1-357f-11eb-a229-001a7dda7111.ndpi,data/Pituitary adenoma/a1962ff1-357f-11eb-a229-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1962ff3-357f-11eb-b404-001a7dda7111.ndpi,data/Pituitary adenoma/a1962ff3-357f-11eb-b404-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1962ffa-357f-11eb-a5eb-001a7dda7111.ndpi,data/Pituitary adenoma/a1962ffa-357f-11eb-a5eb-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1962ffd-357f-11eb-a714-001a7dda7111.ndpi,data/Pituitary adenoma/a1962ffd-357f-11eb-a714-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196300f-357f-11eb-9ecf-001a7dda7111.ndpi,data/Pituitary adenoma/a196300f-357f-11eb-9ecf-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1963021-357f-11eb-9d93-001a7dda7111.ndpi,data/Pituitary adenoma/a1963021-357f-11eb-9d93-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196303f-357f-11eb-9029-001a7dda7111.ndpi,data/Pituitary adenoma/a196303f-357f-11eb-9029-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196304b-357f-11eb-bc56-001a7dda7111.ndpi,data/Pituitary adenoma/a196304b-357f-11eb-bc56-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1963084-357f-11eb-8bad-001a7dda7111.ndpi,data/Pituitary adenoma/a1963084-357f-11eb-8bad-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1965711-357f-11eb-9e8c-001a7dda7111.ndpi,data/Pituitary adenoma/a1965711-357f-11eb-9e8c-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196571e-357f-11eb-9dad-001a7dda7111.ndpi,data/Pituitary adenoma/a196571e-357f-11eb-9dad-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1965723-357f-11eb-bf86-001a7dda7111.ndpi,data/Pituitary adenoma/a1965723-357f-11eb-bf86-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1965744-357f-11eb-851b-001a7dda7111.ndpi,data/Pituitary adenoma/a1965744-357f-11eb-851b-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196577e-357f-11eb-ac98-001a7dda7111.ndpi,data/Pituitary adenoma/a196577e-357f-11eb-ac98-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1965783-357f-11eb-afcf-001a7dda7111.ndpi,data/Pituitary adenoma/a1965783-357f-11eb-afcf-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19657b1-357f-11eb-81f4-001a7dda7111.ndpi,data/Pituitary adenoma/a19657b1-357f-11eb-81f4-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a538-357f-11eb-90a4-001a7dda7111.ndpi,data/Pituitary adenoma/a196a538-357f-11eb-90a4-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a543-357f-11eb-9977-001a7dda7111.ndpi,data/Pituitary adenoma/a196a543-357f-11eb-9977-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a55c-357f-11eb-bef2-001a7dda7111.ndpi,data/Pituitary adenoma/a196a55c-357f-11eb-bef2-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a564-357f-11eb-84e3-001a7dda7111.ndpi,data/Pituitary adenoma/a196a564-357f-11eb-84e3-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a579-357f-11eb-8947-001a7dda7111.ndpi,data/Pituitary adenoma/a196a579-357f-11eb-8947-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a598-357f-11eb-9c18-001a7dda7111.ndpi,data/Pituitary adenoma/a196a598-357f-11eb-9c18-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196a5b6-357f-11eb-80e6-001a7dda7111.ndpi,data/Pituitary adenoma/a196a5b6-357f-11eb-80e6-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196cc49-357f-11eb-bae9-001a7dda7111.ndpi,data/Pituitary adenoma/a196cc49-357f-11eb-bae9-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196cc95-357f-11eb-8e13-001a7dda7111.ndpi,data/Pituitary adenoma/a196cc95-357f-11eb-8e13-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196cc9b-357f-11eb-9a4c-001a7dda7111.ndpi,data/Pituitary adenoma/a196cc9b-357f-11eb-9a4c-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196f368-357f-11eb-af62-001a7dda7111.ndpi,data/Pituitary adenoma/a196f368-357f-11eb-af62-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a196f39b-357f-11eb-a94d-001a7dda7111.ndpi,data/Pituitary adenoma/a196f39b-357f-11eb-a94d-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1971a81-357f-11eb-ba4e-001a7dda7111.ndpi,data/Pituitary adenoma/a1971a81-357f-11eb-ba4e-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1971aa5-357f-11eb-9b16-001a7dda7111.ndpi,data/Pituitary adenoma/a1971aa5-357f-11eb-9b16-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1971ac3-357f-11eb-96f2-001a7dda7111.ndpi,data/Pituitary adenoma/a1971ac3-357f-11eb-96f2-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1971ace-357f-11eb-a9be-001a7dda7111.ndpi,data/Pituitary adenoma/a1971ace-357f-11eb-a9be-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1971ad2-357f-11eb-ae86-001a7dda7111.ndpi,data/Pituitary adenoma/a1971ad2-357f-11eb-ae86-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19741a7-357f-11eb-82d3-001a7dda7111.ndpi,data/Pituitary adenoma/a19741a7-357f-11eb-82d3-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19741ad-357f-11eb-8d90-001a7dda7111.ndpi,data/Pituitary adenoma/a19741ad-357f-11eb-8d90-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19741b0-357f-11eb-a0a7-001a7dda7111.ndpi,data/Pituitary adenoma/a19741b0-357f-11eb-a0a7-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19741ba-357f-11eb-8972-001a7dda7111.ndpi,data/Pituitary adenoma/a19741ba-357f-11eb-8972-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19741f3-357f-11eb-84c9-001a7dda7111.ndpi,data/Pituitary adenoma/a19741f3-357f-11eb-84c9-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19741f6-357f-11eb-a555-001a7dda7111.ndpi,data/Pituitary adenoma/a19741f6-357f-11eb-a555-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197420c-357f-11eb-8ee6-001a7dda7111.ndpi,data/Pituitary adenoma/a197420c-357f-11eb-8ee6-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1976889-357f-11eb-aa2d-001a7dda7111.ndpi,data/Pituitary adenoma/a1976889-357f-11eb-aa2d-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19768a3-357f-11eb-82e8-001a7dda7111.ndpi,data/Pituitary adenoma/a19768a3-357f-11eb-82e8-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19768d8-357f-11eb-914f-001a7dda7111.ndpi,data/Pituitary adenoma/a19768d8-357f-11eb-914f-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1978fbb-357f-11eb-a1f3-001a7dda7111.ndpi,data/Pituitary adenoma/a1978fbb-357f-11eb-a1f3-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1978fe1-357f-11eb-bea7-001a7dda7111.ndpi,data/Pituitary adenoma/a1978fe1-357f-11eb-bea7-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197b6bb-357f-11eb-bb79-001a7dda7111.ndpi,data/Pituitary adenoma/a197b6bb-357f-11eb-bb79-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197ddb4-357f-11eb-8b78-001a7dda7111.ndpi,data/Pituitary adenoma/a197ddb4-357f-11eb-8b78-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197ddc1-357f-11eb-a6f8-001a7dda7111.ndpi,data/Pituitary adenoma/a197ddc1-357f-11eb-a6f8-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197ddd6-357f-11eb-b38c-001a7dda7111.ndpi,data/Pituitary adenoma/a197ddd6-357f-11eb-b38c-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197ddf2-357f-11eb-835b-001a7dda7111.ndpi,data/Pituitary adenoma/a197ddf2-357f-11eb-835b-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a197de28-357f-11eb-8df0-001a7dda7111.ndpi,data/Pituitary adenoma/a197de28-357f-11eb-8df0-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19804b7-357f-11eb-92ee-001a7dda7111.ndpi,data/Pituitary adenoma/a19804b7-357f-11eb-92ee-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19804cd-357f-11eb-8395-001a7dda7111.ndpi,data/Pituitary adenoma/a19804cd-357f-11eb-8395-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a198050f-357f-11eb-976f-001a7dda7111.ndpi,data/Pituitary adenoma/a198050f-357f-11eb-976f-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1980545-357f-11eb-b627-001a7dda7111.ndpi,data/Pituitary adenoma/a1980545-357f-11eb-b627-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1980553-357f-11eb-b3ea-001a7dda7111.ndpi,data/Pituitary adenoma/a1980553-357f-11eb-b3ea-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1980573-357f-11eb-92f0-001a7dda7111.ndpi,data/Pituitary adenoma/a1980573-357f-11eb-92f0-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a198058a-357f-11eb-b143-001a7dda7111.ndpi,data/Pituitary adenoma/a198058a-357f-11eb-b143-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a198059e-357f-11eb-b8f6-001a7dda7111.ndpi,data/Pituitary adenoma/a198059e-357f-11eb-b8f6-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a19805a3-357f-11eb-add5-001a7dda7111.ndpi,data/Pituitary adenoma/a19805a3-357f-11eb-add5-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982bea-357f-11eb-b5b8-001a7dda7111.ndpi,data/Pituitary adenoma/a1982bea-357f-11eb-b5b8-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982bf5-357f-11eb-aa99-001a7dda7111.ndpi,data/Pituitary adenoma/a1982bf5-357f-11eb-aa99-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982c3e-357f-11eb-b230-001a7dda7111.ndpi,data/Pituitary adenoma/a1982c3e-357f-11eb-b230-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982c72-357f-11eb-95d0-001a7dda7111.ndpi,data/Pituitary adenoma/a1982c72-357f-11eb-95d0-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982c92-357f-11eb-9939-001a7dda7111.ndpi,data/Pituitary adenoma/a1982c92-357f-11eb-9939-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982c99-357f-11eb-a70e-001a7dda7111.ndpi,data/Pituitary adenoma/a1982c99-357f-11eb-a70e-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982ca7-357f-11eb-8275-001a7dda7111.ndpi,data/Pituitary adenoma/a1982ca7-357f-11eb-8275-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982cac-357f-11eb-9e60-001a7dda7111.ndpi,data/Pituitary adenoma/a1982cac-357f-11eb-9e60-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a1982cae-357f-11eb-ae90-001a7dda7111.ndpi,data/Pituitary adenoma/a1982cae-357f-11eb-ae90-001a7dda7111.ndpi,Pituitary adenoma,3,Tumours Of The Sellar Region,True
a194f782-357f-11eb-b41e-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a194f782-357f-11eb-b41e-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1951e91-357f-11eb-b9dd-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1951e91-357f-11eb-b9dd-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1951e94-357f-11eb-ba5a-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1951e94-357f-11eb-ba5a-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1951e95-357f-11eb-bfa9-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1951e95-357f-11eb-bfa9-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1951eaa-357f-11eb-8086-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1951eaa-357f-11eb-8086-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1951eba-357f-11eb-9519-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1951eba-357f-11eb-9519-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19545c0-357f-11eb-a5db-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19545c0-357f-11eb-a5db-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19545f8-357f-11eb-be6f-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19545f8-357f-11eb-be6f-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19545fa-357f-11eb-96de-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19545fa-357f-11eb-96de-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1956cda-357f-11eb-ba62-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1956cda-357f-11eb-ba62-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1956cdc-357f-11eb-9efe-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1956cdc-357f-11eb-9efe-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195943a-357f-11eb-957d-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195943a-357f-11eb-957d-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195bac9-357f-11eb-839b-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bac9-357f-11eb-839b-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195bb1f-357f-11eb-be61-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bb1f-357f-11eb-be61-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195bb27-357f-11eb-93cc-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bb27-357f-11eb-93cc-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195e210-357f-11eb-92a3-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e210-357f-11eb-92a3-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195e234-357f-11eb-971f-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e234-357f-11eb-971f-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195e23e-357f-11eb-9b42-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e23e-357f-11eb-9b42-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195e249-357f-11eb-acce-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e249-357f-11eb-acce-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195e26e-357f-11eb-a442-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e26e-357f-11eb-a442-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a195e278-357f-11eb-9a52-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e278-357f-11eb-9a52-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1960936-357f-11eb-98e1-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1960936-357f-11eb-98e1-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1960949-357f-11eb-8e9f-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1960949-357f-11eb-8e9f-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1960962-357f-11eb-a72f-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1960962-357f-11eb-a72f-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196096a-357f-11eb-b997-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196096a-357f-11eb-b997-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19609b9-357f-11eb-ab37-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19609b9-357f-11eb-ab37-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19609bf-357f-11eb-a7de-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19609bf-357f-11eb-a7de-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1962ff0-357f-11eb-8aff-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1962ff0-357f-11eb-8aff-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1963026-357f-11eb-8f23-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963026-357f-11eb-8f23-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1963050-357f-11eb-8281-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963050-357f-11eb-8281-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1963088-357f-11eb-907f-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963088-357f-11eb-907f-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1965716-357f-11eb-be58-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1965716-357f-11eb-be58-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1965720-357f-11eb-ab88-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1965720-357f-11eb-ab88-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196578c-357f-11eb-b6d9-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196578c-357f-11eb-b6d9-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19657c4-357f-11eb-93f3-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19657c4-357f-11eb-93f3-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19657d9-357f-11eb-8b58-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19657d9-357f-11eb-8b58-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1967e41-357f-11eb-b7a5-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e41-357f-11eb-b7a5-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1967e42-357f-11eb-89ea-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e42-357f-11eb-89ea-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1967e4a-357f-11eb-a17c-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e4a-357f-11eb-a17c-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1967e6b-357f-11eb-9864-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e6b-357f-11eb-9864-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1967e83-357f-11eb-81f1-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e83-357f-11eb-81f1-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1967ea3-357f-11eb-8443-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967ea3-357f-11eb-8443-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196a530-357f-11eb-9d03-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a530-357f-11eb-9d03-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196a54c-357f-11eb-b284-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a54c-357f-11eb-b284-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196a557-357f-11eb-b142-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a557-357f-11eb-b142-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196a560-357f-11eb-aa24-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a560-357f-11eb-aa24-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196a59d-357f-11eb-9582-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a59d-357f-11eb-9582-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196cc67-357f-11eb-be81-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196cc67-357f-11eb-be81-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196f36f-357f-11eb-a625-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196f36f-357f-11eb-a625-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a196f39a-357f-11eb-adb3-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a196f39a-357f-11eb-adb3-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1971a82-357f-11eb-90bd-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1971a82-357f-11eb-90bd-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19741b1-357f-11eb-9d32-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19741b1-357f-11eb-9d32-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19741c8-357f-11eb-9ba8-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19741c8-357f-11eb-9ba8-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1976893-357f-11eb-afb5-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1976893-357f-11eb-afb5-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19768ae-357f-11eb-9195-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19768ae-357f-11eb-9195-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19768c6-357f-11eb-b584-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19768c6-357f-11eb-b584-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19768cd-357f-11eb-9458-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19768cd-357f-11eb-9458-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1978f86-357f-11eb-899c-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978f86-357f-11eb-899c-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1978f87-357f-11eb-a068-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978f87-357f-11eb-a068-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1978f92-357f-11eb-b6e9-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978f92-357f-11eb-b6e9-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1978fb3-357f-11eb-928a-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fb3-357f-11eb-928a-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1978fd4-357f-11eb-b24c-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fd4-357f-11eb-b24c-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1978fdd-357f-11eb-a83e-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fdd-357f-11eb-a83e-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197b6f0-357f-11eb-8adf-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197b6f0-357f-11eb-8adf-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197ddb7-357f-11eb-a33e-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197ddb7-357f-11eb-a33e-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197ddb9-357f-11eb-a415-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197ddb9-357f-11eb-a415-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197ddd5-357f-11eb-afb0-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197ddd5-357f-11eb-afb0-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197ddfd-357f-11eb-836d-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197ddfd-357f-11eb-836d-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197de0c-357f-11eb-a2b8-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197de0c-357f-11eb-a2b8-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a197de19-357f-11eb-a478-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a197de19-357f-11eb-a478-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19804b4-357f-11eb-90dd-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19804b4-357f-11eb-90dd-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1980548-357f-11eb-9500-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1980548-357f-11eb-9500-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a198054a-357f-11eb-bac3-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a198054a-357f-11eb-bac3-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1980570-357f-11eb-b945-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1980570-357f-11eb-b945-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a198057e-357f-11eb-9864-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a198057e-357f-11eb-9864-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a198059c-357f-11eb-8021-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a198059c-357f-11eb-8021-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19805ac-357f-11eb-a8ce-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19805ac-357f-11eb-a8ce-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982bde-357f-11eb-bc62-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982bde-357f-11eb-bc62-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982be2-357f-11eb-8825-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982be2-357f-11eb-8825-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c1e-357f-11eb-b208-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c1e-357f-11eb-b208-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c25-357f-11eb-85c9-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c25-357f-11eb-85c9-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c2c-357f-11eb-9c80-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c2c-357f-11eb-9c80-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c49-357f-11eb-9853-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c49-357f-11eb-9853-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c65-357f-11eb-8043-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c65-357f-11eb-8043-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c6b-357f-11eb-9310-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c6b-357f-11eb-9310-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c7b-357f-11eb-a670-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c7b-357f-11eb-a670-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c83-357f-11eb-9d09-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c83-357f-11eb-9d09-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982c9c-357f-11eb-8538-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c9c-357f-11eb-8538-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982cc4-357f-11eb-9510-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982cc4-357f-11eb-9510-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a1982cc8-357f-11eb-b4ef-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982cc8-357f-11eb-b4ef-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a19852f2-357f-11eb-bd7b-001a7dda7111.ndpi,data/Anaplastic oligodendroglioma IDH-mutant and 1p_19q codeleted/a19852f2-357f-11eb-bd7b-001a7dda7111.ndpi,"Anaplastic oligodendroglioma, IDH-mutant and 1p/19q codeleted",4,Adult-Type Diffuse Gliomas,True
a194f785-357f-11eb-b9b3-001a7dda7111.ndpi,data/Ganglioglioma/a194f785-357f-11eb-b9b3-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a194f79c-357f-11eb-ac16-001a7dda7111.ndpi,data/Ganglioglioma/a194f79c-357f-11eb-ac16-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1951eda-357f-11eb-bdf7-001a7dda7111.ndpi,data/Ganglioglioma/a1951eda-357f-11eb-bdf7-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1951f09-357f-11eb-887a-001a7dda7111.ndpi,data/Ganglioglioma/a1951f09-357f-11eb-887a-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19545a5-357f-11eb-a654-001a7dda7111.ndpi,data/Ganglioglioma/a19545a5-357f-11eb-a654-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19545be-357f-11eb-a2aa-001a7dda7111.ndpi,data/Ganglioglioma/a19545be-357f-11eb-a2aa-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19545c1-357f-11eb-8bbd-001a7dda7111.ndpi,data/Ganglioglioma/a19545c1-357f-11eb-8bbd-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19545ca-357f-11eb-bd45-001a7dda7111.ndpi,data/Ganglioglioma/a19545ca-357f-11eb-bd45-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19545f1-357f-11eb-a5cd-001a7dda7111.ndpi,data/Ganglioglioma/a19545f1-357f-11eb-a5cd-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1954600-357f-11eb-932a-001a7dda7111.ndpi,data/Ganglioglioma/a1954600-357f-11eb-932a-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1956cb1-357f-11eb-977b-001a7dda7111.ndpi,data/Ganglioglioma/a1956cb1-357f-11eb-977b-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1956cb6-357f-11eb-9b34-001a7dda7111.ndpi,data/Ganglioglioma/a1956cb6-357f-11eb-9b34-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1956cc8-357f-11eb-9c57-001a7dda7111.ndpi,data/Ganglioglioma/a1956cc8-357f-11eb-9c57-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1956ccf-357f-11eb-ac18-001a7dda7111.ndpi,data/Ganglioglioma/a1956ccf-357f-11eb-ac18-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1956cd4-357f-11eb-91dd-001a7dda7111.ndpi,data/Ganglioglioma/a1956cd4-357f-11eb-91dd-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1956d04-357f-11eb-89ff-001a7dda7111.ndpi,data/Ganglioglioma/a1956d04-357f-11eb-89ff-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19593da-357f-11eb-92b5-001a7dda7111.ndpi,data/Ganglioglioma/a19593da-357f-11eb-92b5-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19593e3-357f-11eb-b0fb-001a7dda7111.ndpi,data/Ganglioglioma/a19593e3-357f-11eb-b0fb-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19593f1-357f-11eb-b7af-001a7dda7111.ndpi,data/Ganglioglioma/a19593f1-357f-11eb-b7af-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195941c-357f-11eb-8385-001a7dda7111.ndpi,data/Ganglioglioma/a195941c-357f-11eb-8385-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195943b-357f-11eb-a19b-001a7dda7111.ndpi,data/Ganglioglioma/a195943b-357f-11eb-a19b-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195bac2-357f-11eb-91f8-001a7dda7111.ndpi,data/Ganglioglioma/a195bac2-357f-11eb-91f8-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195baf0-357f-11eb-9f46-001a7dda7111.ndpi,data/Ganglioglioma/a195baf0-357f-11eb-9f46-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195baf6-357f-11eb-8f0f-001a7dda7111.ndpi,data/Ganglioglioma/a195baf6-357f-11eb-8f0f-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195bafa-357f-11eb-9620-001a7dda7111.ndpi,data/Ganglioglioma/a195bafa-357f-11eb-9620-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195bb25-357f-11eb-93e7-001a7dda7111.ndpi,data/Ganglioglioma/a195bb25-357f-11eb-93e7-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195bb40-357f-11eb-bd5b-001a7dda7111.ndpi,data/Ganglioglioma/a195bb40-357f-11eb-bd5b-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195bb49-357f-11eb-9475-001a7dda7111.ndpi,data/Ganglioglioma/a195bb49-357f-11eb-9475-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a195e203-357f-11eb-83c5-001a7dda7111.ndpi,data/Ganglioglioma/a195e203-357f-11eb-83c5-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1960963-357f-11eb-a434-001a7dda7111.ndpi,data/Ganglioglioma/a1960963-357f-11eb-a434-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196097c-357f-11eb-9d41-001a7dda7111.ndpi,data/Ganglioglioma/a196097c-357f-11eb-9d41-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1960993-357f-11eb-a804-001a7dda7111.ndpi,data/Ganglioglioma/a1960993-357f-11eb-a804-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1962fec-357f-11eb-a490-001a7dda7111.ndpi,data/Ganglioglioma/a1962fec-357f-11eb-a490-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1963009-357f-11eb-8413-001a7dda7111.ndpi,data/Ganglioglioma/a1963009-357f-11eb-8413-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1963018-357f-11eb-acad-001a7dda7111.ndpi,data/Ganglioglioma/a1963018-357f-11eb-acad-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1963045-357f-11eb-8020-001a7dda7111.ndpi,data/Ganglioglioma/a1963045-357f-11eb-8020-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196305b-357f-11eb-81a7-001a7dda7111.ndpi,data/Ganglioglioma/a196305b-357f-11eb-81a7-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196307e-357f-11eb-8efa-001a7dda7111.ndpi,data/Ganglioglioma/a196307e-357f-11eb-8efa-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1963082-357f-11eb-bb76-001a7dda7111.ndpi,data/Ganglioglioma/a1963082-357f-11eb-bb76-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1963085-357f-11eb-bb06-001a7dda7111.ndpi,data/Ganglioglioma/a1963085-357f-11eb-bb06-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19657b3-357f-11eb-8045-001a7dda7111.ndpi,data/Ganglioglioma/a19657b3-357f-11eb-8045-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19657ca-357f-11eb-8f64-001a7dda7111.ndpi,data/Ganglioglioma/a19657ca-357f-11eb-8f64-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19657cc-357f-11eb-be83-001a7dda7111.ndpi,data/Ganglioglioma/a19657cc-357f-11eb-be83-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19657d7-357f-11eb-a83b-001a7dda7111.ndpi,data/Ganglioglioma/a19657d7-357f-11eb-a83b-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1967e61-357f-11eb-91ad-001a7dda7111.ndpi,data/Ganglioglioma/a1967e61-357f-11eb-91ad-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1967e75-357f-11eb-baf6-001a7dda7111.ndpi,data/Ganglioglioma/a1967e75-357f-11eb-baf6-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1967e7f-357f-11eb-b10f-001a7dda7111.ndpi,data/Ganglioglioma/a1967e7f-357f-11eb-b10f-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1967e92-357f-11eb-afac-001a7dda7111.ndpi,data/Ganglioglioma/a1967e92-357f-11eb-afac-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1967ea0-357f-11eb-b5ba-001a7dda7111.ndpi,data/Ganglioglioma/a1967ea0-357f-11eb-b5ba-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196a52f-357f-11eb-a190-001a7dda7111.ndpi,data/Ganglioglioma/a196a52f-357f-11eb-a190-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196a53f-357f-11eb-96a4-001a7dda7111.ndpi,data/Ganglioglioma/a196a53f-357f-11eb-96a4-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196a584-357f-11eb-ad51-001a7dda7111.ndpi,data/Ganglioglioma/a196a584-357f-11eb-ad51-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196a59c-357f-11eb-af97-001a7dda7111.ndpi,data/Ganglioglioma/a196a59c-357f-11eb-af97-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196cc4d-357f-11eb-aef5-001a7dda7111.ndpi,data/Ganglioglioma/a196cc4d-357f-11eb-aef5-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196f36c-357f-11eb-90a0-001a7dda7111.ndpi,data/Ganglioglioma/a196f36c-357f-11eb-90a0-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196f386-357f-11eb-8150-001a7dda7111.ndpi,data/Ganglioglioma/a196f386-357f-11eb-8150-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196f3b9-357f-11eb-8881-001a7dda7111.ndpi,data/Ganglioglioma/a196f3b9-357f-11eb-8881-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196f3c3-357f-11eb-8c45-001a7dda7111.ndpi,data/Ganglioglioma/a196f3c3-357f-11eb-8c45-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a196f3c7-357f-11eb-8218-001a7dda7111.ndpi,data/Ganglioglioma/a196f3c7-357f-11eb-8218-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1971a7a-357f-11eb-a336-001a7dda7111.ndpi,data/Ganglioglioma/a1971a7a-357f-11eb-a336-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1971aa8-357f-11eb-94a2-001a7dda7111.ndpi,data/Ganglioglioma/a1971aa8-357f-11eb-94a2-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19741f0-357f-11eb-ba72-001a7dda7111.ndpi,data/Ganglioglioma/a19741f0-357f-11eb-ba72-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1974208-357f-11eb-b8d0-001a7dda7111.ndpi,data/Ganglioglioma/a1974208-357f-11eb-b8d0-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19768ba-357f-11eb-a9b2-001a7dda7111.ndpi,data/Ganglioglioma/a19768ba-357f-11eb-a9b2-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1978f85-357f-11eb-accf-001a7dda7111.ndpi,data/Ganglioglioma/a1978f85-357f-11eb-accf-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1978fc7-357f-11eb-82b4-001a7dda7111.ndpi,data/Ganglioglioma/a1978fc7-357f-11eb-82b4-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a197b6ff-357f-11eb-ac50-001a7dda7111.ndpi,data/Ganglioglioma/a197b6ff-357f-11eb-ac50-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a197ddd0-357f-11eb-a558-001a7dda7111.ndpi,data/Ganglioglioma/a197ddd0-357f-11eb-a558-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a197dde4-357f-11eb-8116-001a7dda7111.ndpi,data/Ganglioglioma/a197dde4-357f-11eb-8116-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a197dde6-357f-11eb-bf5f-001a7dda7111.ndpi,data/Ganglioglioma/a197dde6-357f-11eb-bf5f-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a197ddf0-357f-11eb-933f-001a7dda7111.ndpi,data/Ganglioglioma/a197ddf0-357f-11eb-933f-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a197de33-357f-11eb-bdaa-001a7dda7111.ndpi,data/Ganglioglioma/a197de33-357f-11eb-bdaa-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19804b9-357f-11eb-8fa4-001a7dda7111.ndpi,data/Ganglioglioma/a19804b9-357f-11eb-8fa4-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19804f1-357f-11eb-815c-001a7dda7111.ndpi,data/Ganglioglioma/a19804f1-357f-11eb-815c-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a198053d-357f-11eb-80f0-001a7dda7111.ndpi,data/Ganglioglioma/a198053d-357f-11eb-80f0-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1980549-357f-11eb-9e3e-001a7dda7111.ndpi,data/Ganglioglioma/a1980549-357f-11eb-9e3e-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a198055d-357f-11eb-b5c8-001a7dda7111.ndpi,data/Ganglioglioma/a198055d-357f-11eb-b5c8-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982bcd-357f-11eb-84d4-001a7dda7111.ndpi,data/Ganglioglioma/a1982bcd-357f-11eb-84d4-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982c0b-357f-11eb-93b0-001a7dda7111.ndpi,data/Ganglioglioma/a1982c0b-357f-11eb-93b0-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982c17-357f-11eb-b7f9-001a7dda7111.ndpi,data/Ganglioglioma/a1982c17-357f-11eb-b7f9-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982c1a-357f-11eb-8bb6-001a7dda7111.ndpi,data/Ganglioglioma/a1982c1a-357f-11eb-8bb6-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982ca4-357f-11eb-8cd9-001a7dda7111.ndpi,data/Ganglioglioma/a1982ca4-357f-11eb-8cd9-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982caa-357f-11eb-8f04-001a7dda7111.ndpi,data/Ganglioglioma/a1982caa-357f-11eb-8f04-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1982ccb-357f-11eb-9df6-001a7dda7111.ndpi,data/Ganglioglioma/a1982ccb-357f-11eb-9df6-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19852e2-357f-11eb-b4b3-001a7dda7111.ndpi,data/Ganglioglioma/a19852e2-357f-11eb-b4b3-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19852e5-357f-11eb-93db-001a7dda7111.ndpi,data/Ganglioglioma/a19852e5-357f-11eb-93db-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19852f4-357f-11eb-b663-001a7dda7111.ndpi,data/Ganglioglioma/a19852f4-357f-11eb-b663-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a19852fa-357f-11eb-ae02-001a7dda7111.ndpi,data/Ganglioglioma/a19852fa-357f-11eb-ae02-001a7dda7111.ndpi,Ganglioglioma,5,Glioneuronal And Neuronal Tumours,True
a1951e96-357f-11eb-82ee-001a7dda7111.ndpi,data/Haemangioblastoma/a1951e96-357f-11eb-82ee-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1951ed9-357f-11eb-8163-001a7dda7111.ndpi,data/Haemangioblastoma/a1951ed9-357f-11eb-8163-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1951f0b-357f-11eb-ad68-001a7dda7111.ndpi,data/Haemangioblastoma/a1951f0b-357f-11eb-ad68-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1951f1c-357f-11eb-8d8c-001a7dda7111.ndpi,data/Haemangioblastoma/a1951f1c-357f-11eb-8d8c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19545ba-357f-11eb-bb41-001a7dda7111.ndpi,data/Haemangioblastoma/a19545ba-357f-11eb-bb41-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1954601-357f-11eb-925c-001a7dda7111.ndpi,data/Haemangioblastoma/a1954601-357f-11eb-925c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1956cee-357f-11eb-9b80-001a7dda7111.ndpi,data/Haemangioblastoma/a1956cee-357f-11eb-9b80-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19593ba-357f-11eb-a299-001a7dda7111.ndpi,data/Haemangioblastoma/a19593ba-357f-11eb-a299-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19593d1-357f-11eb-a022-001a7dda7111.ndpi,data/Haemangioblastoma/a19593d1-357f-11eb-a022-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19593f4-357f-11eb-bc79-001a7dda7111.ndpi,data/Haemangioblastoma/a19593f4-357f-11eb-bc79-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1959432-357f-11eb-b5ee-001a7dda7111.ndpi,data/Haemangioblastoma/a1959432-357f-11eb-b5ee-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1959437-357f-11eb-9777-001a7dda7111.ndpi,data/Haemangioblastoma/a1959437-357f-11eb-9777-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1959442-357f-11eb-943b-001a7dda7111.ndpi,data/Haemangioblastoma/a1959442-357f-11eb-943b-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1959443-357f-11eb-a6e1-001a7dda7111.ndpi,data/Haemangioblastoma/a1959443-357f-11eb-a6e1-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195bace-357f-11eb-9583-001a7dda7111.ndpi,data/Haemangioblastoma/a195bace-357f-11eb-9583-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195bae5-357f-11eb-b9a5-001a7dda7111.ndpi,data/Haemangioblastoma/a195bae5-357f-11eb-b9a5-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195bb1a-357f-11eb-9826-001a7dda7111.ndpi,data/Haemangioblastoma/a195bb1a-357f-11eb-9826-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195bb2a-357f-11eb-b6ba-001a7dda7111.ndpi,data/Haemangioblastoma/a195bb2a-357f-11eb-b6ba-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195bb34-357f-11eb-9701-001a7dda7111.ndpi,data/Haemangioblastoma/a195bb34-357f-11eb-9701-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195e1e4-357f-11eb-a2de-001a7dda7111.ndpi,data/Haemangioblastoma/a195e1e4-357f-11eb-a2de-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a195e24f-357f-11eb-af62-001a7dda7111.ndpi,data/Haemangioblastoma/a195e24f-357f-11eb-af62-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1960920-357f-11eb-ac23-001a7dda7111.ndpi,data/Haemangioblastoma/a1960920-357f-11eb-ac23-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1960941-357f-11eb-bf8c-001a7dda7111.ndpi,data/Haemangioblastoma/a1960941-357f-11eb-bf8c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1960977-357f-11eb-b50c-001a7dda7111.ndpi,data/Haemangioblastoma/a1960977-357f-11eb-b50c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1960991-357f-11eb-afb6-001a7dda7111.ndpi,data/Haemangioblastoma/a1960991-357f-11eb-afb6-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1960995-357f-11eb-bc2c-001a7dda7111.ndpi,data/Haemangioblastoma/a1960995-357f-11eb-bc2c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19609c1-357f-11eb-b26b-001a7dda7111.ndpi,data/Haemangioblastoma/a19609c1-357f-11eb-b26b-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1962ff7-357f-11eb-a42b-001a7dda7111.ndpi,data/Haemangioblastoma/a1962ff7-357f-11eb-a42b-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1963004-357f-11eb-9205-001a7dda7111.ndpi,data/Haemangioblastoma/a1963004-357f-11eb-9205-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196576c-357f-11eb-b490-001a7dda7111.ndpi,data/Haemangioblastoma/a196576c-357f-11eb-b490-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1965785-357f-11eb-b60c-001a7dda7111.ndpi,data/Haemangioblastoma/a1965785-357f-11eb-b60c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19657bd-357f-11eb-afc0-001a7dda7111.ndpi,data/Haemangioblastoma/a19657bd-357f-11eb-afc0-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19657bf-357f-11eb-9794-001a7dda7111.ndpi,data/Haemangioblastoma/a19657bf-357f-11eb-9794-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19657c6-357f-11eb-9193-001a7dda7111.ndpi,data/Haemangioblastoma/a19657c6-357f-11eb-9193-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19657d6-357f-11eb-a346-001a7dda7111.ndpi,data/Haemangioblastoma/a19657d6-357f-11eb-a346-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1967e71-357f-11eb-8ffe-001a7dda7111.ndpi,data/Haemangioblastoma/a1967e71-357f-11eb-8ffe-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1967e9b-357f-11eb-99cf-001a7dda7111.ndpi,data/Haemangioblastoma/a1967e9b-357f-11eb-99cf-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196a52d-357f-11eb-ab02-001a7dda7111.ndpi,data/Haemangioblastoma/a196a52d-357f-11eb-ab02-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196a534-357f-11eb-94bd-001a7dda7111.ndpi,data/Haemangioblastoma/a196a534-357f-11eb-94bd-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196a581-357f-11eb-858d-001a7dda7111.ndpi,data/Haemangioblastoma/a196a581-357f-11eb-858d-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196a596-357f-11eb-9ef7-001a7dda7111.ndpi,data/Haemangioblastoma/a196a596-357f-11eb-9ef7-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196a5b4-357f-11eb-a9b7-001a7dda7111.ndpi,data/Haemangioblastoma/a196a5b4-357f-11eb-a9b7-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196cc71-357f-11eb-b689-001a7dda7111.ndpi,data/Haemangioblastoma/a196cc71-357f-11eb-b689-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196cc72-357f-11eb-aec1-001a7dda7111.ndpi,data/Haemangioblastoma/a196cc72-357f-11eb-aec1-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196cc94-357f-11eb-88bb-001a7dda7111.ndpi,data/Haemangioblastoma/a196cc94-357f-11eb-88bb-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196cca2-357f-11eb-bd04-001a7dda7111.ndpi,data/Haemangioblastoma/a196cca2-357f-11eb-bd04-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196f381-357f-11eb-b687-001a7dda7111.ndpi,data/Haemangioblastoma/a196f381-357f-11eb-b687-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196f3ae-357f-11eb-ac68-001a7dda7111.ndpi,data/Haemangioblastoma/a196f3ae-357f-11eb-ac68-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a196f3c8-357f-11eb-9bc0-001a7dda7111.ndpi,data/Haemangioblastoma/a196f3c8-357f-11eb-9bc0-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1971a7f-357f-11eb-8ff5-001a7dda7111.ndpi,data/Haemangioblastoma/a1971a7f-357f-11eb-8ff5-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1971a86-357f-11eb-8e69-001a7dda7111.ndpi,data/Haemangioblastoma/a1971a86-357f-11eb-8e69-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1971a8d-357f-11eb-bfc4-001a7dda7111.ndpi,data/Haemangioblastoma/a1971a8d-357f-11eb-bfc4-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1971ac9-357f-11eb-bd7d-001a7dda7111.ndpi,data/Haemangioblastoma/a1971ac9-357f-11eb-bd7d-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19741a6-357f-11eb-9ab0-001a7dda7111.ndpi,data/Haemangioblastoma/a19741a6-357f-11eb-9ab0-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19741cc-357f-11eb-90c3-001a7dda7111.ndpi,data/Haemangioblastoma/a19741cc-357f-11eb-90c3-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19741db-357f-11eb-bc4c-001a7dda7111.ndpi,data/Haemangioblastoma/a19741db-357f-11eb-bc4c-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197420d-357f-11eb-8c1a-001a7dda7111.ndpi,data/Haemangioblastoma/a197420d-357f-11eb-8c1a-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1976888-357f-11eb-97e8-001a7dda7111.ndpi,data/Haemangioblastoma/a1976888-357f-11eb-97e8-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1976895-357f-11eb-98f8-001a7dda7111.ndpi,data/Haemangioblastoma/a1976895-357f-11eb-98f8-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19768ad-357f-11eb-9cae-001a7dda7111.ndpi,data/Haemangioblastoma/a19768ad-357f-11eb-9cae-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19768b2-357f-11eb-a95a-001a7dda7111.ndpi,data/Haemangioblastoma/a19768b2-357f-11eb-a95a-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1978f8d-357f-11eb-a72a-001a7dda7111.ndpi,data/Haemangioblastoma/a1978f8d-357f-11eb-a72a-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1978f9f-357f-11eb-9cc6-001a7dda7111.ndpi,data/Haemangioblastoma/a1978f9f-357f-11eb-9cc6-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6a5-357f-11eb-9bbf-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6a5-357f-11eb-9bbf-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6b8-357f-11eb-98b6-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6b8-357f-11eb-98b6-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6c5-357f-11eb-90ba-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6c5-357f-11eb-90ba-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6ce-357f-11eb-bfce-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6ce-357f-11eb-bfce-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6d1-357f-11eb-9919-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6d1-357f-11eb-9919-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6d3-357f-11eb-87a0-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6d3-357f-11eb-87a0-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6e7-357f-11eb-aee0-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6e7-357f-11eb-aee0-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6f7-357f-11eb-b35b-001a7dda7111.ndpi,data/Haemangioblastoma/a197b6f7-357f-11eb-b35b-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197ddcd-357f-11eb-afe1-001a7dda7111.ndpi,data/Haemangioblastoma/a197ddcd-357f-11eb-afe1-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197de1c-357f-11eb-a7ce-001a7dda7111.ndpi,data/Haemangioblastoma/a197de1c-357f-11eb-a7ce-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a197de22-357f-11eb-b78d-001a7dda7111.ndpi,data/Haemangioblastoma/a197de22-357f-11eb-b78d-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19804ba-357f-11eb-81a6-001a7dda7111.ndpi,data/Haemangioblastoma/a19804ba-357f-11eb-81a6-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19804bd-357f-11eb-b0b4-001a7dda7111.ndpi,data/Haemangioblastoma/a19804bd-357f-11eb-b0b4-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a19804e2-357f-11eb-9f51-001a7dda7111.ndpi,data/Haemangioblastoma/a19804e2-357f-11eb-9f51-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1980532-357f-11eb-b96a-001a7dda7111.ndpi,data/Haemangioblastoma/a1980532-357f-11eb-b96a-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1980552-357f-11eb-bca2-001a7dda7111.ndpi,data/Haemangioblastoma/a1980552-357f-11eb-bca2-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a198056b-357f-11eb-ae40-001a7dda7111.ndpi,data/Haemangioblastoma/a198056b-357f-11eb-ae40-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1980596-357f-11eb-9fc9-001a7dda7111.ndpi,data/Haemangioblastoma/a1980596-357f-11eb-9fc9-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982bd5-357f-11eb-b385-001a7dda7111.ndpi,data/Haemangioblastoma/a1982bd5-357f-11eb-b385-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982bdb-357f-11eb-a7dc-001a7dda7111.ndpi,data/Haemangioblastoma/a1982bdb-357f-11eb-a7dc-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c09-357f-11eb-acc8-001a7dda7111.ndpi,data/Haemangioblastoma/a1982c09-357f-11eb-acc8-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c4e-357f-11eb-8e79-001a7dda7111.ndpi,data/Haemangioblastoma/a1982c4e-357f-11eb-8e79-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c5e-357f-11eb-b2d5-001a7dda7111.ndpi,data/Haemangioblastoma/a1982c5e-357f-11eb-b2d5-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c69-357f-11eb-9cf9-001a7dda7111.ndpi,data/Haemangioblastoma/a1982c69-357f-11eb-9cf9-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1982cb5-357f-11eb-97eb-001a7dda7111.ndpi,data/Haemangioblastoma/a1982cb5-357f-11eb-97eb-001a7dda7111.ndpi,Haemangioblastoma,6,"Mesenchymal, Non-Meningothelial Tumours",True
a1951e8f-357f-11eb-9252-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1951e8f-357f-11eb-9252-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1951ead-357f-11eb-bed8-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1951ead-357f-11eb-bed8-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1951ec1-357f-11eb-b7d0-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1951ec1-357f-11eb-b7d0-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1951ec7-357f-11eb-9174-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1951ec7-357f-11eb-9174-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1951efe-357f-11eb-a227-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1951efe-357f-11eb-a227-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1951f11-357f-11eb-b29c-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1951f11-357f-11eb-b29c-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1954599-357f-11eb-897e-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1954599-357f-11eb-897e-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1956cca-357f-11eb-998e-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1956cca-357f-11eb-998e-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1956ce5-357f-11eb-8106-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1956ce5-357f-11eb-8106-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1956cf7-357f-11eb-9c65-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1956cf7-357f-11eb-9c65-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19593cc-357f-11eb-ba0d-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19593cc-357f-11eb-ba0d-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19593cf-357f-11eb-998c-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19593cf-357f-11eb-998c-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19593d6-357f-11eb-adac-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19593d6-357f-11eb-adac-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19593ff-357f-11eb-97db-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19593ff-357f-11eb-97db-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1959403-357f-11eb-99d8-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1959403-357f-11eb-99d8-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1959412-357f-11eb-8ebd-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1959412-357f-11eb-8ebd-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1959433-357f-11eb-98e1-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1959433-357f-11eb-98e1-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195baea-357f-11eb-bf4b-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195baea-357f-11eb-bf4b-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195bb04-357f-11eb-b233-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195bb04-357f-11eb-b233-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195bb22-357f-11eb-a775-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195bb22-357f-11eb-a775-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195bb2d-357f-11eb-91ac-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195bb2d-357f-11eb-91ac-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195bb2f-357f-11eb-8de8-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195bb2f-357f-11eb-8de8-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195e1e8-357f-11eb-b2a6-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195e1e8-357f-11eb-b2a6-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195e201-357f-11eb-a426-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195e201-357f-11eb-a426-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195e25c-357f-11eb-b9d0-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195e25c-357f-11eb-b9d0-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a195e267-357f-11eb-b9db-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a195e267-357f-11eb-b9db-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1960923-357f-11eb-9509-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1960923-357f-11eb-9509-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1960950-357f-11eb-a2fc-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1960950-357f-11eb-a2fc-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1960989-357f-11eb-bab3-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1960989-357f-11eb-bab3-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19609a6-357f-11eb-9a6b-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19609a6-357f-11eb-9a6b-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1963010-357f-11eb-8bd9-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1963010-357f-11eb-8bd9-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196301c-357f-11eb-a4df-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196301c-357f-11eb-a4df-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1963035-357f-11eb-b86a-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1963035-357f-11eb-b86a-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196305d-357f-11eb-8d35-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196305d-357f-11eb-8d35-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1963076-357f-11eb-8094-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1963076-357f-11eb-8094-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1963079-357f-11eb-8e33-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1963079-357f-11eb-8e33-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19656ff-357f-11eb-a323-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19656ff-357f-11eb-a323-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196570f-357f-11eb-901b-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196570f-357f-11eb-901b-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1965726-357f-11eb-b7d7-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1965726-357f-11eb-b7d7-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196573f-357f-11eb-b4e5-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196573f-357f-11eb-b4e5-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196577d-357f-11eb-94eb-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196577d-357f-11eb-94eb-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1965795-357f-11eb-88dd-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1965795-357f-11eb-88dd-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19657dd-357f-11eb-8aa1-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19657dd-357f-11eb-8aa1-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1967e5d-357f-11eb-9c4e-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1967e5d-357f-11eb-9c4e-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1967e7d-357f-11eb-85a6-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1967e7d-357f-11eb-85a6-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1967e8b-357f-11eb-8069-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1967e8b-357f-11eb-8069-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196a52b-357f-11eb-91fd-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196a52b-357f-11eb-91fd-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196a54d-357f-11eb-98e2-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196a54d-357f-11eb-98e2-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196a5ac-357f-11eb-b30b-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196a5ac-357f-11eb-b30b-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196cc51-357f-11eb-86af-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196cc51-357f-11eb-86af-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196cc77-357f-11eb-9e21-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196cc77-357f-11eb-9e21-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196cca0-357f-11eb-ae82-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196cca0-357f-11eb-ae82-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196f385-357f-11eb-8694-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196f385-357f-11eb-8694-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196f389-357f-11eb-965d-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196f389-357f-11eb-965d-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196f3a7-357f-11eb-b150-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196f3a7-357f-11eb-b150-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196f3bb-357f-11eb-a9d8-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196f3bb-357f-11eb-a9d8-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a196f3d8-357f-11eb-a45d-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a196f3d8-357f-11eb-a45d-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1971a7e-357f-11eb-bad9-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1971a7e-357f-11eb-bad9-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1971a9a-357f-11eb-8efd-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1971a9a-357f-11eb-8efd-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1971ac2-357f-11eb-a999-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1971ac2-357f-11eb-a999-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1971ad7-357f-11eb-9d9f-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1971ad7-357f-11eb-9d9f-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1971adb-357f-11eb-9f7f-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1971adb-357f-11eb-9f7f-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19741a9-357f-11eb-80d5-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19741a9-357f-11eb-80d5-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19741c0-357f-11eb-8384-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19741c0-357f-11eb-8384-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19741e9-357f-11eb-9e60-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19741e9-357f-11eb-9e60-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1974209-357f-11eb-9940-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1974209-357f-11eb-9940-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1976886-357f-11eb-b250-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1976886-357f-11eb-b250-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1978fba-357f-11eb-a4d3-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1978fba-357f-11eb-a4d3-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1978ffa-357f-11eb-931e-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1978ffa-357f-11eb-931e-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197b6f9-357f-11eb-94d8-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197b6f9-357f-11eb-94d8-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197b701-357f-11eb-a3b4-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197b701-357f-11eb-a3b4-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197ddb6-357f-11eb-863c-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197ddb6-357f-11eb-863c-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197ddbf-357f-11eb-b7f7-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197ddbf-357f-11eb-b7f7-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197ddc7-357f-11eb-9b69-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197ddc7-357f-11eb-9b69-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197de06-357f-11eb-8474-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197de06-357f-11eb-8474-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a197de08-357f-11eb-8cbe-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a197de08-357f-11eb-8cbe-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19804c7-357f-11eb-8847-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a19804c7-357f-11eb-8847-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1980538-357f-11eb-b8b8-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1980538-357f-11eb-b8b8-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1980575-357f-11eb-a6cb-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1980575-357f-11eb-a6cb-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1980589-357f-11eb-a8da-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1980589-357f-11eb-a8da-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a198058e-357f-11eb-ac01-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a198058e-357f-11eb-ac01-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1982bd8-357f-11eb-8f1b-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1982bd8-357f-11eb-8f1b-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1982bfc-357f-11eb-8a78-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1982bfc-357f-11eb-8a78-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1982c1c-357f-11eb-8199-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1982c1c-357f-11eb-8199-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a1982c9b-357f-11eb-937a-001a7dda7111.ndpi,data/Adamantinomatous craniopharyngioma/a1982c9b-357f-11eb-937a-001a7dda7111.ndpi,Adamantinomatous craniopharyngioma,7,Tumours Of The Sellar Region,True
a19545ad-357f-11eb-b9fd-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19545ad-357f-11eb-b9fd-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19545c7-357f-11eb-b08b-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19545c7-357f-11eb-b08b-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19545da-357f-11eb-ab8f-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19545da-357f-11eb-ab8f-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1956ccd-357f-11eb-998b-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1956ccd-357f-11eb-998b-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1956d11-357f-11eb-bf6c-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1956d11-357f-11eb-bf6c-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19593fa-357f-11eb-bd30-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19593fa-357f-11eb-bd30-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195940e-357f-11eb-86d1-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195940e-357f-11eb-86d1-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1959431-357f-11eb-a44e-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1959431-357f-11eb-a44e-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195bac7-357f-11eb-bfc8-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bac7-357f-11eb-bfc8-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195bacf-357f-11eb-ae3d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bacf-357f-11eb-ae3d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195bb19-357f-11eb-a220-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bb19-357f-11eb-a220-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195bb31-357f-11eb-b01c-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bb31-357f-11eb-b01c-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195bb4a-357f-11eb-adce-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195bb4a-357f-11eb-adce-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195e1e1-357f-11eb-92d2-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e1e1-357f-11eb-92d2-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195e1e6-357f-11eb-9824-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e1e6-357f-11eb-9824-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195e1f0-357f-11eb-bff5-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e1f0-357f-11eb-bff5-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195e1fd-357f-11eb-9723-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e1fd-357f-11eb-9723-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195e241-357f-11eb-97cd-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e241-357f-11eb-97cd-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a195e254-357f-11eb-be23-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a195e254-357f-11eb-be23-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1960900-357f-11eb-82fc-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1960900-357f-11eb-82fc-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1960910-357f-11eb-93ca-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1960910-357f-11eb-93ca-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196091c-357f-11eb-9e7d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196091c-357f-11eb-9e7d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1960969-357f-11eb-a2ba-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1960969-357f-11eb-a2ba-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196096e-357f-11eb-8137-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196096e-357f-11eb-8137-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196099c-357f-11eb-abe4-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196099c-357f-11eb-abe4-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19609a9-357f-11eb-9002-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19609a9-357f-11eb-9002-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19609b5-357f-11eb-8ac5-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19609b5-357f-11eb-8ac5-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1963044-357f-11eb-b15e-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963044-357f-11eb-b15e-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196304c-357f-11eb-bdbe-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196304c-357f-11eb-bdbe-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1963054-357f-11eb-a849-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963054-357f-11eb-a849-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196305c-357f-11eb-b077-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196305c-357f-11eb-b077-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1963068-357f-11eb-bb42-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963068-357f-11eb-bb42-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196307b-357f-11eb-9a77-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196307b-357f-11eb-9a77-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1963081-357f-11eb-aaf3-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1963081-357f-11eb-aaf3-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196308a-357f-11eb-87bc-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196308a-357f-11eb-87bc-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19656fc-357f-11eb-ac82-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19656fc-357f-11eb-ac82-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196572c-357f-11eb-b90a-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196572c-357f-11eb-b90a-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1965740-357f-11eb-a3e4-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1965740-357f-11eb-a3e4-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1965751-357f-11eb-909f-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1965751-357f-11eb-909f-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1965759-357f-11eb-9c4f-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1965759-357f-11eb-9c4f-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1965773-357f-11eb-b418-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1965773-357f-11eb-b418-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19657b6-357f-11eb-8bf0-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19657b6-357f-11eb-8bf0-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19657d4-357f-11eb-a96b-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19657d4-357f-11eb-a96b-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1967e45-357f-11eb-9294-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e45-357f-11eb-9294-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1967e50-357f-11eb-9d99-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e50-357f-11eb-9d99-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1967e67-357f-11eb-a8be-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e67-357f-11eb-a8be-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1967e6e-357f-11eb-bf4e-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1967e6e-357f-11eb-bf4e-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a540-357f-11eb-aae6-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a540-357f-11eb-aae6-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a55e-357f-11eb-8adc-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a55e-357f-11eb-8adc-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a56c-357f-11eb-92db-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a56c-357f-11eb-92db-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a576-357f-11eb-bb4a-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a576-357f-11eb-bb4a-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a582-357f-11eb-9c17-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a582-357f-11eb-9c17-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a5a1-357f-11eb-8c10-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a5a1-357f-11eb-8c10-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196a5b5-357f-11eb-967b-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196a5b5-357f-11eb-967b-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196cc7d-357f-11eb-8a60-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196cc7d-357f-11eb-8a60-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196cc99-357f-11eb-9b37-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196cc99-357f-11eb-9b37-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196f394-357f-11eb-b61d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196f394-357f-11eb-b61d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a196f3d6-357f-11eb-93f6-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a196f3d6-357f-11eb-93f6-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1971a89-357f-11eb-a22b-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1971a89-357f-11eb-a22b-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1971aa1-357f-11eb-bf49-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1971aa1-357f-11eb-bf49-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19741b6-357f-11eb-9e32-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19741b6-357f-11eb-9e32-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19741eb-357f-11eb-b03f-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19741eb-357f-11eb-b03f-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19741ef-357f-11eb-8c85-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19741ef-357f-11eb-8c85-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1976898-357f-11eb-9f53-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1976898-357f-11eb-9f53-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19768b8-357f-11eb-8018-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19768b8-357f-11eb-8018-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19768d7-357f-11eb-a991-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19768d7-357f-11eb-a991-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1978fa4-357f-11eb-8a1d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fa4-357f-11eb-8a1d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1978fa8-357f-11eb-8966-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fa8-357f-11eb-8966-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1978fd3-357f-11eb-9f2d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fd3-357f-11eb-9f2d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1978fd9-357f-11eb-a380-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fd9-357f-11eb-a380-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1978fe4-357f-11eb-8382-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1978fe4-357f-11eb-8382-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a197b6d5-357f-11eb-b3e0-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a197b6d5-357f-11eb-b3e0-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a197b6dd-357f-11eb-b491-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a197b6dd-357f-11eb-b491-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a197ddac-357f-11eb-9237-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a197ddac-357f-11eb-9237-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a197ddb5-357f-11eb-82b4-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a197ddb5-357f-11eb-82b4-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a197dddf-357f-11eb-857e-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a197dddf-357f-11eb-857e-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a19804ca-357f-11eb-9a8b-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a19804ca-357f-11eb-9a8b-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1980515-357f-11eb-937d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1980515-357f-11eb-937d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1980588-357f-11eb-a26d-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1980588-357f-11eb-a26d-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1980590-357f-11eb-b744-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1980590-357f-11eb-b744-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1982be3-357f-11eb-ac7f-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982be3-357f-11eb-ac7f-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1982beb-357f-11eb-8b71-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982beb-357f-11eb-8b71-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1982c1f-357f-11eb-a75f-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c1f-357f-11eb-a75f-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1982c85-357f-11eb-8ce6-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c85-357f-11eb-8ce6-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a1982c9e-357f-11eb-9306-001a7dda7111.ndpi,data/Oligodendroglioma IDH-mutant and 1p_19q codeleted/a1982c9e-357f-11eb-9306-001a7dda7111.ndpi,"Oligodendroglioma, IDH-mutant and 1p/19q codeleted",8,Adult-Type Diffuse Gliomas,True
a194f78b-357f-11eb-ae15-001a7dda7111.ndpi,data/Atypical meningioma/a194f78b-357f-11eb-ae15-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1951eb8-357f-11eb-abdd-001a7dda7111.ndpi,data/Atypical meningioma/a1951eb8-357f-11eb-abdd-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1951ee3-357f-11eb-aa0a-001a7dda7111.ndpi,data/Atypical meningioma/a1951ee3-357f-11eb-aa0a-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1951eec-357f-11eb-94d1-001a7dda7111.ndpi,data/Atypical meningioma/a1951eec-357f-11eb-94d1-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19545cb-357f-11eb-9c20-001a7dda7111.ndpi,data/Atypical meningioma/a19545cb-357f-11eb-9c20-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1956cce-357f-11eb-a8d3-001a7dda7111.ndpi,data/Atypical meningioma/a1956cce-357f-11eb-a8d3-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1956cd6-357f-11eb-a488-001a7dda7111.ndpi,data/Atypical meningioma/a1956cd6-357f-11eb-a488-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1956cea-357f-11eb-992b-001a7dda7111.ndpi,data/Atypical meningioma/a1956cea-357f-11eb-992b-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19593f3-357f-11eb-b439-001a7dda7111.ndpi,data/Atypical meningioma/a19593f3-357f-11eb-b439-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1959410-357f-11eb-88ea-001a7dda7111.ndpi,data/Atypical meningioma/a1959410-357f-11eb-88ea-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195bb0f-357f-11eb-adbb-001a7dda7111.ndpi,data/Atypical meningioma/a195bb0f-357f-11eb-adbb-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195bb24-357f-11eb-8448-001a7dda7111.ndpi,data/Atypical meningioma/a195bb24-357f-11eb-8448-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195bb3f-357f-11eb-9442-001a7dda7111.ndpi,data/Atypical meningioma/a195bb3f-357f-11eb-9442-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195e1fa-357f-11eb-a1a5-001a7dda7111.ndpi,data/Atypical meningioma/a195e1fa-357f-11eb-a1a5-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195e23b-357f-11eb-914c-001a7dda7111.ndpi,data/Atypical meningioma/a195e23b-357f-11eb-914c-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195e24b-357f-11eb-9c49-001a7dda7111.ndpi,data/Atypical meningioma/a195e24b-357f-11eb-9c49-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a195e252-357f-11eb-acf3-001a7dda7111.ndpi,data/Atypical meningioma/a195e252-357f-11eb-acf3-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19608eb-357f-11eb-a4f7-001a7dda7111.ndpi,data/Atypical meningioma/a19608eb-357f-11eb-a4f7-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1960921-357f-11eb-8a13-001a7dda7111.ndpi,data/Atypical meningioma/a1960921-357f-11eb-8a13-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1960925-357f-11eb-a04e-001a7dda7111.ndpi,data/Atypical meningioma/a1960925-357f-11eb-a04e-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1960939-357f-11eb-8473-001a7dda7111.ndpi,data/Atypical meningioma/a1960939-357f-11eb-8473-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1960945-357f-11eb-9c30-001a7dda7111.ndpi,data/Atypical meningioma/a1960945-357f-11eb-9c30-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196099a-357f-11eb-acdc-001a7dda7111.ndpi,data/Atypical meningioma/a196099a-357f-11eb-acdc-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19609a0-357f-11eb-abf2-001a7dda7111.ndpi,data/Atypical meningioma/a19609a0-357f-11eb-abf2-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196301e-357f-11eb-8514-001a7dda7111.ndpi,data/Atypical meningioma/a196301e-357f-11eb-8514-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1963029-357f-11eb-806f-001a7dda7111.ndpi,data/Atypical meningioma/a1963029-357f-11eb-806f-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196306d-357f-11eb-811c-001a7dda7111.ndpi,data/Atypical meningioma/a196306d-357f-11eb-811c-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196572f-357f-11eb-a58c-001a7dda7111.ndpi,data/Atypical meningioma/a196572f-357f-11eb-a58c-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196573a-357f-11eb-bcac-001a7dda7111.ndpi,data/Atypical meningioma/a196573a-357f-11eb-bcac-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196574b-357f-11eb-b3e8-001a7dda7111.ndpi,data/Atypical meningioma/a196574b-357f-11eb-b3e8-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196574c-357f-11eb-aa07-001a7dda7111.ndpi,data/Atypical meningioma/a196574c-357f-11eb-aa07-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196578e-357f-11eb-93f0-001a7dda7111.ndpi,data/Atypical meningioma/a196578e-357f-11eb-93f0-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19657a2-357f-11eb-bc3c-001a7dda7111.ndpi,data/Atypical meningioma/a19657a2-357f-11eb-bc3c-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19657ce-357f-11eb-9728-001a7dda7111.ndpi,data/Atypical meningioma/a19657ce-357f-11eb-9728-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1967e54-357f-11eb-98a4-001a7dda7111.ndpi,data/Atypical meningioma/a1967e54-357f-11eb-98a4-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1967e5e-357f-11eb-8517-001a7dda7111.ndpi,data/Atypical meningioma/a1967e5e-357f-11eb-8517-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1967e87-357f-11eb-927c-001a7dda7111.ndpi,data/Atypical meningioma/a1967e87-357f-11eb-927c-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196a558-357f-11eb-85c4-001a7dda7111.ndpi,data/Atypical meningioma/a196a558-357f-11eb-85c4-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196a577-357f-11eb-a207-001a7dda7111.ndpi,data/Atypical meningioma/a196a577-357f-11eb-a207-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196a586-357f-11eb-82eb-001a7dda7111.ndpi,data/Atypical meningioma/a196a586-357f-11eb-82eb-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196cc47-357f-11eb-88e5-001a7dda7111.ndpi,data/Atypical meningioma/a196cc47-357f-11eb-88e5-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196cc7f-357f-11eb-877f-001a7dda7111.ndpi,data/Atypical meningioma/a196cc7f-357f-11eb-877f-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196cc92-357f-11eb-8d53-001a7dda7111.ndpi,data/Atypical meningioma/a196cc92-357f-11eb-8d53-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196cc9e-357f-11eb-8d20-001a7dda7111.ndpi,data/Atypical meningioma/a196cc9e-357f-11eb-8d20-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196f38a-357f-11eb-8699-001a7dda7111.ndpi,data/Atypical meningioma/a196f38a-357f-11eb-8699-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a196f398-357f-11eb-ba9d-001a7dda7111.ndpi,data/Atypical meningioma/a196f398-357f-11eb-ba9d-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1971a7b-357f-11eb-86c9-001a7dda7111.ndpi,data/Atypical meningioma/a1971a7b-357f-11eb-86c9-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1971a84-357f-11eb-954a-001a7dda7111.ndpi,data/Atypical meningioma/a1971a84-357f-11eb-954a-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1971aaa-357f-11eb-9b07-001a7dda7111.ndpi,data/Atypical meningioma/a1971aaa-357f-11eb-9b07-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1971abf-357f-11eb-b2e0-001a7dda7111.ndpi,data/Atypical meningioma/a1971abf-357f-11eb-b2e0-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1971ae5-357f-11eb-8127-001a7dda7111.ndpi,data/Atypical meningioma/a1971ae5-357f-11eb-8127-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19741c7-357f-11eb-a291-001a7dda7111.ndpi,data/Atypical meningioma/a19741c7-357f-11eb-a291-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19741cf-357f-11eb-8b14-001a7dda7111.ndpi,data/Atypical meningioma/a19741cf-357f-11eb-8b14-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19741e6-357f-11eb-b13b-001a7dda7111.ndpi,data/Atypical meningioma/a19741e6-357f-11eb-b13b-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19741f5-357f-11eb-a216-001a7dda7111.ndpi,data/Atypical meningioma/a19741f5-357f-11eb-a216-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1974206-357f-11eb-bbfc-001a7dda7111.ndpi,data/Atypical meningioma/a1974206-357f-11eb-bbfc-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1974207-357f-11eb-ace9-001a7dda7111.ndpi,data/Atypical meningioma/a1974207-357f-11eb-ace9-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1976887-357f-11eb-917f-001a7dda7111.ndpi,data/Atypical meningioma/a1976887-357f-11eb-917f-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1976894-357f-11eb-851a-001a7dda7111.ndpi,data/Atypical meningioma/a1976894-357f-11eb-851a-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1978f9a-357f-11eb-a9c4-001a7dda7111.ndpi,data/Atypical meningioma/a1978f9a-357f-11eb-a9c4-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1978fbf-357f-11eb-9fdc-001a7dda7111.ndpi,data/Atypical meningioma/a1978fbf-357f-11eb-9fdc-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a197b6c9-357f-11eb-8980-001a7dda7111.ndpi,data/Atypical meningioma/a197b6c9-357f-11eb-8980-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a197b70d-357f-11eb-8065-001a7dda7111.ndpi,data/Atypical meningioma/a197b70d-357f-11eb-8065-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a197ddd2-357f-11eb-aca2-001a7dda7111.ndpi,data/Atypical meningioma/a197ddd2-357f-11eb-aca2-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a197de23-357f-11eb-9bf1-001a7dda7111.ndpi,data/Atypical meningioma/a197de23-357f-11eb-9bf1-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1980500-357f-11eb-959c-001a7dda7111.ndpi,data/Atypical meningioma/a1980500-357f-11eb-959c-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1980514-357f-11eb-9e27-001a7dda7111.ndpi,data/Atypical meningioma/a1980514-357f-11eb-9e27-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a198055b-357f-11eb-8caa-001a7dda7111.ndpi,data/Atypical meningioma/a198055b-357f-11eb-8caa-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1980567-357f-11eb-b644-001a7dda7111.ndpi,data/Atypical meningioma/a1980567-357f-11eb-b644-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1980583-357f-11eb-ae6a-001a7dda7111.ndpi,data/Atypical meningioma/a1980583-357f-11eb-ae6a-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19805b2-357f-11eb-bb1b-001a7dda7111.ndpi,data/Atypical meningioma/a19805b2-357f-11eb-bb1b-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982bcc-357f-11eb-b9b6-001a7dda7111.ndpi,data/Atypical meningioma/a1982bcc-357f-11eb-b9b6-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982be6-357f-11eb-9e05-001a7dda7111.ndpi,data/Atypical meningioma/a1982be6-357f-11eb-9e05-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982c11-357f-11eb-a665-001a7dda7111.ndpi,data/Atypical meningioma/a1982c11-357f-11eb-a665-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982c2b-357f-11eb-9d41-001a7dda7111.ndpi,data/Atypical meningioma/a1982c2b-357f-11eb-9d41-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982c60-357f-11eb-9d98-001a7dda7111.ndpi,data/Atypical meningioma/a1982c60-357f-11eb-9d98-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982c88-357f-11eb-9a0d-001a7dda7111.ndpi,data/Atypical meningioma/a1982c88-357f-11eb-9a0d-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982c9d-357f-11eb-a789-001a7dda7111.ndpi,data/Atypical meningioma/a1982c9d-357f-11eb-a789-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982caf-357f-11eb-a457-001a7dda7111.ndpi,data/Atypical meningioma/a1982caf-357f-11eb-a457-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982cb2-357f-11eb-b637-001a7dda7111.ndpi,data/Atypical meningioma/a1982cb2-357f-11eb-b637-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982cc2-357f-11eb-a415-001a7dda7111.ndpi,data/Atypical meningioma/a1982cc2-357f-11eb-a415-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a1982cc9-357f-11eb-8297-001a7dda7111.ndpi,data/Atypical meningioma/a1982cc9-357f-11eb-8297-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a19852fb-357f-11eb-821d-001a7dda7111.ndpi,data/Atypical meningioma/a19852fb-357f-11eb-821d-001a7dda7111.ndpi,Atypical meningioma,9,Meningiomas,True
a194f775-357f-11eb-962e-001a7dda7111.ndpi,data/Schwannoma/a194f775-357f-11eb-962e-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1951f17-357f-11eb-b264-001a7dda7111.ndpi,data/Schwannoma/a1951f17-357f-11eb-b264-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195459e-357f-11eb-937c-001a7dda7111.ndpi,data/Schwannoma/a195459e-357f-11eb-937c-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545b2-357f-11eb-88d9-001a7dda7111.ndpi,data/Schwannoma/a19545b2-357f-11eb-88d9-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545b5-357f-11eb-8977-001a7dda7111.ndpi,data/Schwannoma/a19545b5-357f-11eb-8977-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545c8-357f-11eb-b097-001a7dda7111.ndpi,data/Schwannoma/a19545c8-357f-11eb-b097-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545cc-357f-11eb-ae68-001a7dda7111.ndpi,data/Schwannoma/a19545cc-357f-11eb-ae68-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545d7-357f-11eb-b7c7-001a7dda7111.ndpi,data/Schwannoma/a19545d7-357f-11eb-b7c7-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545d8-357f-11eb-8e7e-001a7dda7111.ndpi,data/Schwannoma/a19545d8-357f-11eb-8e7e-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19545d9-357f-11eb-8691-001a7dda7111.ndpi,data/Schwannoma/a19545d9-357f-11eb-8691-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1956cd1-357f-11eb-82f6-001a7dda7111.ndpi,data/Schwannoma/a1956cd1-357f-11eb-82f6-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1956ce2-357f-11eb-8031-001a7dda7111.ndpi,data/Schwannoma/a1956ce2-357f-11eb-8031-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1956ce3-357f-11eb-bb5b-001a7dda7111.ndpi,data/Schwannoma/a1956ce3-357f-11eb-bb5b-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1956d05-357f-11eb-8d40-001a7dda7111.ndpi,data/Schwannoma/a1956d05-357f-11eb-8d40-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19593c0-357f-11eb-9ad6-001a7dda7111.ndpi,data/Schwannoma/a19593c0-357f-11eb-9ad6-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19593ed-357f-11eb-83b1-001a7dda7111.ndpi,data/Schwannoma/a19593ed-357f-11eb-83b1-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1959423-357f-11eb-82d5-001a7dda7111.ndpi,data/Schwannoma/a1959423-357f-11eb-82d5-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195bac6-357f-11eb-878f-001a7dda7111.ndpi,data/Schwannoma/a195bac6-357f-11eb-878f-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195badb-357f-11eb-b5c2-001a7dda7111.ndpi,data/Schwannoma/a195badb-357f-11eb-b5c2-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195bb0d-357f-11eb-8b40-001a7dda7111.ndpi,data/Schwannoma/a195bb0d-357f-11eb-8b40-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195bb2e-357f-11eb-a120-001a7dda7111.ndpi,data/Schwannoma/a195bb2e-357f-11eb-a120-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e1d7-357f-11eb-9b11-001a7dda7111.ndpi,data/Schwannoma/a195e1d7-357f-11eb-9b11-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e1dd-357f-11eb-a5a8-001a7dda7111.ndpi,data/Schwannoma/a195e1dd-357f-11eb-a5a8-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e1f4-357f-11eb-86e6-001a7dda7111.ndpi,data/Schwannoma/a195e1f4-357f-11eb-86e6-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e1fc-357f-11eb-9ce8-001a7dda7111.ndpi,data/Schwannoma/a195e1fc-357f-11eb-9ce8-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e200-357f-11eb-b665-001a7dda7111.ndpi,data/Schwannoma/a195e200-357f-11eb-b665-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e20e-357f-11eb-a084-001a7dda7111.ndpi,data/Schwannoma/a195e20e-357f-11eb-a084-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a195e215-357f-11eb-8e88-001a7dda7111.ndpi,data/Schwannoma/a195e215-357f-11eb-8e88-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1960901-357f-11eb-9c62-001a7dda7111.ndpi,data/Schwannoma/a1960901-357f-11eb-9c62-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1960914-357f-11eb-ab14-001a7dda7111.ndpi,data/Schwannoma/a1960914-357f-11eb-ab14-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1960928-357f-11eb-b7ec-001a7dda7111.ndpi,data/Schwannoma/a1960928-357f-11eb-b7ec-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1960954-357f-11eb-a46a-001a7dda7111.ndpi,data/Schwannoma/a1960954-357f-11eb-a46a-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1960994-357f-11eb-aca2-001a7dda7111.ndpi,data/Schwannoma/a1960994-357f-11eb-aca2-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1963005-357f-11eb-9aaa-001a7dda7111.ndpi,data/Schwannoma/a1963005-357f-11eb-9aaa-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196305a-357f-11eb-8225-001a7dda7111.ndpi,data/Schwannoma/a196305a-357f-11eb-8225-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1963066-357f-11eb-8620-001a7dda7111.ndpi,data/Schwannoma/a1963066-357f-11eb-8620-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1965703-357f-11eb-8f28-001a7dda7111.ndpi,data/Schwannoma/a1965703-357f-11eb-8f28-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196572a-357f-11eb-9341-001a7dda7111.ndpi,data/Schwannoma/a196572a-357f-11eb-9341-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1965742-357f-11eb-9c79-001a7dda7111.ndpi,data/Schwannoma/a1965742-357f-11eb-9c79-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1965746-357f-11eb-b694-001a7dda7111.ndpi,data/Schwannoma/a1965746-357f-11eb-b694-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1965757-357f-11eb-ad4c-001a7dda7111.ndpi,data/Schwannoma/a1965757-357f-11eb-ad4c-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1965764-357f-11eb-9b8a-001a7dda7111.ndpi,data/Schwannoma/a1965764-357f-11eb-9b8a-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196579d-357f-11eb-9585-001a7dda7111.ndpi,data/Schwannoma/a196579d-357f-11eb-9585-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19657a8-357f-11eb-a51a-001a7dda7111.ndpi,data/Schwannoma/a19657a8-357f-11eb-a51a-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19657cd-357f-11eb-8421-001a7dda7111.ndpi,data/Schwannoma/a19657cd-357f-11eb-8421-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19657d1-357f-11eb-b8cd-001a7dda7111.ndpi,data/Schwannoma/a19657d1-357f-11eb-b8cd-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1967e48-357f-11eb-b664-001a7dda7111.ndpi,data/Schwannoma/a1967e48-357f-11eb-b664-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1967ea5-357f-11eb-94dc-001a7dda7111.ndpi,data/Schwannoma/a1967ea5-357f-11eb-94dc-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196a585-357f-11eb-acf7-001a7dda7111.ndpi,data/Schwannoma/a196a585-357f-11eb-acf7-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196a597-357f-11eb-ae31-001a7dda7111.ndpi,data/Schwannoma/a196a597-357f-11eb-ae31-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196a59e-357f-11eb-b4b1-001a7dda7111.ndpi,data/Schwannoma/a196a59e-357f-11eb-b4b1-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196a5c3-357f-11eb-99c2-001a7dda7111.ndpi,data/Schwannoma/a196a5c3-357f-11eb-99c2-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196cc5a-357f-11eb-9f3d-001a7dda7111.ndpi,data/Schwannoma/a196cc5a-357f-11eb-9f3d-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196cc5e-357f-11eb-a0b1-001a7dda7111.ndpi,data/Schwannoma/a196cc5e-357f-11eb-a0b1-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196f37a-357f-11eb-a7e5-001a7dda7111.ndpi,data/Schwannoma/a196f37a-357f-11eb-a7e5-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196f397-357f-11eb-9bc5-001a7dda7111.ndpi,data/Schwannoma/a196f397-357f-11eb-9bc5-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a196f3b6-357f-11eb-9a3c-001a7dda7111.ndpi,data/Schwannoma/a196f3b6-357f-11eb-9a3c-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1971a9e-357f-11eb-a5c6-001a7dda7111.ndpi,data/Schwannoma/a1971a9e-357f-11eb-a5c6-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1971aac-357f-11eb-9e67-001a7dda7111.ndpi,data/Schwannoma/a1971aac-357f-11eb-9e67-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19741ae-357f-11eb-b1e9-001a7dda7111.ndpi,data/Schwannoma/a19741ae-357f-11eb-b1e9-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19741c5-357f-11eb-b73d-001a7dda7111.ndpi,data/Schwannoma/a19741c5-357f-11eb-b73d-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19741f4-357f-11eb-b31b-001a7dda7111.ndpi,data/Schwannoma/a19741f4-357f-11eb-b31b-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1976882-357f-11eb-8716-001a7dda7111.ndpi,data/Schwannoma/a1976882-357f-11eb-8716-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1976892-357f-11eb-9931-001a7dda7111.ndpi,data/Schwannoma/a1976892-357f-11eb-9931-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19768ab-357f-11eb-8461-001a7dda7111.ndpi,data/Schwannoma/a19768ab-357f-11eb-8461-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1978fe6-357f-11eb-b251-001a7dda7111.ndpi,data/Schwannoma/a1978fe6-357f-11eb-b251-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1978fe7-357f-11eb-9bec-001a7dda7111.ndpi,data/Schwannoma/a1978fe7-357f-11eb-9bec-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1978ff7-357f-11eb-a9d7-001a7dda7111.ndpi,data/Schwannoma/a1978ff7-357f-11eb-a9d7-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a197b6fb-357f-11eb-bb3b-001a7dda7111.ndpi,data/Schwannoma/a197b6fb-357f-11eb-bb3b-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a197ddd1-357f-11eb-983d-001a7dda7111.ndpi,data/Schwannoma/a197ddd1-357f-11eb-983d-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a197dde7-357f-11eb-8b72-001a7dda7111.ndpi,data/Schwannoma/a197dde7-357f-11eb-8b72-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a197de21-357f-11eb-9b87-001a7dda7111.ndpi,data/Schwannoma/a197de21-357f-11eb-9b87-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a197de24-357f-11eb-8e5f-001a7dda7111.ndpi,data/Schwannoma/a197de24-357f-11eb-8e5f-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19804c4-357f-11eb-a7ed-001a7dda7111.ndpi,data/Schwannoma/a19804c4-357f-11eb-a7ed-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a19804df-357f-11eb-87dd-001a7dda7111.ndpi,data/Schwannoma/a19804df-357f-11eb-87dd-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1980517-357f-11eb-a2f3-001a7dda7111.ndpi,data/Schwannoma/a1980517-357f-11eb-a2f3-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1980519-357f-11eb-bc86-001a7dda7111.ndpi,data/Schwannoma/a1980519-357f-11eb-bc86-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1980543-357f-11eb-903f-001a7dda7111.ndpi,data/Schwannoma/a1980543-357f-11eb-903f-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1982c05-357f-11eb-872e-001a7dda7111.ndpi,data/Schwannoma/a1982c05-357f-11eb-872e-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1982c0e-357f-11eb-9c93-001a7dda7111.ndpi,data/Schwannoma/a1982c0e-357f-11eb-9c93-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a1982c47-357f-11eb-aea9-001a7dda7111.ndpi,data/Schwannoma/a1982c47-357f-11eb-aea9-001a7dda7111.ndpi,Schwannoma,10,Cranial And Paraspinal Nerve Tumours,True
a194f78d-357f-11eb-a5e4-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a194f78d-357f-11eb-a5e4-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951e90-357f-11eb-95e4-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1951e90-357f-11eb-95e4-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951ea3-357f-11eb-8af2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1951ea3-357f-11eb-8af2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951ea5-357f-11eb-a411-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1951ea5-357f-11eb-a411-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951ed2-357f-11eb-be71-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1951ed2-357f-11eb-be71-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951efd-357f-11eb-ac28-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1951efd-357f-11eb-ac28-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951f22-357f-11eb-a9d7-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1951f22-357f-11eb-a9d7-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19545c4-357f-11eb-8261-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19545c4-357f-11eb-8261-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19545d2-357f-11eb-a151-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19545d2-357f-11eb-a151-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1956cbb-357f-11eb-a8a0-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1956cbb-357f-11eb-a8a0-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1956d02-357f-11eb-a8b9-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1956d02-357f-11eb-a8b9-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195bb21-357f-11eb-b912-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195bb21-357f-11eb-b912-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195bb2b-357f-11eb-9fcc-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195bb2b-357f-11eb-9fcc-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195e1d3-357f-11eb-86d9-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195e1d3-357f-11eb-86d9-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195e1db-357f-11eb-82c7-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195e1db-357f-11eb-82c7-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195e1ef-357f-11eb-b7e2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195e1ef-357f-11eb-b7e2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195e223-357f-11eb-a41f-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195e223-357f-11eb-a41f-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195e242-357f-11eb-a382-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195e242-357f-11eb-a382-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a195e250-357f-11eb-94fc-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a195e250-357f-11eb-94fc-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19608e9-357f-11eb-8ff2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19608e9-357f-11eb-8ff2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1960913-357f-11eb-9740-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1960913-357f-11eb-9740-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1960968-357f-11eb-b931-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1960968-357f-11eb-b931-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1960987-357f-11eb-abc9-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1960987-357f-11eb-abc9-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1963032-357f-11eb-bfeb-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1963032-357f-11eb-bfeb-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1963036-357f-11eb-baa0-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1963036-357f-11eb-baa0-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196570d-357f-11eb-a851-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196570d-357f-11eb-a851-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196575c-357f-11eb-9dff-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196575c-357f-11eb-9dff-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1965798-357f-11eb-bfa0-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1965798-357f-11eb-bfa0-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19657c9-357f-11eb-b8f8-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19657c9-357f-11eb-b8f8-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1967e8d-357f-11eb-8c1b-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1967e8d-357f-11eb-8c1b-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196a537-357f-11eb-8f70-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196a537-357f-11eb-8f70-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196a595-357f-11eb-83e9-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196a595-357f-11eb-83e9-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196a5a5-357f-11eb-ac50-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196a5a5-357f-11eb-ac50-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196a5a7-357f-11eb-841f-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196a5a7-357f-11eb-841f-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196cc6b-357f-11eb-9ea0-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196cc6b-357f-11eb-9ea0-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196cc90-357f-11eb-9132-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196cc90-357f-11eb-9132-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196f36b-357f-11eb-818a-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196f36b-357f-11eb-818a-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a196f377-357f-11eb-a69b-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a196f377-357f-11eb-a69b-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1971aa6-357f-11eb-bf43-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1971aa6-357f-11eb-bf43-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1971aae-357f-11eb-b2f2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1971aae-357f-11eb-b2f2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1971ab4-357f-11eb-804b-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1971ab4-357f-11eb-804b-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19741b2-357f-11eb-a945-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19741b2-357f-11eb-a945-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19741d2-357f-11eb-9cf2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19741d2-357f-11eb-9cf2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1978fa7-357f-11eb-8df5-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1978fa7-357f-11eb-8df5-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1978fc5-357f-11eb-9546-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1978fc5-357f-11eb-9546-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1978fcf-357f-11eb-95f8-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1978fcf-357f-11eb-95f8-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1978fde-357f-11eb-960c-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1978fde-357f-11eb-960c-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1978ff3-357f-11eb-b708-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1978ff3-357f-11eb-b708-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197b6a7-357f-11eb-bd07-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197b6a7-357f-11eb-bd07-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197b6a8-357f-11eb-84df-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197b6a8-357f-11eb-84df-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197b6ba-357f-11eb-b4f2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197b6ba-357f-11eb-b4f2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197b6d6-357f-11eb-96e4-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197b6d6-357f-11eb-96e4-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197b6da-357f-11eb-b48b-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197b6da-357f-11eb-b48b-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197ddbb-357f-11eb-963b-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197ddbb-357f-11eb-963b-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197ddc4-357f-11eb-a882-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197ddc4-357f-11eb-a882-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197ddd7-357f-11eb-8614-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197ddd7-357f-11eb-8614-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a197ddd9-357f-11eb-8555-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a197ddd9-357f-11eb-8555-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19804d9-357f-11eb-a0a1-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19804d9-357f-11eb-a0a1-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19804f8-357f-11eb-8d08-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19804f8-357f-11eb-8d08-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a198059d-357f-11eb-9f22-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a198059d-357f-11eb-9f22-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19805a5-357f-11eb-96b2-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19805a5-357f-11eb-96b2-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a19805b7-357f-11eb-b752-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a19805b7-357f-11eb-b752-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982bf7-357f-11eb-ad6c-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982bf7-357f-11eb-ad6c-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982c19-357f-11eb-b102-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982c19-357f-11eb-b102-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982c74-357f-11eb-b7d8-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982c74-357f-11eb-b7d8-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982c91-357f-11eb-95f1-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982c91-357f-11eb-95f1-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982c95-357f-11eb-a2ad-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982c95-357f-11eb-a2ad-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982cbc-357f-11eb-a71d-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982cbc-357f-11eb-a71d-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982cbe-357f-11eb-857a-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982cbe-357f-11eb-857a-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1982cc6-357f-11eb-a3b0-001a7dda7111.ndpi,data/Diffuse astrocytoma IDH-mutant/a1982cc6-357f-11eb-a3b0-001a7dda7111.ndpi,"Diffuse astrocytoma, IDH-mutant",11,Paediatric-Type Diffuse Low-Grade Gliomas,True
a1951edc-357f-11eb-9a8a-001a7dda7111.ndpi,data/Transitional meningioma/a1951edc-357f-11eb-9a8a-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1951ee5-357f-11eb-803f-001a7dda7111.ndpi,data/Transitional meningioma/a1951ee5-357f-11eb-803f-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1951eef-357f-11eb-97bd-001a7dda7111.ndpi,data/Transitional meningioma/a1951eef-357f-11eb-97bd-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1951ef7-357f-11eb-aae4-001a7dda7111.ndpi,data/Transitional meningioma/a1951ef7-357f-11eb-aae4-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1951f02-357f-11eb-9914-001a7dda7111.ndpi,data/Transitional meningioma/a1951f02-357f-11eb-9914-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19545c9-357f-11eb-9fa6-001a7dda7111.ndpi,data/Transitional meningioma/a19545c9-357f-11eb-9fa6-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19545f0-357f-11eb-8864-001a7dda7111.ndpi,data/Transitional meningioma/a19545f0-357f-11eb-8864-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19545f2-357f-11eb-a7fe-001a7dda7111.ndpi,data/Transitional meningioma/a19545f2-357f-11eb-a7fe-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1956cf2-357f-11eb-bd89-001a7dda7111.ndpi,data/Transitional meningioma/a1956cf2-357f-11eb-bd89-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19593e5-357f-11eb-abd4-001a7dda7111.ndpi,data/Transitional meningioma/a19593e5-357f-11eb-abd4-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19593ef-357f-11eb-b4c1-001a7dda7111.ndpi,data/Transitional meningioma/a19593ef-357f-11eb-b4c1-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19593fe-357f-11eb-9747-001a7dda7111.ndpi,data/Transitional meningioma/a19593fe-357f-11eb-9747-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195940a-357f-11eb-b2ee-001a7dda7111.ndpi,data/Transitional meningioma/a195940a-357f-11eb-b2ee-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195940c-357f-11eb-99cf-001a7dda7111.ndpi,data/Transitional meningioma/a195940c-357f-11eb-99cf-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1959416-357f-11eb-acfd-001a7dda7111.ndpi,data/Transitional meningioma/a1959416-357f-11eb-acfd-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1959418-357f-11eb-bacc-001a7dda7111.ndpi,data/Transitional meningioma/a1959418-357f-11eb-bacc-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1959434-357f-11eb-b05c-001a7dda7111.ndpi,data/Transitional meningioma/a1959434-357f-11eb-b05c-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1959449-357f-11eb-bf8b-001a7dda7111.ndpi,data/Transitional meningioma/a1959449-357f-11eb-bf8b-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195944c-357f-11eb-bbdd-001a7dda7111.ndpi,data/Transitional meningioma/a195944c-357f-11eb-bbdd-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195baee-357f-11eb-a2df-001a7dda7111.ndpi,data/Transitional meningioma/a195baee-357f-11eb-a2df-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195baf4-357f-11eb-9caf-001a7dda7111.ndpi,data/Transitional meningioma/a195baf4-357f-11eb-9caf-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195bb10-357f-11eb-bdfd-001a7dda7111.ndpi,data/Transitional meningioma/a195bb10-357f-11eb-bdfd-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195bb3a-357f-11eb-b9e3-001a7dda7111.ndpi,data/Transitional meningioma/a195bb3a-357f-11eb-b9e3-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195bb45-357f-11eb-9c57-001a7dda7111.ndpi,data/Transitional meningioma/a195bb45-357f-11eb-9c57-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195e230-357f-11eb-b07e-001a7dda7111.ndpi,data/Transitional meningioma/a195e230-357f-11eb-b07e-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a195e239-357f-11eb-9cc3-001a7dda7111.ndpi,data/Transitional meningioma/a195e239-357f-11eb-9cc3-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1960956-357f-11eb-bbf6-001a7dda7111.ndpi,data/Transitional meningioma/a1960956-357f-11eb-bbf6-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1963019-357f-11eb-ae1e-001a7dda7111.ndpi,data/Transitional meningioma/a1963019-357f-11eb-ae1e-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1963031-357f-11eb-9170-001a7dda7111.ndpi,data/Transitional meningioma/a1963031-357f-11eb-9170-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1963039-357f-11eb-b2a9-001a7dda7111.ndpi,data/Transitional meningioma/a1963039-357f-11eb-b2a9-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1965727-357f-11eb-bc72-001a7dda7111.ndpi,data/Transitional meningioma/a1965727-357f-11eb-bc72-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1965735-357f-11eb-9c40-001a7dda7111.ndpi,data/Transitional meningioma/a1965735-357f-11eb-9c40-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a196577a-357f-11eb-9c8b-001a7dda7111.ndpi,data/Transitional meningioma/a196577a-357f-11eb-9c8b-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1965799-357f-11eb-b159-001a7dda7111.ndpi,data/Transitional meningioma/a1965799-357f-11eb-b159-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19657b2-357f-11eb-8be1-001a7dda7111.ndpi,data/Transitional meningioma/a19657b2-357f-11eb-8be1-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1967e43-357f-11eb-8897-001a7dda7111.ndpi,data/Transitional meningioma/a1967e43-357f-11eb-8897-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1967e64-357f-11eb-ad02-001a7dda7111.ndpi,data/Transitional meningioma/a1967e64-357f-11eb-ad02-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1967e86-357f-11eb-a8a1-001a7dda7111.ndpi,data/Transitional meningioma/a1967e86-357f-11eb-a8a1-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a196a535-357f-11eb-a078-001a7dda7111.ndpi,data/Transitional meningioma/a196a535-357f-11eb-a078-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a196cc5b-357f-11eb-8cf4-001a7dda7111.ndpi,data/Transitional meningioma/a196cc5b-357f-11eb-8cf4-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a196cc74-357f-11eb-b2bf-001a7dda7111.ndpi,data/Transitional meningioma/a196cc74-357f-11eb-b2bf-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a196f374-357f-11eb-bc67-001a7dda7111.ndpi,data/Transitional meningioma/a196f374-357f-11eb-bc67-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a196f3ce-357f-11eb-969b-001a7dda7111.ndpi,data/Transitional meningioma/a196f3ce-357f-11eb-969b-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1971a93-357f-11eb-9730-001a7dda7111.ndpi,data/Transitional meningioma/a1971a93-357f-11eb-9730-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1971aca-357f-11eb-b706-001a7dda7111.ndpi,data/Transitional meningioma/a1971aca-357f-11eb-b706-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1971adc-357f-11eb-a1da-001a7dda7111.ndpi,data/Transitional meningioma/a1971adc-357f-11eb-a1da-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19741a5-357f-11eb-beb2-001a7dda7111.ndpi,data/Transitional meningioma/a19741a5-357f-11eb-beb2-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19741ab-357f-11eb-a334-001a7dda7111.ndpi,data/Transitional meningioma/a19741ab-357f-11eb-a334-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1974200-357f-11eb-a527-001a7dda7111.ndpi,data/Transitional meningioma/a1974200-357f-11eb-a527-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19768ac-357f-11eb-b95f-001a7dda7111.ndpi,data/Transitional meningioma/a19768ac-357f-11eb-b95f-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1978fdc-357f-11eb-b501-001a7dda7111.ndpi,data/Transitional meningioma/a1978fdc-357f-11eb-b501-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a197b6a9-357f-11eb-8b47-001a7dda7111.ndpi,data/Transitional meningioma/a197b6a9-357f-11eb-8b47-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a197b6d7-357f-11eb-af43-001a7dda7111.ndpi,data/Transitional meningioma/a197b6d7-357f-11eb-af43-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a197b6fa-357f-11eb-bd18-001a7dda7111.ndpi,data/Transitional meningioma/a197b6fa-357f-11eb-bd18-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a197ddbc-357f-11eb-8aa4-001a7dda7111.ndpi,data/Transitional meningioma/a197ddbc-357f-11eb-8aa4-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a197ddc6-357f-11eb-8513-001a7dda7111.ndpi,data/Transitional meningioma/a197ddc6-357f-11eb-8513-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a197ddf4-357f-11eb-a6b1-001a7dda7111.ndpi,data/Transitional meningioma/a197ddf4-357f-11eb-a6b1-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19804c8-357f-11eb-8cc9-001a7dda7111.ndpi,data/Transitional meningioma/a19804c8-357f-11eb-8cc9-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19804ce-357f-11eb-95e0-001a7dda7111.ndpi,data/Transitional meningioma/a19804ce-357f-11eb-95e0-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19804ea-357f-11eb-b8eb-001a7dda7111.ndpi,data/Transitional meningioma/a19804ea-357f-11eb-b8eb-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a19804fb-357f-11eb-995f-001a7dda7111.ndpi,data/Transitional meningioma/a19804fb-357f-11eb-995f-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1980502-357f-11eb-b698-001a7dda7111.ndpi,data/Transitional meningioma/a1980502-357f-11eb-b698-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1980506-357f-11eb-bdd6-001a7dda7111.ndpi,data/Transitional meningioma/a1980506-357f-11eb-bdd6-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1982bf3-357f-11eb-98cd-001a7dda7111.ndpi,data/Transitional meningioma/a1982bf3-357f-11eb-98cd-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1982c0d-357f-11eb-82bb-001a7dda7111.ndpi,data/Transitional meningioma/a1982c0d-357f-11eb-82bb-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1982c98-357f-11eb-8027-001a7dda7111.ndpi,data/Transitional meningioma/a1982c98-357f-11eb-8027-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1982cb6-357f-11eb-846f-001a7dda7111.ndpi,data/Transitional meningioma/a1982cb6-357f-11eb-846f-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a1982cbb-357f-11eb-97cc-001a7dda7111.ndpi,data/Transitional meningioma/a1982cbb-357f-11eb-97cc-001a7dda7111.ndpi,Transitional meningioma,12,Meningiomas,True
a194f78e-357f-11eb-aef1-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a194f78e-357f-11eb-aef1-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a194f790-357f-11eb-b605-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a194f790-357f-11eb-b605-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1951ef0-357f-11eb-b65d-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1951ef0-357f-11eb-b65d-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1951f04-357f-11eb-a8df-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1951f04-357f-11eb-a8df-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19545b6-357f-11eb-933c-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19545b6-357f-11eb-933c-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19545bd-357f-11eb-943a-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19545bd-357f-11eb-943a-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1956cbd-357f-11eb-b37e-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1956cbd-357f-11eb-b37e-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1956cc6-357f-11eb-b876-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1956cc6-357f-11eb-b876-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1956cec-357f-11eb-8d91-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1956cec-357f-11eb-8d91-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1959417-357f-11eb-9774-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1959417-357f-11eb-9774-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a195941e-357f-11eb-b7a9-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a195941e-357f-11eb-b7a9-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a195bb29-357f-11eb-a445-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a195bb29-357f-11eb-a445-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a195e1ea-357f-11eb-a593-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a195e1ea-357f-11eb-a593-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a195e20a-357f-11eb-bfe4-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a195e20a-357f-11eb-bfe4-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a195e20f-357f-11eb-b441-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a195e20f-357f-11eb-b441-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19608ed-357f-11eb-99d9-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19608ed-357f-11eb-99d9-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19608fc-357f-11eb-9d5f-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19608fc-357f-11eb-9d5f-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196093f-357f-11eb-82ce-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196093f-357f-11eb-82ce-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196095e-357f-11eb-a82a-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196095e-357f-11eb-a82a-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19609a3-357f-11eb-99d4-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19609a3-357f-11eb-99d4-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19609b2-357f-11eb-8ea7-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19609b2-357f-11eb-8ea7-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19609c9-357f-11eb-99e8-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19609c9-357f-11eb-99e8-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196303a-357f-11eb-bb0f-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196303a-357f-11eb-bb0f-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1963053-357f-11eb-b49f-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1963053-357f-11eb-b49f-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1963060-357f-11eb-990c-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1963060-357f-11eb-990c-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1965739-357f-11eb-9e1d-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1965739-357f-11eb-9e1d-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196575f-357f-11eb-b320-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196575f-357f-11eb-b320-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1967e58-357f-11eb-867e-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1967e58-357f-11eb-867e-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1967e82-357f-11eb-9461-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1967e82-357f-11eb-9461-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196a57c-357f-11eb-878c-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196a57c-357f-11eb-878c-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196a5b0-357f-11eb-860f-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196a5b0-357f-11eb-860f-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196a5bd-357f-11eb-bac4-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196a5bd-357f-11eb-bac4-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196a5c4-357f-11eb-84c6-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196a5c4-357f-11eb-84c6-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a196f38e-357f-11eb-9238-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a196f38e-357f-11eb-9238-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1971a95-357f-11eb-b88b-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1971a95-357f-11eb-b88b-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1971ae8-357f-11eb-89d2-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1971ae8-357f-11eb-89d2-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19741f8-357f-11eb-b787-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19741f8-357f-11eb-b787-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a197689c-357f-11eb-890c-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a197689c-357f-11eb-890c-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19768d0-357f-11eb-9cae-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19768d0-357f-11eb-9cae-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19768d6-357f-11eb-ac19-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19768d6-357f-11eb-ac19-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1978f8c-357f-11eb-84cb-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1978f8c-357f-11eb-84cb-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a197b6aa-357f-11eb-ae64-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a197b6aa-357f-11eb-ae64-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a197ddc9-357f-11eb-9259-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a197ddc9-357f-11eb-9259-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a197ddca-357f-11eb-a843-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a197ddca-357f-11eb-a843-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a197de27-357f-11eb-a8ac-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a197de27-357f-11eb-a8ac-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19804f4-357f-11eb-83e4-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19804f4-357f-11eb-83e4-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19804fd-357f-11eb-81e0-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19804fd-357f-11eb-81e0-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a198053c-357f-11eb-8881-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a198053c-357f-11eb-8881-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1980558-357f-11eb-a1d5-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1980558-357f-11eb-a1d5-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a198056f-357f-11eb-acee-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a198056f-357f-11eb-acee-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1980585-357f-11eb-b797-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1980585-357f-11eb-b797-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19805be-357f-11eb-aec2-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19805be-357f-11eb-aec2-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1982be7-357f-11eb-921b-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1982be7-357f-11eb-921b-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1982c00-357f-11eb-9ad5-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1982c00-357f-11eb-9ad5-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1982c13-357f-11eb-ae9a-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1982c13-357f-11eb-ae9a-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1982c15-357f-11eb-8bce-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1982c15-357f-11eb-8bce-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a1982cc7-357f-11eb-805e-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a1982cc7-357f-11eb-805e-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19852df-357f-11eb-ab13-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19852df-357f-11eb-ab13-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a19852f7-357f-11eb-9a9f-001a7dda7111.ndpi,data/Diffuse large B-cell lymphoma of the CNS/a19852f7-357f-11eb-9a9f-001a7dda7111.ndpi,Diffuse large B-cell lymphoma of the CNS,13,Haematolymphoid Tumours,True
a194f798-357f-11eb-bf26-001a7dda7111.ndpi,data/Gliosarcoma/a194f798-357f-11eb-bf26-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1951e98-357f-11eb-9a7e-001a7dda7111.ndpi,data/Gliosarcoma/a1951e98-357f-11eb-9a7e-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1951eab-357f-11eb-8350-001a7dda7111.ndpi,data/Gliosarcoma/a1951eab-357f-11eb-8350-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1951ec4-357f-11eb-87d3-001a7dda7111.ndpi,data/Gliosarcoma/a1951ec4-357f-11eb-87d3-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1951f0a-357f-11eb-810f-001a7dda7111.ndpi,data/Gliosarcoma/a1951f0a-357f-11eb-810f-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1951f29-357f-11eb-a083-001a7dda7111.ndpi,data/Gliosarcoma/a1951f29-357f-11eb-a083-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19545b3-357f-11eb-a0ca-001a7dda7111.ndpi,data/Gliosarcoma/a19545b3-357f-11eb-a0ca-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1956d07-357f-11eb-8a46-001a7dda7111.ndpi,data/Gliosarcoma/a1956d07-357f-11eb-8a46-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1956d0a-357f-11eb-9014-001a7dda7111.ndpi,data/Gliosarcoma/a1956d0a-357f-11eb-9014-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19593f0-357f-11eb-bb0f-001a7dda7111.ndpi,data/Gliosarcoma/a19593f0-357f-11eb-bb0f-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195943e-357f-11eb-82f8-001a7dda7111.ndpi,data/Gliosarcoma/a195943e-357f-11eb-82f8-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195bad2-357f-11eb-bb9e-001a7dda7111.ndpi,data/Gliosarcoma/a195bad2-357f-11eb-bb9e-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195bb1e-357f-11eb-b29c-001a7dda7111.ndpi,data/Gliosarcoma/a195bb1e-357f-11eb-b29c-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195e1da-357f-11eb-88ac-001a7dda7111.ndpi,data/Gliosarcoma/a195e1da-357f-11eb-88ac-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195e1e7-357f-11eb-b017-001a7dda7111.ndpi,data/Gliosarcoma/a195e1e7-357f-11eb-b017-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195e228-357f-11eb-be1b-001a7dda7111.ndpi,data/Gliosarcoma/a195e228-357f-11eb-be1b-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a195e247-357f-11eb-82e5-001a7dda7111.ndpi,data/Gliosarcoma/a195e247-357f-11eb-82e5-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19608f3-357f-11eb-a85e-001a7dda7111.ndpi,data/Gliosarcoma/a19608f3-357f-11eb-a85e-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1960915-357f-11eb-a252-001a7dda7111.ndpi,data/Gliosarcoma/a1960915-357f-11eb-a252-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1960976-357f-11eb-a856-001a7dda7111.ndpi,data/Gliosarcoma/a1960976-357f-11eb-a856-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1960997-357f-11eb-bcd5-001a7dda7111.ndpi,data/Gliosarcoma/a1960997-357f-11eb-bcd5-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1960999-357f-11eb-82be-001a7dda7111.ndpi,data/Gliosarcoma/a1960999-357f-11eb-82be-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19609ab-357f-11eb-a897-001a7dda7111.ndpi,data/Gliosarcoma/a19609ab-357f-11eb-a897-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19609cc-357f-11eb-86fd-001a7dda7111.ndpi,data/Gliosarcoma/a19609cc-357f-11eb-86fd-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1962ffb-357f-11eb-b304-001a7dda7111.ndpi,data/Gliosarcoma/a1962ffb-357f-11eb-b304-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196300d-357f-11eb-ac26-001a7dda7111.ndpi,data/Gliosarcoma/a196300d-357f-11eb-ac26-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196301f-357f-11eb-b544-001a7dda7111.ndpi,data/Gliosarcoma/a196301f-357f-11eb-b544-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196571c-357f-11eb-a4f5-001a7dda7111.ndpi,data/Gliosarcoma/a196571c-357f-11eb-a4f5-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1965732-357f-11eb-9939-001a7dda7111.ndpi,data/Gliosarcoma/a1965732-357f-11eb-9939-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1965761-357f-11eb-aa01-001a7dda7111.ndpi,data/Gliosarcoma/a1965761-357f-11eb-aa01-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196576f-357f-11eb-9094-001a7dda7111.ndpi,data/Gliosarcoma/a196576f-357f-11eb-9094-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1967e6f-357f-11eb-b581-001a7dda7111.ndpi,data/Gliosarcoma/a1967e6f-357f-11eb-b581-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196a529-357f-11eb-9739-001a7dda7111.ndpi,data/Gliosarcoma/a196a529-357f-11eb-9739-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196a536-357f-11eb-8edb-001a7dda7111.ndpi,data/Gliosarcoma/a196a536-357f-11eb-8edb-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196a53a-357f-11eb-a042-001a7dda7111.ndpi,data/Gliosarcoma/a196a53a-357f-11eb-a042-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196a573-357f-11eb-9eec-001a7dda7111.ndpi,data/Gliosarcoma/a196a573-357f-11eb-9eec-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196f36d-357f-11eb-8666-001a7dda7111.ndpi,data/Gliosarcoma/a196f36d-357f-11eb-8666-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196f3a4-357f-11eb-9293-001a7dda7111.ndpi,data/Gliosarcoma/a196f3a4-357f-11eb-9293-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196f3ab-357f-11eb-a5ea-001a7dda7111.ndpi,data/Gliosarcoma/a196f3ab-357f-11eb-a5ea-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a196f3bc-357f-11eb-96bb-001a7dda7111.ndpi,data/Gliosarcoma/a196f3bc-357f-11eb-96bb-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1971a90-357f-11eb-aedd-001a7dda7111.ndpi,data/Gliosarcoma/a1971a90-357f-11eb-aedd-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1971ab5-357f-11eb-8b73-001a7dda7111.ndpi,data/Gliosarcoma/a1971ab5-357f-11eb-8b73-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19741a2-357f-11eb-b871-001a7dda7111.ndpi,data/Gliosarcoma/a19741a2-357f-11eb-b871-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19741c4-357f-11eb-bb0b-001a7dda7111.ndpi,data/Gliosarcoma/a19741c4-357f-11eb-bb0b-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19741d0-357f-11eb-9b83-001a7dda7111.ndpi,data/Gliosarcoma/a19741d0-357f-11eb-9b83-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19768ce-357f-11eb-aea4-001a7dda7111.ndpi,data/Gliosarcoma/a19768ce-357f-11eb-aea4-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1978fd1-357f-11eb-b7ee-001a7dda7111.ndpi,data/Gliosarcoma/a1978fd1-357f-11eb-b7ee-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1978fef-357f-11eb-b9f3-001a7dda7111.ndpi,data/Gliosarcoma/a1978fef-357f-11eb-b9f3-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19804eb-357f-11eb-a9e2-001a7dda7111.ndpi,data/Gliosarcoma/a19804eb-357f-11eb-a9e2-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1980512-357f-11eb-a597-001a7dda7111.ndpi,data/Gliosarcoma/a1980512-357f-11eb-a597-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1980531-357f-11eb-8e9f-001a7dda7111.ndpi,data/Gliosarcoma/a1980531-357f-11eb-8e9f-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1980547-357f-11eb-8035-001a7dda7111.ndpi,data/Gliosarcoma/a1980547-357f-11eb-8035-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a198055e-357f-11eb-9fa1-001a7dda7111.ndpi,data/Gliosarcoma/a198055e-357f-11eb-9fa1-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1980577-357f-11eb-a3cf-001a7dda7111.ndpi,data/Gliosarcoma/a1980577-357f-11eb-a3cf-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1982c1b-357f-11eb-bcba-001a7dda7111.ndpi,data/Gliosarcoma/a1982c1b-357f-11eb-bcba-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1982c41-357f-11eb-8a06-001a7dda7111.ndpi,data/Gliosarcoma/a1982c41-357f-11eb-8a06-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a1982c44-357f-11eb-a851-001a7dda7111.ndpi,data/Gliosarcoma/a1982c44-357f-11eb-a851-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19852de-357f-11eb-842d-001a7dda7111.ndpi,data/Gliosarcoma/a19852de-357f-11eb-842d-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a19852e6-357f-11eb-9151-001a7dda7111.ndpi,data/Gliosarcoma/a19852e6-357f-11eb-9151-001a7dda7111.ndpi,Gliosarcoma,14,Adult-Type Diffuse Gliomas,True
a194f779-357f-11eb-a236-001a7dda7111.ndpi,data/Fibrous meningioma/a194f779-357f-11eb-a236-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1951ebd-357f-11eb-a126-001a7dda7111.ndpi,data/Fibrous meningioma/a1951ebd-357f-11eb-a126-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1951eee-357f-11eb-bc67-001a7dda7111.ndpi,data/Fibrous meningioma/a1951eee-357f-11eb-bc67-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19545d0-357f-11eb-84e1-001a7dda7111.ndpi,data/Fibrous meningioma/a19545d0-357f-11eb-84e1-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19545fb-357f-11eb-a21f-001a7dda7111.ndpi,data/Fibrous meningioma/a19545fb-357f-11eb-a21f-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1954605-357f-11eb-a42f-001a7dda7111.ndpi,data/Fibrous meningioma/a1954605-357f-11eb-a42f-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1956ce6-357f-11eb-9dd3-001a7dda7111.ndpi,data/Fibrous meningioma/a1956ce6-357f-11eb-9dd3-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1956d1a-357f-11eb-ae18-001a7dda7111.ndpi,data/Fibrous meningioma/a1956d1a-357f-11eb-ae18-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19593e7-357f-11eb-805e-001a7dda7111.ndpi,data/Fibrous meningioma/a19593e7-357f-11eb-805e-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1959409-357f-11eb-a2a7-001a7dda7111.ndpi,data/Fibrous meningioma/a1959409-357f-11eb-a2a7-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a195bad5-357f-11eb-9e0a-001a7dda7111.ndpi,data/Fibrous meningioma/a195bad5-357f-11eb-9e0a-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a195baef-357f-11eb-922e-001a7dda7111.ndpi,data/Fibrous meningioma/a195baef-357f-11eb-922e-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a195e211-357f-11eb-8b0c-001a7dda7111.ndpi,data/Fibrous meningioma/a195e211-357f-11eb-8b0c-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196093e-357f-11eb-96f7-001a7dda7111.ndpi,data/Fibrous meningioma/a196093e-357f-11eb-96f7-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1960946-357f-11eb-aa19-001a7dda7111.ndpi,data/Fibrous meningioma/a1960946-357f-11eb-aa19-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1960965-357f-11eb-9861-001a7dda7111.ndpi,data/Fibrous meningioma/a1960965-357f-11eb-9861-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19609ad-357f-11eb-9679-001a7dda7111.ndpi,data/Fibrous meningioma/a19609ad-357f-11eb-9679-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19609b6-357f-11eb-be2e-001a7dda7111.ndpi,data/Fibrous meningioma/a19609b6-357f-11eb-be2e-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19609c0-357f-11eb-baff-001a7dda7111.ndpi,data/Fibrous meningioma/a19609c0-357f-11eb-baff-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196301a-357f-11eb-9f8c-001a7dda7111.ndpi,data/Fibrous meningioma/a196301a-357f-11eb-9f8c-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1963052-357f-11eb-850b-001a7dda7111.ndpi,data/Fibrous meningioma/a1963052-357f-11eb-850b-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196a52e-357f-11eb-96b9-001a7dda7111.ndpi,data/Fibrous meningioma/a196a52e-357f-11eb-96b9-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196a591-357f-11eb-9104-001a7dda7111.ndpi,data/Fibrous meningioma/a196a591-357f-11eb-9104-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196cc53-357f-11eb-a15a-001a7dda7111.ndpi,data/Fibrous meningioma/a196cc53-357f-11eb-a15a-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196cc98-357f-11eb-8658-001a7dda7111.ndpi,data/Fibrous meningioma/a196cc98-357f-11eb-8658-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196cca6-357f-11eb-b04c-001a7dda7111.ndpi,data/Fibrous meningioma/a196cca6-357f-11eb-b04c-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196f39c-357f-11eb-9dac-001a7dda7111.ndpi,data/Fibrous meningioma/a196f39c-357f-11eb-9dac-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a196f3bd-357f-11eb-b732-001a7dda7111.ndpi,data/Fibrous meningioma/a196f3bd-357f-11eb-b732-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1971a96-357f-11eb-867f-001a7dda7111.ndpi,data/Fibrous meningioma/a1971a96-357f-11eb-867f-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1971ada-357f-11eb-b186-001a7dda7111.ndpi,data/Fibrous meningioma/a1971ada-357f-11eb-b186-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1976891-357f-11eb-a7ae-001a7dda7111.ndpi,data/Fibrous meningioma/a1976891-357f-11eb-a7ae-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19768cc-357f-11eb-90b6-001a7dda7111.ndpi,data/Fibrous meningioma/a19768cc-357f-11eb-90b6-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19768cf-357f-11eb-9e26-001a7dda7111.ndpi,data/Fibrous meningioma/a19768cf-357f-11eb-9e26-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1978f98-357f-11eb-a256-001a7dda7111.ndpi,data/Fibrous meningioma/a1978f98-357f-11eb-a256-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1978fc8-357f-11eb-80f1-001a7dda7111.ndpi,data/Fibrous meningioma/a1978fc8-357f-11eb-80f1-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1978fe5-357f-11eb-bbc7-001a7dda7111.ndpi,data/Fibrous meningioma/a1978fe5-357f-11eb-bbc7-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197b6ad-357f-11eb-9071-001a7dda7111.ndpi,data/Fibrous meningioma/a197b6ad-357f-11eb-9071-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197b6b4-357f-11eb-bc7c-001a7dda7111.ndpi,data/Fibrous meningioma/a197b6b4-357f-11eb-bc7c-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197b6e9-357f-11eb-88af-001a7dda7111.ndpi,data/Fibrous meningioma/a197b6e9-357f-11eb-88af-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197b6eb-357f-11eb-85a2-001a7dda7111.ndpi,data/Fibrous meningioma/a197b6eb-357f-11eb-85a2-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197b709-357f-11eb-9f22-001a7dda7111.ndpi,data/Fibrous meningioma/a197b709-357f-11eb-9f22-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197ddb2-357f-11eb-944c-001a7dda7111.ndpi,data/Fibrous meningioma/a197ddb2-357f-11eb-944c-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197ddc0-357f-11eb-911d-001a7dda7111.ndpi,data/Fibrous meningioma/a197ddc0-357f-11eb-911d-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197ddc2-357f-11eb-9e9d-001a7dda7111.ndpi,data/Fibrous meningioma/a197ddc2-357f-11eb-9e9d-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a197de26-357f-11eb-8bc7-001a7dda7111.ndpi,data/Fibrous meningioma/a197de26-357f-11eb-8bc7-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19804d6-357f-11eb-ac3a-001a7dda7111.ndpi,data/Fibrous meningioma/a19804d6-357f-11eb-ac3a-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1980504-357f-11eb-b8bd-001a7dda7111.ndpi,data/Fibrous meningioma/a1980504-357f-11eb-b8bd-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1980521-357f-11eb-843d-001a7dda7111.ndpi,data/Fibrous meningioma/a1980521-357f-11eb-843d-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1980599-357f-11eb-9974-001a7dda7111.ndpi,data/Fibrous meningioma/a1980599-357f-11eb-9974-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a19805a9-357f-11eb-bc80-001a7dda7111.ndpi,data/Fibrous meningioma/a19805a9-357f-11eb-bc80-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982bd9-357f-11eb-909e-001a7dda7111.ndpi,data/Fibrous meningioma/a1982bd9-357f-11eb-909e-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982c2e-357f-11eb-a3ee-001a7dda7111.ndpi,data/Fibrous meningioma/a1982c2e-357f-11eb-a3ee-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982c30-357f-11eb-881f-001a7dda7111.ndpi,data/Fibrous meningioma/a1982c30-357f-11eb-881f-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982c6e-357f-11eb-9401-001a7dda7111.ndpi,data/Fibrous meningioma/a1982c6e-357f-11eb-9401-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982c7a-357f-11eb-a66a-001a7dda7111.ndpi,data/Fibrous meningioma/a1982c7a-357f-11eb-a66a-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982c87-357f-11eb-8d25-001a7dda7111.ndpi,data/Fibrous meningioma/a1982c87-357f-11eb-8d25-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a1982cad-357f-11eb-a623-001a7dda7111.ndpi,data/Fibrous meningioma/a1982cad-357f-11eb-a623-001a7dda7111.ndpi,Fibrous meningioma,15,Meningiomas,True
a194f786-357f-11eb-a621-001a7dda7111.ndpi,data/Anaplastic ependymoma/a194f786-357f-11eb-a621-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1951e89-357f-11eb-ad1d-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1951e89-357f-11eb-ad1d-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1951ec9-357f-11eb-a284-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1951ec9-357f-11eb-a284-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1951ee1-357f-11eb-8851-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1951ee1-357f-11eb-8851-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1951f16-357f-11eb-8970-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1951f16-357f-11eb-8970-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19545a7-357f-11eb-aaa9-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19545a7-357f-11eb-aaa9-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1956cbe-357f-11eb-a4d6-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1956cbe-357f-11eb-a4d6-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19593d4-357f-11eb-96f0-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19593d4-357f-11eb-96f0-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19593dc-357f-11eb-b050-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19593dc-357f-11eb-b050-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1959402-357f-11eb-ad26-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1959402-357f-11eb-ad26-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1959406-357f-11eb-8169-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1959406-357f-11eb-8169-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1959441-357f-11eb-8ec8-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1959441-357f-11eb-8ec8-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bae7-357f-11eb-82e7-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bae7-357f-11eb-82e7-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bb03-357f-11eb-b9ca-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bb03-357f-11eb-b9ca-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bb1d-357f-11eb-8b5d-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bb1d-357f-11eb-8b5d-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bb33-357f-11eb-8eca-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bb33-357f-11eb-8eca-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bb3d-357f-11eb-945d-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bb3d-357f-11eb-945d-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bb43-357f-11eb-bb04-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bb43-357f-11eb-bb04-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195bb50-357f-11eb-a733-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195bb50-357f-11eb-a733-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195e23a-357f-11eb-9ccf-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195e23a-357f-11eb-9ccf-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a195e244-357f-11eb-9c11-001a7dda7111.ndpi,data/Anaplastic ependymoma/a195e244-357f-11eb-9c11-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19608fb-357f-11eb-a882-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19608fb-357f-11eb-a882-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19609c2-357f-11eb-b7a5-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19609c2-357f-11eb-b7a5-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1963038-357f-11eb-b192-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1963038-357f-11eb-b192-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1965772-357f-11eb-a86c-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1965772-357f-11eb-a86c-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1965793-357f-11eb-862c-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1965793-357f-11eb-862c-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19657bc-357f-11eb-a0cf-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19657bc-357f-11eb-a0cf-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19657c3-357f-11eb-b222-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19657c3-357f-11eb-b222-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19657cb-357f-11eb-b345-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19657cb-357f-11eb-b345-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a196a52a-357f-11eb-a2d0-001a7dda7111.ndpi,data/Anaplastic ependymoma/a196a52a-357f-11eb-a2d0-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a196a561-357f-11eb-adc1-001a7dda7111.ndpi,data/Anaplastic ependymoma/a196a561-357f-11eb-adc1-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a196a59f-357f-11eb-9853-001a7dda7111.ndpi,data/Anaplastic ependymoma/a196a59f-357f-11eb-9853-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a196f393-357f-11eb-b659-001a7dda7111.ndpi,data/Anaplastic ependymoma/a196f393-357f-11eb-b659-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1971a8c-357f-11eb-9efa-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1971a8c-357f-11eb-9efa-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1971acc-357f-11eb-ba6a-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1971acc-357f-11eb-ba6a-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1971ad9-357f-11eb-b3e2-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1971ad9-357f-11eb-b3e2-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1971ade-357f-11eb-ba35-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1971ade-357f-11eb-ba35-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1971aea-357f-11eb-b830-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1971aea-357f-11eb-b830-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1978f82-357f-11eb-8b47-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1978f82-357f-11eb-8b47-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a197ddbe-357f-11eb-8e55-001a7dda7111.ndpi,data/Anaplastic ependymoma/a197ddbe-357f-11eb-8e55-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a197de07-357f-11eb-8007-001a7dda7111.ndpi,data/Anaplastic ependymoma/a197de07-357f-11eb-8007-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19804b5-357f-11eb-b64b-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19804b5-357f-11eb-b64b-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19804e7-357f-11eb-8822-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19804e7-357f-11eb-8822-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a19805c2-357f-11eb-bb8f-001a7dda7111.ndpi,data/Anaplastic ependymoma/a19805c2-357f-11eb-bb8f-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1982bdd-357f-11eb-a60b-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1982bdd-357f-11eb-a60b-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1982bf9-357f-11eb-890a-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1982bf9-357f-11eb-890a-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1982c39-357f-11eb-969b-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1982c39-357f-11eb-969b-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1982c43-357f-11eb-b5ea-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1982c43-357f-11eb-b5ea-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1982c56-357f-11eb-8852-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1982c56-357f-11eb-8852-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a1982c8a-357f-11eb-8e2d-001a7dda7111.ndpi,data/Anaplastic ependymoma/a1982c8a-357f-11eb-8e2d-001a7dda7111.ndpi,Anaplastic ependymoma,16,Ependymal Tumours,True
a194f795-357f-11eb-b390-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a194f795-357f-11eb-b390-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a194f797-357f-11eb-ab01-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a194f797-357f-11eb-ab01-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1951ecd-357f-11eb-af94-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1951ecd-357f-11eb-af94-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1951efa-357f-11eb-bfc3-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1951efa-357f-11eb-bfc3-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1951f01-357f-11eb-a6d9-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1951f01-357f-11eb-a6d9-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1954598-357f-11eb-998e-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1954598-357f-11eb-998e-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19593d9-357f-11eb-991f-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19593d9-357f-11eb-991f-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19593e4-357f-11eb-97a7-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19593e4-357f-11eb-97a7-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19593e9-357f-11eb-8689-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19593e9-357f-11eb-8689-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195badc-357f-11eb-a490-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195badc-357f-11eb-a490-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195bade-357f-11eb-96cc-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195bade-357f-11eb-96cc-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195bb0a-357f-11eb-b2b4-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195bb0a-357f-11eb-b2b4-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195bb36-357f-11eb-9bc5-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195bb36-357f-11eb-9bc5-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195bb38-357f-11eb-9fc4-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195bb38-357f-11eb-9fc4-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195bb3e-357f-11eb-820b-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195bb3e-357f-11eb-820b-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195e1d1-357f-11eb-8ab1-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195e1d1-357f-11eb-8ab1-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a195e20c-357f-11eb-a759-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a195e20c-357f-11eb-a759-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1960927-357f-11eb-ba11-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1960927-357f-11eb-ba11-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196099f-357f-11eb-b66d-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196099f-357f-11eb-b66d-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19609b0-357f-11eb-b110-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19609b0-357f-11eb-b110-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1963025-357f-11eb-9739-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1963025-357f-11eb-9739-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1965728-357f-11eb-88dd-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1965728-357f-11eb-88dd-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1965760-357f-11eb-932f-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1965760-357f-11eb-932f-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1967e6a-357f-11eb-94da-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1967e6a-357f-11eb-94da-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1967e7a-357f-11eb-a1b7-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1967e7a-357f-11eb-a1b7-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1967e7e-357f-11eb-a3ab-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1967e7e-357f-11eb-a3ab-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196a54e-357f-11eb-99e3-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196a54e-357f-11eb-99e3-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196a553-357f-11eb-8dbf-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196a553-357f-11eb-8dbf-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196a590-357f-11eb-906b-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196a590-357f-11eb-906b-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196cc52-357f-11eb-937c-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196cc52-357f-11eb-937c-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196cc82-357f-11eb-83a4-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196cc82-357f-11eb-83a4-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196cc9a-357f-11eb-ad98-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196cc9a-357f-11eb-ad98-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a196f384-357f-11eb-9308-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a196f384-357f-11eb-9308-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1971ae9-357f-11eb-8add-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1971ae9-357f-11eb-8add-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19741b9-357f-11eb-a4d9-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19741b9-357f-11eb-a4d9-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19741e2-357f-11eb-b5f8-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19741e2-357f-11eb-b5f8-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19768bd-357f-11eb-b613-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19768bd-357f-11eb-b613-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a197b6f4-357f-11eb-9919-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a197b6f4-357f-11eb-9919-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19804d4-357f-11eb-80ac-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19804d4-357f-11eb-80ac-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a198051d-357f-11eb-966f-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a198051d-357f-11eb-966f-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1980527-357f-11eb-b8ea-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1980527-357f-11eb-b8ea-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1980576-357f-11eb-95da-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1980576-357f-11eb-95da-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1982be0-357f-11eb-829a-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1982be0-357f-11eb-829a-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1982c46-357f-11eb-af02-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1982c46-357f-11eb-af02-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1982c5b-357f-11eb-a525-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1982c5b-357f-11eb-a525-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a1982c5f-357f-11eb-95e6-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a1982c5f-357f-11eb-95e6-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a19852e0-357f-11eb-8105-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-wildtype/a19852e0-357f-11eb-8105-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-wildtype",17,Adult-Type Diffuse Gliomas,True
a194f78f-357f-11eb-9c18-001a7dda7111.ndpi,data/Metastatic tumours/a194f78f-357f-11eb-9c18-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1951e87-357f-11eb-b99c-001a7dda7111.ndpi,data/Metastatic tumours/a1951e87-357f-11eb-b99c-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1951ea0-357f-11eb-be32-001a7dda7111.ndpi,data/Metastatic tumours/a1951ea0-357f-11eb-be32-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1951edb-357f-11eb-99e8-001a7dda7111.ndpi,data/Metastatic tumours/a1951edb-357f-11eb-99e8-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19545ee-357f-11eb-aeca-001a7dda7111.ndpi,data/Metastatic tumours/a19545ee-357f-11eb-aeca-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1956cc1-357f-11eb-b4c8-001a7dda7111.ndpi,data/Metastatic tumours/a1956cc1-357f-11eb-b4c8-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1959420-357f-11eb-99ed-001a7dda7111.ndpi,data/Metastatic tumours/a1959420-357f-11eb-99ed-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195942a-357f-11eb-9e21-001a7dda7111.ndpi,data/Metastatic tumours/a195942a-357f-11eb-9e21-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195bb3c-357f-11eb-b6da-001a7dda7111.ndpi,data/Metastatic tumours/a195bb3c-357f-11eb-b6da-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195e1eb-357f-11eb-9668-001a7dda7111.ndpi,data/Metastatic tumours/a195e1eb-357f-11eb-9668-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195e206-357f-11eb-b861-001a7dda7111.ndpi,data/Metastatic tumours/a195e206-357f-11eb-b861-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195e22b-357f-11eb-93f0-001a7dda7111.ndpi,data/Metastatic tumours/a195e22b-357f-11eb-93f0-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195e258-357f-11eb-bdca-001a7dda7111.ndpi,data/Metastatic tumours/a195e258-357f-11eb-bdca-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195e264-357f-11eb-9b07-001a7dda7111.ndpi,data/Metastatic tumours/a195e264-357f-11eb-9b07-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a195e274-357f-11eb-90eb-001a7dda7111.ndpi,data/Metastatic tumours/a195e274-357f-11eb-90eb-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19608f9-357f-11eb-9456-001a7dda7111.ndpi,data/Metastatic tumours/a19608f9-357f-11eb-9456-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1960943-357f-11eb-bd3a-001a7dda7111.ndpi,data/Metastatic tumours/a1960943-357f-11eb-bd3a-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a196570c-357f-11eb-b9c6-001a7dda7111.ndpi,data/Metastatic tumours/a196570c-357f-11eb-b9c6-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1965725-357f-11eb-9e8d-001a7dda7111.ndpi,data/Metastatic tumours/a1965725-357f-11eb-9e8d-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1965779-357f-11eb-9510-001a7dda7111.ndpi,data/Metastatic tumours/a1965779-357f-11eb-9510-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19657a7-357f-11eb-8e9c-001a7dda7111.ndpi,data/Metastatic tumours/a19657a7-357f-11eb-8e9c-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19657a9-357f-11eb-a516-001a7dda7111.ndpi,data/Metastatic tumours/a19657a9-357f-11eb-a516-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1967e74-357f-11eb-a2df-001a7dda7111.ndpi,data/Metastatic tumours/a1967e74-357f-11eb-a2df-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1967e81-357f-11eb-8aa9-001a7dda7111.ndpi,data/Metastatic tumours/a1967e81-357f-11eb-8aa9-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a196a53e-357f-11eb-b87a-001a7dda7111.ndpi,data/Metastatic tumours/a196a53e-357f-11eb-b87a-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a196a57d-357f-11eb-97f6-001a7dda7111.ndpi,data/Metastatic tumours/a196a57d-357f-11eb-97f6-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a196cc68-357f-11eb-b87a-001a7dda7111.ndpi,data/Metastatic tumours/a196cc68-357f-11eb-b87a-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a196f39d-357f-11eb-aff2-001a7dda7111.ndpi,data/Metastatic tumours/a196f39d-357f-11eb-aff2-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a196f3ba-357f-11eb-9e0d-001a7dda7111.ndpi,data/Metastatic tumours/a196f3ba-357f-11eb-9e0d-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1971a9f-357f-11eb-b02f-001a7dda7111.ndpi,data/Metastatic tumours/a1971a9f-357f-11eb-b02f-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19741be-357f-11eb-8624-001a7dda7111.ndpi,data/Metastatic tumours/a19741be-357f-11eb-8624-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1978fa6-357f-11eb-9792-001a7dda7111.ndpi,data/Metastatic tumours/a1978fa6-357f-11eb-9792-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a197b6be-357f-11eb-a6bb-001a7dda7111.ndpi,data/Metastatic tumours/a197b6be-357f-11eb-a6bb-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a197b6e1-357f-11eb-892b-001a7dda7111.ndpi,data/Metastatic tumours/a197b6e1-357f-11eb-892b-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a197ddf1-357f-11eb-aa92-001a7dda7111.ndpi,data/Metastatic tumours/a197ddf1-357f-11eb-aa92-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a197de03-357f-11eb-b83d-001a7dda7111.ndpi,data/Metastatic tumours/a197de03-357f-11eb-b83d-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a197de1a-357f-11eb-bc33-001a7dda7111.ndpi,data/Metastatic tumours/a197de1a-357f-11eb-bc33-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19804dc-357f-11eb-87cc-001a7dda7111.ndpi,data/Metastatic tumours/a19804dc-357f-11eb-87cc-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19804e9-357f-11eb-8069-001a7dda7111.ndpi,data/Metastatic tumours/a19804e9-357f-11eb-8069-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a19804f0-357f-11eb-aa79-001a7dda7111.ndpi,data/Metastatic tumours/a19804f0-357f-11eb-aa79-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1980508-357f-11eb-831f-001a7dda7111.ndpi,data/Metastatic tumours/a1980508-357f-11eb-831f-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a198053b-357f-11eb-94ca-001a7dda7111.ndpi,data/Metastatic tumours/a198053b-357f-11eb-94ca-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1982bec-357f-11eb-9691-001a7dda7111.ndpi,data/Metastatic tumours/a1982bec-357f-11eb-9691-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1982c07-357f-11eb-9c33-001a7dda7111.ndpi,data/Metastatic tumours/a1982c07-357f-11eb-9c33-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1982c23-357f-11eb-bf7f-001a7dda7111.ndpi,data/Metastatic tumours/a1982c23-357f-11eb-bf7f-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1982c32-357f-11eb-9f00-001a7dda7111.ndpi,data/Metastatic tumours/a1982c32-357f-11eb-9f00-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a1982c3f-357f-11eb-b812-001a7dda7111.ndpi,data/Metastatic tumours/a1982c3f-357f-11eb-b812-001a7dda7111.ndpi,Metastatic tumours,18,Metastatic Tumours,True
a194f784-357f-11eb-9bda-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a194f784-357f-11eb-9bda-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1951e9d-357f-11eb-a743-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1951e9d-357f-11eb-a743-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1951ed4-357f-11eb-b88a-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1951ed4-357f-11eb-b88a-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1956cd0-357f-11eb-9894-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1956cd0-357f-11eb-9894-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1959419-357f-11eb-b848-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1959419-357f-11eb-b848-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a195bac4-357f-11eb-94d4-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a195bac4-357f-11eb-94d4-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a195bb4e-357f-11eb-99dd-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a195bb4e-357f-11eb-99dd-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a195e1d4-357f-11eb-ae49-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a195e1d4-357f-11eb-ae49-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a195e218-357f-11eb-907e-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a195e218-357f-11eb-907e-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a19608fd-357f-11eb-8d12-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a19608fd-357f-11eb-8d12-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1960916-357f-11eb-a1ad-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1960916-357f-11eb-a1ad-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1962ff4-357f-11eb-b135-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1962ff4-357f-11eb-b135-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1963030-357f-11eb-ad27-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1963030-357f-11eb-ad27-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1963080-357f-11eb-b9e6-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1963080-357f-11eb-b9e6-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a19656f8-357f-11eb-85f7-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a19656f8-357f-11eb-85f7-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1965797-357f-11eb-bdba-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1965797-357f-11eb-bdba-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1967e68-357f-11eb-96dc-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1967e68-357f-11eb-96dc-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196a588-357f-11eb-b2ff-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196a588-357f-11eb-b2ff-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196a5a4-357f-11eb-8c79-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196a5a4-357f-11eb-8c79-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196a5be-357f-11eb-b81a-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196a5be-357f-11eb-b81a-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196cc64-357f-11eb-bb28-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196cc64-357f-11eb-bb28-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196cc81-357f-11eb-878a-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196cc81-357f-11eb-878a-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196f391-357f-11eb-b7f0-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196f391-357f-11eb-b7f0-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196f396-357f-11eb-92a6-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196f396-357f-11eb-92a6-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a196f3b3-357f-11eb-8493-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a196f3b3-357f-11eb-8493-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1971acf-357f-11eb-9081-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1971acf-357f-11eb-9081-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1976885-357f-11eb-8be2-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1976885-357f-11eb-8be2-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197689a-357f-11eb-a0a6-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197689a-357f-11eb-a0a6-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1978f8e-357f-11eb-847c-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1978f8e-357f-11eb-847c-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197b6d4-357f-11eb-8e4d-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197b6d4-357f-11eb-8e4d-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197b6f5-357f-11eb-85e9-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197b6f5-357f-11eb-85e9-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197ddd3-357f-11eb-a02c-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197ddd3-357f-11eb-a02c-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197ddd8-357f-11eb-b969-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197ddd8-357f-11eb-b969-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197ddda-357f-11eb-be61-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197ddda-357f-11eb-be61-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197dde2-357f-11eb-aa67-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197dde2-357f-11eb-aa67-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197ddfb-357f-11eb-aeeb-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197ddfb-357f-11eb-aeeb-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a197de14-357f-11eb-ba4d-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a197de14-357f-11eb-ba4d-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a19804c3-357f-11eb-a40f-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a19804c3-357f-11eb-a40f-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a19804f3-357f-11eb-a639-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a19804f3-357f-11eb-a639-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1980557-357f-11eb-9c85-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1980557-357f-11eb-9c85-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1980559-357f-11eb-befd-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1980559-357f-11eb-befd-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a198056e-357f-11eb-8922-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a198056e-357f-11eb-8922-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a19805a8-357f-11eb-a95f-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a19805a8-357f-11eb-a95f-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a19805ad-357f-11eb-85dc-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a19805ad-357f-11eb-85dc-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1982be5-357f-11eb-84d2-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1982be5-357f-11eb-84d2-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1982c6a-357f-11eb-9ec7-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1982c6a-357f-11eb-9ec7-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1982ca2-357f-11eb-9c51-001a7dda7111.ndpi,data/Anaplastic astrocytoma IDH-mutant/a1982ca2-357f-11eb-9c51-001a7dda7111.ndpi,"Anaplastic astrocytoma, IDH-mutant",19,Adult-Type Diffuse Gliomas,True
a1951eaf-357f-11eb-8404-001a7dda7111.ndpi,data/Ependymoma/a1951eaf-357f-11eb-8404-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1951ec3-357f-11eb-aa65-001a7dda7111.ndpi,data/Ependymoma/a1951ec3-357f-11eb-aa65-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1951f0e-357f-11eb-aa2d-001a7dda7111.ndpi,data/Ependymoma/a1951f0e-357f-11eb-aa2d-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19545ab-357f-11eb-a773-001a7dda7111.ndpi,data/Ependymoma/a19545ab-357f-11eb-a773-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19545bc-357f-11eb-ba8b-001a7dda7111.ndpi,data/Ependymoma/a19545bc-357f-11eb-ba8b-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1954604-357f-11eb-81eb-001a7dda7111.ndpi,data/Ependymoma/a1954604-357f-11eb-81eb-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1956cfd-357f-11eb-93d1-001a7dda7111.ndpi,data/Ependymoma/a1956cfd-357f-11eb-93d1-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19593de-357f-11eb-916d-001a7dda7111.ndpi,data/Ependymoma/a19593de-357f-11eb-916d-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a195943d-357f-11eb-a3c7-001a7dda7111.ndpi,data/Ependymoma/a195943d-357f-11eb-a3c7-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a195bac0-357f-11eb-8feb-001a7dda7111.ndpi,data/Ependymoma/a195bac0-357f-11eb-8feb-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a195bb28-357f-11eb-a964-001a7dda7111.ndpi,data/Ependymoma/a195bb28-357f-11eb-a964-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a195bb30-357f-11eb-bd72-001a7dda7111.ndpi,data/Ependymoma/a195bb30-357f-11eb-bd72-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a195e208-357f-11eb-bcb1-001a7dda7111.ndpi,data/Ependymoma/a195e208-357f-11eb-bcb1-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196098a-357f-11eb-ab01-001a7dda7111.ndpi,data/Ependymoma/a196098a-357f-11eb-ab01-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1963033-357f-11eb-a92a-001a7dda7111.ndpi,data/Ependymoma/a1963033-357f-11eb-a92a-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1965706-357f-11eb-82db-001a7dda7111.ndpi,data/Ependymoma/a1965706-357f-11eb-82db-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196572e-357f-11eb-ad94-001a7dda7111.ndpi,data/Ependymoma/a196572e-357f-11eb-ad94-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1965747-357f-11eb-8dba-001a7dda7111.ndpi,data/Ependymoma/a1965747-357f-11eb-8dba-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1967e93-357f-11eb-99a5-001a7dda7111.ndpi,data/Ependymoma/a1967e93-357f-11eb-99a5-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1967e96-357f-11eb-a5b4-001a7dda7111.ndpi,data/Ependymoma/a1967e96-357f-11eb-a5b4-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1967ea6-357f-11eb-b8fa-001a7dda7111.ndpi,data/Ependymoma/a1967ea6-357f-11eb-b8fa-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196a565-357f-11eb-bae6-001a7dda7111.ndpi,data/Ependymoma/a196a565-357f-11eb-bae6-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196a570-357f-11eb-8097-001a7dda7111.ndpi,data/Ependymoma/a196a570-357f-11eb-8097-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196a58a-357f-11eb-afb9-001a7dda7111.ndpi,data/Ependymoma/a196a58a-357f-11eb-afb9-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196a5bb-357f-11eb-8455-001a7dda7111.ndpi,data/Ependymoma/a196a5bb-357f-11eb-8455-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196cc60-357f-11eb-8256-001a7dda7111.ndpi,data/Ependymoma/a196cc60-357f-11eb-8256-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196cca3-357f-11eb-bbf5-001a7dda7111.ndpi,data/Ependymoma/a196cca3-357f-11eb-bbf5-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196f372-357f-11eb-8415-001a7dda7111.ndpi,data/Ependymoma/a196f372-357f-11eb-8415-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a196f37f-357f-11eb-bd97-001a7dda7111.ndpi,data/Ependymoma/a196f37f-357f-11eb-bd97-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1971abd-357f-11eb-9051-001a7dda7111.ndpi,data/Ependymoma/a1971abd-357f-11eb-9051-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1971acb-357f-11eb-ae7e-001a7dda7111.ndpi,data/Ependymoma/a1971acb-357f-11eb-ae7e-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1978f8f-357f-11eb-b2bd-001a7dda7111.ndpi,data/Ependymoma/a1978f8f-357f-11eb-b2bd-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1978fc0-357f-11eb-bd4e-001a7dda7111.ndpi,data/Ependymoma/a1978fc0-357f-11eb-bd4e-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1978fee-357f-11eb-ab78-001a7dda7111.ndpi,data/Ependymoma/a1978fee-357f-11eb-ab78-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19804c2-357f-11eb-b5f8-001a7dda7111.ndpi,data/Ependymoma/a19804c2-357f-11eb-b5f8-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a198050a-357f-11eb-af60-001a7dda7111.ndpi,data/Ependymoma/a198050a-357f-11eb-af60-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19805b1-357f-11eb-8f13-001a7dda7111.ndpi,data/Ependymoma/a19805b1-357f-11eb-8f13-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19805b3-357f-11eb-8e2f-001a7dda7111.ndpi,data/Ependymoma/a19805b3-357f-11eb-8e2f-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1982bf1-357f-11eb-a8b6-001a7dda7111.ndpi,data/Ependymoma/a1982bf1-357f-11eb-a8b6-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1982bff-357f-11eb-aa7a-001a7dda7111.ndpi,data/Ependymoma/a1982bff-357f-11eb-aa7a-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1982c22-357f-11eb-87b8-001a7dda7111.ndpi,data/Ependymoma/a1982c22-357f-11eb-87b8-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1982c66-357f-11eb-9a63-001a7dda7111.ndpi,data/Ependymoma/a1982c66-357f-11eb-9a63-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1982c73-357f-11eb-abad-001a7dda7111.ndpi,data/Ependymoma/a1982c73-357f-11eb-abad-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1982cb0-357f-11eb-94cd-001a7dda7111.ndpi,data/Ependymoma/a1982cb0-357f-11eb-94cd-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19852e4-357f-11eb-b951-001a7dda7111.ndpi,data/Ependymoma/a19852e4-357f-11eb-b951-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a19852f9-357f-11eb-8d19-001a7dda7111.ndpi,data/Ependymoma/a19852f9-357f-11eb-8d19-001a7dda7111.ndpi,Ependymoma,20,Ependymal Tumours,True
a1951f08-357f-11eb-9c2b-001a7dda7111.ndpi,data/Anaplastic meningioma/a1951f08-357f-11eb-9c2b-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19545a2-357f-11eb-911d-001a7dda7111.ndpi,data/Anaplastic meningioma/a19545a2-357f-11eb-911d-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19545b4-357f-11eb-a348-001a7dda7111.ndpi,data/Anaplastic meningioma/a19545b4-357f-11eb-a348-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19545e0-357f-11eb-b907-001a7dda7111.ndpi,data/Anaplastic meningioma/a19545e0-357f-11eb-b907-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19545ff-357f-11eb-820d-001a7dda7111.ndpi,data/Anaplastic meningioma/a19545ff-357f-11eb-820d-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1956cef-357f-11eb-b3b2-001a7dda7111.ndpi,data/Anaplastic meningioma/a1956cef-357f-11eb-b3b2-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1956d01-357f-11eb-9e99-001a7dda7111.ndpi,data/Anaplastic meningioma/a1956d01-357f-11eb-9e99-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1956d08-357f-11eb-95cd-001a7dda7111.ndpi,data/Anaplastic meningioma/a1956d08-357f-11eb-95cd-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1959405-357f-11eb-8575-001a7dda7111.ndpi,data/Anaplastic meningioma/a1959405-357f-11eb-8575-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a195942b-357f-11eb-b3a5-001a7dda7111.ndpi,data/Anaplastic meningioma/a195942b-357f-11eb-b3a5-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a195e1dc-357f-11eb-be20-001a7dda7111.ndpi,data/Anaplastic meningioma/a195e1dc-357f-11eb-be20-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a195e260-357f-11eb-9498-001a7dda7111.ndpi,data/Anaplastic meningioma/a195e260-357f-11eb-9498-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19608ee-357f-11eb-a75f-001a7dda7111.ndpi,data/Anaplastic meningioma/a19608ee-357f-11eb-a75f-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1960903-357f-11eb-9ade-001a7dda7111.ndpi,data/Anaplastic meningioma/a1960903-357f-11eb-9ade-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1960983-357f-11eb-8b41-001a7dda7111.ndpi,data/Anaplastic meningioma/a1960983-357f-11eb-8b41-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19609a1-357f-11eb-8049-001a7dda7111.ndpi,data/Anaplastic meningioma/a19609a1-357f-11eb-8049-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1963002-357f-11eb-8857-001a7dda7111.ndpi,data/Anaplastic meningioma/a1963002-357f-11eb-8857-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1963041-357f-11eb-8eeb-001a7dda7111.ndpi,data/Anaplastic meningioma/a1963041-357f-11eb-8eeb-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1963059-357f-11eb-88b6-001a7dda7111.ndpi,data/Anaplastic meningioma/a1963059-357f-11eb-88b6-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a196305f-357f-11eb-9b33-001a7dda7111.ndpi,data/Anaplastic meningioma/a196305f-357f-11eb-9b33-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1965778-357f-11eb-b5c0-001a7dda7111.ndpi,data/Anaplastic meningioma/a1965778-357f-11eb-b5c0-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a196a57e-357f-11eb-b7f1-001a7dda7111.ndpi,data/Anaplastic meningioma/a196a57e-357f-11eb-b7f1-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a196cc5c-357f-11eb-a462-001a7dda7111.ndpi,data/Anaplastic meningioma/a196cc5c-357f-11eb-a462-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a196cc6d-357f-11eb-b680-001a7dda7111.ndpi,data/Anaplastic meningioma/a196cc6d-357f-11eb-b680-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a196cc87-357f-11eb-92a5-001a7dda7111.ndpi,data/Anaplastic meningioma/a196cc87-357f-11eb-92a5-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a196f367-357f-11eb-8147-001a7dda7111.ndpi,data/Anaplastic meningioma/a196f367-357f-11eb-8147-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1971a9c-357f-11eb-9d05-001a7dda7111.ndpi,data/Anaplastic meningioma/a1971a9c-357f-11eb-9d05-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1971aa9-357f-11eb-a46f-001a7dda7111.ndpi,data/Anaplastic meningioma/a1971aa9-357f-11eb-a46f-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1971ab6-357f-11eb-b206-001a7dda7111.ndpi,data/Anaplastic meningioma/a1971ab6-357f-11eb-b206-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19741e3-357f-11eb-8700-001a7dda7111.ndpi,data/Anaplastic meningioma/a19741e3-357f-11eb-8700-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19768d1-357f-11eb-9ce1-001a7dda7111.ndpi,data/Anaplastic meningioma/a19768d1-357f-11eb-9ce1-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1978fb2-357f-11eb-b014-001a7dda7111.ndpi,data/Anaplastic meningioma/a1978fb2-357f-11eb-b014-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1978ff2-357f-11eb-a06d-001a7dda7111.ndpi,data/Anaplastic meningioma/a1978ff2-357f-11eb-a06d-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a197b6bd-357f-11eb-b967-001a7dda7111.ndpi,data/Anaplastic meningioma/a197b6bd-357f-11eb-b967-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a197b6c0-357f-11eb-bf8b-001a7dda7111.ndpi,data/Anaplastic meningioma/a197b6c0-357f-11eb-bf8b-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a197b6e6-357f-11eb-8501-001a7dda7111.ndpi,data/Anaplastic meningioma/a197b6e6-357f-11eb-8501-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a197ddd4-357f-11eb-acdb-001a7dda7111.ndpi,data/Anaplastic meningioma/a197ddd4-357f-11eb-acdb-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a197ddeb-357f-11eb-889a-001a7dda7111.ndpi,data/Anaplastic meningioma/a197ddeb-357f-11eb-889a-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a197de32-357f-11eb-b9fe-001a7dda7111.ndpi,data/Anaplastic meningioma/a197de32-357f-11eb-b9fe-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1980509-357f-11eb-b170-001a7dda7111.ndpi,data/Anaplastic meningioma/a1980509-357f-11eb-b170-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a198057d-357f-11eb-90dc-001a7dda7111.ndpi,data/Anaplastic meningioma/a198057d-357f-11eb-90dc-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19805ae-357f-11eb-aede-001a7dda7111.ndpi,data/Anaplastic meningioma/a19805ae-357f-11eb-aede-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a19805bf-357f-11eb-90ad-001a7dda7111.ndpi,data/Anaplastic meningioma/a19805bf-357f-11eb-90ad-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1982bd1-357f-11eb-afee-001a7dda7111.ndpi,data/Anaplastic meningioma/a1982bd1-357f-11eb-afee-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1982c14-357f-11eb-a4a0-001a7dda7111.ndpi,data/Anaplastic meningioma/a1982c14-357f-11eb-a4a0-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1982c64-357f-11eb-909a-001a7dda7111.ndpi,data/Anaplastic meningioma/a1982c64-357f-11eb-909a-001a7dda7111.ndpi,Anaplastic meningioma,21,Meningiomas,True
a1951f06-357f-11eb-99ec-001a7dda7111.ndpi,data/Secretory meningioma/a1951f06-357f-11eb-99ec-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1951f0f-357f-11eb-9279-001a7dda7111.ndpi,data/Secretory meningioma/a1951f0f-357f-11eb-9279-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19545a9-357f-11eb-9d2c-001a7dda7111.ndpi,data/Secretory meningioma/a19545a9-357f-11eb-9d2c-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19545bb-357f-11eb-9650-001a7dda7111.ndpi,data/Secretory meningioma/a19545bb-357f-11eb-9650-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1956cfc-357f-11eb-855e-001a7dda7111.ndpi,data/Secretory meningioma/a1956cfc-357f-11eb-855e-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1959408-357f-11eb-aef5-001a7dda7111.ndpi,data/Secretory meningioma/a1959408-357f-11eb-aef5-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a195bb14-357f-11eb-bb26-001a7dda7111.ndpi,data/Secretory meningioma/a195bb14-357f-11eb-bb26-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a195bb41-357f-11eb-8921-001a7dda7111.ndpi,data/Secretory meningioma/a195bb41-357f-11eb-8921-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a195bb46-357f-11eb-b4f6-001a7dda7111.ndpi,data/Secretory meningioma/a195bb46-357f-11eb-b4f6-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a195e1ec-357f-11eb-b3c6-001a7dda7111.ndpi,data/Secretory meningioma/a195e1ec-357f-11eb-b3c6-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a195e1f2-357f-11eb-90e7-001a7dda7111.ndpi,data/Secretory meningioma/a195e1f2-357f-11eb-90e7-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a195e26f-357f-11eb-8a2e-001a7dda7111.ndpi,data/Secretory meningioma/a195e26f-357f-11eb-8a2e-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1960935-357f-11eb-9ee8-001a7dda7111.ndpi,data/Secretory meningioma/a1960935-357f-11eb-9ee8-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196095c-357f-11eb-8aa1-001a7dda7111.ndpi,data/Secretory meningioma/a196095c-357f-11eb-8aa1-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196096f-357f-11eb-adc3-001a7dda7111.ndpi,data/Secretory meningioma/a196096f-357f-11eb-adc3-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1960988-357f-11eb-8dfb-001a7dda7111.ndpi,data/Secretory meningioma/a1960988-357f-11eb-8dfb-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1965710-357f-11eb-9c08-001a7dda7111.ndpi,data/Secretory meningioma/a1965710-357f-11eb-9c08-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196579f-357f-11eb-adb5-001a7dda7111.ndpi,data/Secretory meningioma/a196579f-357f-11eb-adb5-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19657b8-357f-11eb-977b-001a7dda7111.ndpi,data/Secretory meningioma/a19657b8-357f-11eb-977b-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1967e99-357f-11eb-8469-001a7dda7111.ndpi,data/Secretory meningioma/a1967e99-357f-11eb-8469-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196a56e-357f-11eb-a3cc-001a7dda7111.ndpi,data/Secretory meningioma/a196a56e-357f-11eb-a3cc-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196a5b7-357f-11eb-9961-001a7dda7111.ndpi,data/Secretory meningioma/a196a5b7-357f-11eb-9961-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196cc7c-357f-11eb-ba3c-001a7dda7111.ndpi,data/Secretory meningioma/a196cc7c-357f-11eb-ba3c-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196f373-357f-11eb-855d-001a7dda7111.ndpi,data/Secretory meningioma/a196f373-357f-11eb-855d-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196f38c-357f-11eb-b1a9-001a7dda7111.ndpi,data/Secretory meningioma/a196f38c-357f-11eb-b1a9-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a196f3b1-357f-11eb-8bf4-001a7dda7111.ndpi,data/Secretory meningioma/a196f3b1-357f-11eb-8bf4-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1971abc-357f-11eb-9089-001a7dda7111.ndpi,data/Secretory meningioma/a1971abc-357f-11eb-9089-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19741d1-357f-11eb-b961-001a7dda7111.ndpi,data/Secretory meningioma/a19741d1-357f-11eb-b961-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19741d3-357f-11eb-8af0-001a7dda7111.ndpi,data/Secretory meningioma/a19741d3-357f-11eb-8af0-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19741d8-357f-11eb-ada3-001a7dda7111.ndpi,data/Secretory meningioma/a19741d8-357f-11eb-ada3-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19741dc-357f-11eb-9c0d-001a7dda7111.ndpi,data/Secretory meningioma/a19741dc-357f-11eb-9c0d-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19768a5-357f-11eb-a9e4-001a7dda7111.ndpi,data/Secretory meningioma/a19768a5-357f-11eb-a9e4-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19768d3-357f-11eb-bd86-001a7dda7111.ndpi,data/Secretory meningioma/a19768d3-357f-11eb-bd86-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1978ff6-357f-11eb-af6c-001a7dda7111.ndpi,data/Secretory meningioma/a1978ff6-357f-11eb-af6c-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a197b6ef-357f-11eb-bc7e-001a7dda7111.ndpi,data/Secretory meningioma/a197b6ef-357f-11eb-bc7e-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a197dde0-357f-11eb-ba25-001a7dda7111.ndpi,data/Secretory meningioma/a197dde0-357f-11eb-ba25-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a197de0a-357f-11eb-8d05-001a7dda7111.ndpi,data/Secretory meningioma/a197de0a-357f-11eb-8d05-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19804cc-357f-11eb-8e5b-001a7dda7111.ndpi,data/Secretory meningioma/a19804cc-357f-11eb-8e5b-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1980541-357f-11eb-be83-001a7dda7111.ndpi,data/Secretory meningioma/a1980541-357f-11eb-be83-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a19805b0-357f-11eb-804c-001a7dda7111.ndpi,data/Secretory meningioma/a19805b0-357f-11eb-804c-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1982c38-357f-11eb-8001-001a7dda7111.ndpi,data/Secretory meningioma/a1982c38-357f-11eb-8001-001a7dda7111.ndpi,Secretory meningioma,22,Meningiomas,True
a1951f20-357f-11eb-a713-001a7dda7111.ndpi,data/Lipoma/a1951f20-357f-11eb-a713-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1951f28-357f-11eb-a7b9-001a7dda7111.ndpi,data/Lipoma/a1951f28-357f-11eb-a7b9-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a195459c-357f-11eb-b923-001a7dda7111.ndpi,data/Lipoma/a195459c-357f-11eb-b923-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19593ca-357f-11eb-b3a2-001a7dda7111.ndpi,data/Lipoma/a19593ca-357f-11eb-b3a2-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19593d3-357f-11eb-9c86-001a7dda7111.ndpi,data/Lipoma/a19593d3-357f-11eb-9c86-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19593f7-357f-11eb-a24a-001a7dda7111.ndpi,data/Lipoma/a19593f7-357f-11eb-a24a-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a195941f-357f-11eb-80b2-001a7dda7111.ndpi,data/Lipoma/a195941f-357f-11eb-80b2-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1959445-357f-11eb-bd70-001a7dda7111.ndpi,data/Lipoma/a1959445-357f-11eb-bd70-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a195bae4-357f-11eb-b226-001a7dda7111.ndpi,data/Lipoma/a195bae4-357f-11eb-b226-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a195e20b-357f-11eb-b1d0-001a7dda7111.ndpi,data/Lipoma/a195e20b-357f-11eb-b1d0-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1960966-357f-11eb-93fe-001a7dda7111.ndpi,data/Lipoma/a1960966-357f-11eb-93fe-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19609a2-357f-11eb-a567-001a7dda7111.ndpi,data/Lipoma/a19609a2-357f-11eb-a567-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1963027-357f-11eb-9050-001a7dda7111.ndpi,data/Lipoma/a1963027-357f-11eb-9050-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1963057-357f-11eb-94d4-001a7dda7111.ndpi,data/Lipoma/a1963057-357f-11eb-94d4-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1963078-357f-11eb-bbad-001a7dda7111.ndpi,data/Lipoma/a1963078-357f-11eb-bbad-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19657d2-357f-11eb-bba4-001a7dda7111.ndpi,data/Lipoma/a19657d2-357f-11eb-bba4-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1967e55-357f-11eb-854e-001a7dda7111.ndpi,data/Lipoma/a1967e55-357f-11eb-854e-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1967e73-357f-11eb-a383-001a7dda7111.ndpi,data/Lipoma/a1967e73-357f-11eb-a383-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1967e94-357f-11eb-9f87-001a7dda7111.ndpi,data/Lipoma/a1967e94-357f-11eb-9f87-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a196a545-357f-11eb-abc1-001a7dda7111.ndpi,data/Lipoma/a196a545-357f-11eb-abc1-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a196f378-357f-11eb-b3a0-001a7dda7111.ndpi,data/Lipoma/a196f378-357f-11eb-b3a0-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a196f3b8-357f-11eb-89ec-001a7dda7111.ndpi,data/Lipoma/a196f3b8-357f-11eb-89ec-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a196f3cc-357f-11eb-8c1a-001a7dda7111.ndpi,data/Lipoma/a196f3cc-357f-11eb-8c1a-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1971ac1-357f-11eb-9731-001a7dda7111.ndpi,data/Lipoma/a1971ac1-357f-11eb-9731-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1971ae7-357f-11eb-90a4-001a7dda7111.ndpi,data/Lipoma/a1971ae7-357f-11eb-90a4-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19741a3-357f-11eb-a928-001a7dda7111.ndpi,data/Lipoma/a19741a3-357f-11eb-a928-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19741a8-357f-11eb-9cb6-001a7dda7111.ndpi,data/Lipoma/a19741a8-357f-11eb-9cb6-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19741fa-357f-11eb-813a-001a7dda7111.ndpi,data/Lipoma/a19741fa-357f-11eb-813a-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1974203-357f-11eb-a761-001a7dda7111.ndpi,data/Lipoma/a1974203-357f-11eb-a761-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a19768c5-357f-11eb-a2b7-001a7dda7111.ndpi,data/Lipoma/a19768c5-357f-11eb-a2b7-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1978fa0-357f-11eb-8e69-001a7dda7111.ndpi,data/Lipoma/a1978fa0-357f-11eb-8e69-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1978fb9-357f-11eb-9701-001a7dda7111.ndpi,data/Lipoma/a1978fb9-357f-11eb-9701-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6b9-357f-11eb-861b-001a7dda7111.ndpi,data/Lipoma/a197b6b9-357f-11eb-861b-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1980581-357f-11eb-bf12-001a7dda7111.ndpi,data/Lipoma/a1980581-357f-11eb-bf12-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a198058d-357f-11eb-b618-001a7dda7111.ndpi,data/Lipoma/a198058d-357f-11eb-b618-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c24-357f-11eb-94fe-001a7dda7111.ndpi,data/Lipoma/a1982c24-357f-11eb-94fe-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c4b-357f-11eb-b734-001a7dda7111.ndpi,data/Lipoma/a1982c4b-357f-11eb-b734-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c80-357f-11eb-b971-001a7dda7111.ndpi,data/Lipoma/a1982c80-357f-11eb-b971-001a7dda7111.ndpi,Lipoma,23,"Mesenchymal, Non-Meningothelial Tumours",True
a1951eb9-357f-11eb-8c69-001a7dda7111.ndpi,data/Haemangiopericytoma/a1951eb9-357f-11eb-8c69-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1951ec0-357f-11eb-b901-001a7dda7111.ndpi,data/Haemangiopericytoma/a1951ec0-357f-11eb-b901-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1951f14-357f-11eb-9d3d-001a7dda7111.ndpi,data/Haemangiopericytoma/a1951f14-357f-11eb-9d3d-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a19545d6-357f-11eb-a5cd-001a7dda7111.ndpi,data/Haemangiopericytoma/a19545d6-357f-11eb-a5cd-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a19545e6-357f-11eb-be2e-001a7dda7111.ndpi,data/Haemangiopericytoma/a19545e6-357f-11eb-be2e-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1956cc3-357f-11eb-bef2-001a7dda7111.ndpi,data/Haemangiopericytoma/a1956cc3-357f-11eb-bef2-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1956cc7-357f-11eb-88c4-001a7dda7111.ndpi,data/Haemangiopericytoma/a1956cc7-357f-11eb-88c4-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a195940d-357f-11eb-b86c-001a7dda7111.ndpi,data/Haemangiopericytoma/a195940d-357f-11eb-b86c-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a195baff-357f-11eb-ac28-001a7dda7111.ndpi,data/Haemangiopericytoma/a195baff-357f-11eb-ac28-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a195bb15-357f-11eb-b8a2-001a7dda7111.ndpi,data/Haemangiopericytoma/a195bb15-357f-11eb-b8a2-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a195e21d-357f-11eb-9230-001a7dda7111.ndpi,data/Haemangiopericytoma/a195e21d-357f-11eb-9230-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a195e253-357f-11eb-8776-001a7dda7111.ndpi,data/Haemangiopericytoma/a195e253-357f-11eb-8776-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a19608ea-357f-11eb-8756-001a7dda7111.ndpi,data/Haemangiopericytoma/a19608ea-357f-11eb-8756-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196093d-357f-11eb-8e09-001a7dda7111.ndpi,data/Haemangiopericytoma/a196093d-357f-11eb-8e09-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1960990-357f-11eb-a089-001a7dda7111.ndpi,data/Haemangiopericytoma/a1960990-357f-11eb-a089-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196302f-357f-11eb-b9cf-001a7dda7111.ndpi,data/Haemangiopericytoma/a196302f-357f-11eb-b9cf-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1965729-357f-11eb-b11d-001a7dda7111.ndpi,data/Haemangiopericytoma/a1965729-357f-11eb-b11d-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1965731-357f-11eb-bfc3-001a7dda7111.ndpi,data/Haemangiopericytoma/a1965731-357f-11eb-bfc3-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1965734-357f-11eb-a721-001a7dda7111.ndpi,data/Haemangiopericytoma/a1965734-357f-11eb-a721-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196574d-357f-11eb-9a80-001a7dda7111.ndpi,data/Haemangiopericytoma/a196574d-357f-11eb-9a80-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1965787-357f-11eb-9302-001a7dda7111.ndpi,data/Haemangiopericytoma/a1965787-357f-11eb-9302-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196578d-357f-11eb-a976-001a7dda7111.ndpi,data/Haemangiopericytoma/a196578d-357f-11eb-a976-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196f36a-357f-11eb-a049-001a7dda7111.ndpi,data/Haemangiopericytoma/a196f36a-357f-11eb-a049-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196f37d-357f-11eb-96d4-001a7dda7111.ndpi,data/Haemangiopericytoma/a196f37d-357f-11eb-96d4-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a196f3d2-357f-11eb-af45-001a7dda7111.ndpi,data/Haemangiopericytoma/a196f3d2-357f-11eb-af45-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1971ae0-357f-11eb-ac5b-001a7dda7111.ndpi,data/Haemangiopericytoma/a1971ae0-357f-11eb-ac5b-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1971ae4-357f-11eb-93f2-001a7dda7111.ndpi,data/Haemangiopericytoma/a1971ae4-357f-11eb-93f2-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a19768a4-357f-11eb-b972-001a7dda7111.ndpi,data/Haemangiopericytoma/a19768a4-357f-11eb-b972-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6fd-357f-11eb-b8c3-001a7dda7111.ndpi,data/Haemangiopericytoma/a197b6fd-357f-11eb-b8c3-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a19804b6-357f-11eb-b1e2-001a7dda7111.ndpi,data/Haemangiopericytoma/a19804b6-357f-11eb-b1e2-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a198051f-357f-11eb-8b05-001a7dda7111.ndpi,data/Haemangiopericytoma/a198051f-357f-11eb-8b05-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a198055f-357f-11eb-90a5-001a7dda7111.ndpi,data/Haemangiopericytoma/a198055f-357f-11eb-90a5-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1982bd2-357f-11eb-8257-001a7dda7111.ndpi,data/Haemangiopericytoma/a1982bd2-357f-11eb-8257-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c37-357f-11eb-8061-001a7dda7111.ndpi,data/Haemangiopericytoma/a1982c37-357f-11eb-8061-001a7dda7111.ndpi,Haemangiopericytoma,24,"Mesenchymal, Non-Meningothelial Tumours",True
a1951ea8-357f-11eb-904f-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1951ea8-357f-11eb-904f-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1951f03-357f-11eb-bdcc-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1951f03-357f-11eb-bdcc-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1956cc4-357f-11eb-ac83-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1956cc4-357f-11eb-ac83-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1956d10-357f-11eb-aa4e-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1956d10-357f-11eb-aa4e-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1959430-357f-11eb-a247-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1959430-357f-11eb-a247-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1959438-357f-11eb-af8c-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1959438-357f-11eb-af8c-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195bacd-357f-11eb-bd17-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195bacd-357f-11eb-bd17-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195bae3-357f-11eb-b1e7-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195bae3-357f-11eb-b1e7-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195baf5-357f-11eb-9e7a-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195baf5-357f-11eb-9e7a-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195bb44-357f-11eb-b1e1-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195bb44-357f-11eb-b1e1-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195e1d0-357f-11eb-bc03-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195e1d0-357f-11eb-bc03-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195e1df-357f-11eb-a578-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195e1df-357f-11eb-a578-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a195e226-357f-11eb-815b-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a195e226-357f-11eb-815b-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1963014-357f-11eb-95f2-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1963014-357f-11eb-95f2-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1963024-357f-11eb-8f7d-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1963024-357f-11eb-8f7d-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1965708-357f-11eb-988d-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1965708-357f-11eb-988d-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1965752-357f-11eb-91da-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1965752-357f-11eb-91da-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1965770-357f-11eb-b69a-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1965770-357f-11eb-b69a-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a196a593-357f-11eb-9015-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a196a593-357f-11eb-9015-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a196f3bf-357f-11eb-a443-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a196f3bf-357f-11eb-a443-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a197687f-357f-11eb-82e0-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a197687f-357f-11eb-82e0-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a19768be-357f-11eb-9ddd-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a19768be-357f-11eb-9ddd-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1978fc1-357f-11eb-9690-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1978fc1-357f-11eb-9690-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1978fc9-357f-11eb-a5a0-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1978fc9-357f-11eb-a5a0-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a197b710-357f-11eb-92df-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a197b710-357f-11eb-92df-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a197de29-357f-11eb-bdae-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a197de29-357f-11eb-bdae-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a197de2c-357f-11eb-9fec-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a197de2c-357f-11eb-9fec-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a19804ee-357f-11eb-8016-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a19804ee-357f-11eb-8016-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a198059f-357f-11eb-8991-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a198059f-357f-11eb-8991-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a19805b5-357f-11eb-ae9c-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a19805b5-357f-11eb-ae9c-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1982c0a-357f-11eb-bff8-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1982c0a-357f-11eb-bff8-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1982c50-357f-11eb-900d-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1982c50-357f-11eb-900d-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1982c51-357f-11eb-a788-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1982c51-357f-11eb-a788-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a1982c61-357f-11eb-b540-001a7dda7111.ndpi,data/Glioblastoma IDH-mutant/a1982c61-357f-11eb-b540-001a7dda7111.ndpi,"Glioblastoma, IDH-mutant",25,Adult-Type Diffuse Gliomas,True
a194f789-357f-11eb-933d-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a194f789-357f-11eb-933d-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1951e8b-357f-11eb-ac37-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1951e8b-357f-11eb-ac37-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1951ec8-357f-11eb-98e8-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1951ec8-357f-11eb-98e8-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1956cd9-357f-11eb-8bf1-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1956cd9-357f-11eb-8bf1-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1956d0e-357f-11eb-b1f2-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1956d0e-357f-11eb-b1f2-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a195e224-357f-11eb-82ae-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a195e224-357f-11eb-82ae-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a19609c8-357f-11eb-9714-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a19609c8-357f-11eb-9714-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1965796-357f-11eb-a007-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1965796-357f-11eb-a007-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1967e46-357f-11eb-83d0-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1967e46-357f-11eb-83d0-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196a58b-357f-11eb-a68a-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196a58b-357f-11eb-a68a-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196a5b3-357f-11eb-a5fc-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196a5b3-357f-11eb-a5fc-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196cc3f-357f-11eb-9b7b-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196cc3f-357f-11eb-9b7b-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196cc4c-357f-11eb-b2a1-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196cc4c-357f-11eb-b2a1-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196cc91-357f-11eb-9749-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196cc91-357f-11eb-9749-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196cc9f-357f-11eb-a203-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196cc9f-357f-11eb-a203-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a196f3ac-357f-11eb-a32a-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a196f3ac-357f-11eb-a32a-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1971a94-357f-11eb-a5c7-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1971a94-357f-11eb-a5c7-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1971ab7-357f-11eb-a406-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1971ab7-357f-11eb-a406-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a19741ce-357f-11eb-baee-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a19741ce-357f-11eb-baee-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a19741ed-357f-11eb-8487-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a19741ed-357f-11eb-8487-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a197688b-357f-11eb-9e02-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a197688b-357f-11eb-9e02-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1978f81-357f-11eb-995a-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1978f81-357f-11eb-995a-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1978fbc-357f-11eb-ae09-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1978fbc-357f-11eb-ae09-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a197b6d0-357f-11eb-a5d9-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a197b6d0-357f-11eb-a5d9-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a197b6d2-357f-11eb-a647-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a197b6d2-357f-11eb-a647-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a197ddf6-357f-11eb-a0f7-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a197ddf6-357f-11eb-a0f7-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a19804cf-357f-11eb-b41e-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a19804cf-357f-11eb-b41e-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a19804e3-357f-11eb-bc92-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a19804e3-357f-11eb-bc92-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a198051a-357f-11eb-a076-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a198051a-357f-11eb-a076-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1982c78-357f-11eb-b5f9-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1982c78-357f-11eb-b5f9-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a1982ca6-357f-11eb-a6e3-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a1982ca6-357f-11eb-a6e3-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a19852e1-357f-11eb-8c90-001a7dda7111.ndpi,data/Medulloblastoma non-WNT_non-SHH/a19852e1-357f-11eb-8c90-001a7dda7111.ndpi,"Medulloblastoma, non-WNT/non-SHH",26,Embryonal Tumours,True
a194f77d-357f-11eb-b7d3-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a194f77d-357f-11eb-b7d3-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1951eb3-357f-11eb-a0a4-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1951eb3-357f-11eb-a0a4-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1951f0d-357f-11eb-a739-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1951f0d-357f-11eb-a739-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a195bb39-357f-11eb-a62c-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a195bb39-357f-11eb-a62c-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a195e1ed-357f-11eb-89e6-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a195e1ed-357f-11eb-89e6-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a196092e-357f-11eb-908c-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a196092e-357f-11eb-908c-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a196094b-357f-11eb-aa4b-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a196094b-357f-11eb-aa4b-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a19609b1-357f-11eb-a42e-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a19609b1-357f-11eb-a42e-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a19609b8-357f-11eb-bdf8-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a19609b8-357f-11eb-bdf8-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a196304d-357f-11eb-84d2-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a196304d-357f-11eb-84d2-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1963065-357f-11eb-99cc-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1963065-357f-11eb-99cc-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1963077-357f-11eb-b1ed-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1963077-357f-11eb-b1ed-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1963083-357f-11eb-90f3-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1963083-357f-11eb-90f3-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1965753-357f-11eb-aa7e-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1965753-357f-11eb-aa7e-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a196576e-357f-11eb-9f92-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a196576e-357f-11eb-9f92-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a19657a0-357f-11eb-8d12-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a19657a0-357f-11eb-8d12-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a19657cf-357f-11eb-ac64-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a19657cf-357f-11eb-ac64-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1967e76-357f-11eb-bc82-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1967e76-357f-11eb-bc82-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a196a56f-357f-11eb-a80c-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a196a56f-357f-11eb-a80c-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a196f39f-357f-11eb-9f52-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a196f39f-357f-11eb-9f52-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1971ac6-357f-11eb-bda7-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1971ac6-357f-11eb-bda7-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1971ae2-357f-11eb-b478-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1971ae2-357f-11eb-b478-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a19768bc-357f-11eb-b90d-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a19768bc-357f-11eb-b90d-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1978fe0-357f-11eb-90ab-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1978fe0-357f-11eb-90ab-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1978fec-357f-11eb-93b9-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1978fec-357f-11eb-93b9-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a197b6cf-357f-11eb-8daf-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a197b6cf-357f-11eb-8daf-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a197b6f6-357f-11eb-903e-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a197b6f6-357f-11eb-903e-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a197b706-357f-11eb-b934-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a197b706-357f-11eb-b934-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a197de00-357f-11eb-b8de-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a197de00-357f-11eb-b8de-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1982c71-357f-11eb-b75e-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1982c71-357f-11eb-b75e-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1982c8d-357f-11eb-aac2-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a1982c8d-357f-11eb-aac2-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a19852e8-357f-11eb-832a-001a7dda7111.ndpi,data/Langerhans cell histiocytosis/a19852e8-357f-11eb-832a-001a7dda7111.ndpi,Langerhans cell histiocytosis,27,Haematolymphoid Tumours,True
a1951e8e-357f-11eb-84bc-001a7dda7111.ndpi,data/Angiomatous meningioma/a1951e8e-357f-11eb-84bc-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1951e99-357f-11eb-b4c5-001a7dda7111.ndpi,data/Angiomatous meningioma/a1951e99-357f-11eb-b4c5-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1951eeb-357f-11eb-8e64-001a7dda7111.ndpi,data/Angiomatous meningioma/a1951eeb-357f-11eb-8e64-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a19545ef-357f-11eb-906a-001a7dda7111.ndpi,data/Angiomatous meningioma/a19545ef-357f-11eb-906a-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1956cdd-357f-11eb-9455-001a7dda7111.ndpi,data/Angiomatous meningioma/a1956cdd-357f-11eb-9455-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1959447-357f-11eb-b566-001a7dda7111.ndpi,data/Angiomatous meningioma/a1959447-357f-11eb-b566-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a195bafb-357f-11eb-a9fd-001a7dda7111.ndpi,data/Angiomatous meningioma/a195bafb-357f-11eb-a9fd-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a195bb1b-357f-11eb-a88e-001a7dda7111.ndpi,data/Angiomatous meningioma/a195bb1b-357f-11eb-a88e-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a195e225-357f-11eb-8d8c-001a7dda7111.ndpi,data/Angiomatous meningioma/a195e225-357f-11eb-8d8c-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a19608ff-357f-11eb-b445-001a7dda7111.ndpi,data/Angiomatous meningioma/a19608ff-357f-11eb-b445-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1965784-357f-11eb-b837-001a7dda7111.ndpi,data/Angiomatous meningioma/a1965784-357f-11eb-b837-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1967e4b-357f-11eb-a6a6-001a7dda7111.ndpi,data/Angiomatous meningioma/a1967e4b-357f-11eb-a6a6-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1967ea4-357f-11eb-ad61-001a7dda7111.ndpi,data/Angiomatous meningioma/a1967ea4-357f-11eb-ad61-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a196a5ae-357f-11eb-ba48-001a7dda7111.ndpi,data/Angiomatous meningioma/a196a5ae-357f-11eb-ba48-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a196cc63-357f-11eb-b00e-001a7dda7111.ndpi,data/Angiomatous meningioma/a196cc63-357f-11eb-b00e-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a196cc96-357f-11eb-8f37-001a7dda7111.ndpi,data/Angiomatous meningioma/a196cc96-357f-11eb-8f37-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1971a7d-357f-11eb-961f-001a7dda7111.ndpi,data/Angiomatous meningioma/a1971a7d-357f-11eb-961f-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a19768ca-357f-11eb-bb98-001a7dda7111.ndpi,data/Angiomatous meningioma/a19768ca-357f-11eb-bb98-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a197b6d9-357f-11eb-a6b6-001a7dda7111.ndpi,data/Angiomatous meningioma/a197b6d9-357f-11eb-a6b6-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a197b705-357f-11eb-bc4d-001a7dda7111.ndpi,data/Angiomatous meningioma/a197b705-357f-11eb-bc4d-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a197ddad-357f-11eb-b220-001a7dda7111.ndpi,data/Angiomatous meningioma/a197ddad-357f-11eb-b220-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a197ddc5-357f-11eb-8483-001a7dda7111.ndpi,data/Angiomatous meningioma/a197ddc5-357f-11eb-8483-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a197ddcc-357f-11eb-a5db-001a7dda7111.ndpi,data/Angiomatous meningioma/a197ddcc-357f-11eb-a5db-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a19804ec-357f-11eb-b48c-001a7dda7111.ndpi,data/Angiomatous meningioma/a19804ec-357f-11eb-b48c-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1980511-357f-11eb-aac4-001a7dda7111.ndpi,data/Angiomatous meningioma/a1980511-357f-11eb-aac4-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1980539-357f-11eb-b3cd-001a7dda7111.ndpi,data/Angiomatous meningioma/a1980539-357f-11eb-b3cd-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1980562-357f-11eb-b66a-001a7dda7111.ndpi,data/Angiomatous meningioma/a1980562-357f-11eb-b66a-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1982bd3-357f-11eb-aec7-001a7dda7111.ndpi,data/Angiomatous meningioma/a1982bd3-357f-11eb-aec7-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1982be4-357f-11eb-aa19-001a7dda7111.ndpi,data/Angiomatous meningioma/a1982be4-357f-11eb-aa19-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1982c31-357f-11eb-aa7d-001a7dda7111.ndpi,data/Angiomatous meningioma/a1982c31-357f-11eb-aa7d-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1982c93-357f-11eb-ba29-001a7dda7111.ndpi,data/Angiomatous meningioma/a1982c93-357f-11eb-ba29-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1982ca5-357f-11eb-9ded-001a7dda7111.ndpi,data/Angiomatous meningioma/a1982ca5-357f-11eb-9ded-001a7dda7111.ndpi,Angiomatous meningioma,28,Meningiomas,True
a1951e92-357f-11eb-be9f-001a7dda7111.ndpi,data/Haemangioma/a1951e92-357f-11eb-be9f-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a19545d5-357f-11eb-8d11-001a7dda7111.ndpi,data/Haemangioma/a19545d5-357f-11eb-8d11-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1959404-357f-11eb-a94e-001a7dda7111.ndpi,data/Haemangioma/a1959404-357f-11eb-a94e-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1959424-357f-11eb-b120-001a7dda7111.ndpi,data/Haemangioma/a1959424-357f-11eb-b120-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a195baf3-357f-11eb-a28d-001a7dda7111.ndpi,data/Haemangioma/a195baf3-357f-11eb-a28d-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a195e221-357f-11eb-9a0c-001a7dda7111.ndpi,data/Haemangioma/a195e221-357f-11eb-9a0c-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1960909-357f-11eb-b5fe-001a7dda7111.ndpi,data/Haemangioma/a1960909-357f-11eb-b5fe-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1960919-357f-11eb-8ddf-001a7dda7111.ndpi,data/Haemangioma/a1960919-357f-11eb-8ddf-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196300a-357f-11eb-bfdd-001a7dda7111.ndpi,data/Haemangioma/a196300a-357f-11eb-bfdd-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1963067-357f-11eb-a3d4-001a7dda7111.ndpi,data/Haemangioma/a1963067-357f-11eb-a3d4-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196306b-357f-11eb-9255-001a7dda7111.ndpi,data/Haemangioma/a196306b-357f-11eb-9255-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1965700-357f-11eb-a31d-001a7dda7111.ndpi,data/Haemangioma/a1965700-357f-11eb-a31d-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1965721-357f-11eb-b5d0-001a7dda7111.ndpi,data/Haemangioma/a1965721-357f-11eb-b5d0-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1965724-357f-11eb-98ef-001a7dda7111.ndpi,data/Haemangioma/a1965724-357f-11eb-98ef-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1967ea1-357f-11eb-ae14-001a7dda7111.ndpi,data/Haemangioma/a1967ea1-357f-11eb-ae14-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196a54a-357f-11eb-98f9-001a7dda7111.ndpi,data/Haemangioma/a196a54a-357f-11eb-98f9-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196a5ad-357f-11eb-b668-001a7dda7111.ndpi,data/Haemangioma/a196a5ad-357f-11eb-b668-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196cc7e-357f-11eb-b042-001a7dda7111.ndpi,data/Haemangioma/a196cc7e-357f-11eb-b042-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196cc93-357f-11eb-b543-001a7dda7111.ndpi,data/Haemangioma/a196cc93-357f-11eb-b543-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a196f3aa-357f-11eb-96d2-001a7dda7111.ndpi,data/Haemangioma/a196f3aa-357f-11eb-96d2-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1971ab1-357f-11eb-8e43-001a7dda7111.ndpi,data/Haemangioma/a1971ab1-357f-11eb-8e43-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6e4-357f-11eb-9886-001a7dda7111.ndpi,data/Haemangioma/a197b6e4-357f-11eb-9886-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a197b6f8-357f-11eb-b9b1-001a7dda7111.ndpi,data/Haemangioma/a197b6f8-357f-11eb-b9b1-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a197ddae-357f-11eb-8652-001a7dda7111.ndpi,data/Haemangioma/a197ddae-357f-11eb-8652-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a197ddec-357f-11eb-8759-001a7dda7111.ndpi,data/Haemangioma/a197ddec-357f-11eb-8759-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a197de2a-357f-11eb-bdf2-001a7dda7111.ndpi,data/Haemangioma/a197de2a-357f-11eb-bdf2-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a198052a-357f-11eb-8e5c-001a7dda7111.ndpi,data/Haemangioma/a198052a-357f-11eb-8e5c-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a198058f-357f-11eb-93e7-001a7dda7111.ndpi,data/Haemangioma/a198058f-357f-11eb-93e7-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1980592-357f-11eb-8323-001a7dda7111.ndpi,data/Haemangioma/a1980592-357f-11eb-8323-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
a1982c12-357f-11eb-946e-001a7dda7111.ndpi,data/Haemangioma/a1982c12-357f-11eb-946e-001a7dda7111.ndpi,Haemangioma,29,"Mesenchymal, Non-Meningothelial Tumours",True
|