File size: 108,596 Bytes
2c58401 |
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 |
{
"003234408d": {
"penguin": {
"3": null,
"12": "1. The penguin is sitting on the rocky ground, leaning slightly forward while resting.\n\n2. The penguin is standing upright with its head lowered as if pecking at the ground.\n\n3. The penguin is lying on its belly on the rocks, facing partially to the side.\n\n4. The penguin is nestled down on the ground with its head turned slightly to one side.\n\n5. The penguin is lying down with its body stretched out on the rocky surface.",
"25": "1. The penguin is sitting upright while tilting its head slightly backward.\n2. The penguin is leaning forward and pecking at the ground.\n3. The penguin is resting on its belly, turning its head to the side.\n4. The penguin is huddled down closely, looking straight ahead.\n5. The penguin is lying flat on its stomach with its head turned slightly to one side.",
"32": null
}
},
"0043f083b5": {
"bus": {
"4": null,
"6": null,
"10": null,
"14": null
},
"sedan": {
"4": null,
"6": null,
"10": null,
"14": null
}
},
"0044fa5fba": {
"giant_panda": {
"4": null,
"5": null,
"10": null,
"11": null
}
},
"005a527edd": {
"ape": {
"4": "1. The ape is reaching out with its hand while nestled close to another ape.\n\n2. The ape is holding food with its hand and has its mouth open as if preparing to eat.",
"9": "1. The ape is crouching and looking forward, with one hand resting on the ground.\n\n2. The ape is sitting upright, scratching its head with one hand while holding a plant with the other.",
"15": null,
"24": null
}
},
"0065b171f9": {
"giant_panda": {
"8": null,
"11": null,
"18": null,
"33": null
}
},
"00917dcfc4": {
"zebra": {
"3": null,
"6": "1. The zebra is standing with its head lowered, appearing to nuzzle another zebra next to it.\n\n2. The zebra is leaning forward with its head lowered, facing away from the other zebras.\n\n3. The zebra is moving away from the frame, showing its side profile as it walks to the left.",
"12": "1. Zebra is standing still while slightly nudging the zebra next to it with its head.\n\n2. Zebra is walking forward with its head turned towards the zebra next to it.\n\n3. Zebra is lowering its head while aiming its gaze toward the ground.",
"16": "1. The zebra is raising its head and showing its back while making contact with another zebra.\n2. A zebra is standing upright and facing away from the camera, showing its back.\n3. The zebra is facing forward with its head slightly lowered, appearing still."
}
},
"00a23ccf53": {
"shark": {
"4": null,
"11": null,
"20": null,
"26": null
}
},
"00ad5016a4": {
"airplane": {
"4": null,
"5": null,
"8": null,
"14": null
}
},
"01082ae388": {
"leopard": {
"2": null,
"11": null,
"17": null,
"27": null
}
},
"011ac0a06f": {
"ape": {
"3": null,
"16": null,
"18": null,
"27": null
}
},
"013099c098": {
"giant_panda": {
"2": "1. The giant panda is leaning forward with its front paws placed on the back of the other panda, appearing to push or climb over it.\n\n2. The giant panda is sitting with its back slightly hunched, facing away from the other panda, and appears to be moving or pausing near the rocky area.",
"7": null,
"10": "1. The giant panda is leaning over another panda, slightly lowered, with its head towards the other panda.\n2. The giant panda is lying on its back with one paw raised, showing its belly and facing upward.",
"11": null
}
},
"0155498c85": {
"person": {
"7": null,
"10": null,
"21": null,
"33": null
},
"motorbike": {
"7": null,
"10": null,
"21": null,
"33": null
}
},
"01694ad9c8": {
"bird": {
"3": null,
"7": null,
"10": null,
"13": null
}
},
"017ac35701": {
"giant_panda": {
"9": null,
"17": null,
"22": null,
"31": null
}
},
"01b80e8e1a": {
"zebra": {
"2": null,
"5": "1. The zebra is standing and facing forward with its head lowered, appearing to be grazing.\n\n2. The zebra is walking forward with its head held up, looking around.",
"7": null,
"9": null
}
},
"01baa5a4e1": {
"frisbee": {
"3": null,
"13": null,
"18": null,
"25": null
}
},
"01c3111683": {
"whale": {
"7": null,
"16": null,
"22": null,
"33": null
}
},
"01c4cb5ffe": {
"person": {
"8": null,
"15": "1. The person is skiing downhill, leaning forward and using ski poles for balance.\n\n3. The person is crouching mid-air, executing a jump while holding onto their snowboard.",
"22": null,
"29": null
},
"snowboard": {
"8": null,
"15": null,
"22": null,
"29": null
}
},
"01c76f0a82": {
"plant": {
"3": null,
"6": null,
"12": null,
"14": null
},
"sedan": {
"3": null,
"6": null,
"12": null,
"14": null
}
},
"01c783268c": {
"person": {
"8": null,
"10": null,
"22": null,
"26": null
},
"ape": {
"8": null,
"10": null,
"22": null,
"26": null
}
},
"01e64dd36a": {
"cow": {
"3": null,
"5": "1. The cow is lying on the ground, legs splayed outward and pushing against the ground.\n2. The cow is standing still, facing forward with its head slightly lowered.\n3. The cow is standing upright, looking straight ahead with its ears perked up.",
"10": null,
"14": null
}
},
"01ed275c6e": {
"giraffe": {
"4": "1. The giraffe is walking steadily forward with its head facing upward.\n\n2. The giraffe is leaning against the tree, extending its neck and nibbling on the leaves.",
"8": "1. The giraffe is standing still, facing forward with its head held high.\n2. The giraffe is stretching its neck upwards, appearing to reach for the leaves of a tree.",
"12": "1. The giraffe is stretching its neck upwards and nibbling on the leaves of the tree. \n2. The giraffe is bending its head down and rubbing against the tree trunk.",
"16": null
}
},
"01ff60d1fa": {
"lizard": {
"8": null,
"12": null,
"25": null,
"32": null
}
},
"020cd28cd2": {
"person": {
"3": null,
"9": null,
"17": null,
"23": null
}
},
"02264db755": {
"fox": {
"2": null,
"12": null,
"20": null,
"32": null
}
},
"0248626d9a": {
"train": {
"2": null,
"5": null,
"9": null,
"15": null
}
},
"02668dbffa": {
"frog": {
"3": null,
"13": null,
"18": null,
"27": null
}
},
"0274193026": {
"person": {
"6": null,
"9": null,
"15": null,
"21": null
},
"skateboard": {
"6": null,
"9": null,
"15": null,
"21": null
}
},
"02d28375aa": {
"fox": {
"9": null,
"14": null,
"22": null,
"31": null
}
},
"031ccc99b1": {
"person": {
"4": "1. The person is gesturing with their left hand while facing another person.\n\n2. The person is holding a microphone and appears to be speaking.\n\n3. The person is holding a small dog close to their chest and looking toward another person.",
"5": "1. The person is turning slightly towards the others while raising a hand midway.\n2. The person is holding a microphone and speaking to the group.\n3. The person is clasping their hands together and appears to be speaking.",
"9": null,
"14": "1. The person is gesturing with their right hand while facing another individual.\n2. The person is holding a microphone with their right hand and leaning slightly forward.\n3. The person is extending their right hand towards another individual, as if greeting or reaching."
}
},
"0321b18c10": {
"elephant": {
"3": null,
"7": null,
"8": null,
"13": null
},
"person": {
"3": null,
"7": null,
"8": null,
"13": null
}
},
"0348a45bca": {
"fish": {
"8": null,
"16": null,
"19": null,
"27": null
}
},
"0355e92655": {
"boat": {
"3": null,
"6": null,
"9": null,
"13": null
},
"paddle": {
"3": null,
"6": null,
"9": null,
"13": null
},
"person": {
"3": null,
"6": null,
"9": null,
"13": null
}
},
"0358b938c1": {
"elephant": {
"4": null,
"7": "1. The elephant is wading through the water while extending its trunk forward.\n\n2. The elephant is splashing water from the stream with its trunk.",
"9": "1. The elephant is standing in the water and extending its trunk forward, spraying water from its tip.\n\n2. The elephant is sitting in the water, using its trunk to splash water upward in an arc.",
"16": null
}
},
"0368107cf1": {
"person": {
"2": null,
"6": null,
"10": null,
"15": null
}
},
"0379ddf557": {
"person": {
"9": null,
"10": null,
"23": null,
"28": null
},
"skateboard": {
"9": null,
"10": null,
"23": null,
"28": null
}
},
"038b2cc71d": {
"lizard": {
"3": null,
"5": null,
"9": null,
"15": null
}
},
"038c15a5dd": {
"hedgehog": {
"6": null,
"10": null,
"18": null,
"26": null
}
},
"03a06cc98a": {
"giraffe": {
"5": "1. The giraffe is standing with its neck extended and facing forward, appearing to stretch upward.\n\n2. The giraffe is turning its head slightly to one side while keeping its body stationary.\n\n3. The giraffe is walking forward with its neck raised prominently.",
"8": "1. The giraffe is stretching its neck upwards while nibbling on leaves.\n\n2. The giraffe is stepping forward and reaching towards a branch with its mouth.\n\n3. The giraffe is bending its head downwards, appearing to investigate the ground.",
"12": "1. The giraffe is bending its neck down while moving its body forward slightly.\n2. The giraffe is stretching its neck upward, seemingly in the act of reaching for something above.\n3. The giraffe is raising its head and neck in an elevated posture, facing forward.",
"14": "1. The giraffe is stretching its neck downward to nibble on a low-hanging branch.\n\n2. The giraffe is extending its head upward to reach the foliage above.\n\n3. The giraffe is bending its neck toward the side, grasping leaves from a nearby tree."
}
},
"03a63e187f": {
"lizard": {
"4": null,
"14": null,
"21": null,
"27": null
}
},
"03c95b4dae": {
"elephant": {
"3": "1. The elephant is walking forward with its trunk hanging down naturally. \n2. The elephant is walking alongside a person, facing straight ahead. \n3. The elephant is walking with its head slightly lowered, facing forward.",
"5": null,
"10": null,
"16": null
}
},
"03e2b57b0e": {
"lizard": {
"3": null,
"13": null,
"15": null,
"21": null
}
},
"04194e1248": {
"lizard": {
"4": null,
"10": null,
"22": null,
"32": null
}
},
"04259896e2": {
"lizard": {
"7": null,
"16": null,
"24": null,
"27": null
}
},
"0444918a5f": {
"truck": {
"2": null,
"9": null,
"13": null,
"16": null
}
},
"04460a7a52": {
"lizard": {
"8": null,
"14": null,
"20": null,
"32": null
}
},
"04474174a4": {
"ape": {
"4": "1. The ape is reaching forward and pressing its hands against the stone wall.\n\n2. The ape is turning its head slightly and gripping the rock surface with both hands.",
"12": null,
"22": null,
"31": null
}
},
"0450095513": {
"snail": {
"7": null,
"11": null,
"19": null,
"23": null
}
},
"045f00aed2": {
"tiger": {
"2": null,
"14": null,
"25": null,
"30": null
},
"others": {
"2": null,
"14": null,
"25": null,
"30": null
},
"person": {
"2": null,
"14": null,
"25": null,
"30": null
}
},
"04667fabaa": {
"parrot": {
"4": null,
"10": null,
"19": null,
"31": null
}
},
"04735c5030": {
"cat": {
"3": "1. The cat is playfully batting at an object with its paw, flicking it rapidly.\n\n2. The cat is intently observing something, with its ears perked and body slightly crouched.",
"6": null,
"10": "1. The cat is crouching low with its front paws stretched forward as if ready to pounce.\n\n2. The cat is lying down, partially turned on its side, appearing relaxed and stationary.",
"15": "1. The cat is sitting upright with its paws raised, as if batting at something in front of it.\n\n2. The cat is curled up and appears to be resting its head on its side."
}
},
"04990d1915": {
"sedan": {
"2": null,
"5": null,
"10": null,
"12": null
},
"truck": {
"2": null,
"5": null,
"10": null,
"12": null
},
"bus": {
"2": null,
"5": null,
"10": null,
"12": null
}
},
"04d62d9d98": {
"person": {
"4": null,
"6": null,
"13": null,
"16": null
},
"skateboard": {
"4": null,
"6": null,
"13": null,
"16": null
}
},
"04f21da964": {
"monkey": {
"7": null,
"16": null,
"24": null,
"32": null
}
},
"04fbad476e": {
"parrot": {
"2": null,
"10": null,
"24": null,
"26": null
}
},
"04fe256562": {
"truck": {
"5": null,
"7": null,
"11": null,
"17": null
},
"motorbike": {
"5": null,
"7": null,
"11": null,
"17": null
}
},
"0503bf89c9": {
"hedgehog": {
"5": null,
"13": null,
"19": null,
"25": null
}
},
"0536c9eed0": {
"cat": {
"4": null,
"7": null,
"10": null,
"13": null
}
},
"054acb238f": {
"owl": {
"3": null,
"16": null,
"20": null,
"27": null
}
},
"05579ca250": {
"sedan": {
"6": null,
"12": null,
"18": null,
"26": null
},
"person": {
"6": null,
"12": null,
"18": null,
"26": null
},
"skateboard": {
"6": null,
"12": null,
"18": null,
"26": null
}
},
"056c200404": {
"toilet": {
"5": null,
"8": null,
"13": null,
"15": null
}
},
"05774f3a2c": {
"ape": {
"4": null,
"13": null,
"25": null,
"33": null
}
},
"058a7592c8": {
"train": {
"2": null,
"7": null,
"11": null,
"15": null
}
},
"05a0a513df": {
"person": {
"4": null,
"9": null,
"12": null,
"15": null
}
},
"05a569d8aa": {
"cat": {
"3": null,
"7": null,
"9": null,
"13": null
},
"mouse": {
"3": null,
"7": null,
"9": null,
"13": null
}
},
"05aa652648": {
"ape": {
"3": null,
"10": null,
"17": null,
"23": null
}
},
"05d7715782": {
"sign": {
"5": null,
"8": null,
"11": null,
"16": null
}
},
"05e0b0f28f": {
"person": {
"4": null,
"9": null,
"15": null,
"24": null
},
"mouse": {
"4": null,
"9": null,
"15": null,
"24": null
}
},
"05fdbbdd7a": {
"umbrella": {
"2": null,
"4": null,
"6": null,
"8": null
}
},
"05ffcfed85": {
"monkey": {
"6": null,
"15": null,
"22": "1. The monkey is hanging upside down by its tail from a branch, with its body extended toward the ground.\n2. The monkey is climbing and reaching out its arm to grasp another branch while maintaining balance.",
"32": null
}
},
"0630391881": {
"person": {
"6": null,
"9": null,
"15": null,
"27": null
},
"tennis_racket": {
"6": null,
"9": null,
"15": null,
"27": null
}
},
"06840b2bbe": {
"snake": {
"3": null,
"5": null,
"8": null,
"16": null
}
},
"068f7dce6f": {
"shark": {
"5": null,
"14": null,
"23": null,
"31": null
}
},
"0693719753": {
"turtle": {
"7": null,
"12": null,
"15": null,
"20": null
}
},
"06ce2b51fb": {
"paddle": {
"2": null,
"7": null,
"9": null,
"12": null
},
"person": {
"2": null,
"7": "1. The person is sitting in the boat, gripping a paddle with both hands and paddling forward.\n\n2. The person is sitting with arms resting on their knees, appearing relaxed while facing forward.",
"9": null,
"12": null
}
},
"06e224798e": {
"tiger": {
"2": null,
"14": null,
"21": null,
"26": null
}
},
"06ee361788": {
"duck": {
"3": null,
"6": "1. The duck is swimming forward, creating ripples around its body.\n\n2. The duck is gliding smoothly on the water without visible disturbance.\n\n3. The duck is paddling energetically with its feet, propelling itself forward.",
"10": null,
"14": null
}
},
"06fbb3fa2c": {
"eagle": {
"4": null,
"7": null,
"9": null,
"12": null
}
},
"0700264286": {
"cow": {
"4": "1. The cow is stepping forward with its front legs on the straw-covered ground.\n2. The cow is standing still and facing downward.",
"6": null,
"8": "1. The cow is standing alert with its head slightly raised, appearing attentive to its surroundings.\n2. The cow is standing still with its head lowered, possibly engaging with the ground beneath.",
"12": null
}
},
"070c918ca7": {
"parrot": {
"5": null,
"10": null,
"23": null,
"32": null
}
},
"07129e14a4": {
"person": {
"2": null,
"10": null,
"22": null,
"30": null
},
"parrot": {
"2": null,
"10": "1. The parrot is leaning forward and facing another parrot while slightly opening its beak.\n2. The parrot is standing upright, with its head slightly turned towards another parrot.",
"22": null,
"30": null
}
},
"07177017e9": {
"motorbike": {
"4": null,
"6": null,
"9": null,
"13": null
}
},
"07238ffc58": {
"monkey": {
"6": null,
"14": "1. The monkey is sitting down and reaching its front arm towards the ground.\n2. The monkey is standing and slightly leaning forward, looking down at the ground.\n3. The monkey is walking forward, with one leg raised and moving past the fence.",
"25": null,
"28": null
}
},
"07353b2a89": {
"sheep": {
"6": null,
"8": "1. The sheep is stretching its neck forward while moving through a gate.\n2. The sheep is nudging its head against another sheep, possibly interacting.\n3. The sheep is standing still, turning its head slightly to the side.\n4. The sheep is lowering its head as if inspecting the ground below.",
"17": null,
"25": null
}
},
"0738493cbf": {
"airplane": {
"3": null,
"5": null,
"9": null,
"12": null
}
},
"075926c651": {
"person": {
"2": "1. The person is holding a microphone and appears to be speaking or singing into it.\n2. The person is seated, playing the piano with both hands actively on the keys.",
"6": null,
"9": null,
"13": null
}
},
"075c701292": {
"duck": {
"8": "1. The duck is walking forward with its wings slightly raised.\n2. The duck is waddling with its head slightly lowered, following another duck.\n3. The duck is moving forward with its wings held closed against its body.\n4. The duck is stepping forward while flapping its wings.",
"14": null,
"18": null,
"33": null
}
},
"0762ea9a30": {
"person": {
"5": null,
"6": null,
"12": null,
"17": null
}
},
"07652ee4af": {
"person": {
"7": null,
"8": null,
"19": null,
"21": null
},
"skateboard": {
"7": null,
"8": null,
"19": null,
"21": null
}
},
"076f206928": {
"person": {
"3": null,
"9": null,
"10": null,
"16": null
},
"zebra": {
"3": null,
"9": null,
"10": null,
"16": null
}
},
"077d32af19": {
"person": {
"5": null,
"9": null,
"10": null,
"14": null
},
"train": {
"5": null,
"9": null,
"10": null,
"14": null
}
},
"079049275c": {
"mouse": {
"7": null,
"8": null,
"19": null,
"20": null
}
},
"07913cdda7": {
"person": {
"4": null,
"7": null,
"9": null,
"11": null
},
"train": {
"4": null,
"7": null,
"9": null,
"11": null
}
},
"07a11a35e8": {
"ape": {
"6": null,
"15": "1. The ape is sitting while holding and inspecting a piece of food with its hands.\n\n2. The ape is crouching forward with its front paw extended towards the ground.",
"21": "1. The ape is holding a piece of fruit with both hands and inspecting it closely.\n2. The ape is sitting on its hind legs while looking toward the other ape.",
"29": "1. The ape is sitting and holding a banana with one hand while opening its mouth wide. \n2. The ape is standing on all fours and facing forward."
}
},
"07ac33b6df": {
"ape": {
"2": null,
"9": null,
"16": null,
"27": null
}
},
"07c62c3d11": {
"parrot": {
"8": null,
"17": null,
"18": null,
"30": null
}
},
"07cc1c7d74": {
"snake": {
"5": null,
"12": null,
"23": null,
"31": null
}
},
"080196ef01": {
"lizard": {
"6": null,
"14": null,
"25": null,
"28": null
},
"hand": {
"6": null,
"14": null,
"25": null,
"28": null
}
},
"081207976e": {
"hat": {
"2": null,
"9": null,
"12": null,
"17": null
}
},
"081ae4fa44": {
"shark": {
"2": null,
"13": null,
"14": "1. The shark is swimming slowly upward, angling its body slightly as it glides through the water.\n\n2. The shark is gliding smoothly along the bottom, moving forward with gentle fin movements.",
"22": null
}
},
"081d8250cb": {
"sedan": {
"3": null,
"8": null,
"13": null,
"16": null
},
"person": {
"3": null,
"8": null,
"13": null,
"16": null
},
"skateboard": {
"3": null,
"8": null,
"13": null,
"16": null
}
},
"082900c5d4": {
"duck": {
"4": null,
"7": null,
"10": null,
"17": null
}
},
"0860df21e2": {
"frisbee": {
"5": null,
"14": null,
"21": null,
"31": null
}
},
"0866d4c5e3": {
"bird": {
"2": null,
"6": null,
"8": null,
"11": null
}
},
"0891ac2eb6": {
"person": {
"3": "1. The person is standing upright with hands on hips and looking towards the sea.\n2. The person is sitting and leaning forward with elbows resting on knees.\n3. The person is reclining on a lounge chair, looking out towards the water.",
"6": "1. The person is leaning forward and adjusting a chair.\n\n2. The person is seated on a lounge chair, holding a drink with one hand.\n\n3. The person is walking towards the sea, with arms by their sides and head facing the water.",
"10": "1. The person is leaning forward and adjusting an item on a lounge chair.\n2. The person is sitting upright and inspecting an object in their hands.\n3. The person is bending over and reaching towards the ground with one hand.",
"12": "1. The person is bending over while reaching into a bag on the ground.\n2. The person is sitting back on a lounge chair with an elbow resting on the side.\n3. The person is sitting upright on a lounge chair, facing forward with arms on the armrests."
}
},
"08931bc458": {
"others": {
"5": null,
"12": null,
"20": null,
"27": null
},
"person": {
"5": null,
"12": null,
"20": null,
"27": null
},
"skateboard": {
"5": null,
"12": null,
"20": null,
"27": null
}
},
"08aa2705d5": {
"snake": {
"4": null,
"11": null,
"23": null,
"26": null
}
},
"08c8450db7": {
"toilet": {
"3": null,
"7": null,
"11": null,
"14": null
}
},
"08d50b926c": {
"turtle": {
"5": null,
"17": null,
"21": null,
"26": null
}
},
"08e1e4de15": {
"monkey": {
"2": "1. The monkey is sitting on a rock and looking to the side. \n2. The monkey is leaping across the rocks with its legs extended. \n3. The monkey is climbing up a rock face, reaching upwards with its front paws. \n4. The monkey is standing still on a rock, gazing ahead.",
"10": "1. The monkey is standing on a wooden stump while looking forward.\n\n2. The monkey is climbing up the rocky surface with its body leaning forward.\n\n3. The monkey is leaping forward with its mouth open and front paws stretched out.\n\n4. The monkey is sitting on a rock, facing outward with its back curved.",
"22": null,
"32": null
}
},
"08e48c1a48": {
"cow": {
"2": null,
"7": null,
"8": null,
"12": null
}
},
"08f561c65e": {
"person": {
"4": null,
"14": null,
"19": null,
"26": null
},
"giant_panda": {
"4": null,
"14": null,
"19": null,
"26": null
}
},
"08feb87790": {
"sheep": {
"3": null,
"8": null,
"13": null,
"16": null
}
},
"09049f6fe3": {
"mouse": {
"4": "1. The mouse is pushing its head through the pile of scattered papers.\n2. The mouse is edging forward inside the pipe, sniffing the air ahead.",
"11": null,
"16": null,
"27": null
}
},
"092e4ff450": {
"snake": {
"6": null,
"14": null,
"20": null,
"29": null
}
},
"09338adea8": {
"whale": {
"7": "1. The whale is swimming forward with its flippers extended outward.\n2. The whale is gliding smoothly with its body angled downward.",
"11": "1. The whale is gliding forward with its flippers angled downward, creating smooth propulsion through the water.\n2. The whale is swimming steadily with a gentle swaying motion, maintaining a streamlined movement.",
"19": null,
"29": null
}
},
"093c335ccc": {
"person": {
"6": null,
"9": null,
"14": null,
"20": null
},
"frisbee": {
"6": null,
"9": null,
"14": null,
"20": null
}
},
"0970d28339": {
"ape": {
"8": null,
"17": null,
"22": "1. The ape is gripping a tree branch with one hand while climbing upwards.\n2. The ape is leaning forward and extending its arm towards another branch.",
"33": "1. The ape is sitting upright and appears to be looking around while holding onto the tree branch with one hand.\n\n2. The ape is extending its body forward, gripping a branch with one hand and appears to be balancing on the branch."
}
},
"0974a213dc": {
"giraffe": {
"5": "1. The giraffe is bending its neck downward to reach the ground with its head.\n\n2. The giraffe is standing upright, facing forward, with its legs spread apart.\n\n3. The giraffe is standing still, looking to the side with its body angled slightly away.",
"7": null,
"10": "1. The giraffe is bending its neck downward, appearing to reach toward the ground.\n2. The giraffe is standing upright while slightly turning its head to the side.\n3. The giraffe is facing forward, with its neck extended outward.",
"17": null
}
},
"097b471ed8": {
"cat": {
"2": "1. The cat is lying on its side while stretching its front legs forward.\n2. The cat is crouched low, appearing to lean slightly forward, with its ears perked up.",
"7": "1. The cat is stretching its front paws forward while lying down.\n\n2. The cat is turning its head to the side, facing away from the other cat.",
"12": null,
"14": null
}
},
"0990941758": {
"giant_panda": {
"2": null,
"11": null,
"19": null,
"26": null
}
},
"09a348f4fa": {
"lizard": {
"7": null,
"11": null,
"14": null,
"23": null
}
},
"09a6841288": {
"duck": {
"4": null,
"7": null,
"13": null,
"16": null
}
},
"09c5bad17b": {
"airplane": {
"2": null,
"7": null,
"10": null,
"17": null
}
},
"09c9ce80c7": {
"giant_panda": {
"8": null,
"14": null,
"20": null,
"26": null
}
},
"09ff54fef4": {
"fox": {
"5": null,
"10": null,
"17": null,
"22": null
}
},
"0a23765d15": {
"person": {
"3": "1. The person is jumping off a skateboard ramp with arms outstretched for balance.\n2. The person is crouching while moving forward, possibly approaching the ramp.",
"6": null,
"9": "1. The person is balancing on a skateboard with one foot extended forward and arms outstretched for stability.\n2. The person is mid-air while performing a skateboard trick with knees bent and arms poised for balance.",
"16": null
},
"skateboard": {
"3": null,
"6": null,
"9": null,
"16": null
}
},
"0a275e7f12": {
"elephant": {
"4": null,
"9": null,
"13": null,
"15": null
}
},
"0a2f2bd294": {
"motorbike": {
"2": null,
"8": null,
"13": null,
"15": null
}
},
"0a7a2514aa": {
"lizard": {
"4": null,
"8": null,
"11": null,
"15": null
},
"cat": {
"4": null,
"8": null,
"11": null,
"15": null
}
},
"0a7b27fde9": {
"parrot": {
"6": null,
"12": "1. The parrot is bending its head and pecking at the surface below.\n\n2. The parrot is nudging the other parrot with its head while balancing on the hand.",
"21": null,
"27": null
}
},
"0a8c467cc3": {
"fish": {
"7": "1. The fish is swaying its tail side to side while gliding forward. \n2. The fish is tilting its body and moving its fins to change direction.",
"14": null,
"24": "1. The fish is gliding downward with its fins spread wide and its tail gently curving.\n\n2. The fish is darting forward while its mouth is opening and closing rapidly.\n\n3. The fish is tilting sideways and nudging the surface with its snout.",
"31": null
}
},
"0ac8c560ae": {
"person": {
"4": null,
"9": null,
"13": null,
"14": null
}
},
"0b1627e896": {
"boat": {
"5": null,
"6": null,
"13": null,
"14": null
}
},
"0b285c47f6": {
"hand": {
"4": null,
"11": null,
"18": null,
"20": null
},
"mouse": {
"4": null,
"11": null,
"18": null,
"20": null
}
},
"0b34ec1d55": {
"ape": {
"2": null,
"12": null,
"22": null,
"27": null
}
},
"0b5b5e8e5a": {
"sedan": {
"2": null,
"9": null,
"13": null,
"17": null
},
"person": {
"2": null,
"9": null,
"13": null,
"17": null
}
},
"0b68535614": {
"rabbit": {
"5": null,
"14": null,
"21": null,
"30": null
},
"hand": {
"5": null,
"14": null,
"21": null,
"30": null
}
},
"0b6f9105fc": {
"rabbit": {
"5": null,
"11": null,
"19": null,
"30": null
}
},
"0b7dbfa3cb": {
"cow": {
"3": null,
"7": null,
"9": null,
"12": null
}
},
"0b9cea51ca": {
"whale": {
"5": null,
"13": null,
"22": null,
"32": null
}
},
"0b9d012be8": {
"camel": {
"5": null,
"15": null,
"22": null,
"30": null
}
},
"0bcfc4177d": {
"truck": {
"2": null,
"8": null,
"11": null,
"14": null
}
},
"0bd37b23c1": {
"motorbike": {
"5": null,
"6": null,
"10": null,
"15": null
}
},
"0bd864064c": {
"eagle": {
"3": null,
"10": null,
"16": null,
"24": null
}
},
"0c11c6bf7b": {
"deer": {
"3": null,
"16": null,
"22": null,
"27": null
}
},
"0c26bc77ac": {
"crocodile": {
"7": null,
"10": null,
"18": null,
"28": null
}
},
"0c3a04798c": {
"duck": {
"3": null,
"8": null,
"11": null,
"16": null
},
"fish": {
"3": null,
"8": null,
"11": null,
"16": null
}
},
"0c44a9d545": {
"tiger": {
"4": null,
"12": null,
"20": null,
"33": null
}
},
"0c817cc390": {
"dog": {
"7": null,
"15": null,
"25": null,
"29": null
},
"hedgehog": {
"7": null,
"15": null,
"25": null,
"29": null
}
},
"0ca839ee9a": {
"ape": {
"2": null,
"11": "1. The ape is lying on its back with limbs relaxed and slightly bent, appearing to rest or interact gently.\n2. The ape is nestled closely against the other, using one hand to explore or hold onto the surrounding texture.",
"22": null,
"30": null
}
},
"0cd7ac0ac0": {
"rabbit": {
"4": null,
"12": null,
"18": null,
"24": null
}
},
"0ce06e0121": {
"parrot": {
"7": "1. The parrot is pecking at the wooden perch, tilting its head to access the surface.\n\n2. The parrot is gripping a bottle cap with its beak while pulling back slightly.",
"10": null,
"21": "1. The parrot is leaning forward and pecking at the wooden surface beneath it.\n2. The parrot is flapping its wings while grasping a person's hand.",
"31": null
}
},
"0cfe974a89": {
"turtle": {
"7": null,
"16": null,
"18": null,
"30": null
}
},
"0d2fcc0dcd": {
"zebra": {
"2": null,
"8": "1. The zebra is moving forward with its head lowered, appearing to search the ground.\n\n2. The zebra is standing still with its head turned to the side, attentively watching something in the distance.\n\n3. The zebra is walking sideways, glancing back over its shoulder.\n\n4. The zebra is standing upright with its ears perked up, inspecting its surroundings.",
"11": "1. The zebra is lowering its head while grazing on the ground.\n\n2. The zebra is turning its head to nuzzle the side of another zebra.\n\n3. The zebra is stretching its neck as it looks to the side.\n\n4. The zebra is raising its head high, appearing to sniff the air.",
"16": null
}
},
"0d3aad05d2": {
"parachute": {
"7": null,
"8": null,
"15": null,
"25": null
},
"person": {
"7": null,
"8": null,
"15": null,
"25": null
}
},
"0d40b015f4": {
"person": {
"5": null,
"12": null,
"22": null,
"32": null
},
"snowboard": {
"5": null,
"12": null,
"22": null,
"32": null
}
},
"0d97fba242": {
"person": {
"4": null,
"6": null,
"8": null,
"13": null
},
"dog": {
"4": null,
"6": null,
"8": null,
"13": null
}
},
"0d9cc80d7e": {
"person": {
"2": "1. The person is standing upright with a bag strap over their shoulder, facing towards the bus.\n\n2. The person is facing forward, looking in the same direction as the other person.",
"3": "1. The person is standing and facing the bus while holding a strap over their shoulder.\n2. The person is adjusting their earphones while walking towards the bus.\n3. The person is looking in the direction of the bus, with their mouth slightly open.",
"4": null,
"7": null
}
},
"0dab85b6d3": {
"lizard": {
"2": "1. The lizard is gripping the hand firmly with its toes while arching its back slightly upwards.\n2. The lizard is resting with its body slightly curled, keeping its head elevated from the surface.",
"9": "1. The lizard is gripping onto a hand while climbing upwards, using its legs to maintain balance.\n\n2. The lizard is resting on a flat surface, facing forward with its body slightly curved.",
"16": null,
"21": "1. The lizard is lying on a hand with its body stretched out.\n\n2. The lizard is inside a container, facing slightly downward with its head raised."
}
},
"0db5c427a5": {
"train": {
"4": null,
"7": null,
"13": null,
"15": null
}
},
"0dbaf284f1": {
"cat": {
"2": null,
"9": "1. The cat is walking forward with its body slightly lowered, showing its back.\n2. The cat is crouching while facing something in front of it, with its head down.",
"12": "1. The cat is stepping forward and sniffing the floor while its tail remains still.\n\n2. The cat is crouching near the shiny surface, inspecting the ground with its nose close to the floor.",
"15": "1. The cat is leaning forward and sniffing intently at an object in front of it.\n\n2. The cat is curled up and grooming itself with its front paw."
}
},
"0de4923598": {
"others": {
"4": null,
"7": null,
"11": null,
"16": null
}
},
"0df28a9101": {
"turtle": {
"3": null,
"8": null,
"15": null,
"20": null
}
},
"0e04f636c4": {
"frog": {
"4": null,
"13": null,
"14": null,
"23": null
}
},
"0e05f0e232": {
"lizard": {
"3": null,
"17": null,
"18": null,
"32": null
}
},
"0e0930474b": {
"sedan": {
"2": null,
"6": null,
"10": null,
"12": null
},
"person": {
"2": null,
"6": null,
"10": null,
"12": null
}
},
"0e27472bea": {
"hand": {
"6": null,
"10": null,
"24": null,
"26": null
},
"turtle": {
"6": null,
"10": null,
"24": null,
"26": null
}
},
"0e30020549": {
"parrot": {
"3": null,
"12": null,
"16": null,
"25": null
}
},
"0e621feb6c": {
"lizard": {
"4": "1. The lizard is crawling forward with its legs extended as it moves over the surface.\n\n2. The lizard is standing upright with its head turned upwards, appearing to gaze towards the water container.",
"15": "1. The lizard is extending its front legs and swiftly moving forward across the ground. \n2. The lizard is raising its head and twisting its body to the side.",
"23": null,
"26": "1. The lizard is extending its body forward, pushing off with its hind legs against the ground. \n2. The lizard is rearing up, lifting its front legs while arching its back."
}
},
"0e803c7d73": {
"knife": {
"2": null,
"6": null,
"10": null,
"12": null
},
"hand": {
"2": null,
"6": null,
"10": null,
"12": null
}
},
"0e9ebe4e3c": {
"truck": {
"4": null,
"7": null,
"9": null,
"15": null
}
},
"0e9f2785ec": {
"person": {
"2": null,
"7": null,
"10": null,
"14": null
},
"umbrella": {
"2": null,
"7": null,
"10": null,
"14": null
}
},
"0ea68d418b": {
"others": {
"2": null,
"6": null,
"10": null,
"17": null
},
"airplane": {
"2": null,
"6": null,
"10": null,
"17": null
}
},
"0eb403a222": {
"knife": {
"4": null,
"9": null,
"13": null,
"17": null
},
"hand": {
"4": null,
"9": null,
"13": null,
"17": null
}
},
"0ee92053d6": {
"person": {
"3": null,
"8": null,
"11": null,
"15": null
}
},
"0eefca067f": {
"giant_panda": {
"3": null,
"9": "1. The giant panda is sitting upright holding bamboo with its mouth and paw while leaning against a tree.\n\n2. The giant panda is lying on its back, reaching upward to grab bamboo with its paw.",
"14": "1. The giant panda is sitting up, gnawing on bamboo leaves with its front paws gripping the stems.\n\n2. The giant panda is lying back, reaching out with one paw to pull at nearby bamboo shoots.",
"20": "1. The giant_panda is sitting upright while grasping a cluster of bamboo leaves with its mouth and front paws.\n\n2. The giant_panda is lying on its back, playfully reaching towards the bamboo stalks with its front paw."
}
},
"0f17fa6fcb": {
"duck": {
"2": null,
"15": "1. The duck is gliding smoothly over the water while facing forward.\n2. The duck is submerging its head below the water surface as if searching for food.\n3. The duck is paddling energetically with its feet while partially raising its tail.",
"25": null,
"31": null
}
},
"0f1ac8e9a3": {
"frog": {
"8": null,
"16": null,
"22": null,
"31": null
}
},
"0f202e9852": {
"parrot": {
"4": null,
"5": null,
"9": null,
"11": null
}
},
"0f2ab8b1ff": {
"dolphin": {
"4": null,
"11": null,
"18": null,
"29": null
}
},
"0f51a78756": {
"sheep": {
"7": null,
"13": null,
"19": null,
"20": null
}
},
"0f5fbe16b0": {
"raccoon": {
"6": "1. The raccoon is crouching low while nuzzling against a table leg. \n2. The raccoon is peering around with its head tilted slightly outward.",
"17": "1. The raccoon is crouching low beneath the chair, attempting to reach underneath with its front paw.\n\n2. The raccoon is sniffing the ground, with its head close to the surface and actively investigating.",
"22": "1. The raccoon is sniffing the ground with its head lowered, actively exploring the area.\n\n2. The raccoon is moving forward, reaching its nose toward an object on the floor.",
"33": "1. The raccoon is reaching upwards with its front paws, appearing to grasp onto the leg of the object above.\n\n2. The raccoon is lying on its back, pushing against the floor with its hind legs."
}
},
"0f6072077b": {
"person": {
"4": "1. The person is sitting on the motorcycle, resting their hand on the seat while looking forward.\n\n2. The person is seated on the motorcycle, leaning slightly forward with hands on their lap, looking towards another person.\n\n3. The person is standing and holding a camera to their eye, taking a photo.",
"7": "1. The person is standing beside the motorcycle, facing forward with hands resting on the side.\n\n2. The person is sitting on the motorcycle, placing both hands on the seat for support.\n\n3. The person is holding a camera up to their face and taking a photograph.",
"10": "1. The person is leaning forward slightly, resting a hand on a motorcycle while smiling.\n\n2. The person is sitting on a motorcycle, with one leg crossed over the other and hands resting on her knees.\n\n3. The person is holding a camera up to their face, taking a photograph.",
"16": "1. The person is sitting on a motorcycle while placing her hand on the handlebar and looking to the side.\n\n2. The person is seated on the motorcycle facing forward with her hand resting on her knee.\n\n3. The person is holding a camera in front and taking a photo while standing."
}
},
"0f6b69b2f4": {
"rabbit": {
"8": null,
"16": null,
"21": null,
"33": null
}
},
"0f6c2163de": {
"snail": {
"2": null,
"12": null,
"15": null,
"21": null
}
},
"0f74ec5599": {
"giant_panda": {
"4": null,
"17": null,
"25": null,
"26": null
}
},
"0f9683715b": {
"elephant": {
"5": null,
"6": null,
"12": null,
"15": null
}
},
"0fa7b59356": {
"duck": {
"8": null,
"14": null,
"24": null,
"28": null
}
},
"0fb173695b": {
"paddle": {
"5": null,
"8": null,
"13": null,
"16": null
},
"person": {
"5": null,
"8": null,
"13": null,
"16": null
},
"hat": {
"5": null,
"8": null,
"13": null,
"16": null
}
},
"0fc958cde2": {
"owl": {
"2": null,
"9": null,
"19": null,
"21": null
}
},
"0fe7b1a621": {
"parrot": {
"9": null,
"16": null,
"22": null,
"30": null
}
},
"0ffcdb491c": {
"person": {
"2": null,
"8": null,
"10": null,
"14": null
}
},
"101caff7d4": {
"giant_panda": {
"5": null,
"8": null,
"10": "1. The giant panda is leaning forward and nudging the other panda with its head.\n2. The giant panda is lying on its back, looking upward, and extending its forepaw.",
"17": "1. The giant panda is leaning forward and nuzzling the smaller panda gently.\n\n2. The giant panda is lying on its back and playfully pawing at the air."
}
},
"1022fe8417": {
"person": {
"2": "1. The person is holding the reins and guiding the horses forward while sitting on a carriage.\n2. The person is sitting upright and holding onto a large flag, waving it slightly.\n3. The person is casually walking alongside the crowd, glancing towards the carriage.",
"8": "1. The person is holding the reins with both hands, guiding the horse-drawn carriage.\n2. The person is sitting upright on the carriage, looking ahead attentively.\n3. The person is standing with their hands behind their back, observing the scene.",
"12": null,
"17": "1. The person is holding the reins of the horse-drawn carriage with both hands while seated.\n\n2. The person is standing and holding a cloth over their head, facing forward.\n\n3. The person is seated and clapping hands."
}
},
"1032e80b37": {
"giraffe": {
"3": null,
"8": null,
"13": null,
"17": null
}
},
"103f501680": {
"fish": {
"6": null,
"11": null,
"25": null,
"31": null
}
},
"104e64565f": {
"elephant": {
"5": null,
"7": null,
"12": null,
"16": null
}
},
"104f1ab997": {
"person": {
"2": null,
"6": null,
"9": "1. The person is leaning forward and reaching out towards the boat with both hands.\n\n2. The person is bending over slightly while adjusting something on the edge of the boat.\n\n3. The person is standing on the platform, holding a phone with both hands and focusing on the screen.",
"14": "1. The person is standing upright while facing the ocean and holding a snorkel mask in both hands.\n\n2. The person is crouching with their upper body leaning forward, reaching into a boat with their right hand.\n\n3. The person is standing and holding a camera with both hands, focusing on the lens."
}
},
"106242403f": {
"person": {
"5": null,
"9": null,
"11": null,
"15": null
}
},
"10b31f5431": {
"person": {
"6": "1. The person is skateboarding with bent knees, facing forward, and arms slightly spread for balance.\n\n3. The person is running on the street, slightly leaning forward with one arm extended.\n\n4. The person is crouching and holding a camera extension while wearing protective gear and focusing on the road ahead.",
"11": "1. The person is cycling along the pathway, pedaling with both feet while steering with the handlebars.\n\n3. The person is walking along the sidewalk with their arms swinging slightly as they move forward.\n\n4. The person is crouching on a skateboard, leaning forward with one hand on the ground for balance.",
"18": "1. The person is crouching low, holding onto a board, and leaning into a turn while skating downhill.\n\n4. The person is extending an arm forward with a camera, capturing footage while balancing on the board.",
"26": null
}
},
"10eced835e": {
"giant_panda": {
"3": null,
"5": null,
"8": "1. The giant panda is sitting with its back showing while grasping the ground with both front paws.\n\n2. The giant panda is standing upright with its head facing to the side, positioning an item with its paws.",
"12": null
}
},
"110d26fa3a": {
"shark": {
"6": null,
"9": null,
"16": null,
"26": null
}
},
"1122c1d16a": {
"person": {
"5": null,
"11": null,
"25": null,
"33": null
},
"parrot": {
"5": null,
"11": "1. The parrot is standing inside a cage, gripping a perch with its claws and facing forward.\n\n2. The parrot is being held in two hands while its wings are slightly spread, showing a gentle downward arch.\n\n3. The parrot is being cradled in hands, its head tilted back and its beak facing upwards.\n\n4. The parrot is latched onto the cage bars with its beak, appearing to pull slightly on the bars.\n\n5. The parrot is situated inside the cage, crouching and leaning forward with its beak close to the ground.",
"25": null,
"33": "1. The parrot is looking upwards while stretching its beak towards the cage bars.\n\n2. The parrot is flapping its wings energetically while being held.\n\n3. The parrot is pecking at the hand that is holding it.\n\n4. The parrot is twisting its head to the side, examining its surroundings.\n\n5. The parrot is nibbling at an object close to its beak."
}
},
"1145b49a5f": {
"rabbit": {
"4": null,
"13": null,
"19": null,
"33": null
}
},
"11485838c2": {
"giraffe": {
"2": null,
"9": "1. The giraffe is stretching its neck upwards, possibly reaching or inspecting something above.\n\n2. The giraffe is tilting its head and appears to be nuzzling or nudging another giraffe's neck.\n\n3. The giraffe is lowering its head while walking forward, possibly inspecting the ground.",
"12": null,
"16": null
}
},
"114e7676ec": {
"person": {
"9": null,
"17": null,
"23": null,
"30": null
},
"surfboard": {
"9": null,
"17": null,
"23": null,
"30": null
}
},
"1157472b95": {
"parrot": {
"7": "1. The parrot is tilting its head downward while gripping onto the branch with both feet.\n\n2. The parrot is standing upright and facing forward with its beak slightly open.",
"10": null,
"23": null,
"27": null
}
},
"115ee1072c": {
"cow": {
"4": null,
"7": null,
"10": null,
"16": null
}
},
"1171141012": {
"person": {
"4": null,
"11": null,
"15": null,
"20": null
},
"turtle": {
"4": null,
"11": null,
"15": null,
"20": null
}
},
"117757b4b8": {
"snail": {
"5": null,
"12": null,
"24": null,
"26": null
}
},
"1178932d2f": {
"person": {
"5": null,
"11": null,
"24": null,
"27": null
},
"motorbike": {
"5": null,
"11": null,
"24": null,
"27": null
}
},
"117cc76bda": {
"whale": {
"2": null,
"14": null,
"24": null,
"31": null
}
},
"1180cbf814": {
"fish": {
"3": null,
"17": null,
"19": null,
"32": null
}
},
"1187bbd0e3": {
"cat": {
"5": null,
"9": null,
"11": null,
"17": null
}
},
"1197e44b26": {
"giant_panda": {
"9": null,
"17": null,
"23": null,
"30": null
}
},
"119cf20728": {
"lizard": {
"4": null,
"10": null,
"21": null,
"31": null
},
"hand": {
"4": null,
"10": null,
"21": null,
"31": null
}
},
"119dd54871": {
"lion": {
"5": null,
"10": null,
"19": null,
"24": null
}
},
"11a0c3b724": {
"mouse": {
"4": null,
"7": null,
"10": "1. The mouse is sitting quietly and facing forward without any prominent action.\n\n2. The mouse is turning its head slightly to the side, appearing focused on its surroundings.",
"15": null
}
},
"11a6ba8c94": {
"person": {
"9": "1. The person is crouching and holding a camera, focusing intently on the skateboard. \n2. The person is stepping towards the skateboard, appearing ready to interact with it.",
"15": "1. The person is squatting down and holding a camera close to a skateboard.\n2. The person is bending forward and balancing a skateboard on its back wheels with one hand.",
"20": "1. The person is crouching while holding a camera close to the ground.\n2. The person is bending forward with one leg extended behind and one hand reaching toward a skateboard.",
"29": null
},
"skateboard": {
"9": null,
"15": null,
"20": null,
"29": null
}
},
"11c722a456": {
"turtle": {
"2": null,
"15": null,
"19": "1. The turtle is swimming smoothly near the water surface, extending its flippers outward.\n\n2. The turtle is gliding through the water, positioning its head forward and navigating by the plant.",
"26": null
}
},
"11cbcb0b4d": {
"zebra": {
"2": null,
"8": null,
"12": null,
"17": null
}
},
"11ccf5e99d": {
"plant": {
"5": null,
"6": null,
"11": null,
"16": null
},
"person": {
"5": null,
"6": null,
"11": null,
"16": null
}
},
"11ce6f452e": {
"person": {
"4": null,
"6": "1. The person is standing with hands on hips, observing the scene ahead.\n\n2. The person is holding onto reins, guiding a horse in front.\n\n3. The person is seated, looking towards the front while wearing a hat.",
"8": "1. The person has their back turned while placing a hand on their hip.\n2. The person is holding the reins and facing forward, appearing to guide a horse.\n3. The person is gripping the side of the wagon while standing upright.",
"12": null
}
},
"11feabe596": {
"rabbit": {
"6": null,
"12": null,
"19": null,
"22": null
}
},
"120cb9514d": {
"person": {
"9": null,
"10": null,
"25": "1. The person is embracing another individual with both arms wrapped tightly.\n2. The person is holding a snowboard upright with one arm while engaging in a hug.\n3. The person is smiling broadly and leaning into the hug while grasping onto another's shoulders.",
"27": "1. The person is extending an arm outward while facing another individual, appearing to embrace or gesture toward them.\n\n2. The person is leaning forward with arms open wide, engaging in a hugging motion.\n\n3. The person is smiling and slightly bending forward as they interact with another person, participating in a hugging gesture."
}
},
"12156b25b3": {
"person": {
"4": null,
"16": null,
"19": null,
"26": null
},
"surfboard": {
"4": null,
"16": null,
"19": null,
"26": null
}
},
"122896672d": {
"others": {
"2": null,
"12": null,
"25": null,
"30": null
},
"person": {
"2": null,
"12": null,
"25": null,
"30": null
},
"skateboard": {
"2": null,
"12": null,
"25": null,
"30": null
}
},
"1233ac8596": {
"dog": {
"4": null,
"7": null,
"11": null,
"15": null
}
},
"1239c87234": {
"lizard": {
"4": null,
"13": null,
"18": null,
"28": null
}
},
"1250423f7c": {
"elephant": {
"3": null,
"6": null,
"11": null,
"14": null
},
"person": {
"3": null,
"6": null,
"11": null,
"14": null
},
"hat": {
"3": null,
"6": null,
"11": null,
"14": null
}
},
"1257a1bc67": {
"snake": {
"4": null,
"12": null,
"16": null,
"30": null
}
},
"125d1b19dd": {
"giant_panda": {
"4": null,
"12": "1. The giant panda is climbing on a tree branch while lowering its body slightly to maintain balance.\n\n2. The giant panda is walking on a tree branch, moving forward with a firm step.",
"20": null,
"28": null
}
},
"126d203967": {
"person": {
"8": null,
"12": null,
"23": null,
"26": null
},
"skateboard": {
"8": null,
"12": null,
"23": null,
"26": null
}
},
"1295e19071": {
"airplane": {
"2": null,
"6": null,
"12": null,
"15": null
}
},
"12ad198c54": {
"person": {
"6": null,
"11": null,
"15": null,
"25": null
},
"skateboard": {
"6": null,
"11": null,
"15": null,
"25": null
}
},
"12bddb2bcb": {
"person": {
"7": null,
"12": null,
"16": null,
"21": null
},
"frisbee": {
"7": null,
"12": null,
"16": null,
"21": null
}
},
"12ec9b93ee": {
"giant_panda": {
"8": null,
"14": null,
"18": null,
"32": null
}
},
"12eebedc35": {
"bird": {
"4": null,
"6": null,
"9": null,
"12": null
}
},
"132852e094": {
"fox": {
"3": null,
"8": null,
"14": null,
"20": null
}
},
"1329409f2a": {
"fish": {
"4": null,
"15": null,
"19": null,
"31": null
}
},
"13325cfa14": {
"person": {
"3": null,
"7": null,
"11": null,
"15": null
},
"umbrella": {
"3": null,
"7": null,
"11": null,
"15": null
}
},
"1336440745": {
"mouse": {
"3": null,
"14": null,
"23": null,
"29": null
}
},
"134d06dbf9": {
"cat": {
"5": null,
"7": null,
"10": null,
"17": null
}
},
"135625b53d": {
"hand": {
"6": null,
"13": null,
"18": null,
"23": null
},
"parrot": {
"6": null,
"13": null,
"18": null,
"23": null
}
},
"13870016f9": {
"person": {
"3": null,
"6": null,
"9": null,
"12": null
},
"cow": {
"3": null,
"6": null,
"9": null,
"12": null
}
},
"13960b3c84": {
"giraffe": {
"2": "1. The giraffe is stretching its neck forward, peering towards the ground.\n\n2. The giraffe is leaning its head to the side and nudging the other giraffe.\n\n3. The giraffe is lowering its head and rubbing against the concrete edge.",
"7": "1. The giraffe is standing still with its head raised and looking forward.\n\n2. The giraffe is leaning forward while slightly turning its head to the side.\n\n3. The giraffe is bending its neck downward, reaching towards the ground.",
"12": "1. The giraffe is walking forward while stretching its neck ahead.\n\n2. The giraffe is facing left with its neck slightly lowered.\n\n3. The giraffe is bending its neck downward, reaching toward the ground.",
"14": null
}
},
"13adaad9d9": {
"giant_panda": {
"8": null,
"12": null,
"24": null,
"31": null
}
},
"13ae097e20": {
"giant_panda": {
"8": null,
"16": null,
"22": null,
"32": null
}
},
"13e3070469": {
"zebra": {
"4": null,
"6": "1. The zebra is lowering its head and grazing on the grass.\n\n2. The zebra is walking slowly and nuzzling the side of the other zebra.\n\n3. The zebra is standing still and looking towards the left.",
"13": null,
"14": null
}
},
"13f6a8c20d": {
"fish": {
"7": null,
"8": null,
"18": null,
"22": null
}
},
"1416925cf2": {
"truck": {
"3": "1. The truck is being filled with harvested material being directed from a loading chute above it.\n\n2. The truck is actively harvesting crops, with its chute extended and discharging into the adjacent truck.",
"5": "1. The truck is receiving a continuous stream of harvested crop being unloaded into its cargo container.\n\n2. The truck is actively cutting and ejecting crops through a chute directed toward the trailer.",
"10": null,
"14": "1. The truck is steadily moving forward while receiving a continuous stream of harvested material into its trailer.\n\n2. The truck is actively cutting corn and directing the chopped material through a high chute towards the other truck."
}
},
"142d2621f5": {
"person": {
"2": "1. The person is leaning forward and reaching towards the motorcycle, appearing to grab its handle.\n2. The person is bent over, using both hands to push the motorcycle from the back while standing in the mud.",
"7": "1. The person is stepping forward with a raised leg, appearing to navigate through muddy terrain.\n\n2. The person is bent over a motorcycle, gripping the handlebars while managing the vehicle through water.",
"8": "1. The person is stepping forward while leaning down, appearing to support or push the motorcycle upright.\n\n2. The person is bending over and grasping the handlebars, attempting to lift or stabilize the motorcycle.",
"13": "1. The person is bent over, using both hands to grip the motorcycle, appearing to lift or adjust it from the side.\n\n2. The person is sitting on the motorcycle and leaning forward, holding onto the handlebars."
},
"motorbike": {
"2": null,
"7": null,
"8": null,
"13": null
}
},
"145d5d7c03": {
"giant_panda": {
"4": null,
"13": null,
"23": null,
"32": null
}
},
"145fdc3ac5": {
"lizard": {
"9": null,
"11": null,
"24": null,
"32": null
}
},
"1471274fa7": {
"person": {
"4": null,
"5": null,
"8": null,
"11": null
}
},
"14a6b5a139": {
"fish": {
"9": null,
"12": null,
"24": null,
"28": null
}
},
"14c21cea0d": {
"monkey": {
"8": null,
"11": null,
"24": null,
"28": "1. The monkey is reaching out with one arm towards the ground, appearing to stabilize itself.\n\n2. The monkey is nuzzling its head against the other monkey's side, appearing still and relaxed."
}
},
"14dae0dc93": {
"person": {
"2": null,
"9": null,
"11": null,
"16": null
},
"umbrella": {
"2": null,
"9": null,
"11": null,
"16": null
}
},
"14f9bd22b5": {
"tiger": {
"7": null,
"10": null,
"18": null,
"27": null
}
},
"14fd28ae99": {
"hand": {
"5": null,
"13": null,
"24": null,
"32": null
},
"parrot": {
"5": null,
"13": null,
"24": null,
"32": null
}
},
"15097d5d4e": {
"hand": {
"7": null,
"13": null,
"14": null,
"21": null
},
"parrot": {
"7": null,
"13": null,
"14": null,
"21": null
}
},
"150ea711f2": {
"whale": {
"3": null,
"13": null,
"22": null,
"33": null
}
},
"1514e3563f": {
"earless_seal": {
"4": null,
"15": null,
"25": null,
"28": null
}
},
"152aaa3a9e": {
"raccoon": {
"5": null,
"16": null,
"25": null,
"26": null
}
},
"152b7d3bd7": {
"giant_panda": {
"5": null,
"9": null,
"18": null,
"23": null
}
},
"15617297cc": {
"person": {
"5": null,
"12": null,
"23": null,
"26": null
},
"surfboard": {
"5": null,
"12": null,
"23": null,
"26": null
}
},
"15abbe0c52": {
"person": {
"7": null,
"9": null,
"16": null,
"23": null
},
"skateboard": {
"7": null,
"9": null,
"16": null,
"23": null
}
},
"15d1fb3de5": {
"owl": {
"3": null,
"16": null,
"21": null,
"28": null
},
"cat": {
"3": null,
"16": null,
"21": null,
"28": null
}
},
"15f67b0fab": {
"person": {
"4": null,
"15": null,
"25": null,
"30": null
},
"skateboard": {
"4": null,
"15": null,
"25": null,
"30": null
}
},
"161eb59aad": {
"giraffe": {
"5": null,
"9": null,
"10": null,
"15": null
},
"cow": {
"5": null,
"9": null,
"10": null,
"15": null
}
},
"16288ea47f": {
"duck": {
"8": "1. The duck is resting in a container, with its head turned sideways and beak closed.\n\n2. The duck is splashing water around while moving in a shallow tray.",
"14": "1. The duck is preening its feathers with its beak, making deliberate grooming motions.\n\n2. The duck is dabbling in the water, splashing around with energetic head movements.",
"19": "1. The duck is perched in a container, flapping its wings while adjusting its body.\n\n2. The duck is splashing water in a basin, submerging its head repeatedly.",
"33": "1. The duck is resting in shallow water, with its beak dipping occasionally below the surface.\n\n2. The duck is vigorously splashing water with quick movements of its wings."
}
},
"164410ce62": {
"person": {
"2": null,
"7": null,
"8": null,
"16": null
}
},
"165c3c8cd4": {
"person": {
"5": "1. The person is standing and facing another person while gesturing with their right hand.\n\n2. The person is walking towards the motorcycles with both arms slightly bent.\n\n3. The person is standing still and facing towards the left side, appearing to be looking at another person.",
"9": null,
"11": "1. The person is walking towards a parked motorcycle.\n\n2. The person is standing with a hand on a parked motorcycle.\n\n3. The person is standing still with hands clasped behind their back.",
"14": null
}
},
"165c42b41b": {
"person": {
"3": null,
"7": null,
"9": null,
"12": null
},
"motorbike": {
"3": null,
"7": null,
"9": null,
"12": null
}
},
"165ec9e22b": {
"person": {
"5": null,
"9": null,
"16": null,
"24": null
}
},
"1669502269": {
"person": {
"2": null,
"7": null,
"8": null,
"13": null
}
},
"16763cccbb": {
"ape": {
"7": null,
"12": null,
"16": null,
"24": null
}
},
"16adde065e": {
"person": {
"3": null,
"8": null,
"12": null,
"17": null
},
"cat": {
"3": null,
"8": null,
"12": null,
"17": null
},
"hat": {
"3": null,
"8": null,
"12": null,
"17": null
}
},
"16af445362": {
"airplane": {
"3": null,
"9": null,
"12": null,
"16": null
}
},
"16afd538ad": {
"parrot": {
"5": null,
"10": null,
"18": null,
"26": "1. The parrot is facing the mirror and appears to be beak-tapping against the surface.\n2. The parrot is leaning forward while pecking at its reflection in the mirror."
}
},
"16c3fa4d5d": {
"sedan": {
"5": null,
"8": null,
"11": null,
"16": null
}
},
"16d1d65c27": {
"monkey": {
"4": null,
"15": null,
"24": null,
"28": null
}
},
"16e8599e94": {
"giant_panda": {
"4": null,
"16": null,
"22": null,
"33": null
}
},
"16fe9fb444": {
"person": {
"4": null,
"6": null,
"9": null,
"11": null
},
"motorbike": {
"4": null,
"6": null,
"9": null,
"11": null
}
},
"1705796b02": {
"train": {
"5": null,
"6": null,
"11": null,
"17": null
}
},
"1724db7671": {
"giant_panda": {
"5": null,
"13": null,
"19": null,
"25": null
}
},
"17418e81ea": {
"shark": {
"7": null,
"12": null,
"18": null,
"29": null
}
},
"175169edbb": {
"ape": {
"4": null,
"13": "1. The ape is sitting next to a large structure while facing forward.\n\n2. The ape is lying on its back, holding its feet with both hands.",
"16": "1. The ape is standing and leaning down while looking intently at the other ape.\n2. The ape is lying on its back and reaching its arm upwards.",
"23": null
}
},
"17622326fd": {
"lizard": {
"9": null,
"10": null,
"24": null,
"28": null
}
},
"17656bae77": {
"elephant": {
"3": null,
"6": null,
"9": null,
"11": null
}
},
"17b0d94172": {
"airplane": {
"3": null,
"5": null,
"6": null,
"8": null
}
},
"17c220e4f6": {
"giant_panda": {
"6": null,
"15": null,
"19": null,
"27": null
}
},
"17c7bcd146": {
"train": {
"4": null,
"9": null,
"11": null,
"16": null
}
},
"17cb4afe89": {
"tiger": {
"9": null,
"12": null,
"18": null,
"32": null
}
},
"17cd79a434": {
"squirrel": {
"9": null,
"12": null,
"23": null,
"27": null
}
},
"17d18604c3": {
"plant": {
"4": null,
"8": null,
"10": null,
"14": null
},
"person": {
"4": "1. The person is reaching forward with both hands towards a potted plant, adjusting its branches. \n2. The person is standing with arms crossed, observing the surroundings attentively.",
"8": "1. The person is seated and appears to be focused on an object in their hands, possibly adjusting or manipulating it.\n\n2. The person is standing with arms crossed and looking straight ahead, observing something in their line of sight.",
"10": "1. The person is leaning forward and adjusting or interacting with something on a table.\n\n2. The person is standing upright with crossed arms, observing the surroundings attentively.",
"14": null
}
},
"17d8ca1a37": {
"owl": {
"2": null,
"10": null,
"17": null,
"26": null
},
"person": {
"2": null,
"10": null,
"17": null,
"26": null
}
},
"17e33f4330": {
"monkey": {
"8": null,
"10": null,
"24": null,
"28": null
}
},
"17f7a6d805": {
"snail": {
"7": null,
"13": null,
"17": null,
"26": null
}
},
"180abc8378": {
"owl": {
"6": null,
"16": null,
"21": null,
"31": null
},
"person": {
"6": null,
"16": null,
"21": null,
"31": null
}
},
"183ba3d652": {
"motorbike": {
"5": null,
"8": null,
"10": null,
"17": null
},
"person": {
"5": null,
"8": null,
"10": null,
"17": null
},
"hat": {
"5": null,
"8": null,
"10": null,
"17": null
}
},
"185bf64702": {
"zebra": {
"2": null,
"6": null,
"11": null,
"15": "1. The zebra is galloping forward with its legs extended and its body angled diagonally.\n2. The zebra is standing still with its body partially obscured by a rock."
}
},
"18913cc690": {
"train": {
"2": null,
"7": null,
"8": null,
"14": null
}
},
"1892651815": {
"camel": {
"6": null,
"14": null,
"22": null,
"30": null
}
},
"189ac8208a": {
"giraffe": {
"2": "1. The giraffe is standing with its back visible to the camera, facing away with its head slightly tilted.\n\n2. The giraffe is reaching upward with its neck extended toward the leaves above it.",
"6": "1. The giraffe is standing still, facing forward while maintaining balance. \n2. The giraffe is raising its head towards the feeding platform, extending its neck upward.",
"8": null,
"11": null
}
},
"189b44e92c": {
"zebra": {
"2": null,
"6": null,
"12": null,
"15": null
}
},
"18ac264b76": {
"person": {
"6": null,
"12": null,
"15": null,
"25": null
},
"skateboard": {
"6": null,
"12": null,
"15": null,
"25": null
}
},
"18b245ab49": {
"penguin": {
"4": "1. Penguin 1 is extending its flippers outward while walking forward on the snowy surface.\n2. Penguin 2 is bending its body downward, appearing to inspect or forage in the snow.\n3. Penguin 3 is crouching low, tilting its head toward the ground.\n4. Penguin 4 is standing upright with its head slightly angled down, observing the movement below.",
"5": null,
"10": null,
"13": "1. The penguin is lying on its belly, extending its flippers outward in the snow.\n\n2. The penguin is bending forward with its beak close to the ground, appearing to investigate or peck.\n\n3. The penguin is standing with its body angled slightly, facing forward while maintaining a steady posture.\n\n4. The penguin is upright, facing directly forward, displaying a straight and attentive stance."
}
},
"18b5cebc34": {
"mouse": {
"6": null,
"9": null,
"16": null,
"20": null
}
},
"18bad52083": {
"parrot": {
"2": null,
"11": null,
"18": "1. The parrot is facing forward, tilting its head while closely examining the surroundings with its beak slightly open. \n2. The parrot is perched on a wooden stand, turning its head to the side as if listening intently.",
"31": null
}
},
"18bb5144d5": {
"lizard": {
"4": null,
"14": null,
"18": null,
"32": null
}
},
"18c6f205c5": {
"person": {
"4": "1. The person is vigorously paddling with a synchronized rhythm, pushing the oar through the water.\n\n2. The person is raising an oar out of the water and preparing to thrust it back down.\n\n3. The person swiftly pulls the oar backward through the water in tandem with the team.",
"6": "1. The person is paddling vigorously with both arms in a forward motion while seated in the boat.\n\n2. The person is standing and drumming rhythmically at the front of the boat.\n\n3. The person is leaning forward, paddling swiftly with synchronized strokes in the boat.",
"10": "1. The person is beating a drum with both hands, coordinating the rhythm for the rowers.\n2. The person is paddling vigorously, synchronizing strokes with the others.\n3. The person is paddling forcefully, matching the rhythm of the team.",
"14": "1. The person is leaning forward and vigorously paddling with a synchronized rhythm.\n2. The person is raising a paddle high above their head and bringing it down with force.\n3. The person is steering the boat by pulling the paddle through the water on one side."
}
},
"1903f9ea15": {
"bird": {
"4": null,
"6": null,
"10": "1. The bird is perching while facing forward, with wings slightly raised.\n2. The bird is standing upright and looking to the side with its beak pointing forward.\n3. The bird is grasping onto the cage bars while facing sideways.",
"14": null
}
},
"1917b209f2": {
"person": {
"4": null,
"7": null,
"8": null,
"16": null
},
"cow": {
"4": null,
"7": null,
"8": null,
"16": null
},
"horse": {
"4": null,
"7": null,
"8": null,
"16": null
}
},
"191e74c01d": {
"deer": {
"6": null,
"10": null,
"19": null,
"23": null
}
},
"19367bb94e": {
"fish": {
"9": null,
"17": null,
"24": null,
"26": null
}
},
"193ffaa217": {
"person": {
"2": null,
"7": null,
"8": null,
"13": null
}
},
"19696b67d3": {
"cow": {
"5": null,
"8": null,
"11": null,
"14": null
}
},
"197f3ab6f3": {
"giant_panda": {
"6": null,
"12": null,
"22": null,
"28": null
}
},
"1981e763cc": {
"sheep": {
"2": "1. The sheep is standing still with its head facing forward, displaying calm posture.\n2. The sheep is climbing onto a rock, lifting its front leg forward while looking ahead.",
"17": null,
"20": "1. The sheep is leaning forward and lowering its head, appearing to engage with the rocky surface underfoot.\n\n2. The sheep is standing upright, looking behind with its head turned to the side.",
"29": "1. The sheep is lowering its head and pressing its snout against the rock surface.\n\n2. The sheep is standing upright and turning its head toward the right."
}
},
"198afe39ae": {
"person": {
"4": null,
"13": null,
"14": null,
"25": null
},
"surfboard": {
"4": null,
"13": null,
"14": null,
"25": null
}
},
"19a6e62b9b": {
"monkey": {
"2": null,
"9": null,
"18": null,
"24": null
}
},
"19b60d5335": {
"hand": {
"4": null,
"15": null,
"24": null,
"26": null
},
"hedgehog": {
"4": null,
"15": null,
"24": null,
"26": null
}
},
"19c00c11f9": {
"person": {
"6": null,
"10": null,
"19": null,
"23": null
},
"surfboard": {
"6": null,
"10": null,
"19": null,
"23": null
}
},
"19e061eb88": {
"boat": {
"4": "1. The boat is tilting its sails to catch the wind effectively, increasing its speed across the water.\n\n2. The boat is maneuvering its boom as crew members adjust the ropes for a tighter sail angle.",
"5": null,
"10": null,
"15": null
}
},
"19e8bc6178": {
"dog": {
"3": null,
"6": null,
"8": null,
"12": null
}
},
"19ee80dac6": {
"person": {
"3": "1. The person is riding the wave on a surfboard, maintaining balance while moving forward.\n3. The person is lying on a surfboard and paddling with their arms in the water.\n4. The person is prone on a surfboard, using their arms to paddle forward.",
"17": "1. The person is balancing on a surfboard while riding a wave with knees bent.\n4. The person is paddling forward in the water with arms outstretched.",
"24": null,
"30": null
},
"surfboard": {
"3": null,
"17": null,
"24": null,
"30": null
}
},
"1a25a9170a": {
"cow": {
"6": null,
"16": null,
"23": null,
"26": null
},
"person": {
"6": "1. The person is riding a bull, gripping the reins tightly with one hand while their other arm is extended outward for balance. \n2. The person is standing and leaning forward while waving their arm, facing the bull and rider.",
"16": null,
"23": "1. The person is gripping the reins tightly and balancing on the bucking horse.\n\n2. The person is walking toward the horse while pointing with one hand.",
"26": null
}
},
"1a359a6c1a": {
"sheep": {
"3": null,
"9": null,
"19": null,
"22": null
}
},
"1a3e87c566": {
"frog": {
"7": null,
"8": null,
"14": null,
"27": null
}
},
"1a5fe06b00": {
"bus": {
"3": null,
"7": null,
"10": null,
"11": null
}
},
"1a6c0fbd1e": {
"person": {
"6": null,
"13": null,
"16": null,
"23": null
},
"skateboard": {
"6": null,
"13": null,
"16": null,
"23": null
}
},
"1a6f3b5a4b": {
"bike": {
"4": null,
"7": null,
"11": null,
"16": null
},
"sedan": {
"4": null,
"7": null,
"11": null,
"16": null
},
"hand": {
"4": null,
"7": null,
"11": null,
"16": null
}
},
"1a8afbad92": {
"zebra": {
"3": null,
"5": "1. The zebra is galloping forward with its legs stretched and head slightly tilted upwards.\n\n2. The zebra is running at a fast pace with its head down and legs actively pushing off the ground.",
"10": "1. The zebra is galloping forward, its legs extended as it moves in unison with the herd.\n\n2. The zebra is sprinting briskly, lowering its head and powering through the dust as it keeps pace with others.",
"15": null
}
},
"1a8bdc5842": {
"parrot": {
"3": "1. The parrot is pecking at the wooden object with its beak and turning its head from side to side.\n\n2. The parrot is climbing up the chain by gripping it with its claws and wings slightly spread for balance.",
"11": "1. The parrot is perched upright on a wooden swing, facing away.\n2. The parrot is pecking at the edge of a hanging wooden block.",
"14": null,
"23": "1. The parrot is pecking at the object suspended in front of it.\n\n2. The parrot is tilting its head curiously towards the object."
}
},
"1a95752aca": {
"duck": {
"4": null,
"10": null,
"14": null,
"27": null
}
},
"1a9c131cb7": {
"ape": {
"6": null,
"17": null,
"20": "1. The ape is bending forward with its arms extended downward, appearing to inspect the ground closely.\n\n2. This ape is leaning over with one arm reaching out, touching another ape nearby.\n\n3. The ape is sitting upright against the wall, with one hand resting on its face as if covering its mouth.",
"27": null
}
},
"1aa3da3ee3": {
"sheep": {
"2": null,
"9": null,
"15": null,
"25": null
}
},
"1ab27ec7ea": {
"deer": {
"2": null,
"5": null,
"6": null,
"9": null
}
},
"1abf16d21d": {
"turtle": {
"7": null,
"13": null,
"16": null,
"20": null
}
},
"1acd0f993b": {
"frisbee": {
"6": null,
"15": null,
"23": null,
"31": null
},
"dog": {
"6": null,
"15": null,
"23": null,
"31": null
},
"person": {
"6": null,
"15": null,
"23": null,
"31": null
}
},
"1ad202e499": {
"lizard": {
"6": "1. The lizard is arching its back while rotating its head upward.\n\n2. The lizard is extending its front limb forward and pressing down against a surface.",
"14": null,
"22": null,
"31": null
}
},
"1af8d2395d": {
"parachute": {
"6": null,
"13": null,
"20": null,
"28": null
},
"person": {
"6": "1. The person is skydiving, with their body arched and arms extended outward.\n\n2. The person is skydiving, positioned above another jumper, with arms bent and hands visible near their face.",
"13": "1. The person is free-falling with arms bent upwards while skydiving, appearing surprised.\n\n2. The person is tandem skydiving, extending arms outward while maintaining contact with the person in front.",
"20": null,
"28": "1. The person is free-falling through the air with arms extended outwards while skydiving.\n2. The person is securely holding onto the harness of another person while skydiving."
},
"airplane": {
"6": null,
"13": null,
"20": null,
"28": null
}
},
"1afd39a1fa": {
"hand": {
"3": null,
"7": null,
"10": null,
"15": null
},
"motorbike": {
"3": null,
"7": null,
"10": null,
"15": null
}
},
"1b2d31306f": {
"lizard": {
"8": null,
"13": null,
"23": null,
"33": null
}
},
"1b3fa67f0e": {
"airplane": {
"3": null,
"5": null,
"9": null,
"12": null
}
},
"1b43fa74b4": {
"owl": {
"7": null,
"12": null,
"19": null,
"20": null
}
},
"1b73ea9fc2": {
"parrot": {
"2": null,
"6": null,
"9": null,
"15": null
}
},
"1b7e8bb255": {
"person": {
"3": null,
"8": null,
"13": null,
"14": null
},
"skateboard": {
"3": null,
"8": null,
"13": null,
"14": null
},
"hat": {
"3": null,
"8": null,
"13": null,
"14": null
}
},
"1b8680f8cd": {
"tennis_racket": {
"6": null,
"9": null,
"14": null,
"21": null
},
"person": {
"6": "1. The person is bending forward slightly with legs apart, preparing to hit a tennis shot.\n\n2. The person is holding a tennis racket raised above the head, ready to serve or return a ball.",
"9": "1. The person is holding a tennis racket and swinging it forward, preparing to hit the ball.\n2. The person is standing upright, looking at the tennis ball in flight on the opposite side of the court.",
"14": null,
"21": null
}
},
"1b883843c0": {
"person": {
"4": null,
"7": "1. The person is gripping the handlebars and pedaling forward while looking ahead.\n2. The person is seated on a bicycle, leaning slightly forward, and actively pedaling.",
"9": "1. The person is cycling forward while gripping the handlebars and opening their mouth.\n\n2. The person is cycling forward, leaning slightly to the right, while wearing a backpack.",
"14": null
}
},
"1b8898785b": {
"monkey": {
"9": null,
"14": "1. The monkey is hanging by one arm from the wooden beam, with its legs extended downward.\n2. The monkey is crouching on the beam while looking in the direction of the hanging monkey.",
"22": "1. The monkey is hanging with one arm from the horizontal branch while extending its body downward.\n\n2. The monkey is perched atop the vertical branch, looking forward and shifting slightly.",
"30": null
}
},
"1b88ba1aa4": {
"giant_panda": {
"3": null,
"10": null,
"20": null,
"27": null
}
},
"1b96a498e5": {
"ape": {
"7": null,
"10": null,
"15": null,
"21": null
}
},
"1bbc4c274f": {
"fish": {
"3": null,
"8": null,
"11": null,
"17": null
}
},
"1bd87fe9ab": {
"train": {
"2": null,
"5": null,
"6": null,
"9": null
}
},
"1c4090c75b": {
"whale": {
"8": null,
"15": null,
"22": null,
"27": null
}
},
"1c41934f84": {
"elephant": {
"5": "1. The elephant is swinging its trunk forward and stepping onto the dirt path. \n2. The elephant is lifting its trunk toward the other elephant, reaching slightly upward.",
"6": null,
"13": null,
"16": null
}
},
"1c72b04b56": {
"lion": {
"6": null,
"17": null,
"23": null,
"26": null
}
},
"1c87955a3a": {
"crocodile": {
"2": null,
"10": null,
"17": null,
"24": null
},
"turtle": {
"2": null,
"10": null,
"17": null,
"24": null
}
},
"1c9f9eb792": {
"person": {
"6": null,
"12": null,
"22": null,
"33": null
},
"skateboard": {
"6": null,
"12": null,
"22": null,
"33": null
}
},
"1ca240fede": {
"train": {
"2": null,
"9": null,
"10": null,
"15": null
}
},
"1ca5673803": {
"person": {
"8": "1. The person is holding a tennis racket and appears to be preparing to swing it.\n3. The person is standing near the net, holding a tennis racket with both hands.",
"14": "1. The person is holding a tennis racket and preparing to hit a ball with a forward stance.\n3. The person is running across the court, arms slightly bent, focused on the play.",
"21": "1. The person is crouching low and positioning their arms as if preparing to receive a ball.\n3. The person is standing upright holding a tennis racket in a ready stance.",
"27": "1. The person is bending slightly forward while holding a tennis racket and preparing to hit the ball.\n\n3. The person is standing with both hands resting on hips, observing the tennis court."
},
"tennis_racket": {
"8": null,
"14": null,
"21": null,
"27": null
}
},
"1cada35274": {
"duck": {
"3": null,
"11": null,
"19": null,
"31": null
}
},
"1cb44b920d": {
"eagle": {
"5": "1. The eagle is bending down and pecking at something on the ground with its beak.\n\n2. The eagle is sitting upright and facing forward while keeping its beak closed.",
"13": "1. The eagle is leaning forward and using its beak to approach another smaller bird closely.\n2. The eagle is sitting upright with its beak pointed towards the larger bird.",
"18": "1. The eagle is leaning forward with its beak open, engaging in feeding behavior.\n2. The eagle is sitting upright with its beak directed towards the approaching eagle.",
"27": null
}
},
"1cd10e62be": {
"leopard": {
"3": null,
"11": null,
"17": null,
"22": null
}
},
"1d3087d5e5": {
"fish": {
"5": null,
"11": null,
"23": null,
"33": null
}
},
"1d3685150a": {
"sign": {
"2": null,
"6": null,
"8": null,
"15": null
},
"person": {
"2": "1. The person is walking slowly while adjusting a cloth around their waist with both hands.\n\n3. The person is carrying a container in one hand while proceeding with a fluid, steady motion.",
"6": "1. The person is standing and appearing to watch something near the elephant, with a hand raised slightly upward.\n\n3. The person is walking forward, turning their head to the side as if acknowledging someone or something nearby.",
"8": null,
"15": null
}
},
"1d6ff083aa": {
"person": {
"2": null,
"9": "1. The person is crouching and reaching out towards the floor with both arms extended. \n2. The person is standing and extending their right hand towards a shelf.",
"10": "1. The person is crouching forward, reaching towards the books on the lower shelf.\n2. The person is standing and extending a hand to grip a book from the shelf.",
"17": null
}
}
} |