Spaces:
Running
Running
File size: 236,281 Bytes
9754890 |
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 |
{
"cells": [
{
"cell_type": "code",
"execution_count": 45,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"from OpenAITools.JRCTTools import fetch_clinical_trials, extract_jrct_links, create_dataframe_from_urls, reorder_columns"
]
},
{
"cell_type": "code",
"execution_count": 46,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1 ページ目を処理しました。\n",
"2 ページ目を処理しました。\n",
"3 ページ目を処理しました。\n",
"4 ページ目を処理しました。\n",
"5 ページ目を処理しました。\n",
"6 ページ目を処理しました。\n",
"7 ページ目を処理しました。\n",
"8 ページ目を処理しました。\n",
"9 ページ目を処理しました。\n",
"10 ページ目を処理しました。\n",
"11 ページ目を処理しました。\n",
"12 ページ目を処理しました。\n",
"13 ページ目を処理しました。\n",
"14 ページ目を処理しました。\n",
"15 ページ目を処理しました。\n",
"16 ページ目を処理しました。\n",
"17 ページ目を処理しました。\n",
"次のページはありません。全ての結果を取得しました。\n"
]
}
],
"source": [
"# fetch_clinical_trialsを使って検索結果を取得\n",
"results = fetch_clinical_trials(disease_name=\"がん 神経膠腫 骨髄腫 黒色腫 肉腫 間質腫瘍 膠芽腫 内分泌腫瘍 パジェット ラブドイド 癌 固形腫瘍 リンパ腫 中皮腫 新生物 SCLC\", freeword=\"\"\n",
" ,include_not_yet_recruiting=True,\n",
" include_suspended=True,\n",
" specific_clinical_research=True,\n",
" corporate_clinical_trial=True,\n",
" physician_initiated_clinical_trial=True)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# fetch_clinical_trialsを使って検索結果を取得\n",
"results = fetch_clinical_trials(disease_name=\"ラブドイド\", freeword=\"\"\n",
" ,include_not_yet_recruiting=True,\n",
" include_suspended=True,\n",
" specific_clinical_research=True,\n",
" corporate_clinical_trial=True,\n",
" physician_initiated_clinical_trial=True)"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"832"
]
},
"execution_count": 47,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(results)"
]
},
{
"cell_type": "code",
"execution_count": 48,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240552\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052240215\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240214\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240547\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240545\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240542\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240210\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240536\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032240534\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240530\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240526\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240039\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs022240038\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240512\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240510\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240197\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240508\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042240132\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041240130\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240503\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071240077\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240192\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240501\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240500\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240494\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240486\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240485\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240084\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240484\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240481\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240478\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240081\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240476\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240454\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240178\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011240048\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240448\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032240451\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011240047\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240445\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240173\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240432\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011240046\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240430\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032240428\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240418\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240415\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240070\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs012240043\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240165\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2023240034\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240407\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240404\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041240103\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240063\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240381\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240067\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240064\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240150\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240062\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240376\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240028\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240141\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240373\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011240034\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052240137\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240349\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240347\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071240060\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240345\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240130\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240126\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240129\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240343\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240125\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240128\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240340\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240335\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2032240323\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240121\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240313\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240049\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032240314\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240119\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240308\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071240054\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240116\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240303\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240298\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032240299\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240021\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052240112\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240020\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240047\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240279\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240284\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240278\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240276\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240270\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240272\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240261\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240258\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240255\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240254\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240248\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240247\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240241\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240238\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240041\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240235\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033240236\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240229\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240225\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071240036\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240224\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240223\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240220\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240219\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041240056\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240092\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240089\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240034\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240213\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240087\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240032\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240210\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240015\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240082\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240201\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240081\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240194\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240200\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240077\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240188\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240013\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240075\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041240051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021240012\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240178\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2072240024\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240071\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041240050\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240170\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041240049\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011240017\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240025\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240169\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240067\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240024\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240160\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240159\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021240010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2052240059\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240154\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240020\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240019\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071240019\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041240039\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240135\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240133\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240045\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240108\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240106\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240100\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240096\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052240039\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240095\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051240038\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240089\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240090\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061240012\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240083\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240081\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240011\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051240026\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240062\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052240015\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs012240006\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061240005\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240055\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032230754\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031240046\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041240020\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011240009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240041\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011240005\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032240033\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240026\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240030\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240029\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033240023\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041240009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240016\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031240014\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071240003\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041240003\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042240001\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230168\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021230067\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230750\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230747\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230114\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230209\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011230065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230728\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230723\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230111\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230712\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230705\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230124\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230123\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230169\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230697\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230693\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230196\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230688\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230106\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2013230062\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011230061\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052230195\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230683\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230682\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230678\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011230059\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230677\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230190\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230660\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071230118\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021230062\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230188\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230102\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230646\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230643\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230645\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230637\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230641\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230640\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230631\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230630\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230114\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230146\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230614\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230615\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230138\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2063230096\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230608\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230606\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2063230095\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021230055\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230141\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230601\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230596\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230169\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230136\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230575\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230133\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230544\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230577\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230576\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230569\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230562\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230127\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2032230554\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032230540\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230111\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230110\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230534\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230532\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230084\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230150\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230531\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230120\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230147\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061230081\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230080\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2063230079\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033230513\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230509\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230510\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230511\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230505\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230078\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230098\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230097\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042230112\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230482\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230095\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230477\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230475\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021230040\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011230049\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011230051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230456\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230106\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061230077\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2072230089\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230075\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230442\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062230072\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230439\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230438\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230436\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230429\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230119\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230419\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230415\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230093\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230410\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042230089\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230110\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230380\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230379\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230108\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230084\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052230106\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033230370\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230372\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230371\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230061\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230360\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230356\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071230065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230058\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2030230343\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011230037\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230335\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230331\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230077\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230319\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230094\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041230073\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071230055\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230311\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230309\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230263\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033230299\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061230046\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2030230282\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230279\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230277\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230259\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230260\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061230040\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230255\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230249\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230071\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071230043\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230039\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230069\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230237\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230233\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021230016\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230234\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230231\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230037\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230223\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230219\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032230212\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011230016\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230063\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230200\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230192\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230182\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230175\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071230025\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230026\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021230010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230037\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230127\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230033\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230121\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230114\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011230009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230109\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230029\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230098\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230090\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230096\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230088\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230087\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021230005\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230019\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230072\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062230014\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032230065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2032230060\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061230009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220742\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051230018\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230012\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032230042\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230031\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041230007\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230014\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051230012\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031230018\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032230014\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230007\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031230002\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032220746\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220164\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061220113\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220738\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220737\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220736\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220732\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220727\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220724\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062220110\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220721\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220716\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052220194\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220701\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220703\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220160\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220695\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220689\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220157\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220683\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220675\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220154\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042220151\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220147\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220150\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220666\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051220176\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220653\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220651\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220169\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220171\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220639\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220636\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071220105\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220630\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032220618\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032220609\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220600\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032220590\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2053220159\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220591\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071220095\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052220157\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220582\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220125\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220588\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220580\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061220087\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220581\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220572\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220118\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220569\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220149\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220557\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220115\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021220036\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220527\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220137\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220133\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220511\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220102\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220484\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051220124\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220477\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220101\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2063220071\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220448\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051220116\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220446\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220430\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220342\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2032220428\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220424\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011220022\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220421\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220420\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061220066\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220109\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220404\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220403\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2072220055\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220067\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220351\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051220100\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061220060\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011220019\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062220057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021220022\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs022220021\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220328\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220330\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220313\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220311\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220301\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061220051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071220043\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220288\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220278\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220276\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2052220073\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220257\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032220240\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220219\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220213\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220203\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021220015\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220059\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220162\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220160\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220159\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033220220\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2073220017\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220034\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220033\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220125\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220110\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220024\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220099\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062220023\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220033\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220021\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220029\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220091\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071220010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033220088\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220075\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220077\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041220017\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061220015\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220058\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220060\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011220004\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052220021\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220013\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051220019\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220047\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220038\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220034\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220031\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052220011\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2053220006\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031220025\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041220005\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061220007\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032220010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031220002\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021210079\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210707\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210708\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033210698\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210205\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061210089\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061210088\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210200\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021210076\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021210075\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210667\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210660\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210652\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042210158\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2021210072\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210644\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210635\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041210148\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210617\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210607\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs033210603\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061210074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210167\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210593\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051210165\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2013210066\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210585\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210565\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210156\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210560\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210128\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210152\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210148\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210510\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210511\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210530\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041210123\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011210058\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033210499\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061210065\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210483\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061210058\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210461\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210460\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032210450\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210108\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051210125\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210104\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210103\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210426\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210119\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071210090\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011210044\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210405\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042210090\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210395\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210393\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071210084\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210387\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210386\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2073210080\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061210042\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2061210041\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210101\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071210074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2052210099\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052210092\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210340\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210327\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210319\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210313\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210300\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210299\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032210292\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210063\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032210291\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210282\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033210278\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210265\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210264\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2041210056\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210053\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071210051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210231\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061210028\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011210025\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011210020\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210041\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061210023\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210181\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051210043\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210174\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210165\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210042\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061210016\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210039\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210135\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210034\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021210010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011210015\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052210032\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210121\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210118\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2032210115\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210114\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041210023\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031210100\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2011210009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042210018\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2043210017\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210021\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210072\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210046\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2073210013\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210041\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210036\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031210016\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051210002\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200449\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2053200162\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200438\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033200431\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041200113\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062200061\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200390\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200388\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200384\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071200101\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200357\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051200130\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200326\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051200121\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200320\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2071200086\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033200278\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051200105\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200256\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041200079\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200246\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs062200029\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200222\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200208\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200203\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041200062\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061200027\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041200054\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051200071\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200153\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200114\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071200029\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225361\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225364\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051200048\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071200026\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200088\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200087\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225298\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200077\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225288\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs042200033\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200067\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041200028\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032200066\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200064\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031200057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225233\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021200009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225224\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051200026\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200038\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225208\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225196\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs022200004\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021200003\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2073200004\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041200001\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031200004\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225145\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021190023\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190223\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080225058\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021190022\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs072190044\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190186\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190167\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224968\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051190076\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224960\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190126\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224907\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051190058\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT1080224903\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190104\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041190066\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032190083\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2033190086\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190076\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2031190072\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190059\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224788\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224780\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224727\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041190042\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041190040\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs071190010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031190023\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224666\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2051190009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051190006\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041180151\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180220\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180207\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180216\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs072180078\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180199\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180200\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180178\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041180133\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052180188\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021180045\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs041180127\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021180022\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021180021\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021180009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021180033\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs021180010\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180096\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180095\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180419\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180085\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180140\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180399\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180074\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032180392\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180376\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180350\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180358\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180057\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180375\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180339\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180324\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180374\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032180288\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs072180051\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180122\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180253\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs011180011\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180043\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180094\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180170\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180082\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180165\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs032180154\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180114\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180115\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180046\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180042\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs052180038\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180055\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180009\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs061180008\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224136\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080224108\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs031180024\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCTs051180001\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080223768\n",
"Waiting for 15 seconds before the next request...\n",
"Processing URL: https://jrct.niph.go.jp/latest-detail/jRCT2080222728\n",
"Waiting for 15 seconds before the next request...\n"
]
}
],
"source": [
" # jRCT詳細リンクを作成\n",
"jrct_links = extract_jrct_links(results)\n",
"\n",
" # 詳細リンクからデータフレームを作成\n",
"df = create_dataframe_from_urls(jrct_links,delay=15)"
]
},
{
"cell_type": "code",
"execution_count": 49,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>URL</th>\n",
" <th>研究・治験の目的</th>\n",
" <th>試験等のフェーズ</th>\n",
" <th>Phase</th>\n",
" <th>試験の種類</th>\n",
" <th>Study Type</th>\n",
" <th>無作為化</th>\n",
" <th>allocation</th>\n",
" <th>盲検化</th>\n",
" <th>masking</th>\n",
" <th>...</th>\n",
" <th>中止基準</th>\n",
" <th>Discontinuation Criteria</th>\n",
" <th>対象疾患名</th>\n",
" <th>Health Condition(s) or Problem(s) Studied</th>\n",
" <th>対象疾患キーワード</th>\n",
" <th>Keyword</th>\n",
" <th>介入の内容</th>\n",
" <th>Intervention(s)</th>\n",
" <th>JapicCTI No</th>\n",
" <th>NCT No</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCT2031...</td>\n",
" <td>Treatment</td>\n",
" <td>1-2</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>単一群</td>\n",
" <td>single arm study</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>以下の進行固形がん患者 ・非小細胞肺癌 ・膵管腺癌 ・結腸・直腸癌</td>\n",
" <td>Non-Small Cell Lung Cancer (NSCLC) Pancreatic ...</td>\n",
" <td></td>\n",
" <td></td>\n",
" <td>AZD0022</td>\n",
" <td>AZD0022</td>\n",
" <td>None</td>\n",
" <td>NCT06599502</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCTs052...</td>\n",
" <td>結腸癌のロボット支援手術において、クリップ、アドバンスドバイポーラー、ステープラーをロボット...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>無作為化比較</td>\n",
" <td>randomized controlled trial</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>結腸癌</td>\n",
" <td>colon cancer</td>\n",
" <td></td>\n",
" <td></td>\n",
" <td>ハイブリッドロボット支援手術</td>\n",
" <td>Hybrid robotic surgery</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCTs051...</td>\n",
" <td>エンホルツマブベドチン(EV)に伴う皮膚障害を、好発部位に予防的にステロイド外用薬を塗布する...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>無作為化比較</td>\n",
" <td>randomized controlled trial</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>尿路上皮癌</td>\n",
" <td>Urothelial carcinoma</td>\n",
" <td></td>\n",
" <td></td>\n",
" <td>EV標準量投与開始前日夕より28日目まで、1日2回朝夕に試験薬(デルモベート軟膏またはワセリ...</td>\n",
" <td>The study drug (Delmovate ointment or Vaseline...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCT2031...</td>\n",
" <td>フッ化ピリミジン系薬剤に不応または不耐となったFGFR2b陽性の切除不能進行・再発の胃腺癌又...</td>\n",
" <td>2</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>単一群</td>\n",
" <td>single arm study</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>切除不能進行・再発の胃または食道胃接合部腺癌</td>\n",
" <td>Advanced Gastric or Gastroesophageal Junction ...</td>\n",
" <td></td>\n",
" <td></td>\n",
" <td>・Bemarituzumab (15mg/kg, intravenous, Day1, 15...</td>\n",
" <td>- Bemarituzumab (15mg/kg, intravenous, Day1, 1...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCTs031...</td>\n",
" <td>広範な食道表在癌に対する内視鏡的粘膜下層剥離術(Endoscopic submucosal ...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>無作為化比較</td>\n",
" <td>randomized controlled trial</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>広範な食道表在癌</td>\n",
" <td>Widespread superficial esophageal cancer</td>\n",
" <td></td>\n",
" <td></td>\n",
" <td>ESD+ステロイド局注療法:一期的にESDを行った直後に、トリアムシノロンアセトニド100 ...</td>\n",
" <td>Local steroid (triamcinolone acetonide) inject...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>827</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCT2080...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>JapicCTI-184169</td>\n",
" <td>NCT02609776</td>\n",
" </tr>\n",
" <tr>\n",
" <th>828</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCTs031...</td>\n",
" <td>根治切除不能または転移性腎細胞癌に対する抗PD-1抗体(Nivolumab)投与による縮小効...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>無作為化比較</td>\n",
" <td>randomized controlled trial</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>根治切除不能または転移性腎細胞癌</td>\n",
" <td>Unresectable or metastatic renal cell carcinoma</td>\n",
" <td></td>\n",
" <td></td>\n",
" <td>Arm1:ニボルマブ4週に1回投与を計6コース行う。 Arm2:ニボルマブ4週に1回投与を計...</td>\n",
" <td>Arm1 Patients receive Nivolumab every 4 weeks ...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>829</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCTs051...</td>\n",
" <td>鏡視下の食道癌、胃癌、大腸癌手術症例において、リンパ流とリンパ節転移経路の解明、および過不足...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>単一群</td>\n",
" <td>single arm study</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>消化管癌</td>\n",
" <td>gastroenterological cancer</td>\n",
" <td>消化管癌</td>\n",
" <td>gastroenterological cancer</td>\n",
" <td>癌部周囲粘膜下にIncdocyanine Greenを局注する。</td>\n",
" <td>Indocyanine Green is injected submucosally aro...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>830</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCT2080...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>JapicCTI-183824</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>831</th>\n",
" <td>https://jrct.niph.go.jp/latest-detail/jRCT2080...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>Interventional</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>JapicCTI-152780</td>\n",
" <td>None</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>832 rows × 36 columns</p>\n",
"</div>"
],
"text/plain": [
" URL \\\n",
"0 https://jrct.niph.go.jp/latest-detail/jRCT2031... \n",
"1 https://jrct.niph.go.jp/latest-detail/jRCTs052... \n",
"2 https://jrct.niph.go.jp/latest-detail/jRCTs051... \n",
"3 https://jrct.niph.go.jp/latest-detail/jRCT2031... \n",
"4 https://jrct.niph.go.jp/latest-detail/jRCTs031... \n",
".. ... \n",
"827 https://jrct.niph.go.jp/latest-detail/jRCT2080... \n",
"828 https://jrct.niph.go.jp/latest-detail/jRCTs031... \n",
"829 https://jrct.niph.go.jp/latest-detail/jRCTs051... \n",
"830 https://jrct.niph.go.jp/latest-detail/jRCT2080... \n",
"831 https://jrct.niph.go.jp/latest-detail/jRCT2080... \n",
"\n",
" 研究・治験の目的 試験等のフェーズ Phase 試験の種類 \\\n",
"0 Treatment 1-2 None None \n",
"1 結腸癌のロボット支援手術において、クリップ、アドバンスドバイポーラー、ステープラーをロボット... None None 介入研究 \n",
"2 エンホルツマブベドチン(EV)に伴う皮膚障害を、好発部位に予防的にステロイド外用薬を塗布する... None None 介入研究 \n",
"3 フッ化ピリミジン系薬剤に不応または不耐となったFGFR2b陽性の切除不能進行・再発の胃腺癌又... 2 None None \n",
"4 広範な食道表在癌に対する内視鏡的粘膜下層剥離術(Endoscopic submucosal ... None None 介入研究 \n",
".. ... ... ... ... \n",
"827 None None None 介入研究 \n",
"828 根治切除不能または転移性腎細胞癌に対する抗PD-1抗体(Nivolumab)投与による縮小効... None None 介入研究 \n",
"829 鏡視下の食道癌、胃癌、大腸癌手術症例において、リンパ流とリンパ節転移経路の解明、および過不足... None None 介入研究 \n",
"830 None None None 介入研究 \n",
"831 None None None 介入研究 \n",
"\n",
" Study Type 無作為化 allocation 盲検化 masking ... \\\n",
"0 None 単一群 single arm study None None ... \n",
"1 Interventional 無作為化比較 randomized controlled trial None None ... \n",
"2 Interventional 無作為化比較 randomized controlled trial None None ... \n",
"3 None 単一群 single arm study None None ... \n",
"4 Interventional 無作為化比較 randomized controlled trial None None ... \n",
".. ... ... ... ... ... ... \n",
"827 Interventional None None None None ... \n",
"828 Interventional 無作為化比較 randomized controlled trial None None ... \n",
"829 Interventional 単一群 single arm study None None ... \n",
"830 Interventional None None None None ... \n",
"831 Interventional None None None None ... \n",
"\n",
" 中止基準 Discontinuation Criteria 対象疾患名 \\\n",
"0 None None 以下の進行固形がん患者 ・非小細胞肺癌 ・膵管腺癌 ・結腸・直腸癌 \n",
"1 None None 結腸癌 \n",
"2 None None 尿路上皮癌 \n",
"3 None None 切除不能進行・再発の胃または食道胃接合部腺癌 \n",
"4 None None 広範な食道表在癌 \n",
".. ... ... ... \n",
"827 None None None \n",
"828 None None 根治切除不能または転移性腎細胞癌 \n",
"829 None None 消化管癌 \n",
"830 None None None \n",
"831 None None None \n",
"\n",
" Health Condition(s) or Problem(s) Studied 対象疾患キーワード \\\n",
"0 Non-Small Cell Lung Cancer (NSCLC) Pancreatic ... \n",
"1 colon cancer \n",
"2 Urothelial carcinoma \n",
"3 Advanced Gastric or Gastroesophageal Junction ... \n",
"4 Widespread superficial esophageal cancer \n",
".. ... ... \n",
"827 None None \n",
"828 Unresectable or metastatic renal cell carcinoma \n",
"829 gastroenterological cancer 消化管癌 \n",
"830 None None \n",
"831 None None \n",
"\n",
" Keyword \\\n",
"0 \n",
"1 \n",
"2 \n",
"3 \n",
"4 \n",
".. ... \n",
"827 None \n",
"828 \n",
"829 gastroenterological cancer \n",
"830 None \n",
"831 None \n",
"\n",
" 介入の内容 \\\n",
"0 AZD0022 \n",
"1 ハイブリッドロボット支援手術 \n",
"2 EV標準量投与開始前日夕より28日目まで、1日2回朝夕に試験薬(デルモベート軟膏またはワセリ... \n",
"3 ・Bemarituzumab (15mg/kg, intravenous, Day1, 15... \n",
"4 ESD+ステロイド局注療法:一期的にESDを行った直後に、トリアムシノロンアセトニド100 ... \n",
".. ... \n",
"827 None \n",
"828 Arm1:ニボルマブ4週に1回投与を計6コース行う。 Arm2:ニボルマブ4週に1回投与を計... \n",
"829 癌部周囲粘膜下にIncdocyanine Greenを局注する。 \n",
"830 None \n",
"831 None \n",
"\n",
" Intervention(s) JapicCTI No \\\n",
"0 AZD0022 None \n",
"1 Hybrid robotic surgery None \n",
"2 The study drug (Delmovate ointment or Vaseline... None \n",
"3 - Bemarituzumab (15mg/kg, intravenous, Day1, 1... None \n",
"4 Local steroid (triamcinolone acetonide) inject... None \n",
".. ... ... \n",
"827 None JapicCTI-184169 \n",
"828 Arm1 Patients receive Nivolumab every 4 weeks ... None \n",
"829 Indocyanine Green is injected submucosally aro... None \n",
"830 None JapicCTI-183824 \n",
"831 None JapicCTI-152780 \n",
"\n",
" NCT No \n",
"0 NCT06599502 \n",
"1 None \n",
"2 None \n",
"3 None \n",
"4 None \n",
".. ... \n",
"827 NCT02609776 \n",
"828 None \n",
"829 None \n",
"830 None \n",
"831 None \n",
"\n",
"[832 rows x 36 columns]"
]
},
"execution_count": 49,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df"
]
},
{
"cell_type": "code",
"execution_count": 58,
"metadata": {},
"outputs": [],
"source": [
"# 整列後の DataFrame を作成\n",
"sorted_df = reorder_columns(df)"
]
},
{
"cell_type": "code",
"execution_count": 59,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/var/folders/yw/qz00x75d7kb98f7vm8dkhkvw0000gn/T/ipykernel_78020/2717451573.py:1: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" sorted_df['JRCT ID'] = [result[0] for result in results]\n",
"/var/folders/yw/qz00x75d7kb98f7vm8dkhkvw0000gn/T/ipykernel_78020/2717451573.py:2: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" sorted_df['Title'] = [result[1] for result in results]\n",
"/var/folders/yw/qz00x75d7kb98f7vm8dkhkvw0000gn/T/ipykernel_78020/2717451573.py:3: SettingWithCopyWarning: \n",
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
"Try using .loc[row_indexer,col_indexer] = value instead\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
" sorted_df['TargetJ'] = [result[2] for result in results]\n"
]
}
],
"source": [
"sorted_df['JRCT ID'] = [result[0] for result in results]\n",
"sorted_df['Title'] = [result[1] for result in results]\n",
"sorted_df['TargetJ'] = [result[2] for result in results]"
]
},
{
"cell_type": "code",
"execution_count": 60,
"metadata": {},
"outputs": [],
"source": [
"#new_order = [\"JRCT ID\", 'NCT No', 'JapicCTI No',\"Title\",'Target','対象疾患名','Health Condition(s) or Problem(s) Studied'] + [col for col in sorted_df.columns if col not in [\"JRCT ID\", 'NCT No', 'JapicCTI No',\"Title\",'Target','対象疾患名','Health Condition(s) or Problem(s) Studied']]\n",
"new_order = [\"JRCT ID\", 'NCT No', 'JapicCTI No',\"Title\",'TargetJ','対象疾患名','Health Condition(s) or Problem(s) Studied'] + [col for col in sorted_df.columns if col not in [\"JRCT ID\", 'NCT No', 'JapicCTI No',\"Title\",'TargetJ','対象疾患名','Health Condition(s) or Problem(s) Studied']]"
]
},
{
"cell_type": "code",
"execution_count": 61,
"metadata": {},
"outputs": [],
"source": [
"sorted_df = sorted_df[new_order]\n",
"sorted_df.rename(columns={\n",
" '対象疾患名': 'Target',\n",
" 'Health Condition(s) or Problem(s) Studied': 'TargetEnglish'\n",
"},inplace=True)\n"
]
},
{
"cell_type": "code",
"execution_count": 63,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>JRCT ID</th>\n",
" <th>NCT No</th>\n",
" <th>JapicCTI No</th>\n",
" <th>Title</th>\n",
" <th>TargetJ</th>\n",
" <th>Target</th>\n",
" <th>TargetEnglish</th>\n",
" <th>研究・治験の目的</th>\n",
" <th>試験等のフェーズ</th>\n",
" <th>試験の種類</th>\n",
" <th>...</th>\n",
" <th>assignment</th>\n",
" <th>purpose</th>\n",
" <th>Inclusion Criteria</th>\n",
" <th>Exclusion Criteria</th>\n",
" <th>Age Minimum</th>\n",
" <th>Age Maximum</th>\n",
" <th>Gender</th>\n",
" <th>Discontinuation Criteria</th>\n",
" <th>Keyword</th>\n",
" <th>Intervention(s)</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>jRCT2031240552</td>\n",
" <td>NCT06599502</td>\n",
" <td>None</td>\n",
" <td>KRAS G12D 変異陽性がん患者を対象としてAZD0022 の単剤療法及び抗がん剤との併...</td>\n",
" <td>以下の進行固形がん患者\\n・非小細胞肺癌\\n・膵管腺癌\\n・結腸・直腸癌</td>\n",
" <td>以下の進行固形がん患者 ・非小細胞肺癌 ・膵管腺癌 ・結腸・直腸癌</td>\n",
" <td>Non-Small Cell Lung Cancer (NSCLC) Pancreatic ...</td>\n",
" <td>Treatment</td>\n",
" <td>1-2</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>single assignment</td>\n",
" <td>treatment purpose</td>\n",
" <td>1. Participant must be 18 years or more, or th...</td>\n",
" <td>1. Any significant laboratory finding or any s...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td></td>\n",
" <td>AZD0022</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>jRCTs052240215</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>ロボット支援結腸癌手術における腹腔鏡デバイスを用いたハイブリッドロボット支援手術の有効性を検...</td>\n",
" <td>結腸癌</td>\n",
" <td>結腸癌</td>\n",
" <td>colon cancer</td>\n",
" <td>結腸癌のロボット支援手術において、クリップ、アドバンスドバイポーラー、ステープラーをロボット...</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>parallel assignment</td>\n",
" <td>treatment purpose</td>\n",
" <td>1. Patients whose age at registration is 18 ye...</td>\n",
" <td>1. Patients planning combined resection of oth...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td></td>\n",
" <td>Hybrid robotic surgery</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>jRCTs051240214</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>エンホルツマブベドチンに伴う皮膚障害に対する予防的ステロイド外用薬投与の有効性に関する多施設...</td>\n",
" <td>尿路上皮癌</td>\n",
" <td>尿路上皮癌</td>\n",
" <td>Urothelial carcinoma</td>\n",
" <td>エンホルツマブベドチン(EV)に伴う皮膚障害を、好発部位に予防的にステロイド外用薬を塗布する...</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>parallel assignment</td>\n",
" <td>prevention purpose</td>\n",
" <td>Male and female patients receiving EV at the s...</td>\n",
" <td>1. Patients with a history of EV administratio...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td></td>\n",
" <td>The study drug (Delmovate ointment or Vaseline...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>jRCT2031240547</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>FGFR2b陽性切除不能進行・再発の胃または食道胃接合部腺癌を対象としたBemarituzu...</td>\n",
" <td>切除不能進行・再発の胃または食道胃接合部腺癌</td>\n",
" <td>切除不能進行・再発の胃または食道胃接合部腺癌</td>\n",
" <td>Advanced Gastric or Gastroesophageal Junction ...</td>\n",
" <td>フッ化ピリミジン系薬剤に不応または不耐となったFGFR2b陽性の切除不能進行・再発の胃腺癌又...</td>\n",
" <td>2</td>\n",
" <td>None</td>\n",
" <td>...</td>\n",
" <td>single assignment</td>\n",
" <td>treatment purpose</td>\n",
" <td>1) Histologically documented gastric or GEJ ad...</td>\n",
" <td>1) Prior treatment with taxanes 2) Prior treat...</td>\n",
" <td>18age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td></td>\n",
" <td>- Bemarituzumab (15mg/kg, intravenous, Day1, 1...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>jRCTs031240545</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>JCOG2315: 広範な食道表在癌に対する内視鏡的粘膜下層剥離術後の狭窄予防を目的とするス...</td>\n",
" <td>広範な食道表在癌</td>\n",
" <td>広範な食道表在癌</td>\n",
" <td>Widespread superficial esophageal cancer</td>\n",
" <td>広範な食道表在癌に対する内視鏡的粘膜下層剥離術(Endoscopic submucosal ...</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>parallel assignment</td>\n",
" <td>prevention purpose</td>\n",
" <td>1st inclusion criteria (1) Meet either of the ...</td>\n",
" <td>(1) Synchronous or metachronous (within 1 year...</td>\n",
" <td>18age old over</td>\n",
" <td>85age old under</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td></td>\n",
" <td>Local steroid (triamcinolone acetonide) inject...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>827</th>\n",
" <td>jRCT2080224108</td>\n",
" <td>NCT02609776</td>\n",
" <td>JapicCTI-184169</td>\n",
" <td>進行性非小細胞肺癌患者を対象としてヒト二重特異性抗EGFR 及びcMet 抗体のJNJ-61...</td>\n",
" <td>非小細胞性肺癌</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>828</th>\n",
" <td>jRCTs031180024</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>根治切除不能または転移性腎細胞癌に対するNivolumab併用画像誘導3次元集光式超寡分割照...</td>\n",
" <td>根治切除不能または転移性腎細胞癌</td>\n",
" <td>根治切除不能または転移性腎細胞癌</td>\n",
" <td>Unresectable or metastatic renal cell carcinoma</td>\n",
" <td>根治切除不能または転移性腎細胞癌に対する抗PD-1抗体(Nivolumab)投与による縮小効...</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>parallel assignment</td>\n",
" <td>treatment purpose</td>\n",
" <td>Primary registration 1)Cytologically or histol...</td>\n",
" <td>Primary regisration 1)Active double cancer(exc...</td>\n",
" <td>20age old over</td>\n",
" <td>No limit</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td></td>\n",
" <td>Arm1 Patients receive Nivolumab every 4 weeks ...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>829</th>\n",
" <td>jRCTs051180001</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>消化器癌に対する術中ICG局注赤外線内視鏡観察による術中リンパ節、リンパ流評価の有用性につい...</td>\n",
" <td>消化管癌</td>\n",
" <td>消化管癌</td>\n",
" <td>gastroenterological cancer</td>\n",
" <td>鏡視下の食道癌、胃癌、大腸癌手術症例において、リンパ流とリンパ節転移経路の解明、および過不足...</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>single assignment</td>\n",
" <td>diagnostic purpose</td>\n",
" <td>Patients with the diagnosis of esophageal or g...</td>\n",
" <td>Patients who refused to join in this study. Pa...</td>\n",
" <td>20age old over</td>\n",
" <td>100age old under</td>\n",
" <td>Both</td>\n",
" <td>None</td>\n",
" <td>gastroenterological cancer</td>\n",
" <td>Indocyanine Green is injected submucosally aro...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>830</th>\n",
" <td>jRCT2080223768</td>\n",
" <td>None</td>\n",
" <td>JapicCTI-183824</td>\n",
" <td>固形癌患者を対象としたTAS0313の第I/II相試験</td>\n",
" <td>固形癌(尿路上皮癌など)</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" <tr>\n",
" <th>831</th>\n",
" <td>jRCT2080222728</td>\n",
" <td>None</td>\n",
" <td>JapicCTI-152780</td>\n",
" <td>進行固形がん患者を対象にTAS-117の安全性,忍容性,薬物動態及び有効性を検討する非盲検,...</td>\n",
" <td>固形がん患者,卵巣明細胞癌患者,子宮内膜癌患者</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>介入研究</td>\n",
" <td>...</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" <td>None</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>832 rows × 39 columns</p>\n",
"</div>"
],
"text/plain": [
" JRCT ID NCT No JapicCTI No \\\n",
"0 jRCT2031240552 NCT06599502 None \n",
"1 jRCTs052240215 None None \n",
"2 jRCTs051240214 None None \n",
"3 jRCT2031240547 None None \n",
"4 jRCTs031240545 None None \n",
".. ... ... ... \n",
"827 jRCT2080224108 NCT02609776 JapicCTI-184169 \n",
"828 jRCTs031180024 None None \n",
"829 jRCTs051180001 None None \n",
"830 jRCT2080223768 None JapicCTI-183824 \n",
"831 jRCT2080222728 None JapicCTI-152780 \n",
"\n",
" Title \\\n",
"0 KRAS G12D 変異陽性がん患者を対象としてAZD0022 の単剤療法及び抗がん剤との併... \n",
"1 ロボット支援結腸癌手術における腹腔鏡デバイスを用いたハイブリッドロボット支援手術の有効性を検... \n",
"2 エンホルツマブベドチンに伴う皮膚障害に対する予防的ステロイド外用薬投与の有効性に関する多施設... \n",
"3 FGFR2b陽性切除不能進行・再発の胃または食道胃接合部腺癌を対象としたBemarituzu... \n",
"4 JCOG2315: 広範な食道表在癌に対する内視鏡的粘膜下層剥離術後の狭窄予防を目的とするス... \n",
".. ... \n",
"827 進行性非小細胞肺癌患者を対象としてヒト二重特異性抗EGFR 及びcMet 抗体のJNJ-61... \n",
"828 根治切除不能または転移性腎細胞癌に対するNivolumab併用画像誘導3次元集光式超寡分割照... \n",
"829 消化器癌に対する術中ICG局注赤外線内視鏡観察による術中リンパ節、リンパ流評価の有用性につい... \n",
"830 固形癌患者を対象としたTAS0313の第I/II相試験 \n",
"831 進行固形がん患者を対象にTAS-117の安全性,忍容性,薬物動態及び有効性を検討する非盲検,... \n",
"\n",
" TargetJ Target \\\n",
"0 以下の進行固形がん患者\\n・非小細胞肺癌\\n・膵管腺癌\\n・結腸・直腸癌 以下の進行固形がん患者 ・非小細胞肺癌 ・膵管腺癌 ・結腸・直腸癌 \n",
"1 結腸癌 結腸癌 \n",
"2 尿路上皮癌 尿路上皮癌 \n",
"3 切除不能進行・再発の胃または食道胃接合部腺癌 切除不能進行・再発の胃または食道胃接合部腺癌 \n",
"4 広範な食道表在癌 広範な食道表在癌 \n",
".. ... ... \n",
"827 非小細胞性肺癌 None \n",
"828 根治切除不能または転移性腎細胞癌 根治切除不能または転移性腎細胞癌 \n",
"829 消化管癌 消化管癌 \n",
"830 固形癌(尿路上皮癌など) None \n",
"831 固形がん患者,卵巣明細胞癌患者,子宮内膜癌患者 None \n",
"\n",
" TargetEnglish \\\n",
"0 Non-Small Cell Lung Cancer (NSCLC) Pancreatic ... \n",
"1 colon cancer \n",
"2 Urothelial carcinoma \n",
"3 Advanced Gastric or Gastroesophageal Junction ... \n",
"4 Widespread superficial esophageal cancer \n",
".. ... \n",
"827 None \n",
"828 Unresectable or metastatic renal cell carcinoma \n",
"829 gastroenterological cancer \n",
"830 None \n",
"831 None \n",
"\n",
" 研究・治験の目的 試験等のフェーズ 試験の種類 ... \\\n",
"0 Treatment 1-2 None ... \n",
"1 結腸癌のロボット支援手術において、クリップ、アドバンスドバイポーラー、ステープラーをロボット... None 介入研究 ... \n",
"2 エンホルツマブベドチン(EV)に伴う皮膚障害を、好発部位に予防的にステロイド外用薬を塗布する... None 介入研究 ... \n",
"3 フッ化ピリミジン系薬剤に不応または不耐となったFGFR2b陽性の切除不能進行・再発の胃腺癌又... 2 None ... \n",
"4 広範な食道表在癌に対する内視鏡的粘膜下層剥離術(Endoscopic submucosal ... None 介入研究 ... \n",
".. ... ... ... ... \n",
"827 None None 介入研究 ... \n",
"828 根治切除不能または転移性腎細胞癌に対する抗PD-1抗体(Nivolumab)投与による縮小効... None 介入研究 ... \n",
"829 鏡視下の食道癌、胃癌、大腸癌手術症例において、リンパ流とリンパ節転移経路の解明、および過不足... None 介入研究 ... \n",
"830 None None 介入研究 ... \n",
"831 None None 介入研究 ... \n",
"\n",
" assignment purpose \\\n",
"0 single assignment treatment purpose \n",
"1 parallel assignment treatment purpose \n",
"2 parallel assignment prevention purpose \n",
"3 single assignment treatment purpose \n",
"4 parallel assignment prevention purpose \n",
".. ... ... \n",
"827 None None \n",
"828 parallel assignment treatment purpose \n",
"829 single assignment diagnostic purpose \n",
"830 None None \n",
"831 None None \n",
"\n",
" Inclusion Criteria \\\n",
"0 1. Participant must be 18 years or more, or th... \n",
"1 1. Patients whose age at registration is 18 ye... \n",
"2 Male and female patients receiving EV at the s... \n",
"3 1) Histologically documented gastric or GEJ ad... \n",
"4 1st inclusion criteria (1) Meet either of the ... \n",
".. ... \n",
"827 None \n",
"828 Primary registration 1)Cytologically or histol... \n",
"829 Patients with the diagnosis of esophageal or g... \n",
"830 None \n",
"831 None \n",
"\n",
" Exclusion Criteria Age Minimum \\\n",
"0 1. Any significant laboratory finding or any s... 18age old over \n",
"1 1. Patients planning combined resection of oth... 18age old over \n",
"2 1. Patients with a history of EV administratio... 18age old over \n",
"3 1) Prior treatment with taxanes 2) Prior treat... 18age old over \n",
"4 (1) Synchronous or metachronous (within 1 year... 18age old over \n",
".. ... ... \n",
"827 None None \n",
"828 Primary regisration 1)Active double cancer(exc... 20age old over \n",
"829 Patients who refused to join in this study. Pa... 20age old over \n",
"830 None None \n",
"831 None None \n",
"\n",
" Age Maximum Gender Discontinuation Criteria \\\n",
"0 No limit Both None \n",
"1 No limit Both None \n",
"2 No limit Both None \n",
"3 No limit Both None \n",
"4 85age old under Both None \n",
".. ... ... ... \n",
"827 None None None \n",
"828 No limit Both None \n",
"829 100age old under Both None \n",
"830 None None None \n",
"831 None None None \n",
"\n",
" Keyword \\\n",
"0 \n",
"1 \n",
"2 \n",
"3 \n",
"4 \n",
".. ... \n",
"827 None \n",
"828 \n",
"829 gastroenterological cancer \n",
"830 None \n",
"831 None \n",
"\n",
" Intervention(s) \n",
"0 AZD0022 \n",
"1 Hybrid robotic surgery \n",
"2 The study drug (Delmovate ointment or Vaseline... \n",
"3 - Bemarituzumab (15mg/kg, intravenous, Day1, 1... \n",
"4 Local steroid (triamcinolone acetonide) inject... \n",
".. ... \n",
"827 None \n",
"828 Arm1 Patients receive Nivolumab every 4 weeks ... \n",
"829 Indocyanine Green is injected submucosally aro... \n",
"830 None \n",
"831 None \n",
"\n",
"[832 rows x 39 columns]"
]
},
"execution_count": 63,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sorted_df"
]
},
{
"cell_type": "code",
"execution_count": 64,
"metadata": {},
"outputs": [],
"source": [
"sorted_df.to_csv('../JRCT20241215Cancer.csv')"
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array(['NCT06599502', None, 'NCT06003231', 'NCT06632951', 'NCT06692738',\n",
" 'NCT06573294', 'NCT06627647', 'NCT06549595', 'NCT06660654',\n",
" 'NCT06496178', 'NCT06608927', 'NCT04898634', 'NCT06393374',\n",
" 'NCT06312176', 'NCT06629779', 'NCT06698042', 'NCT06561386',\n",
" 'NCT05445778', 'NCT06641908', 'NCT06509906', 'NCT06598306',\n",
" 'NCT06486441', 'NCT05605899', 'NCT06435429', 'NCT06586515',\n",
" 'NCT06077760', 'NCT06551142', 'NCT06622941', 'NCT06564844',\n",
" 'NCT06360354', 'NCT06622226', 'NCT05580562', 'NCT06346392',\n",
" 'NCT06581432', 'NCT04777851', 'NCT06561685', 'NCT06555744',\n",
" 'NCT05730036', 'NCT06551324', 'NCT06413706', 'NCT06417814',\n",
" 'NCT03423628', 'NCT06528093', 'NCT06333951', 'NCT06465069',\n",
" 'NCT06526793', 'NCT06312137', 'NCT04547166', 'NCT06431594',\n",
" 'NCT06497556', 'NCT06400472', 'NCT06526819', 'NCT06012435',\n",
" 'NCT06421935', 'NCT05424822', 'NCT06452277', 'NCT06508658',\n",
" 'NCT06305754', 'NCT03313778', 'NCT04895709', 'NCT06467357',\n",
" 'NCT06353386', 'NCT06282575', 'NCT06223516', 'NCT06318273',\n",
" 'NCT06170788', 'NCT06191744', 'NCT06345729', 'NCT06422143',\n",
" 'NCT06459180', 'NCT06356129', 'NCT06470438', 'NCT05201066',\n",
" 'NCT04482309', 'NCT06095583', 'NCT06428409', 'NCT05456256',\n",
" 'NCT06535893', 'NCT06158841', 'NCT06356311', 'NCT06211036',\n",
" 'NCT06074588', 'NCT06131398', 'NCT06319820', 'NCT06380751',\n",
" 'NCT06357533', 'NCT06362252', 'NCT06238479', 'NCT06236438',\n",
" 'NCT06064500', 'NCT06390995', 'NCT06252649', 'NCT06159790',\n",
" 'NCT06211764', 'NCT06132958', 'NCT06208150', 'NCT06136650',\n",
" 'NCT06136624', 'NCT06330064', 'NCT05552222', 'NCT06106945',\n",
" 'NCT06188559', 'NCT06285097', 'NCT06317311', 'NCT06112379',\n",
" 'NCT05800964', 'NCT06158958', 'NCT06541665', 'NCT05153239',\n",
" 'NCT05933577', 'NCT06136559', 'NCT06105632', 'NCT05899608',\n",
" 'NCT05041309', 'NCT05984277', 'NCT06548217', 'NCT06206837',\n",
" 'NCT06047080', 'NCT04910568', 'NCT06103864', 'NCT05980416',\n",
" 'NCT03821233', 'NCT04586426', 'NCT06203210', 'NCT06240741',\n",
" 'NCT06244485', 'NCT05371093', 'NCT05939414', 'NCT06152575',\n",
" 'NCT06057402', 'NCT06117774', 'NCT06091930', 'NCT06172478',\n",
" 'NCT06130553', 'NCT06018129', 'NCT06219941', 'NCT06120491',\n",
" 'NCT06129864', 'NCT06084481', 'NCT04420884', 'NCT06045806',\n",
" 'NCT06099782', 'NCT06119581', 'NCT06046742', 'NCT03435796',\n",
" 'NCT06109779', 'NCT05599984', 'NCT05920356', 'NCT05519085',\n",
" 'NCT04031677', 'NCT05552976', 'NCT06547528', 'NCT06097728',\n",
" 'NCT05952557', 'NCT06057038', 'NCT06079671', 'NCT06532331',\n",
" 'NCT05488314', 'NCT05544929', 'NCT06174987', 'NCT05776160',\n",
" 'NCT05907122', 'NCT05973773', 'NCT05967689', 'NCT04594642',\n",
" 'NCT06041802', 'NCT06038578', 'NCT05794906', 'NCT05171049',\n",
" 'NCT04879329', 'NCT05862285', 'NCT05775159', 'NCT05909397',\n",
" 'NCT05753501', 'NCT05879653', 'NCT05896163', 'NCT05875168',\n",
" 'NCT06074705', 'NCT05771480', 'NCT05714839', 'NCT06005493',\n",
" 'NCT05797168', 'NCT05152147', 'NCT04557449', 'NCT05832827',\n",
" 'NCT05607550', 'NCT05514054', 'NCT05614739', 'NCT05774951',\n",
" 'NCT05838768', 'NCT03761108', 'NCT05907980', 'NCT05702229',\n",
" 'NCT05485766', 'NCT05765734', 'NCT05727176', 'NCT05609968',\n",
" 'NCT05669989', 'NCT05647122', 'NCT05382559', 'NCT05614102',\n",
" 'NCT05737199', 'NCT05410145', 'NCT04931654', 'NCT05654623',\n",
" 'NCT05347485', 'NCT05319730', 'NCT05572515', 'NCT05253651',\n",
" 'NCT05629585', 'NCT05546476', 'NCT05623020', 'NCT05083481',\n",
" 'NCT05619744', 'NCT04892173', 'NCT05567185', 'NCT05257083',\n",
" 'NCT05498428', 'NCT05261399', 'NCT05555732', 'NCT05489211',\n",
" 'NCT05277051', 'NCT05206357', 'NCT05565378', 'NCT05259839',\n",
" 'NCT05397496', 'NCT05464030', 'NCT05325866', 'NCT05440786',\n",
" 'NCT05275868', 'NCT05307705', 'NCT05337137', 'NCT05298423',\n",
" 'NCT05002127', 'NCT05201781', 'NCT05067283', 'NCT05238922',\n",
" 'NCT04895410', 'NCT04707248', 'NCT03843359', 'NCT05317416',\n",
" 'NCT05301842', 'NCT05322577', 'NCT04928846', 'NCT04862663',\n",
" 'NCT04771078', 'NCT05094336', 'NCT05211895', 'NCT04960709',\n",
" 'NCT05221840', 'NCT05365581', 'NCT05083169', 'NCT03888105',\n",
" 'NCT05251727', 'NCT03960840', 'NCT05123482', 'NCT05061823',\n",
" 'NCT06535009', 'NCT05114746', 'NCT05048797', 'NCT02912949',\n",
" 'NCT04803994', 'NCT05091346', 'NCT05029882', 'NCT05005403',\n",
" 'NCT04819100', 'NCT04857372', 'NCT05034887', 'NCT05012618',\n",
" 'NCT03398655', 'NCT04956640', 'NCT05064618', 'NCT04949256',\n",
" 'NCT04923893', 'NCT04975997', 'NCT03609359', 'NCT04886804',\n",
" 'NCT04185883', 'NCT04149574', 'NCT04452591', 'NCT04711252',\n",
" 'NCT04777994', 'NCT04660344', 'NCT04612751', 'NCT04400591',\n",
" 'NCT03711032', 'NCT04221542', 'NCT04661007', 'NCT04640623',\n",
" 'NCT04649073', 'NCT04606446', 'NCT04683250', 'NCT04379596',\n",
" 'NCT03899155', 'NCT04417465', 'NCT04328948', 'NCT03287908',\n",
" 'NCT04117958', 'NCT04402008', 'NCT04419532', 'NCT04171141',\n",
" 'NCT03969004', 'NCT04176016', 'NCT04145622', 'NCT04094311',\n",
" 'NCT04288999', 'NCT03260491', 'NCT04008797', 'NCT03821935',\n",
" 'NCT03818893', 'NCT03515629', 'NCT02609776'], dtype=object)"
]
},
"execution_count": 65,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sorted_df['NCT No'].unique()"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['https://jrct.niph.go.jp/latest-detail/jRCT2031240552',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052240215',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240214',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240547',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240545',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240542',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240210',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240536',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032240534',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240530',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240526',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240039',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs022240038',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240512',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240510',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240197',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240508',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042240132',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041240130',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240503',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071240077',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240192',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240501',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240500',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240494',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240486',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240485',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240084',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240484',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240481',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240478',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240081',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240476',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240454',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240178',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011240048',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240448',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032240451',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011240047',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240445',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240173',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240432',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011240046',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240430',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032240428',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240418',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240415',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240070',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs012240043',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240165',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2023240034',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240407',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240404',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041240103',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240063',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240381',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240067',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240064',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240150',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240062',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240376',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240028',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240141',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240373',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011240034',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052240137',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240349',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240347',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071240060',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240345',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240130',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240126',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240129',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240343',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240125',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240128',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240340',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240335',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2032240323',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240121',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240313',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240049',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032240314',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240119',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240308',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071240054',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240116',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240303',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240298',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032240299',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240021',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052240112',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240020',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240047',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240279',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240284',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240278',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240276',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240270',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240272',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240261',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240258',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240255',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240254',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240248',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240247',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240241',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240238',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240041',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240235',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033240236',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240229',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240225',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071240036',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240224',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240223',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240220',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240219',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041240056',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240092',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240089',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240034',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240213',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240087',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240032',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240210',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240015',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240082',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240201',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240081',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240194',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240200',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240077',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240188',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240013',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240075',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041240051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021240012',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240178',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2072240024',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240071',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041240050',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240170',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041240049',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011240017',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240025',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240169',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240067',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240024',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240160',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240159',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021240010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2052240059',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240154',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240020',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240019',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071240019',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041240039',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240135',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240133',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240045',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240108',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240106',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240100',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240096',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052240039',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240095',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051240038',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240089',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240090',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061240012',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240083',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240081',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240011',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051240026',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240062',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052240015',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs012240006',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061240005',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240055',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032230754',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031240046',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041240020',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011240009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240041',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011240005',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032240033',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240026',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240030',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240029',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033240023',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041240009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240016',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031240014',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071240003',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041240003',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042240001',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230168',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021230067',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230750',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230747',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230114',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230209',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011230065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230728',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230723',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230111',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230712',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230705',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230124',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230123',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230169',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230697',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230693',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230196',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230688',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230106',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2013230062',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011230061',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052230195',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230683',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230682',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230678',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011230059',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230677',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230190',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230660',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071230118',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021230062',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230188',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230102',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230646',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230643',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230645',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230637',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230641',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230640',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230631',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230630',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230114',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230146',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230614',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230615',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230138',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2063230096',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230608',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230606',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2063230095',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021230055',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230141',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230601',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230596',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230169',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230136',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230575',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230133',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230544',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230577',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230576',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230569',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230562',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230127',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2032230554',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032230540',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230111',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230110',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230534',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230532',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230084',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230150',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230531',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230120',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230147',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061230081',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230080',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2063230079',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033230513',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230509',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230510',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230511',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230505',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230078',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230098',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230097',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042230112',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230482',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230095',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230477',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230475',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021230040',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011230049',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011230051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230456',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230106',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061230077',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2072230089',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230075',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230442',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062230072',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230439',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230438',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230436',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230429',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230119',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230419',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230415',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230093',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230410',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042230089',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230110',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230380',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230379',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230108',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230084',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052230106',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033230370',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230372',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230371',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230061',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230360',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230356',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071230065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230058',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2030230343',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011230037',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230335',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230331',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230077',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230319',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230094',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041230073',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071230055',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230311',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230309',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230263',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033230299',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061230046',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2030230282',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230279',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230277',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230259',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230260',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061230040',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230255',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230249',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230071',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071230043',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230039',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230069',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230237',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230233',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021230016',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230234',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230231',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230037',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230223',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230219',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032230212',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011230016',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230063',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230200',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230192',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230182',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230175',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071230025',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230026',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021230010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230037',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230127',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230033',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230121',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230114',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011230009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230109',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230029',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230098',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230090',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230096',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230088',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230087',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021230005',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230019',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230072',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062230014',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032230065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2032230060',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061230009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220742',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051230018',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230012',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032230042',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230031',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041230007',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230014',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051230012',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031230018',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032230014',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230007',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031230002',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032220746',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220164',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061220113',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220738',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220737',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220736',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220732',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220727',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220724',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062220110',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220721',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220716',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052220194',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220701',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220703',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220160',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220695',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220689',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220157',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220683',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220675',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220154',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042220151',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220147',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220150',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220666',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051220176',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220653',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220651',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220169',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220171',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220639',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220636',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071220105',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220630',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032220618',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032220609',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220600',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032220590',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2053220159',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220591',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071220095',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052220157',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220582',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220125',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220588',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220580',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061220087',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220581',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220572',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220118',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220569',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220149',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220557',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220115',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021220036',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220527',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220137',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220133',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220511',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220102',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220484',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051220124',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220477',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220101',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2063220071',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220448',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051220116',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220446',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220430',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220342',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2032220428',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220424',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011220022',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220421',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220420',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061220066',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220109',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220404',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220403',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2072220055',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220067',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220351',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051220100',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061220060',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011220019',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062220057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021220022',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs022220021',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220328',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220330',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220313',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220311',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220301',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061220051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071220043',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220288',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220278',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220276',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2052220073',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220257',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032220240',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220219',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220213',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220203',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021220015',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220059',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220162',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220160',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220159',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033220220',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2073220017',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220034',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220033',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220125',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220110',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220024',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220099',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062220023',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220033',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220021',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220029',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220091',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071220010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033220088',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220075',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220077',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041220017',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061220015',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220058',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220060',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011220004',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052220021',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220013',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051220019',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220047',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220038',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220034',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220031',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052220011',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2053220006',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031220025',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041220005',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061220007',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032220010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031220002',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021210079',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210707',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210708',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033210698',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210205',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061210089',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061210088',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210200',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021210076',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021210075',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210667',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210660',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210652',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042210158',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2021210072',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210644',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210635',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041210148',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210617',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210607',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs033210603',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061210074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210167',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210593',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051210165',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2013210066',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210585',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210565',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210156',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210560',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210128',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210152',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210148',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210510',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210511',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210530',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041210123',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011210058',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033210499',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061210065',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210483',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061210058',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210461',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210460',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032210450',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210108',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051210125',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210104',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210103',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210426',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210119',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071210090',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011210044',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210405',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042210090',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210395',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210393',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071210084',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210387',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210386',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2073210080',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061210042',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2061210041',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210101',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071210074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2052210099',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052210092',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210340',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210327',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210319',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210313',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210300',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210299',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032210292',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210063',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032210291',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210282',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033210278',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210265',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210264',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2041210056',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210053',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071210051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210231',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061210028',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011210025',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011210020',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210041',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061210023',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210181',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051210043',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210174',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210165',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210042',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061210016',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210039',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210135',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210034',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021210010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011210015',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052210032',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210121',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210118',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2032210115',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210114',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041210023',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031210100',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2011210009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042210018',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2043210017',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210021',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210072',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210046',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2073210013',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210041',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210036',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031210016',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051210002',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200449',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2053200162',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200438',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033200431',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041200113',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062200061',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200390',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200388',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200384',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071200101',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200357',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051200130',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200326',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051200121',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200320',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2071200086',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033200278',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051200105',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200256',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041200079',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200246',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs062200029',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200222',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200208',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200203',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041200062',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061200027',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041200054',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051200071',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200153',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200114',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071200029',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225361',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225364',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051200048',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071200026',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200088',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200087',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225298',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200077',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225288',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs042200033',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200067',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041200028',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032200066',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200064',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031200057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225233',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021200009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225224',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051200026',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200038',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225208',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225196',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs022200004',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021200003',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2073200004',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041200001',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031200004',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225145',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021190023',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190223',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080225058',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021190022',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs072190044',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190186',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190167',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224968',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051190076',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224960',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190126',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224907',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051190058',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT1080224903',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190104',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041190066',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032190083',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2033190086',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190076',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2031190072',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190059',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224788',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224780',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224727',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041190042',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041190040',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs071190010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031190023',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224666',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2051190009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051190006',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041180151',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180220',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180207',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180216',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs072180078',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180199',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180200',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180178',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041180133',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052180188',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021180045',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs041180127',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021180022',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021180021',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021180009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021180033',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs021180010',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180096',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180095',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180419',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180085',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180140',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180399',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180074',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032180392',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180376',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180350',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180358',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180057',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180375',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180339',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180324',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180374',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032180288',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs072180051',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180122',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180253',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs011180011',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180043',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180094',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180170',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180082',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180165',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs032180154',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180114',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180115',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180046',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180042',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs052180038',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180055',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180009',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs061180008',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224136',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080224108',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs031180024',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCTs051180001',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080223768',\n",
" 'https://jrct.niph.go.jp/latest-detail/jRCT2080222728']"
]
},
"execution_count": 66,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"jrct_links"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "gradio",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.3"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
|