File size: 110,113 Bytes
7991a98 | 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 | [
{
"uuid": "2e68dbf6-6538-4206-8d31-3b7cdbc73c72",
"prompt": "Make the cat open its eyes.",
"id": "2",
"save_id": 898,
"images": [
"2e68dbf6-6538-4206-8d31-3b7cdbc73c72_source.png",
"2e68dbf6-6538-4206-8d31-3b7cdbc73c72_result.png"
]
},
{
"uuid": "613913b9-8d99-436d-bc4c-078ee88f4e4d",
"prompt": "Set the bicycle upright.",
"id": "3",
"save_id": 899,
"images": [
"613913b9-8d99-436d-bc4c-078ee88f4e4d_source.png",
"613913b9-8d99-436d-bc4c-078ee88f4e4d_result.png"
]
},
{
"uuid": "e93aa2bf-5a27-4582-8483-0ac217ad3f4a",
"prompt": "Make the Minion hold a bouquet of flowers.",
"id": "4",
"save_id": 900,
"images": [
"e93aa2bf-5a27-4582-8483-0ac217ad3f4a_source.png",
"e93aa2bf-5a27-4582-8483-0ac217ad3f4a_result.png"
]
},
{
"uuid": "5d2665e3-bf16-4d99-87e9-4bd1ceddb425",
"prompt": "Make the boy look like he is talking on the phone.",
"id": "5",
"save_id": 901,
"images": [
"5d2665e3-bf16-4d99-87e9-4bd1ceddb425_source.png",
"5d2665e3-bf16-4d99-87e9-4bd1ceddb425_result.png"
]
},
{
"uuid": "9af553b5-8f1a-4a57-a2c5-5d92485be84d",
"prompt": "Make this Pikachu jump up to pick the fruit.",
"id": "6",
"save_id": 902,
"images": [
"9af553b5-8f1a-4a57-a2c5-5d92485be84d_source.png",
"9af553b5-8f1a-4a57-a2c5-5d92485be84d_result.png"
]
},
{
"uuid": "9bc6d493-a20f-4987-a572-f92adc0bcd3c",
"prompt": "Have the girl who is taking the phone photo make a peace sign with her free hand.",
"id": "7",
"save_id": 903,
"images": [
"9bc6d493-a20f-4987-a572-f92adc0bcd3c_source.png",
"9bc6d493-a20f-4987-a572-f92adc0bcd3c_result.png"
]
},
{
"uuid": "188964fc-a5c2-4b0d-8072-7c521925248a",
"prompt": "Have the dog place its paws on the computer and work hard.",
"id": "8",
"save_id": 904,
"images": [
"188964fc-a5c2-4b0d-8072-7c521925248a_source.png",
"188964fc-a5c2-4b0d-8072-7c521925248a_result.png"
]
},
{
"uuid": "53ca11ca-f982-45ad-a326-2e57866527b1",
"prompt": "Position the girl lying on the chair.",
"id": "9",
"save_id": 905,
"images": [
"53ca11ca-f982-45ad-a326-2e57866527b1_source.png",
"53ca11ca-f982-45ad-a326-2e57866527b1_result.png"
]
},
{
"uuid": "234544b1-5f78-48bb-aa05-9bbdfab6c7c4",
"prompt": "Make the girl pull the machine downward.",
"id": "10",
"save_id": 906,
"images": [
"234544b1-5f78-48bb-aa05-9bbdfab6c7c4_source.png",
"234544b1-5f78-48bb-aa05-9bbdfab6c7c4_result.png"
]
},
{
"uuid": "c8725f89-004a-4b18-97dd-e1731c2196c0",
"prompt": "Have the girl grip the lat pulldown machine with her hands.",
"id": "11",
"save_id": 907,
"images": [
"c8725f89-004a-4b18-97dd-e1731c2196c0_source.png",
"c8725f89-004a-4b18-97dd-e1731c2196c0_result.png"
]
},
{
"uuid": "2a16e4c0-e5c4-4c03-96b1-e0b061b212c0",
"prompt": "Have the boy lie down on the bench he is currently sitting on.",
"id": "12",
"save_id": 908,
"images": [
"2a16e4c0-e5c4-4c03-96b1-e0b061b212c0_source.png",
"2a16e4c0-e5c4-4c03-96b1-e0b061b212c0_result.png"
]
},
{
"uuid": "6663a1a5-bbd1-41c0-9433-2528521638c7",
"prompt": "Have the girl start doing seated hip abductions.",
"id": "13",
"save_id": 909,
"images": [
"6663a1a5-bbd1-41c0-9433-2528521638c7_source.png",
"6663a1a5-bbd1-41c0-9433-2528521638c7_result.png"
]
},
{
"uuid": "d1333ac6-dbb5-4f83-8f85-63115c7caef5",
"prompt": "Change the girl’s pose to a horse stance.",
"id": "14",
"save_id": 910,
"images": [
"d1333ac6-dbb5-4f83-8f85-63115c7caef5_source.png",
"d1333ac6-dbb5-4f83-8f85-63115c7caef5_result.png"
]
},
{
"uuid": "87b54147-a880-43b8-9e8c-a4b7b494a330",
"prompt": "Make the girl point both of her hands to the left.",
"id": "15",
"save_id": 911,
"images": [
"87b54147-a880-43b8-9e8c-a4b7b494a330_source.png",
"87b54147-a880-43b8-9e8c-a4b7b494a330_result.png"
]
},
{
"uuid": "3e38bec3-72e8-4dfe-bf63-d9e693c2aed4",
"prompt": "Make the girl open her eyes and sit up.",
"id": "16",
"save_id": 912,
"images": [
"3e38bec3-72e8-4dfe-bf63-d9e693c2aed4_source.png",
"3e38bec3-72e8-4dfe-bf63-d9e693c2aed4_result.png"
]
},
{
"uuid": "10a21736-de6b-4c68-9f3f-7ee8073f4b99",
"prompt": "Have the girl pick up and hold the ball in front of her.",
"id": "19",
"save_id": 915,
"images": [
"10a21736-de6b-4c68-9f3f-7ee8073f4b99_source.png",
"10a21736-de6b-4c68-9f3f-7ee8073f4b99_result.png"
]
},
{
"uuid": "b0259183-df18-42da-8a95-167ad0952080",
"prompt": "Make the boy stand up and perform a fist-and-palm salute.",
"id": "20",
"save_id": 916,
"images": [
"b0259183-df18-42da-8a95-167ad0952080_source.png",
"b0259183-df18-42da-8a95-167ad0952080_result.png"
]
},
{
"uuid": "6a9677ff-97e2-4493-b27b-236a6ce2ba40",
"prompt": "Have the girl raise her right hand.",
"id": "22",
"save_id": 917,
"images": [
"6a9677ff-97e2-4493-b27b-236a6ce2ba40_source.png",
"6a9677ff-97e2-4493-b27b-236a6ce2ba40_result.png"
]
},
{
"uuid": "2aaa2807-ea99-4892-ba36-ac099429761e",
"prompt": "Have the girl sit on the ground.",
"id": "23",
"save_id": 918,
"images": [
"2aaa2807-ea99-4892-ba36-ac099429761e_source.png",
"2aaa2807-ea99-4892-ba36-ac099429761e_result.png"
]
},
{
"uuid": "b6229f08-7cd8-4e11-84ec-a16b769f1fb6",
"prompt": "Make the 3D little white figure walk up one step.",
"id": "24",
"save_id": 919,
"images": [
"b6229f08-7cd8-4e11-84ec-a16b769f1fb6_source.png",
"b6229f08-7cd8-4e11-84ec-a16b769f1fb6_result.png"
]
},
{
"uuid": "30178f75-f490-4d6d-a9f6-dccb28bbac71",
"prompt": "Direct the dog to approach and pick up the tennis ball from the ground. ",
"id": "25",
"save_id": 920,
"images": [
"30178f75-f490-4d6d-a9f6-dccb28bbac71_source.png",
"30178f75-f490-4d6d-a9f6-dccb28bbac71_result.png"
]
},
{
"uuid": "f1bdc74b-4f37-4893-a849-532993a29376",
"prompt": "Make the kitten drink the water coming from the faucet.",
"id": "26",
"save_id": 921,
"images": [
"f1bdc74b-4f37-4893-a849-532993a29376_source.png",
"f1bdc74b-4f37-4893-a849-532993a29376_result.png"
]
},
{
"uuid": "c95ca6e8-f93c-48a3-9886-69e6ab219e06",
"prompt": "Change the fist into an open palm.",
"id": "27",
"save_id": 922,
"images": [
"c95ca6e8-f93c-48a3-9886-69e6ab219e06_source.png",
"c95ca6e8-f93c-48a3-9886-69e6ab219e06_result.png"
]
},
{
"uuid": "56cab764-e14c-42af-a4f4-8b4e6681fca5",
"prompt": "Make the girl drink coffee.",
"id": "28",
"save_id": 923,
"images": [
"56cab764-e14c-42af-a4f4-8b4e6681fca5_source.png",
"56cab764-e14c-42af-a4f4-8b4e6681fca5_result.png"
]
},
{
"uuid": "70880847-617a-48dd-88f1-0827dea11abe",
"prompt": "Adjust the pose of the man on the left so that he is holding the microphone right next to his mouth, as if he is speaking.",
"id": "29",
"save_id": 924,
"images": [
"70880847-617a-48dd-88f1-0827dea11abe_source.png",
"70880847-617a-48dd-88f1-0827dea11abe_result.png"
]
},
{
"uuid": "78fd84db-2a31-43bc-b9ca-573d15eff007",
"prompt": "Have the boy cross his legs.",
"id": "30",
"save_id": 925,
"images": [
"78fd84db-2a31-43bc-b9ca-573d15eff007_source.png",
"78fd84db-2a31-43bc-b9ca-573d15eff007_result.png"
]
},
{
"uuid": "c20de991-f596-451f-b07e-f5c5c46cf4ef",
"prompt": "Adjust the girl’s pose so that she is looking straight ahead.",
"id": "31",
"save_id": 926,
"images": [
"c20de991-f596-451f-b07e-f5c5c46cf4ef_source.png",
"c20de991-f596-451f-b07e-f5c5c46cf4ef_result.png"
]
},
{
"uuid": "07a0f39e-f635-4b22-a23f-802f36938eb6",
"prompt": "Have the basketball player hold the basketball at chest level.",
"id": "32",
"save_id": 927,
"images": [
"07a0f39e-f635-4b22-a23f-802f36938eb6_source.png",
"07a0f39e-f635-4b22-a23f-802f36938eb6_result.png"
]
},
{
"uuid": "e8979adf-541d-4c6d-b5f0-b04bdf424190",
"prompt": "Make the girl look up at the sky.",
"id": "33",
"save_id": 928,
"images": [
"e8979adf-541d-4c6d-b5f0-b04bdf424190_source.png",
"e8979adf-541d-4c6d-b5f0-b04bdf424190_result.png"
]
},
{
"uuid": "61156e67-e60c-465b-997b-df66fc181509",
"prompt": "Have the man wave goodbye to his friend.",
"id": "34",
"save_id": 929,
"images": [
"61156e67-e60c-465b-997b-df66fc181509_source.png",
"61156e67-e60c-465b-997b-df66fc181509_result.png"
]
},
{
"uuid": "2a771ec6-c986-4eff-ad81-c0b26c08352c",
"prompt": "Make the woman do a split on the mat.",
"id": "35",
"save_id": 930,
"images": [
"2a771ec6-c986-4eff-ad81-c0b26c08352c_source.png",
"2a771ec6-c986-4eff-ad81-c0b26c08352c_result.png"
]
},
{
"uuid": "e21229f2-a9d9-4345-9c72-50e53c097303",
"prompt": "Make the skater slip and fall.",
"id": "36",
"save_id": 931,
"images": [
"e21229f2-a9d9-4345-9c72-50e53c097303_source.png",
"e21229f2-a9d9-4345-9c72-50e53c097303_result.png"
]
},
{
"uuid": "3c46cf45-d7de-4f15-8844-14da65037864",
"prompt": "Make the dancer lift her left leg up to waist height.",
"id": "37",
"save_id": 932,
"images": [
"3c46cf45-d7de-4f15-8844-14da65037864_source.png",
"3c46cf45-d7de-4f15-8844-14da65037864_result.png"
]
},
{
"uuid": "65771978-8af9-4aa0-86f2-8f540b1d1f0f",
"prompt": "Make the girl in the act of bending down to pick up the toy.",
"id": "38",
"save_id": 933,
"images": [
"65771978-8af9-4aa0-86f2-8f540b1d1f0f_source.png",
"65771978-8af9-4aa0-86f2-8f540b1d1f0f_result.png"
]
},
{
"uuid": "3d9d9a69-1e0f-471d-81d3-3bb88cfa95d8",
"prompt": "Make the girl put both hands on her head.",
"id": "39",
"save_id": 934,
"images": [
"3d9d9a69-1e0f-471d-81d3-3bb88cfa95d8_source.png",
"3d9d9a69-1e0f-471d-81d3-3bb88cfa95d8_result.png"
]
},
{
"uuid": "d6c29f5f-c32d-43f1-b48a-db3911975a06",
"prompt": "Make the girl point to the ceiling with her left hand.",
"id": "40",
"save_id": 935,
"images": [
"d6c29f5f-c32d-43f1-b48a-db3911975a06_source.png",
"d6c29f5f-c32d-43f1-b48a-db3911975a06_result.png"
]
},
{
"uuid": "981666b0-9f88-4906-86e7-7eb97c4a43aa",
"prompt": "Make the motorcycle do a wheelie.",
"id": "41",
"save_id": 936,
"images": [
"981666b0-9f88-4906-86e7-7eb97c4a43aa_source.png",
"981666b0-9f88-4906-86e7-7eb97c4a43aa_result.png"
]
},
{
"uuid": "25b266d0-ca99-4963-9475-b6104fe4cad9",
"prompt": "Make the girl driving the bumper car touch her hair with her left hand.",
"id": "42",
"save_id": 937,
"images": [
"25b266d0-ca99-4963-9475-b6104fe4cad9_source.png",
"25b266d0-ca99-4963-9475-b6104fe4cad9_result.png"
]
},
{
"uuid": "9ee8359b-fb26-43c6-b0f0-e2d6743de77e",
"prompt": "Make the eagle spread its wings.",
"id": "43",
"save_id": 938,
"images": [
"9ee8359b-fb26-43c6-b0f0-e2d6743de77e_source.png",
"9ee8359b-fb26-43c6-b0f0-e2d6743de77e_result.png"
]
},
{
"uuid": "d2736af2-06cd-45b8-8626-cbd158f6b5a4",
"prompt": "Have the boy clap his hands.",
"id": "44",
"save_id": 939,
"images": [
"d2736af2-06cd-45b8-8626-cbd158f6b5a4_source.png",
"d2736af2-06cd-45b8-8626-cbd158f6b5a4_result.png"
]
},
{
"uuid": "9332377a-09e5-4c7e-b8ec-65e681c7ede9",
"prompt": "Have the dog lie down on the grass.",
"id": "45",
"save_id": 940,
"images": [
"9332377a-09e5-4c7e-b8ec-65e681c7ede9_source.png",
"9332377a-09e5-4c7e-b8ec-65e681c7ede9_result.png"
]
},
{
"uuid": "2ded382c-39d5-4aec-b10e-34b8df08f1e6",
"prompt": "Have this swimmer touch their goggles.",
"id": "46",
"save_id": 941,
"images": [
"2ded382c-39d5-4aec-b10e-34b8df08f1e6_source.png",
"2ded382c-39d5-4aec-b10e-34b8df08f1e6_result.png"
]
},
{
"uuid": "52da2b15-ea12-4464-ad0f-9d3b8defcae7",
"prompt": "Have the athlete wearing the number 10 jersey sit on the ground.",
"id": "47",
"save_id": 942,
"images": [
"52da2b15-ea12-4464-ad0f-9d3b8defcae7_source.png",
"52da2b15-ea12-4464-ad0f-9d3b8defcae7_result.png"
]
},
{
"uuid": "bc6eb852-24f7-469d-8a92-449f0d377e70",
"prompt": "Have the defending player cover the attacking player’s eyes with his hands.",
"id": "48",
"save_id": 943,
"images": [
"bc6eb852-24f7-469d-8a92-449f0d377e70_source.png",
"bc6eb852-24f7-469d-8a92-449f0d377e70_result.png"
]
},
{
"uuid": "512daa53-6dc0-42cb-a1a8-d461f2471a08",
"prompt": "Have the cat lie down on the lawn.",
"id": "49",
"save_id": 944,
"images": [
"512daa53-6dc0-42cb-a1a8-d461f2471a08_source.png",
"512daa53-6dc0-42cb-a1a8-d461f2471a08_result.png"
]
},
{
"uuid": "ab534496-e705-4338-9dfd-afcf5facc8c5",
"prompt": "Make the waiter bow.",
"id": "50",
"save_id": 945,
"images": [
"ab534496-e705-4338-9dfd-afcf5facc8c5_source.png",
"ab534496-e705-4338-9dfd-afcf5facc8c5_result.png"
]
},
{
"uuid": "5f7d5851-7041-4b6b-8e12-aee705e781a3",
"prompt": "Have the boy perform a powerful, LeBron James–style signature stride.",
"id": "51",
"save_id": 946,
"images": [
"5f7d5851-7041-4b6b-8e12-aee705e781a3_source.png",
"5f7d5851-7041-4b6b-8e12-aee705e781a3_result.png"
]
},
{
"uuid": "5e9b31dc-0f1b-4a77-8c23-6e66097ca5dd",
"prompt": "Make her point her finger towards the distance.",
"id": "52",
"save_id": 947,
"images": [
"5e9b31dc-0f1b-4a77-8c23-6e66097ca5dd_source.png",
"5e9b31dc-0f1b-4a77-8c23-6e66097ca5dd_result.png"
]
},
{
"uuid": "863d05c5-f85a-44de-89b2-d14b9ee813d1",
"prompt": "Make the boxer throw a straight punch.",
"id": "53",
"save_id": 948,
"images": [
"863d05c5-f85a-44de-89b2-d14b9ee813d1_source.png",
"863d05c5-f85a-44de-89b2-d14b9ee813d1_result.png"
]
},
{
"uuid": "03fb3f3f-b2a2-40bb-99e7-e869b314275b",
"prompt": "Have the girl spread her arms.",
"id": "54",
"save_id": 951,
"images": [
"03fb3f3f-b2a2-40bb-99e7-e869b314275b_source.png",
"03fb3f3f-b2a2-40bb-99e7-e869b314275b_result.png"
]
},
{
"uuid": "011ad28f-55cf-4049-84fb-d8e886ef976e",
"prompt": "Have this boy zip up his jacket.",
"id": "55",
"save_id": 949,
"images": [
"011ad28f-55cf-4049-84fb-d8e886ef976e_source.png",
"011ad28f-55cf-4049-84fb-d8e886ef976e_result.png"
]
},
{
"uuid": "79d6e7e0-9818-4c9e-bf1a-12d0c0328c2b",
"prompt": "Have the boy blow up the balloon in his hand using his mouth.",
"id": "56",
"save_id": 950,
"images": [
"79d6e7e0-9818-4c9e-bf1a-12d0c0328c2b_source.png",
"79d6e7e0-9818-4c9e-bf1a-12d0c0328c2b_result.png"
]
},
{
"uuid": "0b773f93-b8e4-4647-a254-1c86b2ed951e",
"prompt": "Have this boy throwing a punch at the punching bag with his right hand.",
"id": "57",
"save_id": 952,
"images": [
"0b773f93-b8e4-4647-a254-1c86b2ed951e_source.png",
"0b773f93-b8e4-4647-a254-1c86b2ed951e_result.png"
]
},
{
"uuid": "b3bba403-a0c4-409f-9cf4-e9ee5e6a2e0b",
"prompt": "Have the boy give a thumbs-up with his right hand.",
"id": "58",
"save_id": 953,
"images": [
"b3bba403-a0c4-409f-9cf4-e9ee5e6a2e0b_source.png",
"b3bba403-a0c4-409f-9cf4-e9ee5e6a2e0b_result.png"
]
},
{
"uuid": "d7132225-c8c2-4709-8c2d-048fb375e582",
"prompt": "Have this little boy pose like Ultraman fighting a monster..",
"id": "59",
"save_id": 954,
"images": [
"d7132225-c8c2-4709-8c2d-048fb375e582_source.png",
"d7132225-c8c2-4709-8c2d-048fb375e582_result.png"
]
},
{
"uuid": "ad92b248-bbef-4331-90cb-80d00500dbdf",
"prompt": "Make her blow the bubble wand.",
"id": "60",
"save_id": 955,
"images": [
"ad92b248-bbef-4331-90cb-80d00500dbdf_source.png",
"ad92b248-bbef-4331-90cb-80d00500dbdf_result.png"
]
},
{
"uuid": "4ac90527-0ac1-49f0-840c-0d5890566090",
"prompt": "Make the cat stretch.",
"id": "61",
"save_id": 956,
"images": [
"4ac90527-0ac1-49f0-840c-0d5890566090_source.png",
"4ac90527-0ac1-49f0-840c-0d5890566090_result.png"
]
},
{
"uuid": "5cbde210-8b90-4656-bc86-af6f59dc6f8c",
"prompt": "Perform a kickflip on a skateboard.",
"id": "62",
"save_id": 957,
"images": [
"5cbde210-8b90-4656-bc86-af6f59dc6f8c_source.png",
"5cbde210-8b90-4656-bc86-af6f59dc6f8c_result.png"
]
},
{
"uuid": "4b3e0888-b182-40ab-b05f-1c4a92998108",
"prompt": "Open this hand sanitizer.",
"id": "63",
"save_id": 958,
"images": [
"4b3e0888-b182-40ab-b05f-1c4a92998108_source.png",
"4b3e0888-b182-40ab-b05f-1c4a92998108_result.png"
]
},
{
"uuid": "b7e907e0-d2e2-4dff-a1f1-1ea29987b27f",
"prompt": "Have the boy perform a Stephen Curry–style signature ‘night night’ celebration gesture.",
"id": "64",
"save_id": 959,
"images": [
"b7e907e0-d2e2-4dff-a1f1-1ea29987b27f_source.png",
"b7e907e0-d2e2-4dff-a1f1-1ea29987b27f_result.png"
]
},
{
"uuid": "dcba5481-c399-4c8b-99e0-8e69400a3ec2",
"prompt": "Have this boy kneeling on one knee.",
"id": "65",
"save_id": 960,
"images": [
"dcba5481-c399-4c8b-99e0-8e69400a3ec2_source.png",
"dcba5481-c399-4c8b-99e0-8e69400a3ec2_result.png"
]
},
{
"uuid": "f200fedb-63a9-4dc8-8865-31f61e06cccc",
"prompt": "Have this girl extend her arms.",
"id": "66",
"save_id": 961,
"images": [
"f200fedb-63a9-4dc8-8865-31f61e06cccc_source.png",
"f200fedb-63a9-4dc8-8865-31f61e06cccc_result.png"
]
},
{
"uuid": "f326bf15-c863-4927-8c02-1b73e1744fe7",
"prompt": "Have this girl make a finger heart gesture.",
"id": "67",
"save_id": 962,
"images": [
"f326bf15-c863-4927-8c02-1b73e1744fe7_source.png",
"f326bf15-c863-4927-8c02-1b73e1744fe7_result.png"
]
},
{
"uuid": "b2c3ec41-3f06-421a-a3c4-8eb37219c554",
"prompt": "Make a gesture signaling others to be quiet.",
"id": "68",
"save_id": 963,
"images": [
"b2c3ec41-3f06-421a-a3c4-8eb37219c554_source.png",
"b2c3ec41-3f06-421a-a3c4-8eb37219c554_result.png"
]
},
{
"uuid": "eb58a6f4-8378-400d-8128-4ca69b58ed70",
"prompt": "Have this boy strike a fighting pose.",
"id": "69",
"save_id": 964,
"images": [
"eb58a6f4-8378-400d-8128-4ca69b58ed70_source.png",
"eb58a6f4-8378-400d-8128-4ca69b58ed70_result.png"
]
},
{
"uuid": "2a599164-7125-48a6-8b56-1277ab665857",
"prompt": "Have this boy take a starting position for a 100-meter sprint.",
"id": "70",
"save_id": 965,
"images": [
"2a599164-7125-48a6-8b56-1277ab665857_source.png",
"2a599164-7125-48a6-8b56-1277ab665857_result.png"
]
},
{
"uuid": "77f8fa4e-a18e-4eb5-bb63-4070ca767213",
"prompt": "Have the woman release the battle ropes.",
"id": "71",
"save_id": 966,
"images": [
"77f8fa4e-a18e-4eb5-bb63-4070ca767213_source.png",
"77f8fa4e-a18e-4eb5-bb63-4070ca767213_result.png"
]
},
{
"uuid": "11b53302-0029-4dc3-a082-ff11240a352b",
"prompt": "Have this girl make a finger heart gesture.",
"id": "72",
"save_id": 111962,
"images": [
"11b53302-0029-4dc3-a082-ff11240a352b_source.png",
"11b53302-0029-4dc3-a082-ff11240a352b_result.png"
]
},
{
"uuid": "92da282c-4ee0-4833-bdcc-e07eae3bd16e",
"prompt": "Replace the smiling balloon with a frowning one.",
"id": "2",
"save_id": 1179,
"images": [
"92da282c-4ee0-4833-bdcc-e07eae3bd16e_source.png",
"92da282c-4ee0-4833-bdcc-e07eae3bd16e_result.png"
]
},
{
"uuid": "d3388d5c-00a4-42fe-abc8-262c55e2840a",
"prompt": "Make the cat look very fierce.”",
"id": "3",
"save_id": 1180,
"images": [
"d3388d5c-00a4-42fe-abc8-262c55e2840a_source.png",
"d3388d5c-00a4-42fe-abc8-262c55e2840a_result.png"
]
},
{
"uuid": "c5cbfac0-066b-465d-8b62-fbf77ea3bfd5",
"prompt": "Make the boy sink into deep thought.",
"id": "4",
"save_id": 1181,
"images": [
"c5cbfac0-066b-465d-8b62-fbf77ea3bfd5_source.png",
"c5cbfac0-066b-465d-8b62-fbf77ea3bfd5_result.png"
]
},
{
"uuid": "a2fc04d1-7b2c-4510-a368-697921078b51",
"prompt": "Make him smiling broadly.",
"id": "5",
"save_id": 1182,
"images": [
"a2fc04d1-7b2c-4510-a368-697921078b51_source.png",
"a2fc04d1-7b2c-4510-a368-697921078b51_result.png"
]
},
{
"uuid": "ca598cea-a704-43e9-a8f0-084808062a97",
"prompt": "Make the baby laughing happily.",
"id": "6",
"save_id": 1183,
"images": [
"ca598cea-a704-43e9-a8f0-084808062a97_source.png",
"ca598cea-a704-43e9-a8f0-084808062a97_result.png"
]
},
{
"uuid": "83e71371-54a3-41d2-ac50-a9139ea8c0a9",
"prompt": "Make the cat look happy and smiling.",
"id": "7",
"save_id": 1184,
"images": [
"83e71371-54a3-41d2-ac50-a9139ea8c0a9_source.png",
"83e71371-54a3-41d2-ac50-a9139ea8c0a9_result.png"
]
},
{
"uuid": "568e6f5a-0ec5-4a3a-b87e-f33882e279e4",
"prompt": "Make her laughing with her mouth open.",
"id": "9",
"save_id": 1185,
"images": [
"568e6f5a-0ec5-4a3a-b87e-f33882e279e4_source.png",
"568e6f5a-0ec5-4a3a-b87e-f33882e279e4_result.png"
]
},
{
"uuid": "7ed3dd84-c51f-4ab2-a8cc-f06cc61b7d09",
"prompt": "Make him look relieved and happy.",
"id": "13",
"save_id": 1187,
"images": [
"7ed3dd84-c51f-4ab2-a8cc-f06cc61b7d09_source.png",
"7ed3dd84-c51f-4ab2-a8cc-f06cc61b7d09_result.png"
]
},
{
"uuid": "2d1bef92-7492-4fca-bf0e-d30e75c5676a",
"prompt": "Make her look disappointed and frowning.",
"id": "16",
"save_id": 1189,
"images": [
"2d1bef92-7492-4fca-bf0e-d30e75c5676a_source.png",
"2d1bef92-7492-4fca-bf0e-d30e75c5676a_result.png"
]
},
{
"uuid": "58160031-e40c-4f99-b2ed-bd121a16b0b9",
"prompt": "Make the baby about to cry.",
"id": "20",
"save_id": 1191,
"images": [
"58160031-e40c-4f99-b2ed-bd121a16b0b9_source.png",
"58160031-e40c-4f99-b2ed-bd121a16b0b9_result.png"
]
},
{
"uuid": "3dedd041-3e13-411d-9bb3-cbcacc471d92",
"prompt": "Make the superhero look defeated and sad.",
"id": "21",
"save_id": 1192,
"images": [
"3dedd041-3e13-411d-9bb3-cbcacc471d92_source.png",
"3dedd041-3e13-411d-9bb3-cbcacc471d92_result.png"
]
},
{
"uuid": "950a9585-5c37-495e-8872-d8c019152a49",
"prompt": "Change the expression to a sad face.",
"id": "24",
"save_id": 1193,
"images": [
"950a9585-5c37-495e-8872-d8c019152a49_source.png",
"950a9585-5c37-495e-8872-d8c019152a49_result.png"
]
},
{
"uuid": "97d5bcf8-7f0c-4200-9e7f-b6562c171fb0",
"prompt": "Make the teacher look furious and shouting.",
"id": "25",
"save_id": 1194,
"images": [
"97d5bcf8-7f0c-4200-9e7f-b6562c171fb0_source.png",
"97d5bcf8-7f0c-4200-9e7f-b6562c171fb0_result.png"
]
},
{
"uuid": "e7542dfe-ef93-4320-9b66-7b998f682764",
"prompt": "Make her look angry and scolding.",
"id": "26",
"save_id": 1195,
"images": [
"e7542dfe-ef93-4320-9b66-7b998f682764_source.png",
"e7542dfe-ef93-4320-9b66-7b998f682764_result.png"
]
},
{
"uuid": "8db4fb55-73b8-4e67-af54-51aa3744c781",
"prompt": "Make the waiter look annoyed and frowning.",
"id": "28",
"save_id": 1196,
"images": [
"8db4fb55-73b8-4e67-af54-51aa3744c781_source.png",
"8db4fb55-73b8-4e67-af54-51aa3744c781_result.png"
]
},
{
"uuid": "5d09f97b-6487-4e3c-8896-172e850902de",
"prompt": "Make the person sitting in the car look like they are having road rage.",
"id": "30",
"save_id": 1198,
"images": [
"5d09f97b-6487-4e3c-8896-172e850902de_source.png",
"5d09f97b-6487-4e3c-8896-172e850902de_result.png"
]
},
{
"uuid": "8a9aa502-280e-4f53-b2f4-e8da2c62760e",
"prompt": "Make him look shocked with his jaw dropped.",
"id": "32",
"save_id": 1199,
"images": [
"8a9aa502-280e-4f53-b2f4-e8da2c62760e_source.png",
"8a9aa502-280e-4f53-b2f4-e8da2c62760e_result.png"
]
},
{
"uuid": "c0150f4f-4c07-4444-99f0-ff8bd4728cbd",
"prompt": "Make her look surprised by what she is reading.",
"id": "33",
"save_id": 1200,
"images": [
"c0150f4f-4c07-4444-99f0-ff8bd4728cbd_source.png",
"c0150f4f-4c07-4444-99f0-ff8bd4728cbd_result.png"
]
},
{
"uuid": "6c4ec73f-689c-4d07-9777-2ec295236129",
"prompt": "Make him look terrified.",
"id": "36",
"save_id": 1202,
"images": [
"6c4ec73f-689c-4d07-9777-2ec295236129_source.png",
"6c4ec73f-689c-4d07-9777-2ec295236129_result.png"
]
},
{
"uuid": "0508047c-1d0f-43f8-9212-71bf26caeee8",
"prompt": "Make her look very scared.",
"id": "37",
"save_id": 1203,
"images": [
"0508047c-1d0f-43f8-9212-71bf26caeee8_source.png",
"0508047c-1d0f-43f8-9212-71bf26caeee8_result.png"
]
},
{
"uuid": "44cbf447-a08a-4b52-9e67-8f5b76b14f9f",
"prompt": "Make her look nervous and sweating.",
"id": "38",
"save_id": 1204,
"images": [
"44cbf447-a08a-4b52-9e67-8f5b76b14f9f_source.png",
"44cbf447-a08a-4b52-9e67-8f5b76b14f9f_result.png"
]
},
{
"uuid": "cc4e6a4d-e48c-4e64-a169-e23b87f3eba5",
"prompt": "Make him show a fearful expression.",
"id": "41",
"save_id": 1205,
"images": [
"cc4e6a4d-e48c-4e64-a169-e23b87f3eba5_source.png",
"cc4e6a4d-e48c-4e64-a169-e23b87f3eba5_result.png"
]
},
{
"uuid": "dbfbeb03-78d0-4023-9e09-61d543020a4e",
"prompt": "Make him show a disgusted expression.",
"id": "42",
"save_id": 1206,
"images": [
"dbfbeb03-78d0-4023-9e09-61d543020a4e_source.png",
"dbfbeb03-78d0-4023-9e09-61d543020a4e_result.png"
]
},
{
"uuid": "b8984e48-4a68-40d7-b874-363283ea9104",
"prompt": "Make her sneer with contempt.",
"id": "43",
"save_id": 1207,
"images": [
"b8984e48-4a68-40d7-b874-363283ea9104_source.png",
"b8984e48-4a68-40d7-b874-363283ea9104_result.png"
]
},
{
"uuid": "869ba426-a0e5-4542-ac51-40f67844507e",
"prompt": "Make the cat look alert and focused.",
"id": "44",
"save_id": 1208,
"images": [
"869ba426-a0e5-4542-ac51-40f67844507e_source.png",
"869ba426-a0e5-4542-ac51-40f67844507e_result.png"
]
},
{
"uuid": "cbf30a2a-afb5-4ec3-a6e6-7c9e9a972882",
"prompt": "Make her look very focused.",
"id": "45",
"save_id": 1209,
"images": [
"cbf30a2a-afb5-4ec3-a6e6-7c9e9a972882_source.png",
"cbf30a2a-afb5-4ec3-a6e6-7c9e9a972882_result.png"
]
},
{
"uuid": "b2b0c08e-7005-4d4a-8c41-983f1c17458b",
"prompt": "Make the girl riding the horse look arrogant and contemptuous.",
"id": "46",
"save_id": 1210,
"images": [
"b2b0c08e-7005-4d4a-8c41-983f1c17458b_source.png",
"b2b0c08e-7005-4d4a-8c41-983f1c17458b_result.png"
]
},
{
"uuid": "b3c8275b-b0c9-4afd-8996-f56fc77e0948",
"prompt": "Make her look wicked and sneering.",
"id": "49",
"save_id": 1211,
"images": [
"b3c8275b-b0c9-4afd-8996-f56fc77e0948_source.png",
"b3c8275b-b0c9-4afd-8996-f56fc77e0948_result.png"
]
},
{
"uuid": "ab447c91-ed0d-414a-b7a2-b09f315be2a4",
"prompt": "Make her look exhausted and panting.",
"id": "50",
"save_id": 1212,
"images": [
"ab447c91-ed0d-414a-b7a2-b09f315be2a4_source.png",
"ab447c91-ed0d-414a-b7a2-b09f315be2a4_result.png"
]
},
{
"uuid": "2004c24b-2e0f-475f-9959-09781aec538b",
"prompt": "Make the student yawning.",
"id": "51",
"save_id": 1213,
"images": [
"2004c24b-2e0f-475f-9959-09781aec538b_source.png",
"2004c24b-2e0f-475f-9959-09781aec538b_result.png"
]
},
{
"uuid": "a4323925-3276-4134-bc16-f9e95df2a592",
"prompt": "Make the dog look sleepy and dozing off.",
"id": "52",
"save_id": 1214,
"images": [
"a4323925-3276-4134-bc16-f9e95df2a592_source.png",
"a4323925-3276-4134-bc16-f9e95df2a592_result.png"
]
},
{
"uuid": "d64f9a7a-031b-4bfb-8d6f-799ad3b7a0ba",
"prompt": "Make him look like he has dark circles and is tired.",
"id": "53",
"save_id": 1215,
"images": [
"d64f9a7a-031b-4bfb-8d6f-799ad3b7a0ba_source.png",
"d64f9a7a-031b-4bfb-8d6f-799ad3b7a0ba_result.png"
]
},
{
"uuid": "c0ab75d9-1af3-44fc-bc13-e58c16671e79",
"prompt": "Make her sticking her tongue out playfully.",
"id": "56",
"save_id": 1216,
"images": [
"c0ab75d9-1af3-44fc-bc13-e58c16671e79_source.png",
"c0ab75d9-1af3-44fc-bc13-e58c16671e79_result.png"
]
},
{
"uuid": "a95b73b9-6845-4b48-8eb8-2fb8b0b015c9",
"prompt": "Make him look serious and thinking.",
"id": "57",
"save_id": 1217,
"images": [
"a95b73b9-6845-4b48-8eb8-2fb8b0b015c9_source.png",
"a95b73b9-6845-4b48-8eb8-2fb8b0b015c9_result.png"
]
},
{
"uuid": "83ef279a-60d9-4539-b970-09d92c5dc144",
"prompt": "Make him look meditated and calm.",
"id": "60",
"save_id": 1218,
"images": [
"83ef279a-60d9-4539-b970-09d92c5dc144_source.png",
"83ef279a-60d9-4539-b970-09d92c5dc144_result.png"
]
},
{
"uuid": "ea6fec31-20cb-4aa3-b953-cfd21e86eaf3",
"prompt": "Make this baby look very gloomy.",
"id": "61",
"save_id": 1219,
"images": [
"ea6fec31-20cb-4aa3-b953-cfd21e86eaf3_source.png",
"ea6fec31-20cb-4aa3-b953-cfd21e86eaf3_result.png"
]
},
{
"uuid": "af61cda3-3538-4930-a43d-f1eb5933507b",
"prompt": "Make him look utterly confused, scratching his head.",
"id": "62",
"save_id": 1220,
"images": [
"af61cda3-3538-4930-a43d-f1eb5933507b_source.png",
"af61cda3-3538-4930-a43d-f1eb5933507b_result.png"
]
},
{
"uuid": "25583bce-4416-4734-86f6-405c0013d861",
"prompt": "Make the dog tilt its head to the side in confusion.",
"id": "63",
"save_id": 1221,
"images": [
"25583bce-4416-4734-86f6-405c0013d861_source.png",
"25583bce-4416-4734-86f6-405c0013d861_result.png"
]
},
{
"uuid": "0c979df4-faa4-4b4a-870e-c4c689784142",
"prompt": "Make him wincing in sudden muscle pain.",
"id": "65",
"save_id": 1222,
"images": [
"0c979df4-faa4-4b4a-870e-c4c689784142_source.png",
"0c979df4-faa4-4b4a-870e-c4c689784142_result.png"
]
},
{
"uuid": "61e97504-7a2d-4c85-8812-484edba363c0",
"prompt": "Make this little boy look lost in thought.",
"id": "66",
"save_id": 1223,
"images": [
"61e97504-7a2d-4c85-8812-484edba363c0_source.png",
"61e97504-7a2d-4c85-8812-484edba363c0_result.png"
]
},
{
"uuid": "451b6679-2737-4e65-9877-dc983ffa71f1",
"prompt": "Make her show a disappointed expression.",
"id": "69",
"save_id": 1224,
"images": [
"451b6679-2737-4e65-9877-dc983ffa71f1_source.png",
"451b6679-2737-4e65-9877-dc983ffa71f1_result.png"
]
},
{
"uuid": "2264e732-daf7-461e-8b9f-fa318668355c",
"prompt": "Make him look very impatient.",
"id": "72",
"save_id": 1225,
"images": [
"2264e732-daf7-461e-8b9f-fa318668355c_source.png",
"2264e732-daf7-461e-8b9f-fa318668355c_result.png"
]
},
{
"uuid": "591fdfcf-0893-4b44-9c84-d4499fdf7081",
"prompt": "Make him look like he is desperately holding back laughter.",
"id": "73",
"save_id": 1226,
"images": [
"591fdfcf-0893-4b44-9c84-d4499fdf7081_source.png",
"591fdfcf-0893-4b44-9c84-d4499fdf7081_result.png"
]
},
{
"uuid": "48ee3d5c-17c1-4f6a-9f3a-cf32690e83ef",
"prompt": "Move the letter V to the right of the letter E, move the letter O to the right of V, and move the letter L to the right of O.",
"id": "1",
"save_id": 967,
"images": [
"48ee3d5c-17c1-4f6a-9f3a-cf32690e83ef_source.png",
"48ee3d5c-17c1-4f6a-9f3a-cf32690e83ef_result.png"
]
},
{
"uuid": "a34a3dfa-19ec-43cb-890e-bf97e6b8dd48",
"prompt": "Move the single cherry tomato onto the spoon.”",
"id": "2",
"save_id": 968,
"images": [
"a34a3dfa-19ec-43cb-890e-bf97e6b8dd48_source.png",
"a34a3dfa-19ec-43cb-890e-bf97e6b8dd48_result.png"
]
},
{
"uuid": "2946d687-cc34-4def-ab48-3699c39d1fe5",
"prompt": "Move the candies outside the jar into the box.",
"id": "3",
"save_id": 969,
"images": [
"2946d687-cc34-4def-ab48-3699c39d1fe5_source.png",
"2946d687-cc34-4def-ab48-3699c39d1fe5_result.png"
]
},
{
"uuid": "cd855bc6-1587-4e4c-b5f9-9b2b2cd0fd29",
"prompt": "Move the chair to the right side of the sofa.",
"id": "4",
"save_id": 970,
"images": [
"cd855bc6-1587-4e4c-b5f9-9b2b2cd0fd29_source.png",
"cd855bc6-1587-4e4c-b5f9-9b2b2cd0fd29_result.png"
]
},
{
"uuid": "d041b1aa-a489-4a96-8ed4-e6feb0929a5f",
"prompt": "Move the robot to the left.",
"id": "5",
"save_id": 971,
"images": [
"d041b1aa-a489-4a96-8ed4-e6feb0929a5f_source.png",
"d041b1aa-a489-4a96-8ed4-e6feb0929a5f_result.png"
]
},
{
"uuid": "158f299c-63ce-4c5a-977c-d56bbfb853e3",
"prompt": "Move the SIM card into the slot.",
"id": "6",
"save_id": 972,
"images": [
"158f299c-63ce-4c5a-977c-d56bbfb853e3_source.png",
"158f299c-63ce-4c5a-977c-d56bbfb853e3_result.png"
]
},
{
"uuid": "1247c4bd-059a-48b3-bb88-dc576dd2800f",
"prompt": "Move the coffee cup to the bottom-right corner of the image.",
"id": "7",
"save_id": 973,
"images": [
"1247c4bd-059a-48b3-bb88-dc576dd2800f_source.png",
"1247c4bd-059a-48b3-bb88-dc576dd2800f_result.png"
]
},
{
"uuid": "803ac15c-0799-418b-9053-be8a1c347022",
"prompt": "Move the soccer ball to the other foot.",
"id": "8",
"save_id": 974,
"images": [
"803ac15c-0799-418b-9053-be8a1c347022_source.png",
"803ac15c-0799-418b-9053-be8a1c347022_result.png"
]
},
{
"uuid": "d91e5445-cc5a-430f-bc1e-6ac101d38e19",
"prompt": "Move the paper clip to the right.",
"id": "9",
"save_id": 975,
"images": [
"d91e5445-cc5a-430f-bc1e-6ac101d38e19_source.png",
"d91e5445-cc5a-430f-bc1e-6ac101d38e19_result.png"
]
},
{
"uuid": "d88b80a3-537f-4ddf-b73c-60a7bf66a0cf",
"prompt": "Move the cards to the correct positions to complete the puzzle.",
"id": "10",
"save_id": 976,
"images": [
"d88b80a3-537f-4ddf-b73c-60a7bf66a0cf_source.png",
"d88b80a3-537f-4ddf-b73c-60a7bf66a0cf_result.png"
]
},
{
"uuid": "13b78e23-b72d-4f76-8f17-01ba65adb8ab",
"prompt": "Move the spoon into the bowl.",
"id": "11",
"save_id": 977,
"images": [
"13b78e23-b72d-4f76-8f17-01ba65adb8ab_source.png",
"13b78e23-b72d-4f76-8f17-01ba65adb8ab_result.png"
]
},
{
"uuid": "1d5af838-2a42-4636-82a1-ecdd2707f8e2",
"prompt": "Move the painting to the right.",
"id": "15",
"save_id": 980,
"images": [
"1d5af838-2a42-4636-82a1-ecdd2707f8e2_source.png",
"1d5af838-2a42-4636-82a1-ecdd2707f8e2_result.png"
]
},
{
"uuid": "501d99e9-a949-4df6-b15f-ca9306ec980f",
"prompt": "Move the table lamp to the right bedside table.",
"id": "17",
"save_id": 981,
"images": [
"501d99e9-a949-4df6-b15f-ca9306ec980f_source.png",
"501d99e9-a949-4df6-b15f-ca9306ec980f_result.png"
]
},
{
"uuid": "6a08cfc4-2f4a-41e9-bff6-cf56ba26a05b",
"prompt": "Move the book from the chair to the nearby bookshelf.",
"id": "19",
"save_id": 982,
"images": [
"6a08cfc4-2f4a-41e9-bff6-cf56ba26a05b_source.png",
"6a08cfc4-2f4a-41e9-bff6-cf56ba26a05b_result.png"
]
},
{
"uuid": "6d45f7be-6b3b-4519-8dd4-672901553914",
"prompt": "Move the wall clock to the left of the television.",
"id": "20",
"save_id": 983,
"images": [
"6d45f7be-6b3b-4519-8dd4-672901553914_source.png",
"6d45f7be-6b3b-4519-8dd4-672901553914_result.png"
]
},
{
"uuid": "0697c3b1-5821-4815-8ae5-f2c5178eb2b6",
"prompt": "Move the throw pillow to the center of the couch.",
"id": "21",
"save_id": 984,
"images": [
"0697c3b1-5821-4815-8ae5-f2c5178eb2b6_source.png",
"0697c3b1-5821-4815-8ae5-f2c5178eb2b6_result.png"
]
},
{
"uuid": "9030e81c-229a-4dd1-bd67-48146f25f929",
"prompt": "Move the cat onto the sofa.",
"id": "22",
"save_id": 985,
"images": [
"9030e81c-229a-4dd1-bd67-48146f25f929_source.png",
"9030e81c-229a-4dd1-bd67-48146f25f929_result.png"
]
},
{
"uuid": "7ecc4b34-849c-4b1c-acd0-4cce021eef81",
"prompt": "Move the apple onto the white tablecloth.",
"id": "23",
"save_id": 986,
"images": [
"7ecc4b34-849c-4b1c-acd0-4cce021eef81_source.png",
"7ecc4b34-849c-4b1c-acd0-4cce021eef81_result.png"
]
},
{
"uuid": "249b7bde-9fdc-484a-b4a3-fd1067cb09d8",
"prompt": "Place the pen on the left onto the coffee cup on the right.",
"id": "24",
"save_id": 987,
"images": [
"249b7bde-9fdc-484a-b4a3-fd1067cb09d8_source.png",
"249b7bde-9fdc-484a-b4a3-fd1067cb09d8_result.png"
]
},
{
"uuid": "3a9f45f1-8280-4f99-94cf-0a308892bc5c",
"prompt": "Move the spoon to the napkin beside the bowl.",
"id": "25",
"save_id": 988,
"images": [
"3a9f45f1-8280-4f99-94cf-0a308892bc5c_source.png",
"3a9f45f1-8280-4f99-94cf-0a308892bc5c_result.png"
]
},
{
"uuid": "305b410a-f980-4f50-be0f-fb6c9d5aa6da",
"prompt": "Move the candle to the front-right corner of the table.",
"id": "26",
"save_id": 989,
"images": [
"305b410a-f980-4f50-be0f-fb6c9d5aa6da_source.png",
"305b410a-f980-4f50-be0f-fb6c9d5aa6da_result.png"
]
},
{
"uuid": "bdb0023c-1793-4a90-8573-802b03c36307",
"prompt": "Move the glass of water off the coaster directly onto the table.",
"id": "27",
"save_id": 990,
"images": [
"bdb0023c-1793-4a90-8573-802b03c36307_source.png",
"bdb0023c-1793-4a90-8573-802b03c36307_result.png"
]
},
{
"uuid": "48bdf4e7-e8f0-4a7f-a02f-e772e31dc4a4",
"prompt": "Move the pen to the space above the notebook.",
"id": "28",
"save_id": 991,
"images": [
"48bdf4e7-e8f0-4a7f-a02f-e772e31dc4a4_source.png",
"48bdf4e7-e8f0-4a7f-a02f-e772e31dc4a4_result.png"
]
},
{
"uuid": "5f2ae37f-f886-44d9-ad48-76b1b2f47f52",
"prompt": "Move the strawberry onto the fork next to the cake.",
"id": "29",
"save_id": 992,
"images": [
"5f2ae37f-f886-44d9-ad48-76b1b2f47f52_source.png",
"5f2ae37f-f886-44d9-ad48-76b1b2f47f52_result.png"
]
},
{
"uuid": "7042e480-b677-406a-a5ea-2a9a783c69b3",
"prompt": "Move the strawberry onto the plate next to the cake.",
"id": "30",
"save_id": 993,
"images": [
"7042e480-b677-406a-a5ea-2a9a783c69b3_source.png",
"7042e480-b677-406a-a5ea-2a9a783c69b3_result.png"
]
},
{
"uuid": "21fe0b24-8ca2-4d92-b618-1d110f6d6706",
"prompt": "Move the flower vase to the edge of the table.",
"id": "31",
"save_id": 994,
"images": [
"21fe0b24-8ca2-4d92-b618-1d110f6d6706_source.png",
"21fe0b24-8ca2-4d92-b618-1d110f6d6706_result.png"
]
},
{
"uuid": "30ff76a7-2441-4663-a3db-39538ab95b86",
"prompt": "Move the red car to the right side of the street.",
"id": "33",
"save_id": 995,
"images": [
"30ff76a7-2441-4663-a3db-39538ab95b86_source.png",
"30ff76a7-2441-4663-a3db-39538ab95b86_result.png"
]
},
{
"uuid": "01eebdc8-f84d-4ea9-92b9-15096b47111c",
"prompt": "Move the bicycle to lean against the lamp post.",
"id": "36",
"save_id": 996,
"images": [
"01eebdc8-f84d-4ea9-92b9-15096b47111c_source.png",
"01eebdc8-f84d-4ea9-92b9-15096b47111c_result.png"
]
},
{
"uuid": "91615f61-b0f4-45b6-a8df-df40323d577e",
"prompt": "Move the pigeon onto the bench and have it sit on it.",
"id": "37",
"save_id": 997,
"images": [
"91615f61-b0f4-45b6-a8df-df40323d577e_source.png",
"91615f61-b0f4-45b6-a8df-df40323d577e_result.png"
]
},
{
"uuid": "0cf145ad-9fd6-42fd-87f9-76858cbc7b2e",
"prompt": "Move the taxi to the far right lane.",
"id": "39",
"save_id": 998,
"images": [
"0cf145ad-9fd6-42fd-87f9-76858cbc7b2e_source.png",
"0cf145ad-9fd6-42fd-87f9-76858cbc7b2e_result.png"
]
},
{
"uuid": "7c689808-76de-4d75-b104-35bb0f127250",
"prompt": "Move the trash can to be under the street light.",
"id": "40",
"save_id": 999,
"images": [
"7c689808-76de-4d75-b104-35bb0f127250_source.png",
"7c689808-76de-4d75-b104-35bb0f127250_result.png"
]
},
{
"uuid": "f1da8af8-7d3a-46ab-bff6-ba2ca4626373",
"prompt": "Move the motorcycle to the open sunny area.",
"id": "41",
"save_id": 1000,
"images": [
"f1da8af8-7d3a-46ab-bff6-ba2ca4626373_source.png",
"f1da8af8-7d3a-46ab-bff6-ba2ca4626373_result.png"
]
},
{
"uuid": "2de29ea0-d40f-47af-ab9f-5c76766570a0",
"prompt": "Move the tent to the right side.",
"id": "45",
"save_id": 1002,
"images": [
"2de29ea0-d40f-47af-ab9f-5c76766570a0_source.png",
"2de29ea0-d40f-47af-ab9f-5c76766570a0_result.png"
]
},
{
"uuid": "2b6272f2-8a07-411c-805b-143aa5c37130",
"prompt": "Move the boat to the center of the lake.",
"id": "50",
"save_id": 1003,
"images": [
"2b6272f2-8a07-411c-805b-143aa5c37130_source.png",
"2b6272f2-8a07-411c-805b-143aa5c37130_result.png"
]
},
{
"uuid": "5715060a-ec17-4586-9f17-c33a8b77a6f5",
"prompt": "Move the butterfly onto the red flower nearby.",
"id": "51",
"save_id": 1004,
"images": [
"5715060a-ec17-4586-9f17-c33a8b77a6f5_source.png",
"5715060a-ec17-4586-9f17-c33a8b77a6f5_result.png"
]
},
{
"uuid": "e94a7e34-4757-4c07-a324-b1f1abafacd4",
"prompt": "Move the tennis racket to lie next to the net.",
"id": "56",
"save_id": 1007,
"images": [
"e94a7e34-4757-4c07-a324-b1f1abafacd4_source.png",
"e94a7e34-4757-4c07-a324-b1f1abafacd4_result.png"
]
},
{
"uuid": "30002011-7de2-4100-8602-fd307de4561e",
"prompt": "Move the yoga mat to the center of the room.",
"id": "57",
"save_id": 1008,
"images": [
"30002011-7de2-4100-8602-fd307de4561e_source.png",
"30002011-7de2-4100-8602-fd307de4561e_result.png"
]
},
{
"uuid": "de52cc10-fa19-47f0-93b2-ee94290242fc",
"prompt": "Move the golf ball onto the green grass.",
"id": "59",
"save_id": 1009,
"images": [
"de52cc10-fa19-47f0-93b2-ee94290242fc_source.png",
"de52cc10-fa19-47f0-93b2-ee94290242fc_result.png"
]
},
{
"uuid": "b4203fba-d1b9-42a4-a864-52ec063c043c",
"prompt": "Move the sneaker up two steps.",
"id": "61",
"save_id": 1011,
"images": [
"b4203fba-d1b9-42a4-a864-52ec063c043c_source.png",
"b4203fba-d1b9-42a4-a864-52ec063c043c_result.png"
]
},
{
"uuid": "1ab49446-9b1a-42f1-8aec-1f527329828b",
"prompt": "Move the backpack onto the grass beside the bench.",
"id": "62",
"save_id": 1012,
"images": [
"1ab49446-9b1a-42f1-8aec-1f527329828b_source.png",
"1ab49446-9b1a-42f1-8aec-1f527329828b_result.png"
]
},
{
"uuid": "2583f516-aa29-4d16-bedd-616f3459fd9c",
"prompt": "Move the monitor to the left corner of the desk.",
"id": "63",
"save_id": 1013,
"images": [
"2583f516-aa29-4d16-bedd-616f3459fd9c_source.png",
"2583f516-aa29-4d16-bedd-616f3459fd9c_result.png"
]
},
{
"uuid": "e8d2389d-48a1-4c6c-9db3-e00d2a9c3ae6",
"prompt": "Move the mouse to the left of the smartphone.",
"id": "64",
"save_id": 1014,
"images": [
"e8d2389d-48a1-4c6c-9db3-e00d2a9c3ae6_source.png",
"e8d2389d-48a1-4c6c-9db3-e00d2a9c3ae6_result.png"
]
},
{
"uuid": "5890c4fb-533b-413f-90a1-4a55e1cb932f",
"prompt": "Move the sticky note to the bottom bezel of the monitor.",
"id": "65",
"save_id": 1015,
"images": [
"5890c4fb-533b-413f-90a1-4a55e1cb932f_source.png",
"5890c4fb-533b-413f-90a1-4a55e1cb932f_result.png"
]
},
{
"uuid": "decb288e-b8ef-4aa7-a6d9-eda8bb865ece",
"prompt": "Move the trash bin to the side of the desk.",
"id": "66",
"save_id": 1016,
"images": [
"decb288e-b8ef-4aa7-a6d9-eda8bb865ece_source.png",
"decb288e-b8ef-4aa7-a6d9-eda8bb865ece_result.png"
]
},
{
"uuid": "627462cc-fa72-42e9-8bbe-c26974cf82f7",
"prompt": "Move the headphones to lay flat on the desk surface.",
"id": "68",
"save_id": 1017,
"images": [
"627462cc-fa72-42e9-8bbe-c26974cf82f7_source.png",
"627462cc-fa72-42e9-8bbe-c26974cf82f7_result.png"
]
},
{
"uuid": "8ab20993-3675-475a-af0b-3b893a4671c5",
"prompt": "Move the charger to lie on the floor next to the outlet.",
"id": "70",
"save_id": 1018,
"images": [
"8ab20993-3675-475a-af0b-3b893a4671c5_source.png",
"8ab20993-3675-475a-af0b-3b893a4671c5_result.png"
]
},
{
"uuid": "6ab10092-3bd0-43b6-81a7-4f9562178d64",
"prompt": "Move the printer onto the adjacent desk.",
"id": "71",
"save_id": 1019,
"images": [
"6ab10092-3bd0-43b6-81a7-4f9562178d64_source.png",
"6ab10092-3bd0-43b6-81a7-4f9562178d64_result.png"
]
},
{
"uuid": "4a42c06b-a4da-4cb0-99a4-b57719709567",
"prompt": "Move the hat from her head to her hand.",
"id": "73",
"save_id": 1020,
"images": [
"4a42c06b-a4da-4cb0-99a4-b57719709567_source.png",
"4a42c06b-a4da-4cb0-99a4-b57719709567_result.png"
]
},
{
"uuid": "70da81b7-b605-4969-a043-e49ee4cdb36c",
"prompt": "Move the sunglasses down to cover her eyes.",
"id": "74",
"save_id": 1021,
"images": [
"70da81b7-b605-4969-a043-e49ee4cdb36c_source.png",
"70da81b7-b605-4969-a043-e49ee4cdb36c_result.png"
]
},
{
"uuid": "aa8271a4-891b-484f-a868-28666156e0e9",
"prompt": "Move the brooch down to the pocket area.",
"id": "75",
"save_id": 1022,
"images": [
"aa8271a4-891b-484f-a868-28666156e0e9_source.png",
"aa8271a4-891b-484f-a868-28666156e0e9_result.png"
]
},
{
"uuid": "843ebf5e-9319-4ff7-aa45-9c057ba4dc15",
"prompt": "Move the watch to the wrist of the other hand.",
"id": "78",
"save_id": 1023,
"images": [
"843ebf5e-9319-4ff7-aa45-9c057ba4dc15_source.png",
"843ebf5e-9319-4ff7-aa45-9c057ba4dc15_result.png"
]
},
{
"uuid": "23ddc1a4-7220-4454-bf22-9bde6fdbe2fe",
"prompt": "Move the logo to the left chest area.",
"id": "80",
"save_id": 1024,
"images": [
"23ddc1a4-7220-4454-bf22-9bde6fdbe2fe_source.png",
"23ddc1a4-7220-4454-bf22-9bde6fdbe2fe_result.png"
]
},
{
"uuid": "393b7755-a5fc-47a8-bf7f-e126ac2cc5df",
"prompt": "Move the ring to the ring finger.",
"id": "81",
"save_id": 1025,
"images": [
"393b7755-a5fc-47a8-bf7f-e126ac2cc5df_source.png",
"393b7755-a5fc-47a8-bf7f-e126ac2cc5df_result.png"
]
},
{
"uuid": "e16a7341-7017-4e1a-82f6-ae7e9cf2edcd",
"prompt": "Move the potion bottle onto the table next to the open book.",
"id": "85",
"save_id": 1026,
"images": [
"e16a7341-7017-4e1a-82f6-ae7e9cf2edcd_source.png",
"e16a7341-7017-4e1a-82f6-ae7e9cf2edcd_result.png"
]
},
{
"uuid": "f4a85d70-d7ba-4448-94f3-103fab1573dd",
"prompt": "Move the fairy to fly in the air.",
"id": "92",
"save_id": 1027,
"images": [
"f4a85d70-d7ba-4448-94f3-103fab1573dd_source.png",
"f4a85d70-d7ba-4448-94f3-103fab1573dd_result.png"
]
},
{
"uuid": "f19d54f4-f852-4bdf-a19b-c26954e9a2f9",
"prompt": "Move the red cube to the bottom left corner.",
"id": "93",
"save_id": 1028,
"images": [
"f19d54f4-f852-4bdf-a19b-c26954e9a2f9_source.png",
"f19d54f4-f852-4bdf-a19b-c26954e9a2f9_result.png"
]
},
{
"uuid": "c7b13c7f-5d87-4e72-add4-666a3b6052db",
"prompt": "Move the blue sphere to the right of the yellow cylinder.",
"id": "94",
"save_id": 1029,
"images": [
"c7b13c7f-5d87-4e72-add4-666a3b6052db_source.png",
"c7b13c7f-5d87-4e72-add4-666a3b6052db_result.png"
]
},
{
"uuid": "46a8f57e-7a36-4906-92e0-f18030e73b02",
"prompt": "Move the black line to the bottom of the canvas.",
"id": "95",
"save_id": 1030,
"images": [
"46a8f57e-7a36-4906-92e0-f18030e73b02_source.png",
"46a8f57e-7a36-4906-92e0-f18030e73b02_result.png"
]
},
{
"uuid": "ac966e1f-90f0-4ad3-9d3e-d8ca1f45fbcc",
"prompt": "Move the golden pyramid out of the glass box and place it on the ground outside.",
"id": "96",
"save_id": 1031,
"images": [
"ac966e1f-90f0-4ad3-9d3e-d8ca1f45fbcc_source.png",
"ac966e1f-90f0-4ad3-9d3e-d8ca1f45fbcc_result.png"
]
},
{
"uuid": "5bb64a1e-c4fe-4f9b-9ed3-4551e03d468d",
"prompt": "Move the pattern of dots to the right half.",
"id": "100",
"save_id": 1032,
"images": [
"5bb64a1e-c4fe-4f9b-9ed3-4551e03d468d_source.png",
"5bb64a1e-c4fe-4f9b-9ed3-4551e03d468d_result.png"
]
},
{
"uuid": "c6f40d8f-4509-4c32-a54a-ec943081f6af",
"prompt": "Move the garden bench to be under the large tree on the lawn.",
"id": "107",
"save_id": 1033,
"images": [
"c6f40d8f-4509-4c32-a54a-ec943081f6af_source.png",
"c6f40d8f-4509-4c32-a54a-ec943081f6af_result.png"
]
},
{
"uuid": "28d80e2f-73de-43cd-b432-c5781311d559",
"prompt": "Move the street number '10' to the center of the door.",
"id": "108",
"save_id": 1034,
"images": [
"28d80e2f-73de-43cd-b432-c5781311d559_source.png",
"28d80e2f-73de-43cd-b432-c5781311d559_result.png"
]
},
{
"uuid": "6c8fc824-e197-4ad8-8898-6c5ae99bd6ce",
"prompt": "Move the flower pot to sit on the porch steps.",
"id": "109",
"save_id": 1035,
"images": [
"6c8fc824-e197-4ad8-8898-6c5ae99bd6ce_source.png",
"6c8fc824-e197-4ad8-8898-6c5ae99bd6ce_result.png"
]
},
{
"uuid": "e517073b-74e9-47af-b95d-5b7d67e1c428",
"prompt": "Move the air conditioner unit onto the ground.",
"id": "110",
"save_id": 1036,
"images": [
"e517073b-74e9-47af-b95d-5b7d67e1c428_source.png",
"e517073b-74e9-47af-b95d-5b7d67e1c428_result.png"
]
},
{
"uuid": "0642e73b-e52d-4bf1-8ff3-0b5730721d7d",
"prompt": "Place the teapot lid inside the teacup.",
"id": "111",
"save_id": 3391,
"images": [
"0642e73b-e52d-4bf1-8ff3-0b5730721d7d_source.png",
"0642e73b-e52d-4bf1-8ff3-0b5730721d7d_result.png"
]
},
{
"uuid": "d37e6d39-2067-45f9-9131-6be1ccd273cf",
"prompt": "Swap the positions of the cup and the spoon.",
"id": "1",
"save_id": 1037,
"images": [
"d37e6d39-2067-45f9-9131-6be1ccd273cf_source.png",
"d37e6d39-2067-45f9-9131-6be1ccd273cf_result.png"
]
},
{
"uuid": "b323d0e3-0413-416e-8747-bdff4cd19f21",
"prompt": "Swap the positions of the J card and the Q card.",
"id": "2",
"save_id": 1038,
"images": [
"b323d0e3-0413-416e-8747-bdff4cd19f21_source.png",
"b323d0e3-0413-416e-8747-bdff4cd19f21_result.png"
]
},
{
"uuid": "4aab5b1e-ea74-4090-824a-b897d68411ea",
"prompt": "Swap the positions of the pen and the headphones.",
"id": "3",
"save_id": 1039,
"images": [
"4aab5b1e-ea74-4090-824a-b897d68411ea_source.png",
"4aab5b1e-ea74-4090-824a-b897d68411ea_result.png"
]
},
{
"uuid": "c3b9a463-2f46-4c59-a8f5-bedde5d1ac74",
"prompt": "Swap the positions of the coffee cup and the vase.",
"id": "4",
"save_id": 1040,
"images": [
"c3b9a463-2f46-4c59-a8f5-bedde5d1ac74_source.png",
"c3b9a463-2f46-4c59-a8f5-bedde5d1ac74_result.png"
]
},
{
"uuid": "5f7f4b66-3665-42c9-b19b-a63bb456f856",
"prompt": "Swap the positions of the two people.",
"id": "5",
"save_id": 1041,
"images": [
"5f7f4b66-3665-42c9-b19b-a63bb456f856_source.png",
"5f7f4b66-3665-42c9-b19b-a63bb456f856_result.png"
]
},
{
"uuid": "d799f1d0-5a61-42f6-a271-bae46c194714",
"prompt": "Exchange the cup of coffee with the glass of water.",
"id": "6",
"save_id": 1042,
"images": [
"d799f1d0-5a61-42f6-a271-bae46c194714_source.png",
"d799f1d0-5a61-42f6-a271-bae46c194714_result.png"
]
},
{
"uuid": "d847bc6f-0e89-4691-ad34-850966ec2cb6",
"prompt": "Swap the fork and the knife.",
"id": "7",
"save_id": 1043,
"images": [
"d847bc6f-0e89-4691-ad34-850966ec2cb6_source.png",
"d847bc6f-0e89-4691-ad34-850966ec2cb6_result.png"
]
},
{
"uuid": "2dfd7430-feeb-4259-82b5-ead700518a6c",
"prompt": "Swap the positions of the red apple and the green pear.",
"id": "8",
"save_id": 1044,
"images": [
"2dfd7430-feeb-4259-82b5-ead700518a6c_source.png",
"2dfd7430-feeb-4259-82b5-ead700518a6c_result.png"
]
},
{
"uuid": "0d22ea89-14be-4f14-9120-2d6317cb3110",
"prompt": "Switch the positions of the salt shaker and the pepper shaker.",
"id": "9",
"save_id": 1045,
"images": [
"0d22ea89-14be-4f14-9120-2d6317cb3110_source.png",
"0d22ea89-14be-4f14-9120-2d6317cb3110_result.png"
]
},
{
"uuid": "a3d2599f-87b7-477e-b045-e09e97f04467",
"prompt": "Swap the chocolate cake and the donut.",
"id": "10",
"save_id": 1046,
"images": [
"a3d2599f-87b7-477e-b045-e09e97f04467_source.png",
"a3d2599f-87b7-477e-b045-e09e97f04467_result.png"
]
},
{
"uuid": "7f435a33-c56e-450d-bb77-14c633de5132",
"prompt": "Swap the strawberry and the blueberry.",
"id": "11",
"save_id": 1047,
"images": [
"7f435a33-c56e-450d-bb77-14c633de5132_source.png",
"7f435a33-c56e-450d-bb77-14c633de5132_result.png"
]
},
{
"uuid": "aaefcbf9-b797-43bd-b2ab-c3dc594ad48e",
"prompt": "Swap the cat and the dog.",
"id": "12",
"save_id": 1048,
"images": [
"aaefcbf9-b797-43bd-b2ab-c3dc594ad48e_source.png",
"aaefcbf9-b797-43bd-b2ab-c3dc594ad48e_result.png"
]
},
{
"uuid": "36ccbe47-537b-42a9-9922-aee91857a4d6",
"prompt": "Exchange the orange and the lemon.",
"id": "13",
"save_id": 1049,
"images": [
"36ccbe47-537b-42a9-9922-aee91857a4d6_source.png",
"36ccbe47-537b-42a9-9922-aee91857a4d6_result.png"
]
},
{
"uuid": "92c7f146-0587-4db3-9d69-30a958ed02d8",
"prompt": "Swap the poster of LeBron James in the top-left corner with the poster of Kobe Bryant in the bottom-right corner.",
"id": "14",
"save_id": 1050,
"images": [
"92c7f146-0587-4db3-9d69-30a958ed02d8_source.png",
"92c7f146-0587-4db3-9d69-30a958ed02d8_result.png"
]
},
{
"uuid": "78f5e55d-20c1-4156-862e-96db07fb725a",
"prompt": "Swap the positions of the cookie and the candy jar.",
"id": "15",
"save_id": 1051,
"images": [
"78f5e55d-20c1-4156-862e-96db07fb725a_source.png",
"78f5e55d-20c1-4156-862e-96db07fb725a_result.png"
]
},
{
"uuid": "bec4b350-f392-443a-bc75-11c460ba3b98",
"prompt": "Swap the positions of the wine bottle and the wine glass.",
"id": "16",
"save_id": 1052,
"images": [
"bec4b350-f392-443a-bc75-11c460ba3b98_source.png",
"bec4b350-f392-443a-bc75-11c460ba3b98_result.png"
]
},
{
"uuid": "01c083ee-5de1-4e7c-bd40-486cc499ca8a",
"prompt": "Swap the toy car with the teddy bear.",
"id": "17",
"save_id": 1053,
"images": [
"01c083ee-5de1-4e7c-bd40-486cc499ca8a_source.png",
"01c083ee-5de1-4e7c-bd40-486cc499ca8a_result.png"
]
},
{
"uuid": "859ecfdf-3d63-42ee-af70-4dad032870c4",
"prompt": "Swap the positions of the girl wearing yellow and the driver in the car.",
"id": "18",
"save_id": 1054,
"images": [
"859ecfdf-3d63-42ee-af70-4dad032870c4_source.png",
"859ecfdf-3d63-42ee-af70-4dad032870c4_result.png"
]
},
{
"uuid": "f03bd8ae-f89d-436b-8489-c00cc32becb1",
"prompt": "Swap the trash bin and the recycling bin.",
"id": "20",
"save_id": 1055,
"images": [
"f03bd8ae-f89d-436b-8489-c00cc32becb1_source.png",
"f03bd8ae-f89d-436b-8489-c00cc32becb1_result.png"
]
},
{
"uuid": "1b01a057-087b-4afb-93a9-6e036f42d084",
"prompt": "Swap the shoe and the sock.",
"id": "22",
"save_id": 1056,
"images": [
"1b01a057-087b-4afb-93a9-6e036f42d084_source.png",
"1b01a057-087b-4afb-93a9-6e036f42d084_result.png"
]
},
{
"uuid": "f48b3998-a703-4370-bd46-6b5c4ed61d1d",
"prompt": "Swap the router and the plant beside it.",
"id": "23",
"save_id": 1057,
"images": [
"f48b3998-a703-4370-bd46-6b5c4ed61d1d_source.png",
"f48b3998-a703-4370-bd46-6b5c4ed61d1d_result.png"
]
},
{
"uuid": "262ec9d9-5ba4-43e4-994a-f68b20a57daf",
"prompt": "Swap the striped tie and the polka dot tie.",
"id": "24",
"save_id": 1058,
"images": [
"262ec9d9-5ba4-43e4-994a-f68b20a57daf_source.png",
"262ec9d9-5ba4-43e4-994a-f68b20a57daf_result.png"
]
},
{
"uuid": "672cc72a-a05a-4258-b5d1-7de08c9b26c9",
"prompt": "Swap the silver earring and the gold earring.",
"id": "25",
"save_id": 1059,
"images": [
"672cc72a-a05a-4258-b5d1-7de08c9b26c9_source.png",
"672cc72a-a05a-4258-b5d1-7de08c9b26c9_result.png"
]
},
{
"uuid": "1fcdfb6d-3fae-47d5-9291-62823fc0f870",
"prompt": "Swap the squirrel and the rabbit.",
"id": "26",
"save_id": 1060,
"images": [
"1fcdfb6d-3fae-47d5-9291-62823fc0f870_source.png",
"1fcdfb6d-3fae-47d5-9291-62823fc0f870_result.png"
]
},
{
"uuid": "3cfede1e-2414-41e7-a536-c6dfa0bf6a2a",
"prompt": "Swap the soccer ball and the basketball.",
"id": "27",
"save_id": 1061,
"images": [
"3cfede1e-2414-41e7-a536-c6dfa0bf6a2a_source.png",
"3cfede1e-2414-41e7-a536-c6dfa0bf6a2a_result.png"
]
},
{
"uuid": "6e276479-74af-4850-9674-356a39d96fd3",
"prompt": "Swap the dumbbell and the water bottle.",
"id": "29",
"save_id": 1062,
"images": [
"6e276479-74af-4850-9674-356a39d96fd3_source.png",
"6e276479-74af-4850-9674-356a39d96fd3_result.png"
]
},
{
"uuid": "90741c0a-795b-44d5-8f10-d047a2d6dd9e",
"prompt": "Swap the green pyramid and the yellow cylinder.",
"id": "30",
"save_id": 1063,
"images": [
"90741c0a-795b-44d5-8f10-d047a2d6dd9e_source.png",
"90741c0a-795b-44d5-8f10-d047a2d6dd9e_result.png"
]
},
{
"uuid": "480425bb-cfa4-4e98-88e8-22fb26037b0b",
"prompt": "Swap the letter 'A' and the letter 'b'.",
"id": "33",
"save_id": 1064,
"images": [
"480425bb-cfa4-4e98-88e8-22fb26037b0b_source.png",
"480425bb-cfa4-4e98-88e8-22fb26037b0b_result.png"
]
},
{
"uuid": "29642b22-ca73-4277-95ac-c396d158a70e",
"prompt": "Swap the materials of the chair and the table.",
"id": "34",
"save_id": 1065,
"images": [
"29642b22-ca73-4277-95ac-c396d158a70e_source.png",
"29642b22-ca73-4277-95ac-c396d158a70e_result.png"
]
},
{
"uuid": "a084f133-9d8d-46ca-9d96-35271c70a986",
"prompt": "Swap the colors of the ring and the bracelet.",
"id": "35",
"save_id": 1066,
"images": [
"a084f133-9d8d-46ca-9d96-35271c70a986_source.png",
"a084f133-9d8d-46ca-9d96-35271c70a986_result.png"
]
},
{
"uuid": "9168ee5e-7198-485f-a8a9-b5795afed6a5",
"prompt": "Swap the remote control and the game controller.",
"id": "36",
"save_id": 1067,
"images": [
"9168ee5e-7198-485f-a8a9-b5795afed6a5_source.png",
"9168ee5e-7198-485f-a8a9-b5795afed6a5_result.png"
]
},
{
"uuid": "3e936152-3b19-41a6-b077-3cf97d026838",
"prompt": "Swap the blue pillow and the red pillow.",
"id": "37",
"save_id": 1068,
"images": [
"3e936152-3b19-41a6-b077-3cf97d026838_source.png",
"3e936152-3b19-41a6-b077-3cf97d026838_result.png"
]
},
{
"uuid": "83de0e8c-a42d-4afe-9cc1-7b76ac1b21f1",
"prompt": "Swap the colors of the cube and the sphere.",
"id": "38",
"save_id": 1069,
"images": [
"83de0e8c-a42d-4afe-9cc1-7b76ac1b21f1_source.png",
"83de0e8c-a42d-4afe-9cc1-7b76ac1b21f1_result.png"
]
},
{
"uuid": "9d546190-3274-4461-9d72-767f78eead91",
"prompt": "Swap the colors of the apple and the pepper.",
"id": "40",
"save_id": 1070,
"images": [
"9d546190-3274-4461-9d72-767f78eead91_source.png",
"9d546190-3274-4461-9d72-767f78eead91_result.png"
]
},
{
"uuid": "87f65764-1e55-4672-9e57-00861f0598ad",
"prompt": "Swap the upholstery material of the couch and the armchair.",
"id": "41",
"save_id": 1071,
"images": [
"87f65764-1e55-4672-9e57-00861f0598ad_source.png",
"87f65764-1e55-4672-9e57-00861f0598ad_result.png"
]
},
{
"uuid": "12c23141-0e6f-40e7-afa8-5a1cb2ad7fbc",
"prompt": "Swap the colors of the cat and the dog.",
"id": "42",
"save_id": 1072,
"images": [
"12c23141-0e6f-40e7-afa8-5a1cb2ad7fbc_source.png",
"12c23141-0e6f-40e7-afa8-5a1cb2ad7fbc_result.png"
]
},
{
"uuid": "654a0a81-56cf-4c1c-ba1b-a3362589c828",
"prompt": "Swap the fabrics of the jacket and the pants.",
"id": "43",
"save_id": 1073,
"images": [
"654a0a81-56cf-4c1c-ba1b-a3362589c828_source.png",
"654a0a81-56cf-4c1c-ba1b-a3362589c828_result.png"
]
},
{
"uuid": "d15fccff-f9ed-46f6-b369-61e22d3eb570",
"prompt": "Swap the characters 13 and 09 on the monitor.",
"id": "44",
"save_id": 1074,
"images": [
"d15fccff-f9ed-46f6-b369-61e22d3eb570_source.png",
"d15fccff-f9ed-46f6-b369-61e22d3eb570_result.png"
]
},
{
"uuid": "05b79d0d-e7d9-4397-8635-5d56e1aeac53",
"prompt": "Swap the text labels: write 'SALE' on the blue tag and 'NEW' on the red tag.",
"id": "46",
"save_id": 1075,
"images": [
"05b79d0d-e7d9-4397-8635-5d56e1aeac53_source.png",
"05b79d0d-e7d9-4397-8635-5d56e1aeac53_result.png"
]
},
{
"uuid": "aab0f472-85e8-4b9c-aa5c-f9f91f44f600",
"prompt": "Swap the digital time displayed on the two clocks.",
"id": "47",
"save_id": 1076,
"images": [
"aab0f472-85e8-4b9c-aa5c-f9f91f44f600_source.png",
"aab0f472-85e8-4b9c-aa5c-f9f91f44f600_result.png"
]
},
{
"uuid": "6863038a-bd0f-4d85-b402-111ad5bd3f1a",
"prompt": "Swap the contents inside the picture frame.",
"id": "48",
"save_id": 1077,
"images": [
"6863038a-bd0f-4d85-b402-111ad5bd3f1a_source.png",
"6863038a-bd0f-4d85-b402-111ad5bd3f1a_result.png"
]
},
{
"uuid": "0d6268f0-2f27-4070-88dc-348909f7a80c",
"prompt": "Swap the content on the phone screen and the monitor.",
"id": "49",
"save_id": 1078,
"images": [
"0d6268f0-2f27-4070-88dc-348909f7a80c_source.png",
"0d6268f0-2f27-4070-88dc-348909f7a80c_result.png"
]
},
{
"uuid": "c8d07470-b8ad-490c-9981-9a31fca0b5d1",
"prompt": "Swap the hair colors of the two children.",
"id": "50",
"save_id": 1079,
"images": [
"c8d07470-b8ad-490c-9981-9a31fca0b5d1_source.png",
"c8d07470-b8ad-490c-9981-9a31fca0b5d1_result.png"
]
},
{
"uuid": "4240e6a1-f34a-4df3-b308-d0a2a3ce81bb",
"prompt": "Swap the hairstyles of the blonde woman and the brunette woman.",
"id": "51",
"save_id": 1080,
"images": [
"4240e6a1-f34a-4df3-b308-d0a2a3ce81bb_source.png",
"4240e6a1-f34a-4df3-b308-d0a2a3ce81bb_result.png"
]
},
{
"uuid": "cada86ec-20ec-435e-8c81-f7c85354e90c",
"prompt": "Swap the colors of the tractor and the sports car.",
"id": "52",
"save_id": 1081,
"images": [
"cada86ec-20ec-435e-8c81-f7c85354e90c_source.png",
"cada86ec-20ec-435e-8c81-f7c85354e90c_result.png"
]
},
{
"uuid": "8db61088-937b-4af5-8dc0-2be67d6de3bc",
"prompt": "Swap the liquids in the two cups.",
"id": "53",
"save_id": 1082,
"images": [
"8db61088-937b-4af5-8dc0-2be67d6de3bc_source.png",
"8db61088-937b-4af5-8dc0-2be67d6de3bc_result.png"
]
},
{
"uuid": "4ffedbc7-9474-4d86-b14c-9cd801250087",
"prompt": "Swap the outfits of the doctor and the police officer.",
"id": "54",
"save_id": 1083,
"images": [
"4ffedbc7-9474-4d86-b14c-9cd801250087_source.png",
"4ffedbc7-9474-4d86-b14c-9cd801250087_result.png"
]
},
{
"uuid": "2d0f8eaa-14f6-4037-aed8-cef0ddc11242",
"prompt": "Swap the lace colors of the two pairs of shoes.",
"id": "55",
"save_id": 1084,
"images": [
"2d0f8eaa-14f6-4037-aed8-cef0ddc11242_source.png",
"2d0f8eaa-14f6-4037-aed8-cef0ddc11242_result.png"
]
},
{
"uuid": "dcd44769-d7f5-4505-9230-d73969b92108",
"prompt": "Swap the bracelets on the girl’s left and right wrists.",
"id": "56",
"save_id": 1085,
"images": [
"dcd44769-d7f5-4505-9230-d73969b92108_source.png",
"dcd44769-d7f5-4505-9230-d73969b92108_result.png"
]
},
{
"uuid": "daa4cf4a-9c3a-4d69-95bc-bb4c3bc65966",
"prompt": "Swap the collar shapes of the T-shirt and the sweater.",
"id": "57",
"save_id": 1086,
"images": [
"daa4cf4a-9c3a-4d69-95bc-bb4c3bc65966_source.png",
"daa4cf4a-9c3a-4d69-95bc-bb4c3bc65966_result.png"
]
},
{
"uuid": "7fb731f6-0932-465d-b64e-08fd657114fd",
"prompt": "Swap the states of the liquids in the two cups.",
"id": "58",
"save_id": 1087,
"images": [
"7fb731f6-0932-465d-b64e-08fd657114fd_source.png",
"7fb731f6-0932-465d-b64e-08fd657114fd_result.png"
]
},
{
"uuid": "a0f5aeff-e814-4148-9578-b8e4d3aa856e",
"prompt": "Swap the shapes of the two picture frames.",
"id": "59",
"save_id": 1088,
"images": [
"a0f5aeff-e814-4148-9578-b8e4d3aa856e_source.png",
"a0f5aeff-e814-4148-9578-b8e4d3aa856e_result.png"
]
},
{
"uuid": "8e588763-1c57-472b-99fc-ea357600e9a6",
"prompt": "Swap the expressions of the baby and the woman.",
"id": "61",
"save_id": 1089,
"images": [
"8e588763-1c57-472b-99fc-ea357600e9a6_source.png",
"8e588763-1c57-472b-99fc-ea357600e9a6_result.png"
]
},
{
"uuid": "8df60491-007d-482b-858b-d9b2cd3ad449",
"prompt": "Swap the positions and poses of the man and the woman.",
"id": "62",
"save_id": 1090,
"images": [
"8df60491-007d-482b-858b-d9b2cd3ad449_source.png",
"8df60491-007d-482b-858b-d9b2cd3ad449_result.png"
]
},
{
"uuid": "2cb2f2ea-b342-4038-a4cb-fd03f27a0439",
"prompt": "Swap the expressions of the two masks.",
"id": "63",
"save_id": 1091,
"images": [
"2cb2f2ea-b342-4038-a4cb-fd03f27a0439_source.png",
"2cb2f2ea-b342-4038-a4cb-fd03f27a0439_result.png"
]
},
{
"uuid": "a5aa5c22-4c4c-49ca-932c-d96df3ed7b9d",
"prompt": "Swap the outfits of the boy and the girl.",
"id": "64",
"save_id": 1092,
"images": [
"a5aa5c22-4c4c-49ca-932c-d96df3ed7b9d_source.png",
"a5aa5c22-4c4c-49ca-932c-d96df3ed7b9d_result.png"
]
},
{
"uuid": "719cc87c-17a2-48ac-8778-d1bcf280571f",
"prompt": "Swap the positions and poses of the two dogs.",
"id": "65",
"save_id": 1093,
"images": [
"719cc87c-17a2-48ac-8778-d1bcf280571f_source.png",
"719cc87c-17a2-48ac-8778-d1bcf280571f_result.png"
]
},
{
"uuid": "39ce7824-21e1-406b-b01e-c03fa50b4474",
"prompt": "Swap the actions of the two girls in the image.",
"id": "66",
"save_id": 1094,
"images": [
"39ce7824-21e1-406b-b01e-c03fa50b4474_source.png",
"39ce7824-21e1-406b-b01e-c03fa50b4474_result.png"
]
},
{
"uuid": "7dd9c078-14ab-435a-b89c-c09c9d94c278",
"prompt": "Swap the states and positions of the cat and the dog.",
"id": "67",
"save_id": 1095,
"images": [
"7dd9c078-14ab-435a-b89c-c09c9d94c278_source.png",
"7dd9c078-14ab-435a-b89c-c09c9d94c278_result.png"
]
},
{
"uuid": "6a7ea5f8-3dcd-433a-bd1c-c64eecb76496",
"prompt": "Swap the objects being eaten by the boy and the girl.",
"id": "68",
"save_id": 1096,
"images": [
"6a7ea5f8-3dcd-433a-bd1c-c64eecb76496_source.png",
"6a7ea5f8-3dcd-433a-bd1c-c64eecb76496_result.png"
]
},
{
"uuid": "acd6a96d-0ca4-4497-90bd-e741156ae2f4",
"prompt": "Swap the states of the two laptops.",
"id": "69",
"save_id": 1097,
"images": [
"acd6a96d-0ca4-4497-90bd-e741156ae2f4_source.png",
"acd6a96d-0ca4-4497-90bd-e741156ae2f4_result.png"
]
},
{
"uuid": "bf4d7e59-fa5a-4d11-8d38-e55f66510fe7",
"prompt": "Swap the poses of the two models.",
"id": "70",
"save_id": 1098,
"images": [
"bf4d7e59-fa5a-4d11-8d38-e55f66510fe7_source.png",
"bf4d7e59-fa5a-4d11-8d38-e55f66510fe7_result.png"
]
},
{
"uuid": "9cec30ed-10d1-455a-9357-4bbe906d90fc",
"prompt": "Swap the eye states of the two people.",
"id": "71",
"save_id": 1099,
"images": [
"9cec30ed-10d1-455a-9357-4bbe906d90fc_source.png",
"9cec30ed-10d1-455a-9357-4bbe906d90fc_result.png"
]
},
{
"uuid": "50c47d26-f3a0-42a9-a021-bf1975ef0e56",
"prompt": "Swap the colors of the two umbrellas.",
"id": "72",
"save_id": 1100,
"images": [
"50c47d26-f3a0-42a9-a021-bf1975ef0e56_source.png",
"50c47d26-f3a0-42a9-a021-bf1975ef0e56_result.png"
]
},
{
"uuid": "3d3c76fd-430e-4b85-9ef7-e0eff24be841",
"prompt": "Swap the positions and actions of these two people.",
"id": "73",
"save_id": 1101,
"images": [
"3d3c76fd-430e-4b85-9ef7-e0eff24be841_source.png",
"3d3c76fd-430e-4b85-9ef7-e0eff24be841_result.png"
]
},
{
"uuid": "2365be70-dd7e-4dd1-9834-ed497332f168",
"prompt": "Swap the colors of the two traffic lights.",
"id": "74",
"save_id": 1102,
"images": [
"2365be70-dd7e-4dd1-9834-ed497332f168_source.png",
"2365be70-dd7e-4dd1-9834-ed497332f168_result.png"
]
},
{
"uuid": "b8fcd0b7-0fb7-431b-aebc-3550f16fe3a4",
"prompt": "Swap the poses and states of the two cats.",
"id": "75",
"save_id": 1103,
"images": [
"b8fcd0b7-0fb7-431b-aebc-3550f16fe3a4_source.png",
"b8fcd0b7-0fb7-431b-aebc-3550f16fe3a4_result.png"
]
},
{
"uuid": "ea11f1c1-17f0-4608-b189-22435efa81ba",
"prompt": "Swap the objects in the boy’s left and right hands.",
"id": "76",
"save_id": 1104,
"images": [
"ea11f1c1-17f0-4608-b189-22435efa81ba_source.png",
"ea11f1c1-17f0-4608-b189-22435efa81ba_result.png"
]
},
{
"uuid": "e9051aee-2d74-448b-be29-a842f5b6b942",
"prompt": "Swap the colors and textures of the two cats.",
"id": "77",
"save_id": 1105,
"images": [
"e9051aee-2d74-448b-be29-a842f5b6b942_source.png",
"e9051aee-2d74-448b-be29-a842f5b6b942_result.png"
]
},
{
"uuid": "4eb49ec3-6554-482b-97e1-79a3df18afad",
"prompt": "Have the girl place both feet on the ground, display a helpless gesture and expression, and change her top to yellow.",
"id": "365",
"save_id": 347,
"images": [
"4eb49ec3-6554-482b-97e1-79a3df18afad_source.png",
"4eb49ec3-6554-482b-97e1-79a3df18afad_result.png"
]
},
{
"uuid": "1b294cde-bfb8-43cd-b65d-c75fb9c564ee",
"prompt": "Remove the cactus from the image, swap the positions of the glass and the glasses, and add a neon sign reading 'Creative Hub' in the top-left corner.",
"id": "366",
"save_id": 348,
"images": [
"1b294cde-bfb8-43cd-b65d-c75fb9c564ee_source.png",
"1b294cde-bfb8-43cd-b65d-c75fb9c564ee_result.png"
]
},
{
"uuid": "d5ec1bb1-537c-4527-88ef-050976f91be3",
"prompt": "Swap the colors of the two doors and add a flower-filled hanging planter on the outer wall of the window on the left side.",
"id": "445",
"save_id": 367,
"images": [
"d5ec1bb1-537c-4527-88ef-050976f91be3_source.png",
"d5ec1bb1-537c-4527-88ef-050976f91be3_result.png"
]
},
{
"uuid": "05a5cb14-3612-4b51-b6a9-6ee6810f2951",
"prompt": "Add a watch to the boy's right wrist, remove the book on the table and the spoon in the plate, and refill the coffee cup with coffee.",
"id": "334",
"save_id": 325,
"images": [
"05a5cb14-3612-4b51-b6a9-6ee6810f2951_source.png",
"05a5cb14-3612-4b51-b6a9-6ee6810f2951_result.png"
]
},
{
"uuid": "4104040f-597d-42d7-a148-c2f6783b7e4f",
"prompt": "Remove the boy's helmet, adjust the baseball to half its current height above the ground, replace the boy's sneakers with bright blue cleats, and add a baseball glove to the boy's right.",
"id": "380",
"save_id": 362,
"images": [
"4104040f-597d-42d7-a148-c2f6783b7e4f_source.png",
"4104040f-597d-42d7-a148-c2f6783b7e4f_result.png"
]
},
{
"uuid": "b258129c-3559-4912-bdeb-745c883d35f9",
"prompt": "Remove the towel in the bottom left corner and add an electric toothbrush in the empty space on the right, turned on.",
"id": "441",
"save_id": 364,
"images": [
"b258129c-3559-4912-bdeb-745c883d35f9_source.png",
"b258129c-3559-4912-bdeb-745c883d35f9_result.png"
]
},
{
"uuid": "ae29c5f2-d6af-4d04-b12f-3f798fbed1a0",
"prompt": "Change the hat of the girl on the far right to white and have her make a 'V' sign with her hand; give the boy who is not wearing a hat a blue hat.",
"id": "499",
"save_id": 406,
"images": [
"ae29c5f2-d6af-4d04-b12f-3f798fbed1a0_source.png",
"ae29c5f2-d6af-4d04-b12f-3f798fbed1a0_result.png"
]
},
{
"uuid": "27ea47ab-f25d-4483-9f9c-591cadd560a2",
"prompt": "Add a small car to the right side of the road and swap the positions of the car and the truck. Place a green highway sign on the left side of the road with the text 'Welcome to Desert Highway'.",
"id": "356",
"save_id": 339,
"images": [
"27ea47ab-f25d-4483-9f9c-591cadd560a2_source.png",
"27ea47ab-f25d-4483-9f9c-591cadd560a2_result.png"
]
},
{
"uuid": "80e99f29-c3ce-43af-a38c-5bb3a665467a",
"prompt": "Swap the positions of the two shoes, remove the green plant from the image, add a shoebox to the right of the shoes, and change the cushion on the sofa to blue.",
"id": "363",
"save_id": 345,
"images": [
"80e99f29-c3ce-43af-a38c-5bb3a665467a_source.png",
"80e99f29-c3ce-43af-a38c-5bb3a665467a_result.png"
]
},
{
"uuid": "c40f9551-8bc3-4c02-9077-83a286e2fb0d",
"prompt": "Add a sleeping white kitten on the chair, remove the bottle of red wine from the table, and replace the liquid in the wine glass with milk.",
"id": "378",
"save_id": 360,
"images": [
"c40f9551-8bc3-4c02-9077-83a286e2fb0d_source.png",
"c40f9551-8bc3-4c02-9077-83a286e2fb0d_result.png"
]
},
{
"uuid": "cf569615-a274-4711-b96c-9d90f183cad8",
"prompt": "Add a digital countdown traffic light above the zebra crossing, set to display '03' seconds, and change the man's posture to a sprinting, accelerating pose. Place a wheeled robot next to the man.",
"id": "446",
"save_id": 368,
"images": [
"cf569615-a274-4711-b96c-9d90f183cad8_source.png",
"cf569615-a274-4711-b96c-9d90f183cad8_result.png"
]
},
{
"uuid": "01e2959c-dcdd-4c80-b301-6507ebe004a9",
"prompt": "Change the headphone case in the image to black and the headphones to sky blue.",
"id": "444",
"save_id": 366,
"images": [
"01e2959c-dcdd-4c80-b301-6507ebe004a9_source.png",
"01e2959c-dcdd-4c80-b301-6507ebe004a9_result.png"
]
},
{
"uuid": "503b51a4-0a88-4467-8bcc-0c7d7841f662",
"prompt": "Remove all the apples from the image and carve the number '2026' in white on the surface of the pumpkin.",
"id": "343",
"save_id": 330,
"images": [
"503b51a4-0a88-4467-8bcc-0c7d7841f662_source.png",
"503b51a4-0a88-4467-8bcc-0c7d7841f662_result.png"
]
},
{
"uuid": "0b519e33-2fea-4b55-877c-5b919d446be2",
"prompt": "Remove the TV on the wall, add a chandelier to the ceiling, change the wooden desk to glass, and place a laptop on the desk.",
"id": "373",
"save_id": 355,
"images": [
"0b519e33-2fea-4b55-877c-5b919d446be2_source.png",
"0b519e33-2fea-4b55-877c-5b919d446be2_result.png"
]
},
{
"uuid": "c1000a79-a62b-4aa2-895f-cabf99f39754",
"prompt": "Change the white self-balancing scooter to red and move it to the right side of the image.",
"id": "472",
"save_id": 387,
"images": [
"c1000a79-a62b-4aa2-895f-cabf99f39754_source.png",
"c1000a79-a62b-4aa2-895f-cabf99f39754_result.png"
]
},
{
"uuid": "c7283c88-eed9-4590-8849-a9a89aef07f0",
"prompt": "Add a blue sailboat and a yellow small boat on the lake, and add a glowing golden text 'Lake Observatory' in the sky area at the top of the image.",
"id": "306",
"save_id": 309,
"images": [
"c7283c88-eed9-4590-8849-a9a89aef07f0_source.png",
"c7283c88-eed9-4590-8849-a9a89aef07f0_result.png"
]
},
{
"uuid": "4a8fbfe5-cf4a-4361-97f2-fc2144b2e791",
"prompt": "Change the pink sand in the hourglass to blue, remove the redwood clock on the right, change the watch strap to brown, and add an ink bottle in front of the watch.",
"id": "324",
"save_id": 319,
"images": [
"4a8fbfe5-cf4a-4361-97f2-fc2144b2e791_source.png",
"4a8fbfe5-cf4a-4361-97f2-fc2144b2e791_result.png"
]
},
{
"uuid": "9e23e85c-f802-4975-9cb7-c7251ca85251",
"prompt": "Add a cyclist on the road in front of the house, place a fire extinguisher below the 'HUS N2' sign and then remove the sign, and remove the streetlight from the image.",
"id": "219",
"save_id": 302,
"images": [
"9e23e85c-f802-4975-9cb7-c7251ca85251_source.png",
"9e23e85c-f802-4975-9cb7-c7251ca85251_result.png"
]
},
{
"uuid": "d3b41308-ed62-4578-8f98-e701eccebbf5",
"prompt": "Change her top to white, add a small sailboat on the sea in the background, and have the girl wear the hat on her head.",
"id": "349",
"save_id": 335,
"images": [
"d3b41308-ed62-4578-8f98-e701eccebbf5_source.png",
"d3b41308-ed62-4578-8f98-e701eccebbf5_result.png"
]
},
{
"uuid": "96c25b04-3b80-48a6-a0d0-a5bdd51c41d0",
"prompt": "Change the text on the notebook from 'I have a plan' to 'Just Do It', recolor the notebook cover to orange, replace the card in the image with a bank card, and add a Rubik’s Cube in the bottom-left corner of the image.",
"id": "466",
"save_id": 384,
"images": [
"96c25b04-3b80-48a6-a0d0-a5bdd51c41d0_source.png",
"96c25b04-3b80-48a6-a0d0-a5bdd51c41d0_result.png"
]
},
{
"uuid": "0d3575ae-1a72-42d5-a16f-22fc02c914b4",
"prompt": "Turn on the air conditioner, add a television below it, and remove the table lamp from the scene.",
"id": "452",
"save_id": 376,
"images": [
"0d3575ae-1a72-42d5-a16f-22fc02c914b4_source.png",
"0d3575ae-1a72-42d5-a16f-22fc02c914b4_result.png"
]
},
{
"uuid": "32d9c645-a9cb-41bc-8a5f-726c25ae727a",
"prompt": "Replace the strawberries in the image with cherries, change the milk to watermelon juice, and remove the spoon from the image.",
"id": "377",
"save_id": 359,
"images": [
"32d9c645-a9cb-41bc-8a5f-726c25ae727a_source.png",
"32d9c645-a9cb-41bc-8a5f-726c25ae727a_result.png"
]
},
{
"uuid": "786233c3-133d-438f-a83e-00c0d918207b",
"prompt": "Remove the coffee machine by the window, swap the positions of the two people closest to the camera, and change the title text from 'Q3 STRATEGY' to 'AI ROADMAP 2030'.",
"id": "361",
"save_id": 343,
"images": [
"786233c3-133d-438f-a83e-00c0d918207b_source.png",
"786233c3-133d-438f-a83e-00c0d918207b_result.png"
]
},
{
"uuid": "0cba7b6b-1ca4-4380-9334-980a5fc1cd55",
"prompt": "Have the boy touch his chin with his right hand, and have the girl touch her hair with her hand.",
"id": "515",
"save_id": 422,
"images": [
"0cba7b6b-1ca4-4380-9334-980a5fc1cd55_source.png",
"0cba7b6b-1ca4-4380-9334-980a5fc1cd55_result.png"
]
},
{
"uuid": "ae9fe749-83f7-42b9-9fd3-8c7db728a705",
"prompt": "Change the groom's suit color to white. Hang a large sign on the left side of the image with the text \"I love you\" in a neon light style.",
"id": "341",
"save_id": 328,
"images": [
"ae9fe749-83f7-42b9-9fd3-8c7db728a705_source.png",
"ae9fe749-83f7-42b9-9fd3-8c7db728a705_result.png"
]
},
{
"uuid": "18181e72-2ba0-4d0b-a88b-cc15ad639efb",
"prompt": "Place a sign reading 'Dream House' in the center of the lawn and add a cardboard box to the bottom-right corner.",
"id": "474",
"save_id": 388,
"images": [
"18181e72-2ba0-4d0b-a88b-cc15ad639efb_source.png",
"18181e72-2ba0-4d0b-a88b-cc15ad639efb_result.png"
]
},
{
"uuid": "b6eae8d4-35c3-46a4-b48f-c16e6d7bfc71",
"prompt": "Change the boy's pose to sitting with his legs crossed. Remove the book from his hands, make him hold a tablet in his right hand, and hold the coffee cup next to him in his left hand.",
"id": "512",
"save_id": 419,
"images": [
"b6eae8d4-35c3-46a4-b48f-c16e6d7bfc71_source.png",
"b6eae8d4-35c3-46a4-b48f-c16e6d7bfc71_result.png"
]
},
{
"uuid": "8c66a99a-5bd2-4b8f-9da5-e702f4d9a7c7",
"prompt": "Change the balloons to pink, remove the ladder from the image, and add the vertical text '2026' in pink on the wall on the right side of the image.",
"id": "471",
"save_id": 386,
"images": [
"8c66a99a-5bd2-4b8f-9da5-e702f4d9a7c7_source.png",
"8c66a99a-5bd2-4b8f-9da5-e702f4d9a7c7_result.png"
]
},
{
"uuid": "6c16bdcc-b492-4ffb-b906-165644f0730f",
"prompt": "Change the sink color to blue and replace the mirror with a round mirror.",
"id": "447",
"save_id": 369,
"images": [
"6c16bdcc-b492-4ffb-b906-165644f0730f_source.png",
"6c16bdcc-b492-4ffb-b906-165644f0730f_result.png"
]
},
{
"uuid": "a8e5572f-e8b7-46c0-8d85-80670c27cf0a",
"prompt": "Remove the mug, printer, and pencil case from the image, and add a white mouse next to the computer.",
"id": "520",
"save_id": 3333,
"images": [
"a8e5572f-e8b7-46c0-8d85-80670c27cf0a_source.png",
"a8e5572f-e8b7-46c0-8d85-80670c27cf0a_result.png"
]
},
{
"uuid": "857e434a-23b8-49be-9dac-944a5166a828",
"prompt": "Remove the umbrella and write the text \"Winter is Coming\" in the sky.",
"id": "454",
"save_id": 377,
"images": [
"857e434a-23b8-49be-9dac-944a5166a828_source.png",
"857e434a-23b8-49be-9dac-944a5166a828_result.png"
]
},
{
"uuid": "8b9a2aa3-d5e6-4df6-9201-ab635b48e9d7",
"prompt": "Have the girl pull the exercise machine downward, show a very painful expression, remove her wristwatch, and change her top to pink.",
"id": "504",
"save_id": 411,
"images": [
"8b9a2aa3-d5e6-4df6-9201-ab635b48e9d7_source.png",
"8b9a2aa3-d5e6-4df6-9201-ab635b48e9d7_result.png"
]
},
{
"uuid": "bc5512d4-41be-44df-802e-594f290333de",
"prompt": "Move the silver mirror to the wall on the left side of the door, add a whiteboard above the door with the artistic text 'HOME SWEET HOME', change the door color to a bright red, and add a pink suitcase to the right of the door.",
"id": "449",
"save_id": 372,
"images": [
"bc5512d4-41be-44df-802e-594f290333de_source.png",
"bc5512d4-41be-44df-802e-594f290333de_result.png"
]
},
{
"uuid": "6046edac-68ff-43bc-bc46-220cdc5af6f0",
"prompt": "Turn on the TV on the wall, showing a Tom and Jerry cartoon. Write 'Successful' on the wall above the TV. Remove the clock in the image, and change all the stools to blue.",
"id": "235",
"save_id": 304,
"images": [
"6046edac-68ff-43bc-bc46-220cdc5af6f0_source.png",
"6046edac-68ff-43bc-bc46-220cdc5af6f0_result.png"
]
},
{
"uuid": "9cb1b6fb-3e12-447a-ac00-7a1ad8a66690",
"prompt": "Replace the lantern with a fire extinguisher, change the carpet to brown, add the text 'Happy Holidays' above the fireplace, and remove the bamboo basket.",
"id": "469",
"save_id": 385,
"images": [
"9cb1b6fb-3e12-447a-ac00-7a1ad8a66690_source.png",
"9cb1b6fb-3e12-447a-ac00-7a1ad8a66690_result.png"
]
},
{
"uuid": "bc83dda5-5a11-424a-8e94-4840cd563213",
"prompt": "Remove the table lamp from the image, shorten the coffee straw to two-thirds of its current length, and have the girl drinking the coffee.",
"id": "510",
"save_id": 417,
"images": [
"bc83dda5-5a11-424a-8e94-4840cd563213_source.png",
"bc83dda5-5a11-424a-8e94-4840cd563213_result.png"
]
},
{
"uuid": "b09e1c15-4a46-47fb-a52d-9a674f57efa1",
"prompt": "Have the girl holding the phone make a peace sign with her free hand, remove the bag she is wearing, and change her top to a silk fabric.",
"id": "501",
"save_id": 408,
"images": [
"b09e1c15-4a46-47fb-a52d-9a674f57efa1_source.png",
"b09e1c15-4a46-47fb-a52d-9a674f57efa1_result.png"
]
},
{
"uuid": "512eaeb9-21fc-4cbb-985a-e68824102cb2",
"prompt": "Have the cat raise its head and look straight ahead. Swap the two bowls on the table, place a power strip in front of the bowls, and remove the bowl on the left after the swap.",
"id": "507",
"save_id": 414,
"images": [
"512eaeb9-21fc-4cbb-985a-e68824102cb2_source.png",
"512eaeb9-21fc-4cbb-985a-e68824102cb2_result.png"
]
},
{
"uuid": "77dd72ed-23c9-4942-891d-fddc3e5c6f3d",
"prompt": "Replace the transparent umbrella in her hand with a black umbrella, change the handle to wood, and make the girl's expression look very anxious.",
"id": "350",
"save_id": 336,
"images": [
"77dd72ed-23c9-4942-891d-fddc3e5c6f3d_source.png",
"77dd72ed-23c9-4942-891d-fddc3e5c6f3d_result.png"
]
},
{
"uuid": "5367b2e2-e10e-4243-b4f5-d586f8defc7e",
"prompt": "Remove the star decoration in the top-right corner, change the blanket on the bed to red, add a wooden plaque on the window, and engrave 'Happy New Year' on the plaque.",
"id": "347",
"save_id": 333,
"images": [
"5367b2e2-e10e-4243-b4f5-d586f8defc7e_source.png",
"5367b2e2-e10e-4243-b4f5-d586f8defc7e_result.png"
]
},
{
"uuid": "a47deb8e-0fa2-4108-b633-1912caecf7df",
"prompt": "Have the girl show a thoughtful expression, add a wristwatch to her right hand, and extend her hair to shoulder length.",
"id": "509",
"save_id": 416,
"images": [
"a47deb8e-0fa2-4108-b633-1912caecf7df_source.png",
"a47deb8e-0fa2-4108-b633-1912caecf7df_result.png"
]
},
{
"uuid": "b278afac-0da1-4494-8b1f-ed0a7feabbfe",
"prompt": "Remove the laptop from the desk and add a marble coffee table in the center of the image.",
"id": "494",
"save_id": 403,
"images": [
"b278afac-0da1-4494-8b1f-ed0a7feabbfe_source.png",
"b278afac-0da1-4494-8b1f-ed0a7feabbfe_result.png"
]
},
{
"uuid": "4e272e4e-deb8-4eb4-8447-6cc289c2fc8b",
"prompt": "Change the number displayed on the phone to '2026.5201314', recolor the pink paper to sky blue, remove the percentage symbol, and add an eraser to the left of the phone.",
"id": "465",
"save_id": 383,
"images": [
"4e272e4e-deb8-4eb4-8447-6cc289c2fc8b_source.png",
"4e272e4e-deb8-4eb4-8447-6cc289c2fc8b_result.png"
]
},
{
"uuid": "db4a7dbc-f095-4a26-8e7c-6dc2a2666d43",
"prompt": "Add faint text saying 'Wildlife Research 2024' in the sky, place a standing deer observing in the foreground, and add a white backpack under the tree.",
"id": "329",
"save_id": 323,
"images": [
"db4a7dbc-f095-4a26-8e7c-6dc2a2666d43_source.png",
"db4a7dbc-f095-4a26-8e7c-6dc2a2666d43_result.png"
]
},
{
"uuid": "d7239c41-e980-4d79-a77d-daf348738dfd",
"prompt": "Have the girl pick up and hold the ball in front of her, and dress her in a pink sports jacket.",
"id": "508",
"save_id": 415,
"images": [
"d7239c41-e980-4d79-a77d-daf348738dfd_source.png",
"d7239c41-e980-4d79-a77d-daf348738dfd_result.png"
]
},
{
"uuid": "2cfdd306-a527-4069-aee2-1414ec74981d",
"prompt": "Add a line of text saying 'RELAX TIME' on the teddy bear's chest and change the color of the headphones it is wearing to orange.",
"id": "325",
"save_id": 320,
"images": [
"2cfdd306-a527-4069-aee2-1414ec74981d_source.png",
"2cfdd306-a527-4069-aee2-1414ec74981d_result.png"
]
},
{
"uuid": "f1c5773c-527f-4c61-9524-f9883c4dd551",
"prompt": "Move the coffee cup to the bottom-right corner, place the potted plant in the top-left corner, and then turn off the computer.",
"id": "518",
"save_id": 425,
"images": [
"f1c5773c-527f-4c61-9524-f9883c4dd551_source.png",
"f1c5773c-527f-4c61-9524-f9883c4dd551_result.png"
]
},
{
"uuid": "bc814e90-d160-4992-892a-0248d1bb6d9d",
"prompt": "Have the girl stand up and look up at the sky.",
"id": "511",
"save_id": 418,
"images": [
"bc814e90-d160-4992-892a-0248d1bb6d9d_source.png",
"bc814e90-d160-4992-892a-0248d1bb6d9d_result.png"
]
},
{
"uuid": "509a1c7b-82bb-4ebe-b8fb-0e637dce2923",
"prompt": "Have the girl perform a big jump and change her top to white.",
"id": "514",
"save_id": 421,
"images": [
"509a1c7b-82bb-4ebe-b8fb-0e637dce2923_source.png",
"509a1c7b-82bb-4ebe-b8fb-0e637dce2923_result.png"
]
},
{
"uuid": "9b153b87-9738-43b2-aa60-86aba6e2922c",
"prompt": "Change the chair to green, move it to the other side of the sofa, and add a fruit box on the table.",
"id": "517",
"save_id": 424,
"images": [
"9b153b87-9738-43b2-aa60-86aba6e2922c_source.png",
"9b153b87-9738-43b2-aa60-86aba6e2922c_result.png"
]
},
{
"uuid": "1a3fd05f-d570-4364-8bd6-d3c4ec8f6cef",
"prompt": "Make the girl’s expression happy and change her top to pink.",
"id": "365",
"save_id": 346,
"images": [
"1a3fd05f-d570-4364-8bd6-d3c4ec8f6cef_source.png",
"1a3fd05f-d570-4364-8bd6-d3c4ec8f6cef_result.png"
]
},
{
"uuid": "82b841ec-7dbc-43e6-ba92-8263d34cac17",
"prompt": "Remove the air conditioner and add a Framed Mona Lisa painting on the wall.",
"id": "448",
"save_id": 370,
"images": [
"82b841ec-7dbc-43e6-ba92-8263d34cac17_source.png",
"82b841ec-7dbc-43e6-ba92-8263d34cac17_result.png"
]
},
{
"uuid": "58bbf1d5-c455-401e-8c6d-adc5592c794a",
"prompt": "Add a seagull standing on the shore, and change the kayak color to blue.",
"id": "359",
"save_id": 341,
"images": [
"58bbf1d5-c455-401e-8c6d-adc5592c794a_source.png",
"58bbf1d5-c455-401e-8c6d-adc5592c794a_result.png"
]
},
{
"uuid": "9ccd61c8-e8c9-4a0e-aeef-b1386c8bfdbb",
"prompt": "Change the red tram to a blue tram and turn the sky into an overcast sky.",
"id": "327",
"save_id": 322,
"images": [
"9ccd61c8-e8c9-4a0e-aeef-b1386c8bfdbb_source.png",
"9ccd61c8-e8c9-4a0e-aeef-b1386c8bfdbb_result.png"
]
},
{
"uuid": "d526275a-f59a-4861-8f68-da23f4bd31bd",
"prompt": "Remove the floor lamp on the left, remove the alarm clock and the plant, and move the yellow toy car to the center of the image.",
"id": "338",
"save_id": 326,
"images": [
"d526275a-f59a-4861-8f68-da23f4bd31bd_source.png",
"d526275a-f59a-4861-8f68-da23f4bd31bd_result.png"
]
},
{
"uuid": "6a2dd3b2-7970-4afe-90b4-3db8379e96f2",
"prompt": "Replace the globe in the image with a bucket of popcorn, remove the green plant, and change the black-and-white painting on the wall to color.",
"id": "376",
"save_id": 358,
"images": [
"6a2dd3b2-7970-4afe-90b4-3db8379e96f2_source.png",
"6a2dd3b2-7970-4afe-90b4-3db8379e96f2_result.png"
]
},
{
"uuid": "6d1d2e61-ce76-4aa5-8dd3-03cde3b935b8",
"prompt": "Replace the cigar with a banana and remove the cookies from the image.",
"id": "362",
"save_id": 344,
"images": [
"6d1d2e61-ce76-4aa5-8dd3-03cde3b935b8_source.png",
"6d1d2e61-ce76-4aa5-8dd3-03cde3b935b8_result.png"
]
},
{
"uuid": "f61e7907-d580-463e-8ac8-3242eda0552b",
"prompt": "Remove the lemons outside the bowl, change the man's shirt color to blue, and have the girl pick up a lemon from the bowl and hand it to the man.",
"id": "481",
"save_id": 394,
"images": [
"f61e7907-d580-463e-8ac8-3242eda0552b_source.png",
"f61e7907-d580-463e-8ac8-3242eda0552b_result.png"
]
},
{
"uuid": "c61d1f95-60cd-4e09-9308-38c0c5e6b236",
"prompt": "Change the shirt color to bright yellow and make her wave her hand.",
"id": "493",
"save_id": 402,
"images": [
"c61d1f95-60cd-4e09-9308-38c0c5e6b236_source.png",
"c61d1f95-60cd-4e09-9308-38c0c5e6b236_result.png"
]
},
{
"uuid": "e4a00cdb-215a-4ba0-aab7-0e600cb1054f",
"prompt": "Change the house number to '666', recolor the door to blood red, and remove the outdoor air-conditioning unit.",
"id": "475",
"save_id": 389,
"images": [
"e4a00cdb-215a-4ba0-aab7-0e600cb1054f_source.png",
"e4a00cdb-215a-4ba0-aab7-0e600cb1054f_result.png"
]
},
{
"uuid": "97f01105-176e-48bd-930a-8605333237b7",
"prompt": "Add a running robotic dog next to the child, change the vest color from yellow to green, change the rain boots to light pink, and make the boy look very anxious.",
"id": "332",
"save_id": 324,
"images": [
"97f01105-176e-48bd-930a-8605333237b7_source.png",
"97f01105-176e-48bd-930a-8605333237b7_result.png"
]
},
{
"uuid": "523a14d9-0a0b-4534-8131-121e69f04866",
"prompt": "Remove all information related to Earth, Saturn, and Pluto from the image.",
"id": "476",
"save_id": 390,
"images": [
"523a14d9-0a0b-4534-8131-121e69f04866_source.png",
"523a14d9-0a0b-4534-8131-121e69f04866_result.png"
]
},
{
"uuid": "6b9f1b9e-7e29-4e74-8e14-478af963cba1",
"prompt": "Add the black text 'Machine Learning' in the center of the laptop screen, remove the circular ornament on the left, place an open heavy dictionary in front of the laptop, and remove the stone in the lower-left corner of the desk.",
"id": "205",
"save_id": 301,
"images": [
"6b9f1b9e-7e29-4e74-8e14-478af963cba1_source.png",
"6b9f1b9e-7e29-4e74-8e14-478af963cba1_result.png"
]
},
{
"uuid": "4271d87a-023f-457d-a3d6-a6143d25f323",
"prompt": "Have the girl pick up the water bottle in the center and drink from it, change the pants to the same color as the top, and add a white towel around her neck.",
"id": "303",
"save_id": 306,
"images": [
"4271d87a-023f-457d-a3d6-a6143d25f323_source.png",
"4271d87a-023f-457d-a3d6-a6143d25f323_result.png"
]
},
{
"uuid": "f913fe83-85ca-4eb0-be3e-3a098c6482e7",
"prompt": "Remove the small potted plant from the table, change the chandelier color to warm yellow, remove the blue plastic box, and add a wooden sign on the wall with the text '努力学习' in a warm, cute handwritten style.",
"id": "311",
"save_id": 312,
"images": [
"f913fe83-85ca-4eb0-be3e-3a098c6482e7_source.png",
"f913fe83-85ca-4eb0-be3e-3a098c6482e7_result.png"
]
},
{
"uuid": "97ed6a13-c528-494c-8de4-3fb9f3f523e9",
"prompt": "Remove the scarf from the girl and have her sit on the sofa, replace the green plant in the image with a guitar, and add a blue robot vacuum on the floor.",
"id": "369",
"save_id": 351,
"images": [
"97ed6a13-c528-494c-8de4-3fb9f3f523e9_source.png",
"97ed6a13-c528-494c-8de4-3fb9f3f523e9_result.png"
]
}
] |