File size: 72,647 Bytes
351e379 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 |
---
dataset_info:
features:
- name: rs_CLEC3A
dtype: float64
- name: rs_CPB1
dtype: float64
- name: rs_SCGB2A2
dtype: float64
- name: rs_SCGB1D2
dtype: float64
- name: rs_TFF1
dtype: float64
- name: rs_MUCL1
dtype: float64
- name: rs_GSTM1
dtype: float64
- name: rs_PIP
dtype: float64
- name: rs_ADIPOQ
dtype: float64
- name: rs_ADH1B
dtype: float64
- name: rs_S100A7
dtype: float64
- name: rs_HMGCS2
dtype: float64
- name: rs_CYP2B7P1
dtype: float64
- name: rs_ANKRD30A
dtype: float64
- name: rs_PRAME
dtype: float64
- name: rs_TAT
dtype: float64
- name: rs_SERPINA6
dtype: float64
- name: rs_AGR3
dtype: float64
- name: rs_TFAP2B
dtype: float64
- name: rs_CYP4Z1
dtype: float64
- name: rs_DHRS2
dtype: float64
- name: rs_KCNJ3
dtype: float64
- name: rs_MYBPC1
dtype: float64
- name: rs_C4orf7
dtype: float64
- name: rs_KRT14
dtype: float64
- name: rs_MUC6
dtype: float64
- name: rs_UGT2B11
dtype: float64
- name: rs_GABRP
dtype: float64
- name: rs_SOX10
dtype: float64
- name: rs_SLC30A8
dtype: float64
- name: rs_STAC2
dtype: float64
- name: rs_VSTM2A
dtype: float64
- name: rs_COL2A1
dtype: float64
- name: rs_KRT5
dtype: float64
- name: rs_TUSC5
dtype: float64
- name: rs_CEACAM5
dtype: float64
- name: rs_CALML5
dtype: float64
- name: rs_GP2
dtype: float64
- name: rs_GSTT1
dtype: float64
- name: rs_LEP
dtype: float64
- name: rs_FABP7
dtype: float64
- name: rs_C1orf64
dtype: float64
- name: rs_CRABP1
dtype: float64
- name: rs_FABP4
dtype: float64
- name: rs_KRT6B
dtype: float64
- name: rs_KLK11
dtype: float64
- name: rs_CST9
dtype: float64
- name: rs_CST1
dtype: float64
- name: rs_PIGR
dtype: float64
- name: rs_CIDEC
dtype: float64
- name: rs_SYT13
dtype: float64
- name: rs_KLK5
dtype: float64
- name: rs_OLFM4
dtype: float64
- name: rs_HOXB13
dtype: float64
- name: rs_LTF
dtype: float64
- name: rs_TFF3
dtype: float64
- name: rs_MUC5B
dtype: float64
- name: rs_BMPR1B
dtype: float64
- name: rs_CEACAM6
dtype: float64
- name: rs_TCN1
dtype: float64
- name: rs_SLC34A2
dtype: float64
- name: rs_CRISP3
dtype: float64
- name: rs_CLCA2
dtype: float64
- name: rs_AGR2
dtype: float64
- name: rs_ABCC11
dtype: float64
- name: rs_GRIA2
dtype: float64
- name: rs_KRT17
dtype: float64
- name: rs_NPY1R
dtype: float64
- name: rs_C20orf114
dtype: float64
- name: rs_DSG3
dtype: float64
- name: rs_OBP2B
dtype: float64
- name: rs_KIF1A
dtype: float64
- name: rs_CYP4F8
dtype: float64
- name: rs_TNNT1
dtype: float64
- name: rs_LRP2
dtype: float64
- name: rs_PROM1
dtype: float64
- name: rs_PVALB
dtype: float64
- name: rs_FAM5C
dtype: float64
- name: rs_ELF5
dtype: float64
- name: rs_GFRA1
dtype: float64
- name: rs_CYP2A6
dtype: float64
- name: rs_PGR
dtype: float64
- name: rs_CGA
dtype: float64
- name: rs_GPD1
dtype: float64
- name: rs_VGLL1
dtype: float64
- name: rs_PLIN1
dtype: float64
- name: rs_CP
dtype: float64
- name: rs_KCNC2
dtype: float64
- name: rs_MUC16
dtype: float64
- name: rs_KRT6A
dtype: float64
- name: rs_ALB
dtype: float64
- name: rs_AQP5
dtype: float64
- name: rs_WIF1
dtype: float64
- name: rs_KLK6
dtype: float64
- name: rs_KLK7
dtype: float64
- name: rs_CBLN2
dtype: float64
- name: rs_KRT81
dtype: float64
- name: rs_CIDEA
dtype: float64
- name: rs_EEF1A2
dtype: float64
- name: rs_SERPINA11
dtype: float64
- name: rs_LBP
dtype: float64
- name: rs_MMP1
dtype: float64
- name: rs_BPIL1
dtype: float64
- name: rs_KRT16
dtype: float64
- name: rs_PI16
dtype: float64
- name: rs_KLK10
dtype: float64
- name: rs_MSLN
dtype: float64
- name: rs_A2ML1
dtype: float64
- name: rs_NLRP2
dtype: float64
- name: rs_COL17A1
dtype: float64
- name: rs_SLC6A14
dtype: float64
- name: rs_PROL1
dtype: float64
- name: rs_PPP1R1B
dtype: float64
- name: rs_SLC5A8
dtype: float64
- name: rs_PTPRT
dtype: float64
- name: rs_CA9
dtype: float64
- name: rs_NXPH1
dtype: float64
- name: rs_MUC15
dtype: float64
- name: rs_SFRP1
dtype: float64
- name: rs_CALML3
dtype: float64
- name: rs_PPP2R2C
dtype: float64
- name: rs_CNTNAP2
dtype: float64
- name: rs_C7
dtype: float64
- name: rs_SLITRK6
dtype: float64
- name: rs_PLIN4
dtype: float64
- name: rs_BEX1
dtype: float64
- name: rs_SCGB2A1
dtype: float64
- name: rs_CYP4Z2P
dtype: float64
- name: rs_KLHDC7A
dtype: float64
- name: rs_SLC6A4
dtype: float64
- name: rs_ORM1
dtype: float64
- name: rs_SCGB3A1
dtype: float64
- name: rs_C10orf82
dtype: float64
- name: rs_LRRC31
dtype: float64
- name: rs_HBA1
dtype: float64
- name: rs_PCK1
dtype: float64
- name: rs_RPS28
dtype: float64
- name: rs_ESR1
dtype: float64
- name: rs_CDC20B
dtype: float64
- name: rs_PDZK1
dtype: float64
- name: rs_SYT9
dtype: float64
- name: rs_DLK1
dtype: float64
- name: rs_IGSF1
dtype: float64
- name: rs_MAGEA6
dtype: float64
- name: rs_GRPR
dtype: float64
- name: rs_FOLR1
dtype: float64
- name: rs_S100P
dtype: float64
- name: rs_CXCL13
dtype: float64
- name: rs_DCD
dtype: float64
- name: rs_FOXI1
dtype: float64
- name: rs_DSC3
dtype: float64
- name: rs_MMP13
dtype: float64
- name: rs_COL11A1
dtype: float64
- name: rs_MIA
dtype: float64
- name: rs_SCARA5
dtype: float64
- name: rs_SERPINB5
dtype: float64
- name: rs_CD300LG
dtype: float64
- name: rs_ROPN1
dtype: float64
- name: rs_PYDC1
dtype: float64
- name: rs_ANKRD30B
dtype: float64
- name: rs_CXCL17
dtype: float64
- name: rs_PLA2G2A
dtype: float64
- name: rs_DIO1
dtype: float64
- name: rs_NBPF4
dtype: float64
- name: rs_AQP7
dtype: float64
- name: rs_ABCA12
dtype: float64
- name: rs_GLRA3
dtype: float64
- name: rs_SAA2
dtype: float64
- name: rs_CHAD
dtype: float64
- name: rs_ASCL1
dtype: float64
- name: rs_LRP1B
dtype: float64
- name: rs_SLC5A1
dtype: float64
- name: rs_ATP13A5
dtype: float64
- name: rs_PTPRZ1
dtype: float64
- name: rs_WNK4
dtype: float64
- name: rs_CST5
dtype: float64
- name: rs_PEG10
dtype: float64
- name: rs_CLIC6
dtype: float64
- name: rs_MS4A15
dtype: float64
- name: rs_ABCC8
dtype: float64
- name: rs_PPAN-P2RY11
dtype: float64
- name: rs_SORCS1
dtype: float64
- name: rs_NKAIN1
dtype: float64
- name: rs_SAA1
dtype: float64
- name: rs_SLC44A4
dtype: float64
- name: rs_RBP4
dtype: float64
- name: rs_ARHGAP36
dtype: float64
- name: rs_SDR16C5
dtype: float64
- name: rs_GSTA1
dtype: float64
- name: rs_TF
dtype: float64
- name: rs_C2orf54
dtype: float64
- name: rs_LY6D
dtype: float64
- name: rs_S100A7A
dtype: float64
- name: rs_KRT15
dtype: float64
- name: rs_CYP4F22
dtype: float64
- name: rs_GLYATL2
dtype: float64
- name: rs_BBOX1
dtype: float64
- name: rs_CAPN8
dtype: float64
- name: rs_SOSTDC1
dtype: float64
- name: rs_TMPRSS4
dtype: float64
- name: rs_DSG1
dtype: float64
- name: rs_CASP14
dtype: float64
- name: rs_LCN2
dtype: float64
- name: rs_PGLYRP2
dtype: float64
- name: rs_SPAG6
dtype: float64
- name: rs_CAPN6
dtype: float64
- name: rs_TMEM132C
dtype: float64
- name: rs_CCL21
dtype: float64
- name: rs_PI3
dtype: float64
- name: rs_SLC7A4
dtype: float64
- name: rs_NBPF6
dtype: float64
- name: rs_MAGEA3
dtype: float64
- name: rs_TSPAN8
dtype: float64
- name: rs_SCUBE2
dtype: float64
- name: rs_SLC19A3
dtype: float64
- name: rs_KLK8
dtype: float64
- name: rs_RIMS4
dtype: float64
- name: rs_ROPN1B
dtype: float64
- name: rs_MSMB
dtype: float64
- name: rs_IL20
dtype: float64
- name: rs_NEK10
dtype: float64
- name: rs_EDN3
dtype: float64
- name: rs_SLC13A2
dtype: float64
- name: rs_S100A8
dtype: float64
- name: rs_TRIM29
dtype: float64
- name: rs_SYT8
dtype: float64
- name: rs_ORM2
dtype: float64
- name: rs_PON3
dtype: float64
- name: rs_FAM3B
dtype: float64
- name: rs_FGB
dtype: float64
- name: rs_S100A9
dtype: float64
- name: rs_LPPR3
dtype: float64
- name: rs_HS6ST3
dtype: float64
- name: rs_SERPINA5
dtype: float64
- name: rs_WFDC2
dtype: float64
- name: rs_CHRDL1
dtype: float64
- name: rs_ZIC1
dtype: float64
- name: rs_CST4
dtype: float64
- name: rs_PCOLCE2
dtype: float64
- name: rs_NCRNA00052
dtype: float64
- name: rs_ERBB4
dtype: float64
- name: rs_C2orf40
dtype: float64
- name: rs_DARC
dtype: float64
- name: rs_C16orf89
dtype: float64
- name: rs_ACTL8
dtype: float64
- name: rs_TMC5
dtype: float64
- name: rs_ABCA8
dtype: float64
- name: rs_SLC9A2
dtype: float64
- name: rs_COL10A1
dtype: float64
- name: rs_FOXJ1
dtype: float64
- name: rs_ANXA8
dtype: float64
- name: rs_THRSP
dtype: float64
- name: rs_ABCC13
dtype: float64
- name: rs_MARCO
dtype: float64
- name: rs_PPP1R1A
dtype: float64
- name: rs_PI15
dtype: float64
- name: rs_WDR72
dtype: float64
- name: rs_AKR1C2
dtype: float64
- name: rs_SPDYC
dtype: float64
- name: rs_ATP6V0A4
dtype: float64
- name: rs_ALOX15B
dtype: float64
- name: rs_TRPA1
dtype: float64
- name: rs_ELOVL2
dtype: float64
- name: rs_SLC26A3
dtype: float64
- name: rs_LGALS12
dtype: float64
- name: rs_SMYD1
dtype: float64
- name: rs_TRH
dtype: float64
- name: rs_SYTL5
dtype: float64
- name: rs_KNDC1
dtype: float64
- name: rs_CHIT1
dtype: float64
- name: rs_HGD
dtype: float64
- name: rs_CHST8
dtype: float64
- name: rs_VTCN1
dtype: float64
- name: rs_ROBO2
dtype: float64
- name: rs_MRAP
dtype: float64
- name: rs_INSM1
dtype: float64
- name: rs_HOTAIR
dtype: float64
- name: rs_C14orf180
dtype: float64
- name: rs_PKP1
dtype: float64
- name: rs_CR2
dtype: float64
- name: rs_NPY2R
dtype: float64
- name: rs_SYT1
dtype: float64
- name: rs_GPR98
dtype: float64
- name: rs_ALDH1L1
dtype: float64
- name: rs_LOC100271831
dtype: float64
- name: rs_BCAS1
dtype: float64
- name: rs_HOXC11
dtype: float64
- name: rs_LOC728606
dtype: float64
- name: rs_HORMAD1
dtype: float64
- name: rs_SLPI
dtype: float64
- name: rs_HEPACAM2
dtype: float64
- name: rs_ANXA8L2
dtype: float64
- name: rs_FREM2
dtype: float64
- name: rs_ATP1A2
dtype: float64
- name: rs_FSIP1
dtype: float64
- name: rs_PIK3C2G
dtype: float64
- name: rs_CYP4B1
dtype: float64
- name: rs_TUBA3D
dtype: float64
- name: rs_FOXA1
dtype: float64
- name: rs_NAT1
dtype: float64
- name: rs_CA4
dtype: float64
- name: rs_KRT13
dtype: float64
- name: rs_CCL19
dtype: float64
- name: rs_PPP4R4
dtype: float64
- name: rs_TTYH1
dtype: float64
- name: rs_EPYC
dtype: float64
- name: rs_SLC28A3
dtype: float64
- name: rs_TIMP4
dtype: float64
- name: rs_AGTR1
dtype: float64
- name: rs_IGDCC3
dtype: float64
- name: rs_FGFBP1
dtype: float64
- name: rs_HSD17B2
dtype: float64
- name: rs_SLC7A2
dtype: float64
- name: rs_VSIG2
dtype: float64
- name: rs_FLJ45983
dtype: float64
- name: rs_KIAA0408
dtype: float64
- name: rs_FAM5B
dtype: float64
- name: rs_GLDC
dtype: float64
- name: rs_FAM196A
dtype: float64
- name: rs_PNMT
dtype: float64
- name: rs_CYP4X1
dtype: float64
- name: rs_NCCRP1
dtype: float64
- name: rs_TMPRSS6
dtype: float64
- name: rs_KRT23
dtype: float64
- name: rs_CNTFR
dtype: float64
- name: rs_MS4A1
dtype: float64
- name: rs_PAX7
dtype: float64
- name: rs_UGT2B15
dtype: float64
- name: rs_MMP12
dtype: float64
- name: rs_GRB14
dtype: float64
- name: rs_FGG
dtype: float64
- name: rs_C2CD4A
dtype: float64
- name: rs_TFPI2
dtype: float64
- name: rs_ZBTB16
dtype: float64
- name: rs_ART3
dtype: float64
- name: rs_NPY5R
dtype: float64
- name: rs_DCDC2
dtype: float64
- name: rs_PCSK1N
dtype: float64
- name: rs_UGT2B28
dtype: float64
- name: rs_PPP1R14C
dtype: float64
- name: rs_ONECUT2
dtype: float64
- name: rs_DCX
dtype: float64
- name: rs_RGS22
dtype: float64
- name: rs_GJB1
dtype: float64
- name: rs_C1orf173
dtype: float64
- name: rs_RBM24
dtype: float64
- name: rs_TRPV6
dtype: float64
- name: rs_ATP13A4
dtype: float64
- name: rs_AKR7A3
dtype: float64
- name: rs_C19orf33
dtype: float64
- name: rs_KRT4
dtype: float64
- name: rs_DES
dtype: float64
- name: rs_TMPRSS3
dtype: float64
- name: rs_ZIC2
dtype: float64
- name: rs_OGN
dtype: float64
- name: rs_C3orf57
dtype: float64
- name: rs_CACNG4
dtype: float64
- name: rs_LOC642587
dtype: float64
- name: rs_ATRNL1
dtype: float64
- name: rs_AFP
dtype: float64
- name: rs_NDP
dtype: float64
- name: rs_GABRB3
dtype: float64
- name: rs_LRG1
dtype: float64
- name: rs_AREG
dtype: float64
- name: rs_GRIK3
dtype: float64
- name: rs_TPRG1
dtype: float64
- name: rs_AKR1B10
dtype: float64
- name: rs_IGJ
dtype: float64
- name: rs_PSCA
dtype: float64
- name: rs_DKK1
dtype: float64
- name: rs_GRIA4
dtype: float64
- name: rs_CYP2A7
dtype: float64
- name: rs_COMP
dtype: float64
- name: rs_TSIX
dtype: float64
- name: rs_GRM4
dtype: float64
- name: rs_FIGF
dtype: float64
- name: rs_HRASLS5
dtype: float64
- name: rs_FAT2
dtype: float64
- name: rs_CCNO
dtype: float64
- name: rs_ADCY5
dtype: float64
- name: rs_TDRD1
dtype: float64
- name: rs_F7
dtype: float64
- name: rs_TPSG1
dtype: float64
- name: rs_C6
dtype: float64
- name: rs_KRT6C
dtype: float64
- name: rs_ACTG2
dtype: float64
- name: rs_LGR6
dtype: float64
- name: rs_S100B
dtype: float64
- name: rs_ADH1C
dtype: float64
- name: rs_FUT3
dtype: float64
- name: rs_CARTPT
dtype: float64
- name: rs_POF1B
dtype: float64
- name: rs_PRSS21
dtype: float64
- name: rs_FAM83E
dtype: float64
- name: rs_MAPK4
dtype: float64
- name: rs_PTCHD1
dtype: float64
- name: rs_IRX1
dtype: float64
- name: rs_SYNPO2L
dtype: float64
- name: rs_GLYAT
dtype: float64
- name: rs_MYT1
dtype: float64
- name: rs_PRODH
dtype: float64
- name: rs_SHISA9
dtype: float64
- name: rs_DEFB1
dtype: float64
- name: rs_VIPR2
dtype: float64
- name: rs_SOX2
dtype: float64
- name: rs_AR
dtype: float64
- name: rs_TP63
dtype: float64
- name: rs_IYD
dtype: float64
- name: rs_PLCH1
dtype: float64
- name: rs_SLC27A6
dtype: float64
- name: rs_HPX
dtype: float64
- name: rs_PP14571
dtype: float64
- name: rs_DLX2
dtype: float64
- name: rs_SPAG17
dtype: float64
- name: rs_PRG4
dtype: float64
- name: rs_MMP7
dtype: float64
- name: rs_UGT8
dtype: float64
- name: rs_NEURL
dtype: float64
- name: rs_AFF3
dtype: float64
- name: rs_MS4A8B
dtype: float64
- name: rs_APOD
dtype: float64
- name: rs_TMEM213
dtype: float64
- name: rs_TLX1
dtype: float64
- name: rs_ZFP57
dtype: float64
- name: rs_FOSB
dtype: float64
- name: rs_TUBA3E
dtype: float64
- name: rs_CHGB
dtype: float64
- name: rs_HP
dtype: float64
- name: rs_FAM3D
dtype: float64
- name: rs_RERGL
dtype: float64
- name: rs_CXADRP3
dtype: float64
- name: rs_CHST9
dtype: float64
- name: rs_CD36
dtype: float64
- name: rs_CYP4F11
dtype: float64
- name: rs_CD177
dtype: float64
- name: rs_TBC1D3G
dtype: float64
- name: rs_NKX2-2
dtype: float64
- name: rs_S100A2
dtype: float64
- name: rs_SPDEF
dtype: float64
- name: rs_GLYATL1
dtype: float64
- name: rs_MMP10
dtype: float64
- name: rs_RELN
dtype: float64
- name: rs_SMOC1
dtype: float64
- name: rs_PCDHA11
dtype: float64
- name: rs_BCL11A
dtype: float64
- name: rs_RET
dtype: float64
- name: rs_ANKRD43
dtype: float64
- name: rs_WT1
dtype: float64
- name: rs_PLA2G2D
dtype: float64
- name: rs_KCNF1
dtype: float64
- name: rs_CCL18
dtype: float64
- name: rs_CHI3L2
dtype: float64
- name: rs_SLC7A10
dtype: float64
- name: rs_NTNG1
dtype: float64
- name: rs_FXYD1
dtype: float64
- name: rs_SLC6A15
dtype: float64
- name: rs_MKRN3
dtype: float64
- name: rs_ZNF385B
dtype: float64
- name: rs_CLDN8
dtype: float64
- name: rs_FAM83A
dtype: float64
- name: rs_SHISA2
dtype: float64
- name: rs_MYEOV
dtype: float64
- name: rs_SBSN
dtype: float64
- name: rs_AKR1C1
dtype: float64
- name: rs_ABCC12
dtype: float64
- name: rs_NOVA1
dtype: float64
- name: rs_SOX11
dtype: float64
- name: rs_FUT6
dtype: float64
- name: rs_SCRG1
dtype: float64
- name: rs_AK5
dtype: float64
- name: rs_TTC36
dtype: float64
- name: rs_TOX3
dtype: float64
- name: rs_IRX4
dtype: float64
- name: rs_CA3
dtype: float64
- name: rs_SCNN1G
dtype: float64
- name: rs_TPSD1
dtype: float64
- name: rs_PCDHA12
dtype: float64
- name: rs_TSPAN1
dtype: float64
- name: rs_LOC389033
dtype: float64
- name: rs_PART1
dtype: float64
- name: rs_CRYM
dtype: float64
- name: rs_HOXC10
dtype: float64
- name: rs_DBC1
dtype: float64
- name: rs_SLC6A11
dtype: float64
- name: rs_ACADL
dtype: float64
- name: rs_CXCL14
dtype: float64
- name: rs_MKX
dtype: float64
- name: rs_CLDN19
dtype: float64
- name: rs_FGF10
dtype: float64
- name: rs_MMP11
dtype: float64
- name: rs_NTS
dtype: float64
- name: rs_KCNG1
dtype: float64
- name: rs_PITX1
dtype: float64
- name: rs_DOK7
dtype: float64
- name: rs_CAPN9
dtype: float64
- name: rs_RASAL1
dtype: float64
- name: rs_MAGEA1
dtype: float64
- name: rs_RHCG
dtype: float64
- name: rs_SCGN
dtype: float64
- name: rs_OSR1
dtype: float64
- name: rs_S100A1
dtype: float64
- name: rs_CITED1
dtype: float64
- name: rs_ADAMDEC1
dtype: float64
- name: rs_PLP1
dtype: float64
- name: rs_ANO3
dtype: float64
- name: rs_NELL2
dtype: float64
- name: rs_CAPN13
dtype: float64
- name: rs_HAPLN1
dtype: float64
- name: rs_NMU
dtype: float64
- name: rs_EMX1
dtype: float64
- name: rs_GPRIN2
dtype: float64
- name: rs_C19orf21
dtype: float64
- name: rs_CSN3
dtype: float64
- name: rs_C2orf82
dtype: float64
- name: rs_GABBR2
dtype: float64
- name: rs_PLA2G3
dtype: float64
- name: rs_CLGN
dtype: float64
- name: rs_MYOC
dtype: float64
- name: rs_GPR26
dtype: float64
- name: rs_VWDE
dtype: float64
- name: rs_ANGPTL7
dtype: float64
- name: rs_ACTA1
dtype: float64
- name: rs_LOC283392
dtype: float64
- name: rs_C4BPA
dtype: float64
- name: rs_MAOB
dtype: float64
- name: rs_KCNJ16
dtype: float64
- name: rs_GPX2
dtype: float64
- name: rs_SLC15A1
dtype: float64
- name: rs_DEGS2
dtype: float64
- name: rs_MUC2
dtype: float64
- name: rs_CALB2
dtype: float64
- name: rs_CHRM1
dtype: float64
- name: rs_CCL14
dtype: float64
- name: rs_PCDH10
dtype: float64
- name: rs_CTNND2
dtype: float64
- name: rs_CECR2
dtype: float64
- name: rs_SPINK8
dtype: float64
- name: rs_LY6K
dtype: float64
- name: rs_PEG3
dtype: float64
- name: rs_CST2
dtype: float64
- name: rs_FERMT1
dtype: float64
- name: rs_MMRN1
dtype: float64
- name: rs_SERHL2
dtype: float64
- name: rs_SEZ6L
dtype: float64
- name: rs_TNNI3
dtype: float64
- name: rs_EREG
dtype: float64
- name: rs_ADAMTS15
dtype: float64
- name: rs_PAX2
dtype: float64
- name: rs_TNNT3
dtype: float64
- name: rs_B3GNT3
dtype: float64
- name: rs_LOC440905
dtype: float64
- name: rs_CD19
dtype: float64
- name: rs_ADH1A
dtype: float64
- name: rs_RIMS2
dtype: float64
- name: rs_ALOX15
dtype: float64
- name: rs_ADAMTS19
dtype: float64
- name: rs_NTRK3
dtype: float64
- name: rs_RNF183
dtype: float64
- name: rs_FLT3
dtype: float64
- name: rs_TNMD
dtype: float64
- name: rs_GPR12
dtype: float64
- name: rs_IBSP
dtype: float64
- name: rs_COL4A6
dtype: float64
- name: rs_CLSTN2
dtype: float64
- name: rs_FIBCD1
dtype: float64
- name: rs_CES1
dtype: float64
- name: rs_CADM3
dtype: float64
- name: rs_AKR1B15
dtype: float64
- name: rs_PCDHA10
dtype: float64
- name: rs_HIF3A
dtype: float64
- name: rs_GPM6A
dtype: float64
- name: rs_CXCR2P1
dtype: float64
- name: rs_DACH1
dtype: float64
- name: rs_C1orf95
dtype: float64
- name: rs_HEPACAM
dtype: float64
- name: rs_TMEM45B
dtype: float64
- name: rs_VIT
dtype: float64
- name: rs_CXCL2
dtype: float64
- name: rs_FMO2
dtype: float64
- name: rs_HBB
dtype: float64
- name: rs_CDSN
dtype: float64
- name: rs_KCNIP2
dtype: float64
- name: rs_CCL28
dtype: float64
- name: rs_C8orf85
dtype: float64
- name: rs_CRYAB
dtype: float64
- name: rs_LOC84740
dtype: float64
- name: rs_PPAPDC1A
dtype: float64
- name: rs_IL33
dtype: float64
- name: rs_AQP7P1
dtype: float64
- name: rs_MAGEA4
dtype: float64
- name: rs_ACE2
dtype: float64
- name: rs_MYH11
dtype: float64
- name: rs_LOC100124692
dtype: float64
- name: rs_HS3ST4
dtype: float64
- name: rs_SELP
dtype: float64
- name: rs_PADI3
dtype: float64
- name: rs_ACVR1C
dtype: float64
- name: rs_AMY1A
dtype: float64
- name: rs_OXTR
dtype: float64
- name: rs_DEFB132
dtype: float64
- name: rs_APOB
dtype: float64
- name: rs_SPHKAP
dtype: float64
- name: rs_DPYSL5
dtype: float64
- name: rs_HEPN1
dtype: float64
- name: cn_ISG15
dtype: int64
- name: cn_PLCH2
dtype: int64
- name: cn_SAMD11
dtype: int64
- name: cn_TNFRSF18
dtype: int64
- name: cn_BAI2
dtype: int64
- name: cn_TEKT2
dtype: int64
- name: cn_DNALI1
dtype: int64
- name: cn_RSPO1
dtype: int64
- name: cn_KIAA0754
dtype: int64
- name: cn_KCNQ4
dtype: int64
- name: cn_CITED4
dtype: int64
- name: cn_EDN2
dtype: int64
- name: cn_CLDN19
dtype: int64
- name: cn_CDC20
dtype: int64
- name: cn_ARTN
dtype: int64
- name: cn_HPDL
dtype: int64
- name: cn_TSPAN1
dtype: int64
- name: cn_CYP4B1
dtype: int64
- name: cn_CYP4Z2P
dtype: int64
- name: cn_CYP4X1
dtype: int64
- name: cn_CYP4Z1
dtype: int64
- name: cn_PDZK1IP1
dtype: int64
- name: cn_RAB3B
dtype: int64
- name: cn_DIO1
dtype: int64
- name: cn_TTC22
dtype: int64
- name: cn_PCSK9
dtype: int64
- name: cn_PRKAA2
dtype: int64
- name: cn_C1orf168
dtype: int64
- name: cn_KANK4
dtype: int64
- name: cn_FOXD3
dtype: int64
- name: cn_IL12RB2
dtype: int64
- name: cn_DIRAS3
dtype: int64
- name: cn_C1orf173
dtype: int64
- name: cn_SLC44A5
dtype: int64
- name: cn_ST6GALNAC5
dtype: int64
- name: cn_AK5
dtype: int64
- name: cn_PTGFR
dtype: int64
- name: cn_DNASE2B
dtype: int64
- name: cn_LPAR3
dtype: int64
- name: cn_CLCA2
dtype: int64
- name: cn_CLCA4
dtype: int64
- name: cn_GBP5
dtype: int64
- name: cn_TGFBR3
dtype: int64
- name: cn_BRDT
dtype: int64
- name: cn_EPHX4
dtype: int64
- name: cn_ABCA4
dtype: int64
- name: cn_COL11A1
dtype: int64
- name: cn_AMY1A
dtype: int64
- name: cn_NTNG1
dtype: int64
- name: cn_NBPF4
dtype: int64
- name: cn_NBPF6
dtype: int64
- name: cn_GSTM1
dtype: int64
- name: cn_GSTM2
dtype: int64
- name: cn_GSTM5
dtype: int64
- name: cn_GSTM3
dtype: int64
- name: cn_SLC6A17
dtype: int64
- name: cn_CHI3L2
dtype: int64
- name: cn_KCND3
dtype: int64
- name: cn_FAM19A3
dtype: int64
- name: cn_AMPD1
dtype: int64
- name: cn_CASQ2
dtype: int64
- name: cn_VTCN1
dtype: int64
- name: cn_SPAG17
dtype: int64
- name: cn_HSD3B2
dtype: int64
- name: cn_HMGCS2
dtype: int64
- name: cn_FMO5
dtype: int64
- name: cn_PDZK1P1
dtype: int64
- name: cn_PDZK1
dtype: int64
- name: cn_ZNF695
dtype: int64
- name: cn_TRIM58
dtype: int64
- name: cn_CHL1
dtype: int64
- name: cn_CNTN4
dtype: int64
- name: cn_LRRN1
dtype: int64
- name: cn_EGOT
dtype: int64
- name: cn_ROBO2
dtype: int64
- name: cn_CADM2
dtype: int64
- name: cn_NPFFR2
dtype: int64
- name: cn_ALB
dtype: int64
- name: cn_AFP
dtype: int64
- name: cn_RASSF6
dtype: int64
- name: cn_IL8
dtype: int64
- name: cn_CXCL1
dtype: int64
- name: cn_CXCL5
dtype: int64
- name: cn_CXCL2
dtype: int64
- name: cn_EREG
dtype: int64
- name: cn_AREG
dtype: int64
- name: cn_CDKL2
dtype: int64
- name: cn_CXCL9
dtype: int64
- name: cn_ART3
dtype: int64
- name: cn_CXCL10
dtype: int64
- name: cn_CXCL11
dtype: int64
- name: cn_CCDC158
dtype: int64
- name: cn_CXCL13
dtype: int64
- name: cn_LRRC14B
dtype: int64
- name: cn_PLEKHG4B
dtype: int64
- name: cn_IRX4
dtype: int64
- name: cn_C5orf38
dtype: int64
- name: cn_IRX2
dtype: int64
- name: cn_IRX1
dtype: int64
- name: cn_ADAMTS16
dtype: int64
- name: cn_ADCY2
dtype: int64
- name: cn_ROPN1L
dtype: int64
- name: cn_CTNND2
dtype: int64
- name: cn_DNAH5
dtype: int64
- name: cn_MARCH11
dtype: int64
- name: cn_NPR3
dtype: int64
- name: cn_IL7R
dtype: int64
- name: cn_CAPSL
dtype: int64
- name: cn_UGT3A2
dtype: int64
- name: cn_RANBP3L
dtype: int64
- name: cn_FGF10
dtype: int64
- name: cn_GZMK
dtype: int64
- name: cn_CDC20B
dtype: int64
- name: cn_CCNO
dtype: int64
- name: cn_IL6ST
dtype: int64
- name: cn_PART1
dtype: int64
- name: cn_GTF2H2B
dtype: int64
- name: cn_CARTPT
dtype: int64
- name: cn_FOXD1
dtype: int64
- name: cn_F2RL2
dtype: int64
- name: cn_PDE8B
dtype: int64
- name: cn_THBS4
dtype: int64
- name: cn_CKMT2
dtype: int64
- name: cn_HAPLN1
dtype: int64
- name: cn_EDIL3
dtype: int64
- name: cn_GPR98
dtype: int64
- name: cn_FAM81B
dtype: int64
- name: cn_C5orf27
dtype: int64
- name: cn_PCSK1
dtype: int64
- name: cn_ERAP2
dtype: int64
- name: cn_EFNA5
dtype: int64
- name: cn_TSLP
dtype: int64
- name: cn_TRIM36
dtype: int64
- name: cn_CDO1
dtype: int64
- name: cn_AQPEP
dtype: int64
- name: cn_MEGF10
dtype: int64
- name: cn_FBN2
dtype: int64
- name: cn_SLC27A6
dtype: int64
- name: cn_ADAMTS19
dtype: int64
- name: cn_SHROOM1
dtype: int64
- name: cn_FSTL4
dtype: int64
- name: cn_PITX1
dtype: int64
- name: cn_C5orf20
dtype: int64
- name: cn_CXCL14
dtype: int64
- name: cn_PCDHA1
dtype: int64
- name: cn_PCDHA3
dtype: int64
- name: cn_PCDHA4
dtype: int64
- name: cn_PCDHA10
dtype: int64
- name: cn_PCDHA11
dtype: int64
- name: cn_PCDHA5
dtype: int64
- name: cn_PCDHA6
dtype: int64
- name: cn_PCDHA12
dtype: int64
- name: cn_PCDHA13
dtype: int64
- name: cn_IL17B
dtype: int64
- name: cn_GPX3
dtype: int64
- name: cn_FAT2
dtype: int64
- name: cn_GRIA1
dtype: int64
- name: cn_ITK
dtype: int64
- name: cn_FABP6
dtype: int64
- name: cn_ATP10B
dtype: int64
- name: cn_FBLL1
dtype: int64
- name: cn_FAM196B
dtype: int64
- name: cn_FOXI1
dtype: int64
- name: cn_GABRP
dtype: int64
- name: cn_STC2
dtype: int64
- name: cn_MSX2
dtype: int64
- name: cn_CPLX2
dtype: int64
- name: cn_UNC5A
dtype: int64
- name: cn_FGFR4
dtype: int64
- name: cn_RASGEF1C
dtype: int64
- name: cn_SCGB3A1
dtype: int64
- name: cn_BTNL9
dtype: int64
- name: cn_IRF4
dtype: int64
- name: cn_FOXC1
dtype: int64
- name: cn_TUBB2B
dtype: int64
- name: cn_ELOVL2
dtype: int64
- name: cn_RNF182
dtype: int64
- name: cn_RBM24
dtype: int64
- name: cn_ID4
dtype: int64
- name: cn_DCDC2
dtype: int64
- name: cn_KIAA0319
dtype: int64
- name: cn_LRFN2
dtype: int64
- name: cn_PGC
dtype: int64
- name: cn_GNMT
dtype: int64
- name: cn_DLK2
dtype: int64
- name: cn_C6orf223
dtype: int64
- name: cn_GSTA1
dtype: int64
- name: cn_HMGCLL1
dtype: int64
- name: cn_BMP5
dtype: int64
- name: cn_COL9A1
dtype: int64
- name: cn_RIMS1
dtype: int64
- name: cn_KCNQ5
dtype: int64
- name: cn_DDX43
dtype: int64
- name: cn_MRAP2
dtype: int64
- name: cn_CGA
dtype: int64
- name: cn_CNR1
dtype: int64
- name: cn_EPHA7
dtype: int64
- name: cn_FUT9
dtype: int64
- name: cn_SIM1
dtype: int64
- name: cn_POPDC3
dtype: int64
- name: cn_WISP3
dtype: int64
- name: cn_COL10A1
dtype: int64
- name: cn_RFX6
dtype: int64
- name: cn_PKIB
dtype: int64
- name: cn_FABP7
dtype: int64
- name: cn_TRDN
dtype: int64
- name: cn_KIAA0408
dtype: int64
- name: cn_ENPP3
dtype: int64
- name: cn_EYA4
dtype: int64
- name: cn_MYB
dtype: int64
- name: cn_IL20RA
dtype: int64
- name: cn_IL22RA2
dtype: int64
- name: cn_GPR126
dtype: int64
- name: cn_SAMD5
dtype: int64
- name: cn_ULBP1
dtype: int64
- name: cn_PPP1R14C
dtype: int64
- name: cn_IYD
dtype: int64
- name: cn_ESR1
dtype: int64
- name: cn_PNLDC1
dtype: int64
- name: cn_SLC22A3
dtype: int64
- name: cn_DACT2
dtype: int64
- name: cn_FRMD1
dtype: int64
- name: cn_AMZ1
dtype: int64
- name: cn_ITGB8
dtype: int64
- name: cn_ABCB5
dtype: int64
- name: cn_DNAH11
dtype: int64
- name: cn_MGAM
dtype: int64
- name: cn_PRSS1
dtype: int64
- name: cn_PIP
dtype: int64
- name: cn_CNTNAP2
dtype: int64
- name: cn_KCNH2
dtype: int64
- name: cn_WDR86
dtype: int64
- name: cn_DPP6
dtype: int64
- name: cn_EN2
dtype: int64
- name: cn_MNX1
dtype: int64
- name: cn_PTPRN2
dtype: int64
- name: cn_VIPR2
dtype: int64
- name: cn_CSMD1
dtype: int64
- name: cn_DEFB1
dtype: int64
- name: cn_BLK
dtype: int64
- name: cn_GATA4
dtype: int64
- name: cn_SLC7A2
dtype: int64
- name: cn_FGL1
dtype: int64
- name: cn_NAT1
dtype: int64
- name: cn_LPL
dtype: int64
- name: cn_NPM2
dtype: int64
- name: cn_HR
dtype: int64
- name: cn_EGR3
dtype: int64
- name: cn_PEBP4
dtype: int64
- name: cn_ADAMDEC1
dtype: int64
- name: cn_NEFL
dtype: int64
- name: cn_SCARA5
dtype: int64
- name: cn_NRG1
dtype: int64
- name: cn_ADAM32
dtype: int64
- name: cn_IDO1
dtype: int64
- name: cn_C8orf4
dtype: int64
- name: cn_ZMAT4
dtype: int64
- name: cn_SFRP1
dtype: int64
- name: cn_ANK1
dtype: int64
- name: cn_EFCAB1
dtype: int64
- name: cn_PXDNL
dtype: int64
- name: cn_OPRK1
dtype: int64
- name: cn_RP1
dtype: int64
- name: cn_SDR16C5
dtype: int64
- name: cn_PENK
dtype: int64
- name: cn_CA8
dtype: int64
- name: cn_TRIM55
dtype: int64
- name: cn_C8orf46
dtype: int64
- name: cn_CPA6
dtype: int64
- name: cn_PREX2
dtype: int64
- name: cn_C8orf34
dtype: int64
- name: cn_XKR9
dtype: int64
- name: cn_EYA1
dtype: int64
- name: cn_TRPA1
dtype: int64
- name: cn_PI15
dtype: int64
- name: cn_CRISPLD1
dtype: int64
- name: cn_HNF4G
dtype: int64
- name: cn_PKIA
dtype: int64
- name: cn_FABP4
dtype: int64
- name: cn_CA3
dtype: int64
- name: cn_CA2
dtype: int64
- name: cn_ATP6V0D2
dtype: int64
- name: cn_MATN2
dtype: int64
- name: cn_C8orf47
dtype: int64
- name: cn_RGS22
dtype: int64
- name: cn_RIMS2
dtype: int64
- name: cn_PKHD1L1
dtype: int64
- name: cn_CSMD3
dtype: int64
- name: cn_SLC30A8
dtype: int64
- name: cn_TNFRSF11B
dtype: int64
- name: cn_COL14A1
dtype: int64
- name: cn_FAM83A
dtype: int64
- name: cn_GSDMC
dtype: int64
- name: cn_FAM135B
dtype: int64
- name: cn_COL22A1
dtype: int64
- name: cn_BAI1
dtype: int64
- name: cn_ARC
dtype: int64
- name: cn_PSCA
dtype: int64
- name: cn_LY6K
dtype: int64
- name: cn_SLURP1
dtype: int64
- name: cn_LY6D
dtype: int64
- name: cn_GPIHBP1
dtype: int64
- name: cn_MAPK15
dtype: int64
- name: cn_GPT
dtype: int64
- name: cn_SLC1A1
dtype: int64
- name: cn_RLN2
dtype: int64
- name: cn_IL33
dtype: int64
- name: cn_GLDC
dtype: int64
- name: cn_TYRP1
dtype: int64
- name: cn_FREM1
dtype: int64
- name: cn_SH3GL2
dtype: int64
- name: cn_SLC24A2
dtype: int64
- name: cn_CDKN2A
dtype: int64
- name: cn_DMRTA1
dtype: int64
- name: cn_ELAVL2
dtype: int64
- name: cn_TMEM215
dtype: int64
- name: cn_AQP7
dtype: int64
- name: cn_AQP3
dtype: int64
- name: cn_PRSS3
dtype: int64
- name: cn_DNAI1
dtype: int64
- name: cn_ENHO
dtype: int64
- name: cn_CNTFR
dtype: int64
- name: cn_CCL19
dtype: int64
- name: cn_CCL21
dtype: int64
- name: cn_KIAA1045
dtype: int64
- name: cn_CA9
dtype: int64
- name: cn_HRCT1
dtype: int64
- name: cn_MELK
dtype: int64
- name: cn_PAX5
dtype: int64
- name: cn_CNTNAP3
dtype: int64
- name: cn_PGM5
dtype: int64
- name: cn_GPR144
dtype: int64
- name: cn_LCN2
dtype: int64
- name: cn_ENTPD8
dtype: int64
- name: cn_CACNA1B
dtype: int64
- name: cn_TUBBP5
dtype: int64
- name: cn_AKR1E2
dtype: int64
- name: cn_AKR1C1
dtype: int64
- name: cn_AKR1C2
dtype: int64
- name: cn_CALML5
dtype: int64
- name: cn_CALML3
dtype: int64
- name: cn_ITIH5
dtype: int64
- name: cn_ITIH2
dtype: int64
- name: cn_GATA3
dtype: int64
- name: cn_MCM10
dtype: int64
- name: cn_BEND7
dtype: int64
- name: cn_ITGA8
dtype: int64
- name: cn_ST8SIA6
dtype: int64
- name: cn_MRC1
dtype: int64
- name: cn_ARMC3
dtype: int64
- name: cn_C10orf107
dtype: int64
- name: cn_SYNPO2L
dtype: int64
- name: cn_DUSP13
dtype: int64
- name: cn_PLAC9
dtype: int64
- name: cn_SFTPA2
dtype: int64
- name: cn_MAT1A
dtype: int64
- name: cn_DYDC2
dtype: int64
- name: cn_C10orf90
dtype: int64
- name: cn_FAM196A
dtype: int64
- name: cn_KNDC1
dtype: int64
- name: cn_SYCE1
dtype: int64
- name: cn_WT1
dtype: int64
- name: cn_ELF5
dtype: int64
- name: cn_EHF
dtype: int64
- name: cn_SLC1A2
dtype: int64
- name: cn_LRRC4C
dtype: int64
- name: cn_CTSW
dtype: int64
- name: cn_SPDYC
dtype: int64
- name: cn_ZNHIT2
dtype: int64
- name: cn_SYT12
dtype: int64
- name: cn_ACY3
dtype: int64
- name: cn_ALDH3B2
dtype: int64
- name: cn_GAL
dtype: int64
- name: cn_MYEOV
dtype: int64
- name: cn_FOLR1
dtype: int64
- name: cn_PLEKHB1
dtype: int64
- name: cn_CHRDL2
dtype: int64
- name: cn_MOGAT2
dtype: int64
- name: cn_DGAT2
dtype: int64
- name: cn_WNT11
dtype: int64
- name: cn_KCTD14
dtype: int64
- name: cn_THRSP
dtype: int64
- name: cn_FAM181B
dtype: int64
- name: cn_PGR
dtype: int64
- name: cn_MMP7
dtype: int64
- name: cn_MMP10
dtype: int64
- name: cn_MMP1
dtype: int64
- name: cn_MMP3
dtype: int64
- name: cn_MMP12
dtype: int64
- name: cn_MMP13
dtype: int64
- name: cn_GRIA4
dtype: int64
- name: cn_C11orf92
dtype: int64
- name: cn_POU2AF1
dtype: int64
- name: cn_CRYAB
dtype: int64
- name: cn_NCAM1
dtype: int64
- name: cn_DRD2
dtype: int64
- name: cn_ZBTB16
dtype: int64
- name: cn_DSCAML1
dtype: int64
- name: cn_TMPRSS4
dtype: int64
- name: cn_SCN2B
dtype: int64
- name: cn_CD3E
dtype: int64
- name: cn_CD3D
dtype: int64
- name: cn_CD3G
dtype: int64
- name: cn_TTC36
dtype: int64
- name: cn_CXCR5
dtype: int64
- name: cn_TRIM29
dtype: int64
- name: cn_GRIK4
dtype: int64
- name: cn_VSIG2
dtype: int64
- name: cn_HEPACAM
dtype: int64
- name: cn_HEPN1
dtype: int64
- name: cn_PKNOX2
dtype: int64
- name: cn_BARX2
dtype: int64
- name: cn_TMEM45B
dtype: int64
- name: cn_ADAMTS8
dtype: int64
- name: cn_ADAMTS15
dtype: int64
- name: cn_IGSF9B
dtype: int64
- name: cn_B3GAT1
dtype: int64
- name: cn_GLB1L2
dtype: int64
- name: cn_B4GALNT3
dtype: int64
- name: cn_LRTM2
dtype: int64
- name: cn_KCNA1
dtype: int64
- name: cn_NTF3
dtype: int64
- name: cn_SCNN1A
dtype: int64
- name: cn_CLEC4E
dtype: int64
- name: cn_A2ML1
dtype: int64
- name: cn_KLRB1
dtype: int64
- name: cn_BCL2L14
dtype: int64
- name: cn_MGP
dtype: int64
- name: cn_ERP27
dtype: int64
- name: cn_LMO3
dtype: int64
- name: cn_RERGL
dtype: int64
- name: cn_SLCO1A2
dtype: int64
- name: cn_C12orf39
dtype: int64
- name: cn_TUBA3C
dtype: int64
- name: cn_GJB2
dtype: int64
- name: cn_GJB6
dtype: int64
- name: cn_FGF9
dtype: int64
- name: cn_SGCG
dtype: int64
- name: cn_ATP8A2
dtype: int64
- name: cn_SHISA2
dtype: int64
- name: cn_GPR12
dtype: int64
- name: cn_FLT3
dtype: int64
- name: cn_DCLK1
dtype: int64
- name: cn_FREM2
dtype: int64
- name: cn_PCDH20
dtype: int64
- name: cn_PCDH9
dtype: int64
- name: cn_KLHL1
dtype: int64
- name: cn_DACH1
dtype: int64
- name: cn_SCEL
dtype: int64
- name: cn_SLAIN1
dtype: int64
- name: cn_POU4F1
dtype: int64
- name: cn_SLITRK1
dtype: int64
- name: cn_SLITRK6
dtype: int64
- name: cn_SLITRK5
dtype: int64
- name: cn_CLDN10
dtype: int64
- name: cn_HS6ST3
dtype: int64
- name: cn_OXGR1
dtype: int64
- name: cn_SLC15A1
dtype: int64
- name: cn_ZIC5
dtype: int64
- name: cn_ZIC2
dtype: int64
- name: cn_FAM155A
dtype: int64
- name: cn_F7
dtype: int64
- name: cn_DHRS2
dtype: int64
- name: cn_NOVA1
dtype: int64
- name: cn_COCH
dtype: int64
- name: cn_PAX9
dtype: int64
- name: cn_FOXA1
dtype: int64
- name: cn_SSTR1
dtype: int64
- name: cn_ABHD12B
dtype: int64
- name: cn_PRIMA1
dtype: int64
- name: cn_IFI27
dtype: int64
- name: cn_PPP4R4
dtype: int64
- name: cn_SERPINA6
dtype: int64
- name: cn_SERPINA1
dtype: int64
- name: cn_SERPINA11
dtype: int64
- name: cn_SERPINA5
dtype: int64
- name: cn_SERPINA3
dtype: int64
- name: cn_TCL1B
dtype: int64
- name: cn_TCL1A
dtype: int64
- name: cn_DEGS2
dtype: int64
- name: cn_DLK1
dtype: int64
- name: cn_DIO3
dtype: int64
- name: cn_TDRD9
dtype: int64
- name: cn_C14orf180
dtype: int64
- name: cn_PLD4
dtype: int64
- name: cn_CRIP1
dtype: int64
- name: cn_ADAM6
dtype: int64
- name: cn_KIAA0125
dtype: int64
- name: cn_THSD4
dtype: int64
- name: cn_GRAMD2
dtype: int64
- name: cn_C15orf59
dtype: int64
- name: cn_CRABP1
dtype: int64
- name: cn_RASGRF1
dtype: int64
- name: cn_KIAA1199
dtype: int64
- name: cn_TMC3
dtype: int64
- name: cn_AP3B2
dtype: int64
- name: cn_BNC1
dtype: int64
- name: cn_NTRK3
dtype: int64
- name: cn_ACAN
dtype: int64
- name: cn_RHCG
dtype: int64
- name: cn_PLIN1
dtype: int64
- name: cn_MESP1
dtype: int64
- name: cn_ANPEP
dtype: int64
- name: cn_ST8SIA2
dtype: int64
- name: cn_RGMA
dtype: int64
- name: cn_SYNM
dtype: int64
- name: cn_ARHGDIG
dtype: int64
- name: cn_HBA1
dtype: int64
- name: cn_HBA2
dtype: int64
- name: cn_RGS11
dtype: int64
- name: cn_FBXL16
dtype: int64
- name: cn_METRN
dtype: int64
- name: cn_CCDC78
dtype: int64
- name: cn_HAGHL
dtype: int64
- name: cn_GNG13
dtype: int64
- name: cn_MSLN
dtype: int64
- name: cn_SOX8
dtype: int64
- name: cn_CACNA1H
dtype: int64
- name: cn_TPSAB1
dtype: int64
- name: cn_TPSB2
dtype: int64
- name: cn_TPSD1
dtype: int64
- name: cn_TPSG1
dtype: int64
- name: cn_BAIAP3
dtype: int64
- name: cn_IGFALS
dtype: int64
- name: cn_NPW
dtype: int64
- name: cn_RAB26
dtype: int64
- name: cn_PRSS33
dtype: int64
- name: cn_PRSS21
dtype: int64
- name: cn_ZG16B
dtype: int64
- name: cn_KREMEN2
dtype: int64
- name: cn_PKMYT1
dtype: int64
- name: cn_CLDN6
dtype: int64
- name: cn_C16orf89
dtype: int64
- name: cn_ABAT
dtype: int64
- name: cn_GRIN2A
dtype: int64
- name: cn_TNFRSF17
dtype: int64
- name: cn_SHISA9
dtype: int64
- name: cn_ABCC6
dtype: int64
- name: cn_MPV17L
dtype: int64
- name: cn_MYH11
dtype: int64
- name: cn_PLA2G10
dtype: int64
- name: cn_SYT17
dtype: int64
- name: cn_TMC5
dtype: int64
- name: cn_GP2
dtype: int64
- name: cn_ACSM5
dtype: int64
- name: cn_ACSM1
dtype: int64
- name: cn_DNAH3
dtype: int64
- name: cn_CRYM
dtype: int64
- name: cn_SCNN1G
dtype: int64
- name: cn_SCNN1B
dtype: int64
- name: cn_HS3ST4
dtype: int64
- name: cn_CD19
dtype: int64
- name: cn_ASPHD1
dtype: int64
- name: cn_DOC2A
dtype: int64
- name: cn_FAM57B
dtype: int64
- name: cn_SEZ6L2
dtype: int64
- name: cn_PYDC1
dtype: int64
- name: cn_ABCC12
dtype: int64
- name: cn_ABCC11
dtype: int64
- name: cn_CBLN1
dtype: int64
- name: cn_TOX3
dtype: int64
- name: cn_IRX6
dtype: int64
- name: cn_SLC6A2
dtype: int64
- name: cn_CES1
dtype: int64
- name: cn_MT1M
dtype: int64
- name: cn_MT1A
dtype: int64
- name: cn_MT1G
dtype: int64
- name: cn_CCL17
dtype: int64
- name: cn_RRAD
dtype: int64
- name: cn_CES3
dtype: int64
- name: cn_RLTPR
dtype: int64
- name: cn_CDH3
dtype: int64
- name: cn_CDH1
dtype: int64
- name: cn_HAS3
dtype: int64
- name: cn_IL34
dtype: int64
- name: cn_CALB2
dtype: int64
- name: cn_CHST4
dtype: int64
- name: cn_TAT
dtype: int64
- name: cn_HP
dtype: int64
- name: cn_SYCE1L
dtype: int64
- name: cn_ADAMTS18
dtype: int64
- name: cn_CLEC3A
dtype: int64
- name: cn_PKD1L2
dtype: int64
- name: cn_SDR42E1
dtype: int64
- name: cn_HSD17B2
dtype: int64
- name: cn_CPNE7
dtype: int64
- name: cn_DPEP1
dtype: int64
- name: cn_TUBB3
dtype: int64
- name: cn_CCDC144B
dtype: int64
- name: cn_MFAP4
dtype: int64
- name: cn_ALDH3A1
dtype: int64
- name: cn_SLC13A2
dtype: int64
- name: cn_CORO6
dtype: int64
- name: cn_SLC6A4
dtype: int64
- name: cn_RHBDL3
dtype: int64
- name: cn_CCL11
dtype: int64
- name: cn_CCL13
dtype: int64
- name: cn_CCL7
dtype: int64
- name: cn_CCL8
dtype: int64
- name: cn_GAS2L2
dtype: int64
- name: cn_CCL14
dtype: int64
- name: cn_CCL18
dtype: int64
- name: cn_TBC1D3C
dtype: int64
- name: cn_TBC1D3G
dtype: int64
- name: cn_STAC2
dtype: int64
- name: cn_PPP1R1B
dtype: int64
- name: cn_PNMT
dtype: int64
- name: cn_IKZF3
dtype: int64
- name: cn_TOP2A
dtype: int64
- name: cn_TNS4
dtype: int64
- name: cn_CCR7
dtype: int64
- name: cn_KRT23
dtype: int64
- name: cn_KRT31
dtype: int64
- name: cn_KRT13
dtype: int64
- name: cn_KRT15
dtype: int64
- name: cn_KRT14
dtype: int64
- name: cn_KRT16
dtype: int64
- name: cn_KRT17
dtype: int64
- name: cn_HAP1
dtype: int64
- name: cn_WNK4
dtype: int64
- name: cn_RND2
dtype: int64
- name: cn_ETV4
dtype: int64
- name: cn_MEOX1
dtype: int64
- name: cn_CD300LG
dtype: int64
- name: cn_PYY
dtype: int64
- name: cn_RUNDC3A
dtype: int64
- name: cn_GFAP
dtype: int64
- name: cn_KIF18B
dtype: int64
- name: cn_CRHR1
dtype: int64
- name: cn_MAPT
dtype: int64
- name: cn_HOXB2
dtype: int64
- name: cn_HOXB5
dtype: int64
- name: cn_HOXB6
dtype: int64
- name: cn_HOXB13
dtype: int64
- name: cn_B4GALNT2
dtype: int64
- name: cn_NGFR
dtype: int64
- name: cn_DLX3
dtype: int64
- name: cn_CHAD
dtype: int64
- name: cn_HLF
dtype: int64
- name: cn_TMEM100
dtype: int64
- name: cn_TEX14
dtype: int64
- name: cn_PPM1E
dtype: int64
- name: cn_PRR11
dtype: int64
- name: cn_CA4
dtype: int64
- name: cn_TCAM1P
dtype: int64
- name: cn_SCN4A
dtype: int64
- name: cn_RGS9
dtype: int64
- name: cn_CACNG4
dtype: int64
- name: cn_CACNG1
dtype: int64
- name: cn_SLC16A6
dtype: int64
- name: cn_ABCA8
dtype: int64
- name: cn_ABCA9
dtype: int64
- name: cn_ABCA6
dtype: int64
- name: cn_ABCA10
dtype: int64
- name: cn_KCNJ16
dtype: int64
- name: cn_SSTR2
dtype: int64
- name: cn_SDK2
dtype: int64
- name: cn_KIF19
dtype: int64
- name: cn_FOXJ1
dtype: int64
- name: cn_ST6GALNAC1
dtype: int64
- name: cn_MGAT5B
dtype: int64
- name: cn_BIRC5
dtype: int64
- name: cn_CBX2
dtype: int64
- name: cn_NPTX1
dtype: int64
- name: cn_NOTUM
dtype: int64
- name: cn_CLUL1
dtype: int64
- name: cn_ADCYAP1
dtype: int64
- name: cn_MYOM1
dtype: int64
- name: cn_DLGAP1
dtype: int64
- name: cn_LAMA1
dtype: int64
- name: cn_CIDEA
dtype: int64
- name: cn_CXADRP3
dtype: int64
- name: cn_ANKRD30B
dtype: int64
- name: cn_GREB1L
dtype: int64
- name: cn_LAMA3
dtype: int64
- name: cn_AQP4
dtype: int64
- name: cn_CHST9
dtype: int64
- name: cn_CDH2
dtype: int64
- name: cn_DSC3
dtype: int64
- name: cn_DSC1
dtype: int64
- name: cn_DSG1
dtype: int64
- name: cn_DSG3
dtype: int64
- name: cn_NOL4
dtype: int64
- name: cn_SLC39A6
dtype: int64
- name: cn_SLC14A2
dtype: int64
- name: cn_SIGLEC15
dtype: int64
- name: cn_MAPK4
dtype: int64
- name: cn_CCDC68
dtype: int64
- name: cn_ONECUT2
dtype: int64
- name: cn_GRP
dtype: int64
- name: cn_SERPINB5
dtype: int64
- name: cn_SERPINB3
dtype: int64
- name: cn_SERPINB7
dtype: int64
- name: cn_SERPINB2
dtype: int64
- name: cn_CDH7
dtype: int64
- name: cn_CDH19
dtype: int64
- name: cn_CBLN2
dtype: int64
- name: cn_NETO1
dtype: int64
- name: cn_GZMM
dtype: int64
- name: cn_HCN2
dtype: int64
- name: cn_AZU1
dtype: int64
- name: cn_LPPR3
dtype: int64
- name: cn_CFD
dtype: int64
- name: cn_KISS1R
dtype: int64
- name: cn_CELF5
dtype: int64
- name: cn_ZFR2
dtype: int64
- name: cn_LRG1
dtype: int64
- name: cn_PLIN4
dtype: int64
- name: cn_PLIN5
dtype: int64
- name: cn_FUT3
dtype: int64
- name: cn_FUT6
dtype: int64
- name: cn_CAPS
dtype: int64
- name: cn_PCP2
dtype: int64
- name: cn_FCER2
dtype: int64
- name: cn_FBN3
dtype: int64
- name: cn_MUC16
dtype: int64
- name: cn_P2RY11
dtype: int64
- name: cn_ICAM5
dtype: int64
- name: cn_MAST1
dtype: int64
- name: cn_PALM3
dtype: int64
- name: cn_SLC1A6
dtype: int64
- name: cn_CASP14
dtype: int64
- name: cn_PGLYRP2
dtype: int64
- name: cn_CYP4F22
dtype: int64
- name: cn_CYP4F8
dtype: int64
- name: cn_CYP4F3
dtype: int64
- name: cn_CYP4F12
dtype: int64
- name: cn_UCA1
dtype: int64
- name: cn_CYP4F11
dtype: int64
- name: cn_NWD1
dtype: int64
- name: cn_CPAMD8
dtype: int64
- name: cn_B3GNT3
dtype: int64
- name: cn_TDRD12
dtype: int64
- name: cn_SLC7A10
dtype: int64
- name: cn_CHST8
dtype: int64
- name: cn_HPN
dtype: int64
- name: cn_FXYD1
dtype: int64
- name: cn_MAG
dtype: int64
- name: cn_FFAR2
dtype: int64
- name: cn_DMKN
dtype: int64
- name: cn_SBSN
dtype: int64
- name: cn_UPK1A
dtype: int64
- name: cn_HSPB6
dtype: int64
- name: cn_APLP1
dtype: int64
- name: cn_PPP1R14A
dtype: int64
- name: cn_C19orf33
dtype: int64
- name: cn_RYR1
dtype: int64
- name: cn_LGALS7
dtype: int64
- name: cn_LGALS7B
dtype: int64
- name: cn_NCCRP1
dtype: int64
- name: cn_DLL3
dtype: int64
- name: cn_FCGBP
dtype: int64
- name: cn_CNTD2
dtype: int64
- name: cn_MIA
dtype: int64
- name: cn_CYP2A6
dtype: int64
- name: cn_CYP2A7
dtype: int64
- name: cn_CYP2B7P1
dtype: int64
- name: cn_CEACAM7
dtype: int64
- name: cn_CEACAM5
dtype: int64
- name: cn_CEACAM6
dtype: int64
- name: cn_CD79A
dtype: int64
- name: cn_ATP1A3
dtype: int64
- name: cn_KCNN4
dtype: int64
- name: cn_CBLC
dtype: int64
- name: cn_FOSB
dtype: int64
- name: cn_FOXA3
dtype: int64
- name: cn_KCNC3
dtype: int64
- name: cn_SPIB
dtype: int64
- name: cn_KLK6
dtype: int64
- name: cn_KLK7
dtype: int64
- name: cn_KLK8
dtype: int64
- name: cn_KLK10
dtype: int64
- name: cn_KLK11
dtype: int64
- name: cn_KLK12
dtype: int64
- name: cn_KLK13
dtype: int64
- name: cn_KLK14
dtype: int64
- name: cn_HAS1
dtype: int64
- name: cn_NLRP7
dtype: int64
- name: cn_NLRP2
dtype: int64
- name: cn_TNNT1
dtype: int64
- name: cn_TNNI3
dtype: int64
- name: cn_SYT5
dtype: int64
- name: cn_COX6B2
dtype: int64
- name: cn_NLRP5
dtype: int64
- name: cn_PEG3
dtype: int64
- name: cn_ZSCAN1
dtype: int64
- name: cn_DEFB132
dtype: int64
- name: cn_RSPO4
dtype: int64
- name: cn_SIRPG
dtype: int64
- name: cn_TGM3
dtype: int64
- name: cn_ADAM33
dtype: int64
- name: cn_SPEF1
dtype: int64
- name: cn_PRND
dtype: int64
- name: cn_CHGB
dtype: int64
- name: cn_FERMT1
dtype: int64
- name: cn_PAK7
dtype: int64
- name: cn_SNAP25
dtype: int64
- name: cn_FLRT3
dtype: int64
- name: cn_PCSK2
dtype: int64
- name: cn_PTPRT
dtype: int64
- name: cn_BCAS1
dtype: int64
- name: cn_CYP24A1
dtype: int64
- name: cn_BMP7
dtype: int64
- name: cn_PCK1
dtype: int64
- name: cn_ZBP1
dtype: int64
- name: cn_C20orf85
dtype: int64
- name: cn_APCDD1L
dtype: int64
- name: cn_ZNF831
dtype: int64
- name: cn_EDN3
dtype: int64
- name: cn_GATA5
dtype: int64
- name: cn_COL9A3
dtype: int64
- name: cn_EEF1A2
dtype: int64
- name: cn_SRMS
dtype: int64
- name: cn_MYT1
dtype: int64
- name: cn_ABCC13
dtype: int64
- name: cn_CXADR
dtype: int64
- name: cn_CHODL
dtype: int64
- name: cn_NCAM2
dtype: int64
- name: cn_B3GALT5
dtype: int64
- name: cn_C21orf88
dtype: int64
- name: cn_FAM3B
dtype: int64
- name: cn_TMPRSS2
dtype: int64
- name: cn_UMODL1
dtype: int64
- name: cn_S100B
dtype: int64
- name: cn_CECR7
dtype: int64
- name: cn_CECR2
dtype: int64
- name: cn_CDC45
dtype: int64
- name: cn_PRODH
dtype: int64
- name: cn_SLC7A4
dtype: int64
- name: cn_TBX1
dtype: int64
- name: cn_PRAME
dtype: int64
- name: cn_VPREB3
dtype: int64
- name: cn_MMP11
dtype: int64
- name: cn_GSTT1
dtype: int64
- name: cn_MYO18B
dtype: int64
- name: cn_SEZ6L
dtype: int64
- name: cn_NEFH
dtype: int64
- name: cn_SEC14L2
dtype: int64
- name: cn_INPP5J
dtype: int64
- name: cn_PLA2G3
dtype: int64
- name: cn_SLC5A1
dtype: int64
- name: cn_TMPRSS6
dtype: int64
- name: cn_ELFN2
dtype: int64
- name: cn_LGALS2
dtype: int64
- name: cn_SOX10
dtype: int64
- name: cn_APOBEC3B
dtype: int64
- name: cn_CACNA1I
dtype: int64
- name: cn_SEPT3
dtype: int64
- name: cn_SERHL2
dtype: int64
- name: cn_SCUBE1
dtype: int64
- name: cn_MPPED1
dtype: int64
- name: cn_SULT4A1
dtype: int64
- name: cn_PNPLA3
dtype: int64
- name: cn_PHF21B
dtype: int64
- name: cn_UPK3A
dtype: int64
- name: cn_SMC1B
dtype: int64
- name: cn_WNT7B
dtype: int64
- name: cn_KLHDC7B
dtype: int64
- name: cn_MAPK8IP2
dtype: int64
- name: cn_MLC1
dtype: int64
- name: mu_ANK3
dtype: int64
- name: mu_GATA3
dtype: int64
- name: mu_HECTD4
dtype: int64
- name: mu_LRBA
dtype: int64
- name: mu_LRP2
dtype: int64
- name: mu_SYNE1
dtype: int64
- name: mu_CDH1
dtype: int64
- name: mu_MGA
dtype: int64
- name: mu_MUC16
dtype: int64
- name: mu_ZFHX4
dtype: int64
- name: mu_LAMA2
dtype: int64
- name: mu_MLL3
dtype: int64
- name: mu_MUC5B
dtype: int64
- name: mu_PLXNA4
dtype: int64
- name: mu_PTPRD
dtype: int64
- name: mu_CSMD2
dtype: int64
- name: mu_DSCAM
dtype: int64
- name: mu_FAT2
dtype: int64
- name: mu_MAP3K1
dtype: int64
- name: mu_MED12
dtype: int64
- name: mu_RNA5-8SP6
dtype: int64
- name: mu_AHCTF1
dtype: int64
- name: mu_APOBR
dtype: int64
- name: mu_COL14A1
dtype: int64
- name: mu_COL7A1
dtype: int64
- name: mu_CSMD1
dtype: int64
- name: mu_CUBN
dtype: int64
- name: mu_DMD
dtype: int64
- name: mu_DNAH8
dtype: int64
- name: mu_GOLGA6L2
dtype: int64
- name: mu_HYDIN
dtype: int64
- name: mu_MUC12
dtype: int64
- name: mu_PLCE1
dtype: int64
- name: mu_RYR2
dtype: int64
- name: mu_USH2A
dtype: int64
- name: mu_AHNAK
dtype: int64
- name: mu_CDH23
dtype: int64
- name: mu_CEP350
dtype: int64
- name: mu_DNAH1
dtype: int64
- name: mu_DNAH7
dtype: int64
- name: mu_HERC2
dtype: int64
- name: mu_IGSF10
dtype: int64
- name: mu_KAT6B
dtype: int64
- name: mu_PIK3CA
dtype: int64
- name: mu_QSER1
dtype: int64
- name: mu_RB1
dtype: int64
- name: mu_TAF1L
dtype: int64
- name: mu_TCHH
dtype: int64
- name: mu_TEX15
dtype: int64
- name: mu_TP53
dtype: int64
- name: mu_ZFHX3
dtype: int64
- name: mu_SPEN
dtype: int64
- name: mu_FAT3
dtype: int64
- name: mu_MUC4
dtype: int64
- name: mu_OBSCN
dtype: int64
- name: mu_MUC20
dtype: int64
- name: mu_ODZ4
dtype: int64
- name: mu_ZAN
dtype: int64
- name: mu_AKAP9
dtype: int64
- name: mu_DNAH12
dtype: int64
- name: mu_DNAH5
dtype: int64
- name: mu_KIF26B
dtype: int64
- name: mu_NCOR1
dtype: int64
- name: mu_ARID1A
dtype: int64
- name: mu_ASPM
dtype: int64
- name: mu_CROCC
dtype: int64
- name: mu_DNAH17
dtype: int64
- name: mu_DSPP
dtype: int64
- name: mu_HRNR
dtype: int64
- name: mu_SVEP1
dtype: int64
- name: mu_ANK1
dtype: int64
- name: mu_CROCCP2
dtype: int64
- name: mu_MTOR
dtype: int64
- name: mu_LAMA1
dtype: int64
- name: mu_MST1P9
dtype: int64
- name: mu_PCNT
dtype: int64
- name: mu_SCN2A
dtype: int64
- name: mu_TTN
dtype: int64
- name: mu_DNAH6
dtype: int64
- name: mu_DYNC2H1
dtype: int64
- name: mu_OTOGL
dtype: int64
- name: mu_TNRC6B
dtype: int64
- name: mu_NF1
dtype: int64
- name: mu_PCLO
dtype: int64
- name: mu_ADAMTSL1
dtype: int64
- name: mu_CACNA1D
dtype: int64
- name: mu_FBN3
dtype: int64
- name: mu_MEGF8
dtype: int64
- name: mu_DST
dtype: int64
- name: mu_LYST
dtype: int64
- name: mu_MDN1
dtype: int64
- name: mu_TP53BP1
dtype: int64
- name: mu_ABCB1
dtype: int64
- name: mu_MXRA5
dtype: int64
- name: mu_HEATR7B2
dtype: int64
- name: mu_ATP10B
dtype: int64
- name: mu_CHD4
dtype: int64
- name: mu_FAT4
dtype: int64
- name: mu_FREM1
dtype: int64
- name: mu_MUC17
dtype: int64
- name: mu_TG
dtype: int64
- name: mu_TLN1
dtype: int64
- name: mu_DNAH3
dtype: int64
- name: mu_MGAM
dtype: int64
- name: mu_NEB
dtype: int64
- name: mu_RNF213
dtype: int64
- name: mu_SPTA1
dtype: int64
- name: mu_FLNC
dtype: int64
- name: mu_MLL2
dtype: int64
- name: mu_PDE4DIP
dtype: int64
- name: mu_MYH9
dtype: int64
- name: mu_AFF2
dtype: int64
- name: mu_COL6A5
dtype: int64
- name: mu_CTCF
dtype: int64
- name: mu_MACF1
dtype: int64
- name: mu_APOB
dtype: int64
- name: mu_CNTRL
dtype: int64
- name: mu_FLG
dtype: int64
- name: mu_FMN2
dtype: int64
- name: mu_UBR4
dtype: int64
- name: mu_GPR98
dtype: int64
- name: mu_PKHD1
dtype: int64
- name: mu_PTEN
dtype: int64
- name: mu_VPS13D
dtype: int64
- name: mu_ANK2
dtype: int64
- name: mu_MYH11
dtype: int64
- name: mu_FAM157B
dtype: int64
- name: mu_SRCAP
dtype: int64
- name: mu_CMYA5
dtype: int64
- name: mu_BRWD1
dtype: int64
- name: mu_HSPG2
dtype: int64
- name: mu_RP1
dtype: int64
- name: mu_RUNX1
dtype: int64
- name: mu_TBP
dtype: int64
- name: mu_WDR52
dtype: int64
- name: mu_BIRC6
dtype: int64
- name: mu_FAT1
dtype: int64
- name: mu_TPR
dtype: int64
- name: mu_FRAS1
dtype: int64
- name: mu_RELN
dtype: int64
- name: mu_RPGR
dtype: int64
- name: mu_NOTCH2
dtype: int64
- name: mu_DNHD1
dtype: int64
- name: mu_XIRP2
dtype: int64
- name: mu_ANKRD30BL
dtype: int64
- name: mu_CBFB
dtype: int64
- name: mu_PDE3A
dtype: int64
- name: mu_CACNA1A
dtype: int64
- name: mu_THSD7B
dtype: int64
- name: mu_ABCA13
dtype: int64
- name: mu_EYS
dtype: int64
- name: mu_PKD1L1
dtype: int64
- name: mu_RYR3
dtype: int64
- name: mu_FRG1B
dtype: int64
- name: mu_HUWE1
dtype: int64
- name: mu_FOXA1
dtype: int64
- name: mu_FCGBP
dtype: int64
- name: mu_CACNA1E
dtype: int64
- name: mu_ANKRD12
dtype: int64
- name: mu_CHD5
dtype: int64
- name: mu_GRID1
dtype: int64
- name: mu_KIF4A
dtype: int64
- name: mu_MLL
dtype: int64
- name: mu_PCNXL2
dtype: int64
- name: mu_PRKDC
dtype: int64
- name: mu_SI
dtype: int64
- name: mu_PTPRB
dtype: int64
- name: mu_CACNA1C
dtype: int64
- name: mu_CSPP1
dtype: int64
- name: mu_PREX2
dtype: int64
- name: mu_SMG1
dtype: int64
- name: mu_UBR5
dtype: int64
- name: mu_KIAA1210
dtype: int64
- name: mu_COL6A3
dtype: int64
- name: mu_ODZ1
dtype: int64
- name: mu_AHNAK2
dtype: int64
- name: mu_AKAP13
dtype: int64
- name: mu_ASTN1
dtype: int64
- name: mu_CACNA1F
dtype: int64
- name: mu_CHD6
dtype: int64
- name: mu_CHD8
dtype: int64
- name: mu_CNTNAP2
dtype: int64
- name: mu_DNAH2
dtype: int64
- name: mu_DYNC1H1
dtype: int64
- name: mu_FLNA
dtype: int64
- name: mu_GRIN2A
dtype: int64
- name: mu_KIAA0947
dtype: int64
- name: mu_KIAA1109
dtype: int64
- name: mu_LRP1
dtype: int64
- name: mu_MYH1
dtype: int64
- name: mu_MYO18B
dtype: int64
- name: mu_RYR1
dtype: int64
- name: mu_SDK1
dtype: int64
- name: mu_STARD9
dtype: int64
- name: mu_ERBB2
dtype: int64
- name: mu_SETD2
dtype: int64
- name: mu_VCAN
dtype: int64
- name: mu_WDFY3
dtype: int64
- name: mu_ATM
dtype: int64
- name: mu_UTRN
dtype: int64
- name: mu_VPS13B
dtype: int64
- name: mu_MAP2
dtype: int64
- name: mu_DNAH10
dtype: int64
- name: mu_SYNE2
dtype: int64
- name: mu_MAP2K4
dtype: int64
- name: mu_TNXB
dtype: int64
- name: mu_ASH1L
dtype: int64
- name: mu_ASXL2
dtype: int64
- name: mu_HMCN1
dtype: int64
- name: mu_ALMS1
dtype: int64
- name: mu_ITPR2
dtype: int64
- name: mu_TBX3
dtype: int64
- name: mu_F8
dtype: int64
- name: mu_AKD1
dtype: int64
- name: mu_ERBB3
dtype: int64
- name: mu_CENPE
dtype: int64
- name: mu_ABCA12
dtype: int64
- name: mu_C9orf174
dtype: int64
- name: mu_F5
dtype: int64
- name: mu_FRMPD4
dtype: int64
- name: mu_LRP1B
dtype: int64
- name: mu_DCHS2
dtype: int64
- name: mu_HERC1
dtype: int64
- name: mu_CSMD3
dtype: int64
- name: mu_USP34
dtype: int64
- name: mu_BAZ2B
dtype: int64
- name: mu_FLG2
dtype: int64
- name: mu_PCDH19
dtype: int64
- name: mu_VPS13A
dtype: int64
- name: mu_PAPPA2
dtype: int64
- name: mu_PDZD2
dtype: int64
- name: mu_BCORL1
dtype: int64
- name: mu_APC
dtype: int64
- name: mu_PRUNE2
dtype: int64
- name: mu_GON4L
dtype: int64
- name: mu_SPHKAP
dtype: int64
- name: mu_SACS
dtype: int64
- name: mu_MYCBP2
dtype: int64
- name: mu_DOCK11
dtype: int64
- name: mu_FBN1
dtype: int64
- name: mu_DNAH11
dtype: int64
- name: mu_PIWIL1
dtype: int64
- name: mu_SCN10A
dtype: int64
- name: mu_ATRX
dtype: int64
- name: mu_PKHD1L1
dtype: int64
- name: mu_MAP1A
dtype: int64
- name: mu_DNAH9
dtype: int64
- name: mu_MYH7
dtype: int64
- name: mu_PEG3
dtype: int64
- name: pp_X14.3.3.beta
dtype: float64
- name: pp_X14.3.3.epsilon
dtype: float64
- name: pp_X14.3.3.zeta
dtype: float64
- name: pp_X4E.BP1
dtype: float64
- name: pp_X4E.BP1.pS65
dtype: float64
- name: pp_X4E.BP1.pT37.T46
dtype: float64
- name: pp_X4E.BP1.pT70
dtype: float64
- name: pp_X53BP1
dtype: float64
- name: pp_A.Raf
dtype: float64
- name: pp_A.Raf.pS299
dtype: float64
- name: pp_ACC1
dtype: float64
- name: pp_ACC.pS79
dtype: float64
- name: pp_ACVRL1
dtype: float64
- name: pp_ADAR1
dtype: float64
- name: pp_AMPK.alpha
dtype: float64
- name: pp_AMPK.pT172
dtype: float64
- name: pp_AR
dtype: float64
- name: pp_ARID1A
dtype: float64
- name: pp_ASNS
dtype: float64
- name: pp_ATM
dtype: float64
- name: pp_Acetyl.a.Tubulin.Lys40
dtype: float64
- name: pp_Akt
dtype: float64
- name: pp_Akt.pS473
dtype: float64
- name: pp_Akt.pT308
dtype: float64
- name: pp_Annexin.1
dtype: float64
- name: pp_Annexin.VII
dtype: float64
- name: pp_Axl
dtype: float64
- name: pp_B.Raf
dtype: float64
- name: pp_B.Raf.pS445
dtype: float64
- name: pp_BRCA2
dtype: float64
- name: pp_BRD4
dtype: float64
- name: pp_Bad.pS112
dtype: float64
- name: pp_Bak
dtype: float64
- name: pp_Bap1.c.4
dtype: float64
- name: pp_Bax
dtype: float64
- name: pp_Bcl.2
dtype: float64
- name: pp_Bcl.xL
dtype: float64
- name: pp_Bcl2A1
dtype: float64
- name: pp_Beclin
dtype: float64
- name: pp_Bid
dtype: float64
- name: pp_Bim
dtype: float64
- name: pp_C.Raf
dtype: float64
- name: pp_C.Raf.pS338
dtype: float64
- name: pp_CD20
dtype: float64
- name: pp_CD26
dtype: float64
- name: pp_CD31
dtype: float64
- name: pp_CD49b
dtype: float64
- name: pp_CDK1
dtype: float64
- name: pp_CDK1.pY15
dtype: float64
- name: pp_COG3
dtype: float64
- name: pp_Caspase.3
dtype: float64
- name: pp_Caspase.7.cleavedD198
dtype: float64
- name: pp_Caspase.8
dtype: float64
- name: pp_Caveolin.1
dtype: float64
- name: pp_Chk1
dtype: float64
- name: pp_Chk1.pS296
dtype: float64
- name: pp_Chk1.pS345
dtype: float64
- name: pp_Chk2
dtype: float64
- name: pp_Chk2.pT68
dtype: float64
- name: pp_Claudin.7
dtype: float64
- name: pp_Collagen.VI
dtype: float64
- name: pp_Cyclin.B1
dtype: float64
- name: pp_Cyclin.D1
dtype: float64
- name: pp_Cyclin.E1
dtype: float64
- name: pp_Cyclin.E2
dtype: float64
- name: pp_DIRAS3
dtype: float64
- name: pp_DJ.1
dtype: float64
- name: pp_DUSP4
dtype: float64
- name: pp_Dvl3
dtype: float64
- name: pp_E.Cadherin
dtype: float64
- name: pp_EGFR
dtype: float64
- name: pp_EGFR.pY1068
dtype: float64
- name: pp_EGFR.pY1173
dtype: float64
- name: pp_ENY2
dtype: float64
- name: pp_EPPK1
dtype: float64
- name: pp_ER.alpha
dtype: float64
- name: pp_ER.alpha.pS118
dtype: float64
- name: pp_ERCC1
dtype: float64
- name: pp_ERCC5
dtype: float64
- name: pp_ERK2
dtype: float64
- name: pp_ETS.1
dtype: float64
- name: pp_FASN
dtype: float64
- name: pp_FOXO3a
dtype: float64
- name: pp_FOXO3a.pS318.S321
dtype: float64
- name: pp_Fibronectin
dtype: float64
- name: pp_FoxM1
dtype: float64
- name: pp_G6PD
dtype: float64
- name: pp_GAB2
dtype: float64
- name: pp_GAPDH
dtype: float64
- name: pp_GATA3
dtype: float64
- name: pp_GATA6
dtype: float64
- name: pp_GCN5L2
dtype: float64
- name: pp_GSK3.alpha.beta
dtype: float64
- name: pp_GSK3.alpha.beta.pS21.S9
dtype: float64
- name: pp_GSK3.pS9
dtype: float64
- name: pp_HER2
dtype: float64
- name: pp_HER2.pY1248
dtype: float64
- name: pp_HER3
dtype: float64
- name: pp_HER3.pY1289
dtype: float64
- name: pp_HSP70
dtype: float64
- name: pp_Heregulin
dtype: float64
- name: pp_IGF1R.pY1135.Y1136
dtype: float64
- name: pp_IGFBP2
dtype: float64
- name: pp_INPP4B
dtype: float64
- name: pp_IRF.1
dtype: float64
- name: pp_IRS1
dtype: float64
- name: pp_JAB1
dtype: float64
- name: pp_JNK2
dtype: float64
- name: pp_JNK.pT183.pY185
dtype: float64
- name: pp_Jak2
dtype: float64
- name: pp_Ku80
dtype: float64
- name: pp_LKB1
dtype: float64
- name: pp_Lck
dtype: float64
- name: pp_MAPK.pT202.Y204
dtype: float64
- name: pp_MEK1
dtype: float64
- name: pp_MEK1.pS217.S221
dtype: float64
- name: pp_MIG.6
dtype: float64
- name: pp_MSH2
dtype: float64
- name: pp_MSH6
dtype: float64
- name: pp_MYH11
dtype: float64
- name: pp_Mre11
dtype: float64
- name: pp_Myosin.IIa
dtype: float64
- name: pp_Myosin.IIa.pS1943
dtype: float64
- name: pp_N.Cadherin
dtype: float64
- name: pp_N.Ras
dtype: float64
- name: pp_NDRG1.pT346
dtype: float64
- name: pp_NF.kB.p65.pS536
dtype: float64
- name: pp_NF2
dtype: float64
- name: pp_Notch1
dtype: float64
- name: pp_P.Cadherin
dtype: float64
- name: pp_PAI.1
dtype: float64
- name: pp_PARP1
dtype: float64
- name: pp_PARP.cleaved
dtype: float64
- name: pp_PCNA
dtype: float64
- name: pp_PDCD4
dtype: float64
- name: pp_PDK1
dtype: float64
- name: pp_PDK1.pS241
dtype: float64
- name: pp_PEA15
dtype: float64
- name: pp_PEA15.pS116
dtype: float64
- name: pp_PI3K.p110.alpha
dtype: float64
- name: pp_PI3K.p85
dtype: float64
- name: pp_PKC.alpha
dtype: float64
- name: pp_PKC.alpha.pS657
dtype: float64
- name: pp_PKC.delta.pS664
dtype: float64
- name: pp_PKC.pan.BetaII.pS660
dtype: float64
- name: pp_PR
dtype: float64
- name: pp_PRAS40.pT246
dtype: float64
- name: pp_PRDX1
dtype: float64
- name: pp_PREX1
dtype: float64
- name: pp_PTEN
dtype: float64
- name: pp_Paxillin
dtype: float64
- name: pp_RBM15
dtype: float64
- name: pp_Rab11
dtype: float64
- name: pp_Rab25
dtype: float64
- name: pp_Rad50
dtype: float64
- name: pp_Rad51
dtype: float64
- name: pp_Raptor
dtype: float64
- name: pp_Rb
dtype: float64
- name: pp_Rb.pS807.S811
dtype: float64
- name: pp_Rictor
dtype: float64
- name: pp_Rictor.pT1135
dtype: float64
- name: pp_S6
dtype: float64
- name: pp_S6.pS235.S236
dtype: float64
- name: pp_S6.pS240.S244
dtype: float64
- name: pp_SCD
dtype: float64
- name: pp_SETD2
dtype: float64
- name: pp_SF2
dtype: float64
- name: pp_SHP.2.pY542
dtype: float64
- name: pp_SLC1A5
dtype: float64
- name: pp_STAT3.pY705
dtype: float64
- name: pp_STAT5.alpha
dtype: float64
- name: pp_Shc.pY317
dtype: float64
- name: pp_Smac
dtype: float64
- name: pp_Smad1
dtype: float64
- name: pp_Smad3
dtype: float64
- name: pp_Smad4
dtype: float64
- name: pp_Snail
dtype: float64
- name: pp_Src
dtype: float64
- name: pp_Src.pY416
dtype: float64
- name: pp_Src.pY527
dtype: float64
- name: pp_Stathmin
dtype: float64
- name: pp_Syk
dtype: float64
- name: pp_TAZ
dtype: float64
- name: pp_TFRC
dtype: float64
- name: pp_TIGAR
dtype: float64
- name: pp_TSC1
dtype: float64
- name: pp_Transglutaminase
dtype: float64
- name: pp_Tuberin
dtype: float64
- name: pp_Tuberin.pT1462
dtype: float64
- name: pp_VEGFR2
dtype: float64
- name: pp_XBP1
dtype: float64
- name: pp_XRCC1
dtype: float64
- name: pp_YAP
dtype: float64
- name: pp_YAP.pS127
dtype: float64
- name: pp_YB.1
dtype: float64
- name: pp_YB.1.pS102
dtype: float64
- name: pp_beta.Catenin
dtype: float64
- name: pp_c.Abl
dtype: float64
- name: pp_c.Jun.pS73
dtype: float64
- name: pp_c.Kit
dtype: float64
- name: pp_c.Met
dtype: float64
- name: pp_c.Met.pY1235
dtype: float64
- name: pp_c.Myc
dtype: float64
- name: pp_cIAP
dtype: float64
- name: pp_eEF2
dtype: float64
- name: pp_eEF2K
dtype: float64
- name: pp_eIF4E
dtype: float64
- name: pp_eIF4G
dtype: float64
- name: pp_mTOR
dtype: float64
- name: pp_mTOR.pS2448
dtype: float64
- name: pp_p16.INK4a
dtype: float64
- name: pp_p21
dtype: float64
- name: pp_p27
dtype: float64
- name: pp_p27.pT157
dtype: float64
- name: pp_p27.pT198
dtype: float64
- name: pp_p38.MAPK
dtype: float64
- name: pp_p38.pT180.Y182
dtype: float64
- name: pp_p53
dtype: float64
- name: pp_p62.LCK.ligand
dtype: float64
- name: pp_p70S6K
dtype: float64
- name: pp_p70S6K.pT389
dtype: float64
- name: pp_p90RSK
dtype: float64
- name: pp_p90RSK.pT359.S363
dtype: float64
- name: vital.status
dtype: int64
splits:
- name: train
num_bytes: 10924680
num_examples: 705
download_size: 6159563
dataset_size: 10924680
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
|