File size: 193,232 Bytes
fabf9c5 |
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 |
index image_path question answer category
1 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_1.png What is the position of the circle relative to the diamond? A. right B. bottom left C. left D. above A location
2 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_2.png What is the position of the trapezoid relative to the pentagon? A. right B. bottom left C. top left D. left A location
3 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_3.png What is the position of the parallelogram relative to the diamond? A. below B. right C. above D. left B location
4 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_4.png What is the position of the hexagon relative to the circle? A. left B. top right C. bottom left D. top left B location
5 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_5.png What is the position of the diamond relative to the parallelogram? A. bottom left B. top left C. top right D. right A location
6 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_6.png What is the position of the circle relative to the diamond? A. above B. left C. top left D. below D location
7 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_7.png What is the position of the diamond relative to the triangle? A. top right B. below C. left D. above B location
8 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_8.png What is the position of the hexagon relative to the heart? A. above B. right C. below D. top right C location
9 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_9.png What is the position of the pentagon relative to the trapezoid? A. below B. left C. right D. top right A location
10 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_10.png What is the position of the parallelogram relative to the diamond? A. above B. bottom right C. right D. left D location
11 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_11.png What is the position of the triangle relative to the parallelogram? A. top left B. right C. top right D. below D location
12 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_12.png What is the position of the heart relative to the hexagon? A. right B. top left C. below D. bottom left A location
13 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_13.png What is the position of the parallelogram relative to the pentagon? A. left B. top left C. top right D. bottom right D location
14 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_14.png What is the position of the heart relative to the hexagon? A. above B. top right C. below D. right C location
15 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_15.png What is the position of the circle relative to the pentagon? A. below B. above C. top left D. left A location
16 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_16.png What is the position of the square relative to the pentagon? A. left B. top right C. above D. bottom right A location
17 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_17.png What is the position of the heart relative to the hexagon? A. above B. left C. right D. below B location
18 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_18.png What is the position of the diamond relative to the square? A. below B. above C. right D. top right A location
19 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_19.png What is the position of the trapezoid relative to the triangle? A. above B. left C. below D. right D location
20 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_20.png What is the position of the trapezoid relative to the square? A. below B. above C. top right D. left D location
21 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_21.png What is the position of the heart relative to the square? A. bottom left B. right C. top left D. left B location
22 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_22.png What is the position of the pentagon relative to the triangle? A. top left B. bottom left C. left D. bottom right D location
23 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_23.png What is the position of the heart relative to the circle? A. above B. left C. bottom right D. right B location
24 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_24.png What is the position of the hexagon relative to the circle? A. below B. left C. right D. above D location
25 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_25.png What is the position of the square relative to the parallelogram? A. bottom left B. below C. right D. above D location
26 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_26.png What is the position of the parallelogram relative to the diamond? A. above B. below C. left D. top right C location
27 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_27.png What is the position of the heart relative to the circle? A. right B. below C. bottom left D. left A location
28 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_28.png What is the position of the square relative to the circle? A. below B. left C. above D. bottom left C location
29 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_29.png What is the position of the triangle relative to the diamond? A. below B. above C. bottom right D. left D location
30 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_30.png What is the position of the circle relative to the trapezoid? A. bottom right B. right C. above D. left D location
31 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_31.png What is the position of the parallelogram relative to the circle? A. right B. left C. bottom left D. below A location
32 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_32.png What is the position of the circle relative to the square? A. left B. above C. right D. bottom right A location
33 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_33.png What is the position of the pentagon relative to the diamond? A. below B. above C. top right D. left D location
34 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_34.png What is the position of the triangle relative to the pentagon? A. above B. bottom left C. top left D. right D location
35 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_35.png What is the position of the pentagon relative to the square? A. right B. left C. below D. above D location
36 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_36.png What is the position of the pentagon relative to the trapezoid? A. below B. bottom right C. left D. top right C location
37 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_37.png What is the position of the pentagon relative to the circle? A. top left B. right C. below D. above C location
38 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_38.png What is the position of the square relative to the circle? A. above B. bottom left C. bottom right D. below A location
39 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_39.png What is the position of the square relative to the circle? A. right B. below C. top right D. left D location
40 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_40.png What is the position of the heart relative to the diamond? A. left B. right C. below D. above C location
41 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_41.png What is the position of the square relative to the pentagon? A. top left B. above C. right D. bottom left D location
42 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_42.png What is the position of the diamond relative to the circle? A. left B. right C. above D. top left B location
43 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_43.png What is the position of the triangle relative to the heart? A. left B. top left C. right D. above C location
44 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_44.png What is the position of the pentagon relative to the trapezoid? A. bottom right B. above C. bottom left D. top left A location
45 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_45.png What is the position of the parallelogram relative to the triangle? A. bottom right B. above C. left D. bottom left B location
46 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_46.png What is the position of the square relative to the diamond? A. left B. top right C. below D. top left C location
47 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_47.png What is the position of the parallelogram relative to the diamond? A. top left B. above C. top right D. below D location
48 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_48.png What is the position of the circle relative to the heart? A. top left B. below C. top right D. bottom left C location
49 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_49.png What is the position of the parallelogram relative to the pentagon? A. below B. left C. right D. top right A location
50 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_50.png What is the position of the parallelogram relative to the square? A. left B. top right C. above D. bottom right D location
51 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_51.png What is the position of the hexagon relative to the pentagon? A. bottom left B. left C. top right D. bottom right D location
52 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_52.png What is the position of the trapezoid relative to the pentagon? A. below B. above C. bottom right D. left B location
53 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_53.png What is the position of the circle relative to the pentagon? A. right B. bottom right C. left D. above C location
54 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_54.png What is the position of the hexagon relative to the triangle? A. below B. top left C. above D. top right A location
55 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_55.png What is the position of the parallelogram relative to the triangle? A. bottom left B. right C. below D. above D location
56 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_56.png What is the position of the circle relative to the heart? A. top left B. right C. above D. below B location
57 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_57.png What is the position of the parallelogram relative to the heart? A. left B. below C. right D. top left C location
58 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_58.png What is the position of the heart relative to the hexagon? A. bottom right B. top right C. left D. bottom left B location
59 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_59.png What is the position of the trapezoid relative to the circle? A. left B. above C. below D. right C location
60 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_60.png What is the position of the heart relative to the parallelogram? A. top left B. above C. below D. left C location
61 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_61.png What is the position of the heart relative to the square? A. above B. below C. right D. bottom right A location
62 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_62.png What is the position of the triangle relative to the trapezoid? A. top left B. right C. below D. left B location
63 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_63.png What is the position of the trapezoid relative to the hexagon? A. below B. left C. bottom right D. above B location
64 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_64.png What is the position of the trapezoid relative to the parallelogram? A. below B. left C. right D. top left C location
65 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_65.png What is the position of the parallelogram relative to the hexagon? A. bottom left B. right C. above D. below B location
66 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_66.png What is the position of the parallelogram relative to the diamond? A. right B. above C. below D. left D location
67 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_67.png What is the position of the parallelogram relative to the hexagon? A. bottom left B. right C. top left D. below B location
68 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_68.png What is the position of the heart relative to the trapezoid? A. bottom right B. top right C. left D. below B location
69 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_69.png What is the position of the trapezoid relative to the hexagon? A. bottom right B. top right C. left D. right C location
70 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_70.png What is the position of the heart relative to the parallelogram? A. bottom right B. above C. left D. top left A location
71 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_71.png What is the position of the hexagon relative to the trapezoid? A. above B. right C. below D. left B location
72 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_72.png What is the position of the circle relative to the diamond? A. top right B. above C. right D. below D location
73 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_73.png What is the position of the heart relative to the square? A. bottom right B. bottom left C. below D. above D location
74 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_74.png What is the position of the diamond relative to the pentagon? A. above B. bottom right C. left D. below C location
75 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_75.png What is the position of the diamond relative to the parallelogram? A. below B. left C. bottom right D. above D location
76 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_76.png What is the position of the triangle relative to the square? A. bottom left B. top right C. above D. right A location
77 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_77.png What is the position of the circle relative to the diamond? A. right B. bottom left C. top left D. above A location
78 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_78.png What is the position of the diamond relative to the heart? A. right B. above C. left D. below B location
79 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_79.png What is the position of the triangle relative to the hexagon? A. bottom left B. bottom right C. left D. above D location
80 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_80.png What is the position of the parallelogram relative to the diamond? A. above B. right C. left D. bottom right C location
81 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_81.png What is the position of the circle relative to the triangle? A. left B. bottom right C. right D. above D location
82 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_82.png What is the position of the hexagon relative to the diamond? A. above B. right C. below D. left A location
83 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_83.png What is the position of the circle relative to the heart? A. right B. above C. below D. left B location
84 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_84.png What is the position of the heart relative to the circle? A. right B. above C. below D. bottom right B location
85 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_85.png What is the position of the square relative to the heart? A. left B. above C. below D. right D location
86 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_86.png What is the position of the parallelogram relative to the hexagon? A. below B. right C. top left D. left A location
87 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_87.png What is the position of the parallelogram relative to the hexagon? A. right B. top right C. below D. left D location
88 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_88.png What is the position of the diamond relative to the trapezoid? A. left B. below C. top right D. right A location
89 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_89.png What is the position of the circle relative to the hexagon? A. below B. above C. left D. bottom left B location
90 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_90.png What is the position of the heart relative to the diamond? A. left B. above C. top left D. below D location
91 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_91.png What is the position of the square relative to the triangle? A. left B. bottom left C. below D. above D location
92 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_92.png What is the position of the triangle relative to the heart? A. bottom left B. above C. right D. left B location
93 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_93.png What is the position of the pentagon relative to the square? A. bottom right B. top left C. top right D. bottom left C location
94 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_94.png What is the position of the parallelogram relative to the hexagon? A. bottom right B. top right C. top left D. below B location
95 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_95.png What is the position of the circle relative to the pentagon? A. below B. right C. top left D. above B location
96 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_96.png What is the position of the heart relative to the trapezoid? A. left B. above C. bottom right D. top right A location
97 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_97.png What is the position of the square relative to the hexagon? A. left B. below C. right D. top right A location
98 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_98.png What is the position of the trapezoid relative to the triangle? A. below B. top left C. right D. left C location
99 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_99.png What is the position of the trapezoid relative to the square? A. above B. below C. right D. top left C location
100 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_100.png What is the position of the trapezoid relative to the square? A. bottom right B. below C. right D. above D location
101 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_101.png What is the position of the parallelogram relative to the diamond? A. top right B. bottom right C. left D. right C location
102 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_102.png What is the position of the heart relative to the hexagon? A. right B. left C. above D. below D location
103 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_103.png What is the position of the parallelogram relative to the square? A. bottom left B. right C. above D. top left B location
104 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_104.png What is the position of the trapezoid relative to the square? A. bottom left B. below C. bottom right D. above D location
105 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_105.png What is the position of the heart relative to the hexagon? A. below B. bottom right C. left D. top right C location
106 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_106.png What is the position of the triangle relative to the square? A. bottom left B. left C. above D. bottom right C location
107 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_107.png What is the position of the triangle relative to the circle? A. bottom left B. above C. right D. below B location
108 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_108.png What is the position of the heart relative to the pentagon? A. bottom left B. bottom right C. below D. above D location
109 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_109.png What is the position of the trapezoid relative to the triangle? A. bottom right B. top right C. bottom left D. above A location
110 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_110.png What is the position of the triangle relative to the heart? A. bottom right B. above C. left D. right B location
111 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_111.png What is the position of the square relative to the trapezoid? A. bottom right B. top left C. left D. above A location
112 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_112.png What is the position of the square relative to the circle? A. bottom right B. left C. below D. above B location
113 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_113.png What is the position of the parallelogram relative to the square? A. bottom left B. above C. top right D. top left A location
114 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_114.png What is the position of the parallelogram relative to the circle? A. bottom left B. above C. bottom right D. below B location
115 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_115.png What is the position of the heart relative to the parallelogram? A. right B. left C. top right D. bottom right B location
116 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_116.png What is the position of the hexagon relative to the square? A. top right B. below C. right D. above B location
117 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_117.png What is the position of the diamond relative to the triangle? A. below B. right C. above D. top left A location
118 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_118.png What is the position of the square relative to the hexagon? A. bottom left B. top left C. right D. top right B location
119 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_119.png What is the position of the trapezoid relative to the diamond? A. top left B. top right C. bottom right D. above C location
120 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_120.png What is the position of the circle relative to the hexagon? A. above B. top right C. left D. below C location
121 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_121.png What is the position of the circle relative to the trapezoid? A. below B. above C. left D. bottom right C location
122 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_122.png What is the position of the circle relative to the triangle? A. above B. right C. below D. top right C location
123 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_123.png What is the position of the parallelogram relative to the triangle? A. below B. top right C. above D. left D location
124 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_124.png What is the position of the triangle relative to the trapezoid? A. bottom right B. above C. right D. left D location
125 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_125.png What is the position of the circle relative to the square? A. bottom left B. bottom right C. top right D. left B location
126 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_126.png What is the position of the parallelogram relative to the circle? A. below B. left C. right D. above D location
127 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_127.png What is the position of the circle relative to the hexagon? A. left B. top left C. below D. right D location
128 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_128.png What is the position of the pentagon relative to the diamond? A. bottom right B. right C. bottom left D. top left D location
129 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_129.png What is the position of the parallelogram relative to the diamond? A. right B. above C. top right D. left D location
130 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_130.png What is the position of the hexagon relative to the square? A. above B. bottom right C. bottom left D. left A location
131 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_131.png What is the position of the triangle relative to the pentagon? A. right B. bottom left C. left D. above A location
132 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_132.png What is the position of the circle relative to the pentagon? A. right B. top right C. below D. above C location
133 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_133.png What is the position of the trapezoid relative to the heart? A. bottom right B. below C. above D. left C location
134 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_134.png What is the position of the parallelogram relative to the circle? A. above B. left C. top left D. below D location
135 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_135.png What is the position of the pentagon relative to the parallelogram? A. above B. left C. bottom right D. bottom left C location
136 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_136.png What is the position of the circle relative to the square? A. bottom left B. bottom right C. right D. top right A location
137 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_137.png What is the position of the pentagon relative to the triangle? A. top right B. top left C. bottom right D. below B location
138 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_138.png What is the position of the heart relative to the diamond? A. left B. above C. right D. below A location
139 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_139.png What is the position of the diamond relative to the triangle? A. below B. top left C. above D. right D location
140 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_140.png What is the position of the heart relative to the parallelogram? A. top left B. top right C. right D. bottom right A location
141 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_141.png What is the position of the pentagon relative to the trapezoid? A. above B. bottom left C. below D. bottom right A location
142 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_142.png What is the position of the parallelogram relative to the trapezoid? A. right B. left C. above D. below B location
143 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_143.png What is the position of the hexagon relative to the square? A. above B. left C. below D. right C location
144 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_144.png What is the position of the triangle relative to the pentagon? A. left B. top left C. below D. top right C location
145 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_145.png What is the position of the hexagon relative to the pentagon? A. bottom left B. top left C. bottom right D. top right B location
146 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_146.png What is the position of the pentagon relative to the diamond? A. below B. top right C. bottom right D. top left B location
147 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_147.png What is the position of the square relative to the diamond? A. bottom right B. bottom left C. above D. top left B location
148 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_148.png What is the position of the triangle relative to the pentagon? A. top left B. left C. above D. right D location
149 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_149.png What is the position of the triangle relative to the hexagon? A. top right B. bottom right C. right D. left D location
150 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_150.png What is the position of the diamond relative to the pentagon? A. bottom right B. below C. right D. above D location
151 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_151.png What is the position of the trapezoid relative to the square? A. left B. top right C. right D. below D location
152 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_152.png What is the position of the diamond relative to the pentagon? A. left B. bottom left C. bottom right D. above D location
153 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_153.png What is the position of the diamond relative to the heart? A. right B. above C. bottom left D. bottom right C location
154 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_154.png What is the position of the parallelogram relative to the pentagon? A. bottom left B. above C. below D. right D location
155 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_155.png What is the position of the hexagon relative to the triangle? A. left B. below C. above D. bottom right A location
156 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_156.png What is the position of the circle relative to the hexagon? A. top right B. bottom right C. above D. left D location
157 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_157.png What is the position of the trapezoid relative to the square? A. above B. bottom left C. right D. bottom right A location
158 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_158.png What is the position of the diamond relative to the hexagon? A. below B. left C. top left D. right A location
159 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_159.png What is the position of the triangle relative to the square? A. left B. top right C. top left D. below D location
160 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_160.png What is the position of the hexagon relative to the trapezoid? A. top left B. below C. right D. left C location
161 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_161.png What is the position of the hexagon relative to the diamond? A. above B. bottom right C. left D. bottom left A location
162 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_162.png What is the position of the diamond relative to the hexagon? A. above B. top right C. bottom right D. bottom left C location
163 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_163.png What is the position of the pentagon relative to the parallelogram? A. below B. above C. bottom right D. left B location
164 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_164.png What is the position of the hexagon relative to the pentagon? A. bottom left B. top left C. below D. top right B location
165 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_165.png What is the position of the heart relative to the parallelogram? A. bottom right B. left C. above D. below C location
166 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_166.png What is the position of the square relative to the diamond? A. top right B. top left C. below D. left C location
167 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_167.png What is the position of the pentagon relative to the heart? A. below B. right C. above D. top right A location
168 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_168.png What is the position of the diamond relative to the square? A. right B. left C. above D. bottom left C location
169 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_169.png What is the position of the triangle relative to the square? A. bottom left B. above C. right D. left C location
170 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_170.png What is the position of the heart relative to the pentagon? A. top left B. bottom left C. bottom right D. right B location
171 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_171.png What is the position of the square relative to the heart? A. bottom right B. below C. left D. top right C location
172 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_172.png What is the position of the square relative to the trapezoid? A. top left B. below C. top right D. right B location
173 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_173.png What is the position of the square relative to the hexagon? A. top right B. above C. left D. below C location
174 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_174.png What is the position of the trapezoid relative to the square? A. top right B. left C. bottom right D. right B location
175 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_175.png What is the position of the pentagon relative to the triangle? A. top right B. right C. below D. top left C location
176 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_176.png What is the position of the trapezoid relative to the square? A. right B. top right C. left D. above C location
177 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_177.png What is the position of the square relative to the trapezoid? A. top left B. left C. below D. top right D location
178 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_178.png What is the position of the triangle relative to the parallelogram? A. right B. above C. top left D. below A location
179 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_179.png What is the position of the square relative to the pentagon? A. right B. above C. top left D. bottom left D location
180 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_180.png What is the position of the circle relative to the heart? A. left B. bottom right C. above D. top right B location
181 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_181.png What is the position of the heart relative to the hexagon? A. bottom right B. above C. top left D. bottom left A location
182 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_182.png What is the position of the diamond relative to the pentagon? A. bottom left B. top left C. top right D. below C location
183 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_183.png What is the position of the diamond relative to the circle? A. above B. left C. bottom right D. right B location
184 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_184.png What is the position of the parallelogram relative to the circle? A. right B. left C. above D. below D location
185 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_185.png What is the position of the square relative to the trapezoid? A. left B. bottom right C. bottom left D. top right B location
186 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_186.png What is the position of the square relative to the parallelogram? A. bottom right B. below C. left D. above C location
187 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_187.png What is the position of the diamond relative to the trapezoid? A. right B. above C. bottom right D. below B location
188 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_188.png What is the position of the circle relative to the square? A. bottom left B. left C. right D. above C location
189 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_189.png What is the position of the triangle relative to the square? A. below B. left C. right D. above C location
190 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_190.png What is the position of the pentagon relative to the triangle? A. above B. left C. top right D. bottom right B location
191 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_191.png What is the position of the pentagon relative to the triangle? A. right B. below C. left D. top right C location
192 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_192.png What is the position of the trapezoid relative to the square? A. right B. top right C. left D. above C location
193 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_193.png What is the position of the diamond relative to the hexagon? A. left B. bottom right C. below D. above A location
194 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_194.png What is the position of the trapezoid relative to the pentagon? A. top left B. left C. below D. right D location
195 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_195.png What is the position of the parallelogram relative to the pentagon? A. above B. left C. right D. top right B location
196 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_196.png What is the position of the trapezoid relative to the pentagon? A. right B. top left C. above D. below A location
197 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_197.png What is the position of the parallelogram relative to the diamond? A. above B. bottom left C. top left D. bottom right D location
198 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_198.png What is the position of the pentagon relative to the triangle? A. above B. bottom right C. below D. left A location
199 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_199.png What is the position of the diamond relative to the circle? A. right B. left C. below D. above B location
200 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_200.png What is the position of the pentagon relative to the trapezoid? A. above B. below C. bottom left D. right A location
201 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_201.png What is the position of the circle relative to the hexagon? A. above B. below C. right D. bottom left A location
202 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_202.png What is the position of the pentagon relative to the diamond? A. below B. bottom right C. left D. above C location
203 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_203.png What is the position of the triangle relative to the heart? A. top left B. below C. left D. right B location
204 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_204.png What is the position of the trapezoid relative to the square? A. below B. bottom right C. bottom left D. top left D location
205 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_205.png What is the position of the circle relative to the heart? A. top left B. right C. top right D. bottom right A location
206 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_206.png What is the position of the pentagon relative to the trapezoid? A. below B. right C. top right D. top left D location
207 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_207.png What is the position of the triangle relative to the heart? A. right B. top left C. above D. below D location
208 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_208.png What is the position of the trapezoid relative to the heart? A. top right B. above C. left D. bottom right D location
209 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_209.png What is the position of the square relative to the pentagon? A. top left B. top right C. bottom left D. right C location
210 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_210.png What is the position of the triangle relative to the circle? A. bottom right B. below C. bottom left D. above D location
211 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_211.png What is the position of the diamond relative to the square? A. left B. bottom right C. below D. above D location
212 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_212.png What is the position of the circle relative to the pentagon? A. right B. above C. below D. left A location
213 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_213.png What is the position of the diamond relative to the square? A. top right B. above C. left D. below C location
214 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_214.png What is the position of the triangle relative to the diamond? A. bottom left B. top left C. above D. bottom right A location
215 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_215.png What is the position of the hexagon relative to the heart? A. left B. right C. bottom right D. top right A location
216 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_216.png What is the position of the pentagon relative to the diamond? A. top left B. right C. below D. left C location
217 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_217.png What is the position of the triangle relative to the heart? A. top right B. below C. bottom right D. left D location
218 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_218.png What is the position of the square relative to the circle? A. top left B. top right C. bottom left D. left B location
219 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_219.png What is the position of the triangle relative to the diamond? A. left B. above C. below D. right D location
220 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_220.png What is the position of the trapezoid relative to the hexagon? A. left B. below C. bottom right D. above D location
221 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_221.png What is the position of the square relative to the pentagon? A. bottom right B. above C. left D. right C location
222 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_222.png What is the position of the heart relative to the hexagon? A. above B. left C. below D. right A location
223 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_223.png What is the position of the circle relative to the triangle? A. bottom left B. right C. left D. below B location
224 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_224.png What is the position of the pentagon relative to the parallelogram? A. bottom left B. bottom right C. right D. above D location
225 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_225.png What is the position of the parallelogram relative to the hexagon? A. above B. bottom right C. left D. below C location
226 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_226.png What is the position of the heart relative to the diamond? A. top right B. bottom right C. left D. above C location
227 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_227.png What is the position of the triangle relative to the square? A. below B. bottom left C. top left D. right C location
228 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_228.png What is the position of the heart relative to the hexagon? A. left B. below C. above D. bottom left C location
229 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_229.png What is the position of the square relative to the triangle? A. top right B. right C. above D. left D location
230 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_230.png What is the position of the diamond relative to the hexagon? A. top left B. right C. below D. above C location
231 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_231.png What is the position of the diamond relative to the square? A. right B. below C. bottom left D. top left A location
232 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_232.png What is the position of the diamond relative to the hexagon? A. left B. top right C. right D. below D location
233 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_233.png What is the position of the parallelogram relative to the pentagon? A. below B. top right C. top left D. above A location
234 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_234.png What is the position of the hexagon relative to the triangle? A. bottom right B. below C. top right D. left D location
235 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_235.png What is the position of the circle relative to the trapezoid? A. above B. top left C. left D. right D location
236 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_236.png What is the position of the trapezoid relative to the parallelogram? A. bottom right B. bottom left C. above D. below C location
237 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_237.png What is the position of the square relative to the parallelogram? A. below B. left C. right D. bottom left C location
238 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_238.png What is the position of the parallelogram relative to the triangle? A. below B. left C. above D. right A location
239 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_239.png What is the position of the trapezoid relative to the circle? A. below B. bottom left C. bottom right D. above D location
240 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_240.png What is the position of the parallelogram relative to the heart? A. top right B. left C. below D. bottom right A location
241 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_241.png What is the position of the parallelogram relative to the hexagon? A. bottom left B. bottom right C. below D. above D location
242 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_242.png What is the position of the hexagon relative to the circle? A. top left B. above C. bottom left D. bottom right D location
243 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_243.png What is the position of the diamond relative to the hexagon? A. above B. right C. top right D. below D location
244 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_244.png What is the position of the diamond relative to the hexagon? A. right B. above C. bottom left D. bottom right B location
245 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_245.png What is the position of the pentagon relative to the parallelogram? A. above B. bottom right C. top right D. left D location
246 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_246.png What is the position of the square relative to the heart? A. right B. above C. top left D. below A location
247 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_247.png What is the position of the parallelogram relative to the triangle? A. top left B. left C. right D. below D location
248 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_248.png What is the position of the parallelogram relative to the triangle? A. below B. left C. top right D. above B location
249 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_249.png What is the position of the diamond relative to the hexagon? A. below B. bottom right C. top right D. bottom left C location
250 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_250.png What is the position of the heart relative to the parallelogram? A. right B. top left C. bottom right D. bottom left D location
251 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_251.png What is the position of the square relative to the trapezoid? A. right B. below C. top left D. top right B location
252 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_252.png What is the position of the diamond relative to the hexagon? A. top left B. left C. bottom right D. top right C location
253 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_253.png What is the position of the heart relative to the square? A. above B. top right C. bottom left D. top left C location
254 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_254.png What is the position of the hexagon relative to the pentagon? A. right B. top right C. bottom right D. left D location
255 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_255.png What is the position of the circle relative to the hexagon? A. right B. bottom left C. top right D. top left B location
256 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_256.png What is the position of the square relative to the hexagon? A. right B. left C. below D. above D location
257 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_257.png What is the position of the triangle relative to the heart? A. left B. right C. below D. above D location
258 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_258.png What is the position of the hexagon relative to the parallelogram? A. bottom right B. left C. below D. above B location
259 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_259.png What is the position of the pentagon relative to the heart? A. top right B. below C. bottom right D. left D location
260 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_260.png What is the position of the hexagon relative to the circle? A. bottom left B. below C. top left D. right C location
261 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_261.png What is the position of the hexagon relative to the square? A. left B. right C. above D. bottom right A location
262 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_262.png What is the position of the trapezoid relative to the square? A. bottom right B. left C. top right D. below B location
263 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_263.png What is the position of the hexagon relative to the diamond? A. top right B. below C. right D. left B location
264 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_264.png What is the position of the hexagon relative to the circle? A. below B. left C. right D. top right A location
265 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_265.png What is the position of the diamond relative to the square? A. bottom left B. above C. bottom right D. below B location
266 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_266.png What is the position of the pentagon relative to the circle? A. bottom left B. top left C. above D. bottom right D location
267 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_267.png What is the position of the pentagon relative to the circle? A. above B. below C. right D. left D location
268 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_268.png What is the position of the heart relative to the triangle? A. above B. top right C. top left D. below D location
269 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_269.png What is the position of the trapezoid relative to the triangle? A. left B. top left C. above D. right D location
270 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_270.png What is the position of the circle relative to the parallelogram? A. left B. top left C. below D. right C location
271 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_271.png What is the position of the triangle relative to the circle? A. left B. above C. below D. right B location
272 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_272.png What is the position of the square relative to the triangle? A. top right B. below C. bottom right D. top left D location
273 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_273.png What is the position of the heart relative to the triangle? A. bottom left B. top left C. right D. above C location
274 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_274.png What is the position of the diamond relative to the triangle? A. above B. left C. below D. bottom right A location
275 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_275.png What is the position of the triangle relative to the hexagon? A. left B. top right C. above D. below D location
276 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_276.png What is the position of the diamond relative to the circle? A. below B. top left C. above D. left A location
277 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_277.png What is the position of the square relative to the triangle? A. bottom right B. top right C. left D. right C location
278 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_278.png What is the position of the heart relative to the pentagon? A. top right B. below C. bottom left D. left A location
279 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_279.png What is the position of the heart relative to the triangle? A. above B. top left C. left D. below D location
280 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_280.png What is the position of the trapezoid relative to the hexagon? A. above B. right C. bottom left D. bottom right C location
281 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_281.png What is the position of the triangle relative to the square? A. top right B. bottom left C. left D. bottom right D location
282 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_282.png What is the position of the trapezoid relative to the square? A. left B. below C. right D. above D location
283 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_283.png What is the position of the heart relative to the parallelogram? A. top right B. top left C. bottom right D. bottom left D location
284 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_284.png What is the position of the square relative to the circle? A. right B. above C. top right D. bottom left D location
285 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_285.png What is the position of the parallelogram relative to the diamond? A. left B. below C. top right D. above A location
286 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_286.png What is the position of the trapezoid relative to the diamond? A. top right B. bottom left C. left D. below A location
287 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_287.png What is the position of the heart relative to the circle? A. left B. right C. below D. top right C location
288 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_288.png What is the position of the diamond relative to the trapezoid? A. left B. right C. bottom right D. top right A location
289 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_289.png What is the position of the parallelogram relative to the square? A. bottom left B. right C. above D. bottom right C location
290 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_290.png What is the position of the heart relative to the parallelogram? A. bottom right B. above C. left D. right B location
291 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_291.png What is the position of the triangle relative to the heart? A. left B. bottom left C. above D. below C location
292 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_292.png What is the position of the circle relative to the triangle? A. above B. left C. right D. top left C location
293 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_293.png What is the position of the trapezoid relative to the hexagon? A. right B. above C. bottom right D. below B location
294 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_294.png What is the position of the circle relative to the pentagon? A. right B. top left C. below D. above C location
295 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_295.png What is the position of the heart relative to the parallelogram? A. bottom right B. top left C. top right D. bottom left C location
296 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_296.png What is the position of the square relative to the diamond? A. below B. top right C. right D. top left D location
297 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_297.png What is the position of the trapezoid relative to the parallelogram? A. above B. bottom left C. left D. below A location
298 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_298.png What is the position of the diamond relative to the parallelogram? A. below B. bottom right C. top left D. top right C location
299 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_299.png What is the position of the hexagon relative to the triangle? A. below B. top left C. left D. right A location
300 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_300.png What is the position of the heart relative to the hexagon? A. bottom right B. left C. below D. right B location
301 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_301.png What is the position of the circle relative to the triangle? A. left B. top right C. below D. top left C location
302 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_302.png What is the position of the square relative to the circle? A. below B. bottom right C. left D. right C location
303 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_303.png What is the position of the diamond relative to the square? A. right B. top left C. left D. below D location
304 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_304.png What is the position of the diamond relative to the pentagon? A. bottom right B. left C. below D. above D location
305 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_305.png What is the position of the diamond relative to the hexagon? A. below B. left C. bottom right D. right B location
306 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_306.png What is the position of the circle relative to the pentagon? A. bottom right B. left C. below D. right B location
307 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_307.png What is the position of the circle relative to the pentagon? A. left B. below C. above D. bottom left C location
308 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_308.png What is the position of the diamond relative to the circle? A. top left B. above C. top right D. below D location
309 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_309.png What is the position of the square relative to the circle? A. left B. right C. below D. top left B location
310 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_310.png What is the position of the hexagon relative to the pentagon? A. below B. above C. bottom left D. bottom right B location
311 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_311.png What is the position of the triangle relative to the pentagon? A. left B. top left C. right D. bottom left C location
312 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_312.png What is the position of the heart relative to the trapezoid? A. bottom right B. below C. left D. top right C location
313 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_313.png What is the position of the circle relative to the diamond? A. above B. top right C. left D. below D location
314 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_314.png What is the position of the triangle relative to the trapezoid? A. top right B. bottom left C. below D. top left D location
315 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_315.png What is the position of the hexagon relative to the circle? A. bottom left B. bottom right C. top left D. left B location
316 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_316.png What is the position of the diamond relative to the heart? A. right B. below C. above D. bottom left C location
317 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_317.png What is the position of the circle relative to the pentagon? A. below B. left C. above D. bottom right C location
318 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_318.png What is the position of the diamond relative to the circle? A. left B. above C. bottom left D. below B location
319 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_319.png What is the position of the parallelogram relative to the diamond? A. left B. below C. top right D. right B location
320 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_320.png What is the position of the pentagon relative to the hexagon? A. left B. below C. top left D. right B location
321 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_321.png What is the position of the trapezoid relative to the parallelogram? A. left B. above C. top right D. bottom right A location
322 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_322.png What is the position of the heart relative to the parallelogram? A. right B. top left C. left D. below D location
323 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_323.png What is the position of the circle relative to the parallelogram? A. right B. top right C. left D. below D location
324 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_324.png What is the position of the heart relative to the circle? A. above B. left C. right D. below B location
325 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_325.png What is the position of the triangle relative to the circle? A. below B. top left C. right D. bottom left C location
326 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_326.png What is the position of the parallelogram relative to the hexagon? A. bottom right B. below C. left D. above C location
327 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_327.png What is the position of the square relative to the triangle? A. below B. right C. top right D. left D location
328 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_328.png What is the position of the trapezoid relative to the triangle? A. below B. right C. top left D. bottom left B location
329 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_329.png What is the position of the square relative to the diamond? A. top left B. above C. below D. right D location
330 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_330.png What is the position of the trapezoid relative to the square? A. left B. top right C. right D. below D location
331 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_331.png What is the position of the triangle relative to the circle? A. bottom left B. right C. top left D. top right A location
332 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_332.png What is the position of the square relative to the trapezoid? A. above B. right C. below D. bottom left A location
333 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_333.png What is the position of the circle relative to the hexagon? A. above B. bottom left C. right D. bottom right A location
334 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_334.png What is the position of the pentagon relative to the circle? A. below B. above C. left D. right C location
335 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_335.png What is the position of the diamond relative to the parallelogram? A. above B. bottom left C. below D. right A location
336 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_336.png What is the position of the pentagon relative to the triangle? A. bottom right B. top left C. top right D. bottom left B location
337 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_337.png What is the position of the pentagon relative to the parallelogram? A. top right B. below C. bottom left D. top left A location
338 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_338.png What is the position of the square relative to the pentagon? A. bottom left B. above C. right D. left B location
339 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_339.png What is the position of the diamond relative to the hexagon? A. bottom left B. below C. left D. above D location
340 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_340.png What is the position of the circle relative to the hexagon? A. top right B. bottom right C. left D. below C location
341 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_341.png What is the position of the pentagon relative to the trapezoid? A. below B. bottom right C. above D. right C location
342 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_342.png What is the position of the circle relative to the square? A. left B. top right C. bottom right D. bottom left C location
343 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_343.png What is the position of the trapezoid relative to the hexagon? A. bottom left B. above C. bottom right D. left B location
344 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_344.png What is the position of the triangle relative to the circle? A. left B. right C. above D. below A location
345 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_345.png What is the position of the circle relative to the trapezoid? A. above B. right C. left D. top right C location
346 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_346.png What is the position of the hexagon relative to the square? A. left B. top right C. bottom right D. below A location
347 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_347.png What is the position of the circle relative to the square? A. right B. top left C. bottom left D. above A location
348 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_348.png What is the position of the heart relative to the hexagon? A. bottom left B. above C. left D. below B location
349 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_349.png What is the position of the square relative to the hexagon? A. above B. top right C. bottom right D. top left C location
350 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_350.png What is the position of the diamond relative to the triangle? A. above B. bottom right C. bottom left D. right A location
351 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_351.png What is the position of the triangle relative to the circle? A. above B. top left C. bottom left D. right D location
352 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_352.png What is the position of the diamond relative to the heart? A. below B. top right C. above D. left A location
353 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_353.png What is the position of the hexagon relative to the parallelogram? A. above B. left C. top right D. below B location
354 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_354.png What is the position of the diamond relative to the trapezoid? A. bottom right B. right C. top left D. top right C location
355 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_355.png What is the position of the triangle relative to the pentagon? A. below B. right C. above D. top right A location
356 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_356.png What is the position of the triangle relative to the trapezoid? A. above B. below C. right D. bottom right A location
357 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_357.png What is the position of the pentagon relative to the circle? A. right B. left C. bottom left D. top left A location
358 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_358.png What is the position of the diamond relative to the circle? A. below B. left C. top right D. right A location
359 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_359.png What is the position of the parallelogram relative to the circle? A. below B. bottom left C. left D. above D location
360 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_360.png What is the position of the pentagon relative to the parallelogram? A. above B. below C. left D. top right C location
361 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_361.png What is the position of the hexagon relative to the triangle? A. above B. left C. right D. bottom right A location
362 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_362.png What is the position of the square relative to the parallelogram? A. above B. right C. top left D. bottom left B location
363 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_363.png What is the position of the square relative to the trapezoid? A. bottom right B. right C. bottom left D. above D location
364 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_364.png What is the position of the parallelogram relative to the heart? A. below B. bottom left C. right D. top left C location
365 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_365.png What is the position of the triangle relative to the diamond? A. left B. above C. right D. below B location
366 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_366.png What is the position of the circle relative to the heart? A. bottom left B. below C. left D. above D location
367 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_367.png What is the position of the trapezoid relative to the square? A. right B. left C. top left D. above A location
368 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_368.png What is the position of the hexagon relative to the heart? A. right B. below C. above D. top left A location
369 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_369.png What is the position of the square relative to the diamond? A. below B. above C. left D. top right C location
370 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_370.png What is the position of the triangle relative to the hexagon? A. top right B. top left C. bottom left D. bottom right C location
371 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_371.png What is the position of the square relative to the circle? A. top right B. top left C. bottom left D. below B location
372 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_372.png What is the position of the diamond relative to the hexagon? A. left B. below C. bottom right D. above D location
373 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_373.png What is the position of the circle relative to the parallelogram? A. above B. below C. right D. left A location
374 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_374.png What is the position of the circle relative to the pentagon? A. bottom left B. top right C. bottom right D. left C location
375 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_375.png What is the position of the heart relative to the diamond? A. left B. below C. above D. bottom right A location
376 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_376.png What is the position of the diamond relative to the triangle? A. right B. above C. below D. left A location
377 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_377.png What is the position of the square relative to the diamond? A. left B. bottom right C. top left D. above B location
378 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_378.png What is the position of the hexagon relative to the parallelogram? A. top left B. above C. below D. right C location
379 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_379.png What is the position of the square relative to the hexagon? A. right B. bottom left C. top left D. left A location
380 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_380.png What is the position of the trapezoid relative to the square? A. below B. right C. bottom left D. left B location
381 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_381.png What is the position of the parallelogram relative to the diamond? A. top right B. left C. right D. below B location
382 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_382.png What is the position of the diamond relative to the trapezoid? A. top right B. bottom right C. top left D. below C location
383 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_383.png What is the position of the parallelogram relative to the trapezoid? A. above B. right C. bottom right D. below A location
384 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_384.png What is the position of the heart relative to the pentagon? A. below B. bottom left C. above D. left C location
385 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_385.png What is the position of the trapezoid relative to the pentagon? A. above B. top right C. top left D. below D location
386 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_386.png What is the position of the parallelogram relative to the hexagon? A. top left B. below C. left D. right B location
387 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_387.png What is the position of the heart relative to the triangle? A. left B. right C. bottom right D. above A location
388 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_388.png What is the position of the square relative to the trapezoid? A. left B. right C. below D. above B location
389 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_389.png What is the position of the diamond relative to the heart? A. bottom left B. top right C. top left D. bottom right C location
390 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_390.png What is the position of the diamond relative to the parallelogram? A. top right B. left C. right D. below D location
391 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_391.png What is the position of the square relative to the pentagon? A. below B. top right C. bottom right D. top left D location
392 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_392.png What is the position of the trapezoid relative to the hexagon? A. above B. bottom right C. left D. bottom left A location
393 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_393.png What is the position of the trapezoid relative to the square? A. left B. above C. right D. bottom left B location
394 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_394.png What is the position of the square relative to the pentagon? A. left B. above C. bottom left D. bottom right D location
395 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_395.png What is the position of the parallelogram relative to the pentagon? A. right B. bottom right C. above D. below C location
396 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_396.png What is the position of the trapezoid relative to the circle? A. right B. bottom right C. above D. below C location
397 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_397.png What is the position of the diamond relative to the square? A. bottom right B. left C. below D. right B location
398 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_398.png What is the position of the triangle relative to the parallelogram? A. below B. above C. left D. bottom right B location
399 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_399.png What is the position of the hexagon relative to the circle? A. above B. top right C. right D. left D location
400 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_400.png What is the position of the triangle relative to the hexagon? A. above B. below C. left D. bottom right C location
401 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_401.png What is the position of the parallelogram relative to the diamond? A. right B. top right C. above D. below D location
402 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_402.png What is the position of the heart relative to the parallelogram? A. above B. bottom right C. bottom left D. right A location
403 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_403.png What is the position of the circle relative to the triangle? A. bottom left B. bottom right C. above D. right C location
404 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_404.png What is the position of the heart relative to the square? A. bottom left B. right C. bottom right D. above A location
405 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_405.png What is the position of the circle relative to the heart? A. left B. bottom left C. above D. below C location
406 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_406.png What is the position of the diamond relative to the triangle? A. above B. left C. bottom left D. bottom right A location
407 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_407.png What is the position of the trapezoid relative to the square? A. above B. left C. bottom right D. bottom left C location
408 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_408.png What is the position of the parallelogram relative to the heart? A. left B. right C. below D. top left C location
409 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_409.png What is the position of the trapezoid relative to the heart? A. bottom right B. above C. bottom left D. left B location
410 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_410.png What is the position of the diamond relative to the pentagon? A. right B. above C. bottom left D. left A location
411 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_411.png What is the position of the square relative to the pentagon? A. bottom right B. top right C. below D. left D location
412 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_412.png What is the position of the diamond relative to the trapezoid? A. bottom left B. right C. top left D. below B location
413 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_413.png What is the position of the diamond relative to the triangle? A. below B. top left C. right D. bottom left C location
414 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_414.png What is the position of the diamond relative to the pentagon? A. bottom right B. below C. right D. above D location
415 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_415.png What is the position of the triangle relative to the pentagon? A. bottom right B. right C. left D. above C location
416 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_416.png What is the position of the trapezoid relative to the triangle? A. right B. below C. top left D. bottom left C location
417 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_417.png What is the position of the circle relative to the triangle? A. top left B. above C. top right D. below D location
418 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_418.png What is the position of the square relative to the triangle? A. above B. below C. bottom left D. right A location
419 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_419.png What is the position of the trapezoid relative to the heart? A. below B. top right C. left D. right C location
420 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_420.png What is the position of the square relative to the triangle? A. bottom left B. above C. below D. bottom right B location
421 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_421.png What is the position of the heart relative to the square? A. bottom right B. left C. above D. right C location
422 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_422.png What is the position of the trapezoid relative to the square? A. above B. left C. right D. bottom left C location
423 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_423.png What is the position of the diamond relative to the pentagon? A. left B. right C. above D. bottom left C location
424 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_424.png What is the position of the parallelogram relative to the circle? A. left B. top right C. top left D. below D location
425 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_425.png What is the position of the diamond relative to the hexagon? A. top right B. below C. above D. left B location
426 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_426.png What is the position of the hexagon relative to the parallelogram? A. above B. below C. right D. top right B location
427 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_427.png What is the position of the circle relative to the triangle? A. bottom right B. below C. top right D. top left D location
428 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_428.png What is the position of the square relative to the hexagon? A. above B. bottom right C. bottom left D. top right B location
429 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_429.png What is the position of the parallelogram relative to the heart? A. above B. left C. bottom right D. top right B location
430 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_430.png What is the position of the circle relative to the diamond? A. top right B. bottom left C. right D. top left D location
431 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_431.png What is the position of the circle relative to the pentagon? A. right B. bottom right C. top left D. top right C location
432 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_432.png What is the position of the pentagon relative to the triangle? A. top left B. right C. above D. bottom left B location
433 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_433.png What is the position of the parallelogram relative to the heart? A. bottom right B. top right C. top left D. left B location
434 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_434.png What is the position of the diamond relative to the triangle? A. top right B. below C. left D. top left B location
435 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_435.png What is the position of the circle relative to the square? A. left B. right C. above D. top left B location
436 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_436.png What is the position of the triangle relative to the hexagon? A. right B. below C. left D. top right C location
437 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_437.png What is the position of the circle relative to the trapezoid? A. above B. top left C. below D. right D location
438 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_438.png What is the position of the triangle relative to the circle? A. right B. bottom right C. above D. left C location
439 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_439.png What is the position of the diamond relative to the hexagon? A. top left B. left C. right D. below C location
440 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_440.png What is the position of the hexagon relative to the triangle? A. left B. above C. below D. bottom right A location
441 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_441.png What is the position of the triangle relative to the parallelogram? A. bottom right B. bottom left C. right D. above D location
442 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_442.png What is the position of the diamond relative to the parallelogram? A. top right B. left C. bottom right D. above B location
443 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_443.png What is the position of the diamond relative to the parallelogram? A. below B. above C. right D. top left C location
444 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_444.png What is the position of the pentagon relative to the heart? A. bottom right B. below C. left D. above C location
445 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_445.png What is the position of the parallelogram relative to the triangle? A. above B. right C. bottom left D. below B location
446 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_446.png What is the position of the triangle relative to the parallelogram? A. below B. top right C. top left D. above A location
447 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_447.png What is the position of the trapezoid relative to the triangle? A. above B. bottom right C. below D. bottom left A location
448 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_448.png What is the position of the parallelogram relative to the diamond? A. above B. below C. left D. right C location
449 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_449.png What is the position of the parallelogram relative to the square? A. left B. top right C. above D. bottom right A location
450 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_450.png What is the position of the parallelogram relative to the circle? A. below B. right C. above D. top right A location
451 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_451.png What is the position of the hexagon relative to the heart? A. top right B. right C. left D. below D location
452 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_452.png What is the position of the square relative to the diamond? A. bottom right B. right C. above D. bottom left D location
453 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_453.png What is the position of the diamond relative to the parallelogram? A. left B. bottom left C. right D. top left C location
454 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_454.png What is the position of the diamond relative to the square? A. bottom left B. right C. above D. below C location
455 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_455.png What is the position of the trapezoid relative to the square? A. top right B. top left C. bottom right D. right B location
456 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_456.png What is the position of the diamond relative to the parallelogram? A. bottom left B. right C. bottom right D. above D location
457 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_457.png What is the position of the circle relative to the parallelogram? A. above B. left C. bottom left D. right A location
458 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_458.png What is the position of the triangle relative to the trapezoid? A. top left B. below C. right D. left C location
459 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_459.png What is the position of the trapezoid relative to the triangle? A. above B. right C. left D. top right C location
460 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_460.png What is the position of the circle relative to the trapezoid? A. bottom left B. right C. top left D. left B location
461 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_461.png What is the position of the circle relative to the hexagon? A. right B. below C. left D. top right C location
462 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_462.png What is the position of the pentagon relative to the diamond? A. top right B. below C. top left D. above B location
463 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_463.png What is the position of the heart relative to the parallelogram? A. top left B. left C. bottom left D. bottom right D location
464 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_464.png What is the position of the parallelogram relative to the triangle? A. right B. above C. below D. top left A location
465 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_465.png What is the position of the pentagon relative to the hexagon? A. bottom left B. above C. below D. left B location
466 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_466.png What is the position of the hexagon relative to the parallelogram? A. right B. above C. left D. below A location
467 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_467.png What is the position of the square relative to the circle? A. left B. bottom left C. top left D. bottom right D location
468 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_468.png What is the position of the pentagon relative to the trapezoid? A. top left B. right C. bottom left D. above B location
469 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_469.png What is the position of the pentagon relative to the circle? A. below B. top left C. left D. right D location
470 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_470.png What is the position of the hexagon relative to the heart? A. bottom left B. top right C. below D. left B location
471 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_471.png What is the position of the parallelogram relative to the pentagon? A. right B. left C. bottom right D. above B location
472 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_472.png What is the position of the square relative to the trapezoid? A. left B. above C. right D. bottom left C location
473 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_473.png What is the position of the diamond relative to the circle? A. left B. above C. below D. top right C location
474 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_474.png What is the position of the pentagon relative to the square? A. top right B. bottom left C. right D. top left B location
475 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_475.png What is the position of the hexagon relative to the heart? A. below B. right C. above D. top right A location
476 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_476.png What is the position of the pentagon relative to the circle? A. left B. top left C. top right D. bottom right D location
477 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_477.png What is the position of the circle relative to the square? A. top right B. bottom right C. bottom left D. top left D location
478 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_478.png What is the position of the square relative to the circle? A. bottom right B. below C. top left D. top right C location
479 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_479.png What is the position of the pentagon relative to the square? A. right B. left C. below D. top right C location
480 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_480.png What is the position of the pentagon relative to the triangle? A. left B. right C. bottom right D. top right A location
481 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_481.png What is the position of the hexagon relative to the pentagon? A. above B. bottom right C. left D. right C location
482 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_482.png What is the position of the pentagon relative to the heart? A. below B. bottom left C. above D. right C location
483 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_483.png What is the position of the parallelogram relative to the hexagon? A. left B. bottom left C. right D. above C location
484 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_484.png What is the position of the diamond relative to the pentagon? A. bottom right B. top left C. right D. below B location
485 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_485.png What is the position of the circle relative to the trapezoid? A. top left B. left C. below D. top right C location
486 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_486.png What is the position of the parallelogram relative to the circle? A. above B. below C. right D. bottom right A location
487 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_487.png What is the position of the parallelogram relative to the pentagon? A. below B. top left C. left D. right D location
488 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_488.png What is the position of the hexagon relative to the pentagon? A. right B. left C. below D. top left C location
489 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_489.png What is the position of the heart relative to the square? A. above B. left C. bottom left D. right D location
490 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_490.png What is the position of the square relative to the parallelogram? A. bottom right B. top right C. bottom left D. above C location
491 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_491.png What is the position of the square relative to the pentagon? A. above B. below C. left D. bottom right A location
492 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_492.png What is the position of the pentagon relative to the square? A. left B. above C. right D. below B location
493 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_493.png What is the position of the circle relative to the pentagon? A. above B. right C. below D. left A location
494 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_494.png What is the position of the parallelogram relative to the circle? A. above B. right C. top right D. below D location
495 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_495.png What is the position of the parallelogram relative to the triangle? A. above B. top left C. below D. left C location
496 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_496.png What is the position of the diamond relative to the trapezoid? A. top left B. top right C. bottom right D. bottom left D location
497 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_497.png What is the position of the heart relative to the triangle? A. bottom left B. bottom right C. top right D. below C location
498 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_498.png What is the position of the diamond relative to the square? A. below B. above C. left D. top right C location
499 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_499.png What is the position of the trapezoid relative to the diamond? A. top right B. below C. top left D. left B location
500 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_500.png What is the position of the hexagon relative to the triangle? A. left B. right C. above D. top left B location
501 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_501.png What is the position of the pentagon relative to the diamond? A. above B. top left C. right D. below D location
502 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_502.png What is the position of the triangle relative to the pentagon? A. bottom right B. left C. right D. below B location
503 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_503.png What is the position of the diamond relative to the triangle? A. below B. left C. above D. right B location
504 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_504.png What is the position of the trapezoid relative to the square? A. below B. above C. right D. top left C location
505 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_505.png What is the position of the trapezoid relative to the hexagon? A. left B. above C. bottom left D. bottom right B location
506 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_506.png What is the position of the parallelogram relative to the circle? A. bottom left B. bottom right C. above D. top left A location
507 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_507.png What is the position of the heart relative to the circle? A. above B. right C. left D. below B location
508 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_508.png What is the position of the diamond relative to the triangle? A. right B. left C. above D. below B location
509 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_509.png What is the position of the hexagon relative to the diamond? A. above B. left C. right D. below B location
510 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_510.png What is the position of the trapezoid relative to the circle? A. bottom left B. below C. right D. above C location
511 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_511.png What is the position of the parallelogram relative to the heart? A. above B. below C. top left D. right B location
512 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_512.png What is the position of the heart relative to the parallelogram? A. bottom left B. above C. bottom right D. left B location
513 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_513.png What is the position of the heart relative to the parallelogram? A. top right B. right C. bottom left D. above C location
514 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_514.png What is the position of the trapezoid relative to the heart? A. bottom left B. top left C. left D. bottom right D location
515 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_515.png What is the position of the hexagon relative to the parallelogram? A. left B. top right C. right D. below A location
516 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_516.png What is the position of the triangle relative to the square? A. right B. above C. below D. left A location
517 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_517.png What is the position of the triangle relative to the heart? A. below B. bottom left C. top left D. right D location
518 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_518.png What is the position of the pentagon relative to the hexagon? A. top left B. right C. bottom right D. bottom left D location
519 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_519.png What is the position of the trapezoid relative to the heart? A. below B. top right C. left D. above C location
520 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_520.png What is the position of the square relative to the triangle? A. top right B. bottom right C. below D. left D location
521 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_521.png What is the position of the circle relative to the parallelogram? A. below B. above C. right D. left B location
522 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_522.png What is the position of the diamond relative to the triangle? A. below B. top left C. top right D. right B location
523 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_523.png What is the position of the pentagon relative to the circle? A. above B. left C. bottom right D. below A location
524 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_524.png What is the position of the pentagon relative to the circle? A. right B. bottom left C. bottom right D. top right B location
525 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_525.png What is the position of the pentagon relative to the hexagon? A. below B. bottom right C. top right D. left C location
526 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_526.png What is the position of the trapezoid relative to the circle? A. left B. bottom left C. top right D. bottom right D location
527 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_527.png What is the position of the square relative to the pentagon? A. bottom left B. right C. left D. top left B location
528 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_528.png What is the position of the trapezoid relative to the square? A. right B. below C. above D. left A location
529 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_529.png What is the position of the circle relative to the pentagon? A. above B. right C. top left D. left B location
530 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_530.png What is the position of the triangle relative to the hexagon? A. right B. below C. top left D. bottom left C location
531 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_531.png What is the position of the pentagon relative to the diamond? A. below B. bottom right C. above D. right C location
532 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_532.png What is the position of the diamond relative to the circle? A. above B. right C. bottom left D. top left B location
533 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_533.png What is the position of the triangle relative to the circle? A. above B. top right C. bottom right D. bottom left C location
534 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_534.png What is the position of the square relative to the pentagon? A. top right B. bottom right C. top left D. left B location
535 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_535.png What is the position of the diamond relative to the hexagon? A. right B. above C. left D. below A location
536 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_536.png What is the position of the hexagon relative to the triangle? A. top right B. top left C. bottom right D. below A location
537 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_537.png What is the position of the square relative to the circle? A. left B. right C. below D. top left C location
538 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_538.png What is the position of the circle relative to the parallelogram? A. right B. above C. below D. left C location
539 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_539.png What is the position of the triangle relative to the parallelogram? A. bottom right B. above C. right D. below B location
540 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_540.png What is the position of the parallelogram relative to the hexagon? A. left B. bottom left C. top left D. bottom right D location
541 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_541.png What is the position of the pentagon relative to the diamond? A. left B. right C. top left D. bottom left B location
542 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_542.png What is the position of the diamond relative to the square? A. right B. above C. bottom left D. below B location
543 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_543.png What is the position of the hexagon relative to the parallelogram? A. above B. right C. top right D. below D location
544 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_544.png What is the position of the diamond relative to the triangle? A. below B. left C. top right D. bottom right B location
545 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_545.png What is the position of the triangle relative to the heart? A. bottom right B. top right C. right D. top left D location
546 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_546.png What is the position of the square relative to the diamond? A. bottom left B. left C. below D. right D location
547 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_547.png What is the position of the diamond relative to the pentagon? A. left B. above C. top right D. bottom right A location
548 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_548.png What is the position of the diamond relative to the heart? A. below B. right C. above D. left C location
549 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_549.png What is the position of the diamond relative to the parallelogram? A. top left B. bottom right C. below D. top right A location
550 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_550.png What is the position of the pentagon relative to the heart? A. above B. right C. top left D. bottom left B location
551 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_551.png What is the position of the trapezoid relative to the heart? A. left B. top right C. above D. right A location
552 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_552.png What is the position of the parallelogram relative to the trapezoid? A. above B. right C. below D. bottom right A location
553 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_553.png What is the position of the parallelogram relative to the diamond? A. below B. left C. right D. bottom left C location
554 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_554.png What is the position of the triangle relative to the diamond? A. top left B. right C. below D. above B location
555 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_555.png What is the position of the diamond relative to the hexagon? A. above B. below C. left D. top left B location
556 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_556.png What is the position of the circle relative to the triangle? A. below B. right C. left D. top right C location
557 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_557.png What is the position of the heart relative to the pentagon? A. left B. below C. bottom left D. right D location
558 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_558.png What is the position of the trapezoid relative to the diamond? A. top left B. top right C. above D. bottom left D location
559 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_559.png What is the position of the square relative to the heart? A. above B. bottom left C. top right D. top left B location
560 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_560.png What is the position of the triangle relative to the hexagon? A. top left B. above C. right D. bottom left D location
561 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_561.png What is the position of the trapezoid relative to the square? A. below B. above C. top left D. right A location
562 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_562.png What is the position of the hexagon relative to the heart? A. right B. below C. left D. top left A location
563 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_563.png What is the position of the triangle relative to the hexagon? A. below B. top left C. top right D. right A location
564 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_564.png What is the position of the square relative to the heart? A. right B. below C. bottom left D. left A location
565 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_565.png What is the position of the trapezoid relative to the parallelogram? A. bottom right B. above C. left D. right B location
566 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_566.png What is the position of the parallelogram relative to the square? A. top right B. right C. bottom right D. bottom left D location
567 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_567.png What is the position of the trapezoid relative to the circle? A. bottom left B. right C. bottom right D. above D location
568 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_568.png What is the position of the circle relative to the square? A. below B. top left C. above D. right A location
569 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_569.png What is the position of the pentagon relative to the parallelogram? A. left B. bottom right C. above D. below A location
570 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_570.png What is the position of the triangle relative to the square? A. right B. above C. top right D. left D location
571 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_571.png What is the position of the circle relative to the diamond? A. top left B. right C. above D. below D location
572 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_572.png What is the position of the heart relative to the parallelogram? A. right B. top right C. above D. left D location
573 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_573.png What is the position of the parallelogram relative to the trapezoid? A. below B. top right C. left D. right A location
574 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_574.png What is the position of the parallelogram relative to the pentagon? A. top left B. bottom right C. bottom left D. above C location
575 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_575.png What is the position of the diamond relative to the pentagon? A. right B. top left C. top right D. bottom left B location
576 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_576.png What is the position of the diamond relative to the triangle? A. above B. left C. bottom right D. below A location
577 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_577.png What is the position of the pentagon relative to the diamond? A. right B. bottom right C. left D. top right C location
578 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_578.png What is the position of the hexagon relative to the triangle? A. below B. right C. left D. bottom right C location
579 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_579.png What is the position of the diamond relative to the circle? A. bottom right B. top right C. bottom left D. above C location
580 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_580.png What is the position of the pentagon relative to the parallelogram? A. top right B. bottom right C. top left D. below A location
581 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_581.png What is the position of the hexagon relative to the pentagon? A. top left B. left C. below D. right D location
582 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_582.png What is the position of the heart relative to the square? A. above B. top right C. below D. top left C location
583 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_583.png What is the position of the trapezoid relative to the square? A. above B. bottom right C. below D. left A location
584 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_584.png What is the position of the triangle relative to the trapezoid? A. right B. above C. below D. top left A location
585 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_585.png What is the position of the diamond relative to the heart? A. right B. top right C. above D. below D location
586 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_586.png What is the position of the square relative to the pentagon? A. below B. top left C. above D. right D location
587 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_587.png What is the position of the circle relative to the parallelogram? A. top left B. right C. left D. below D location
588 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_588.png What is the position of the circle relative to the hexagon? A. left B. below C. top right D. right A location
589 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_589.png What is the position of the hexagon relative to the triangle? A. top right B. left C. below D. bottom left A location
590 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_590.png What is the position of the heart relative to the pentagon? A. top left B. bottom left C. bottom right D. right A location
591 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_591.png What is the position of the parallelogram relative to the triangle? A. bottom right B. top left C. below D. right B location
592 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_592.png What is the position of the trapezoid relative to the square? A. bottom left B. right C. bottom right D. top left D location
593 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_593.png What is the position of the heart relative to the square? A. below B. above C. bottom left D. bottom right B location
594 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_594.png What is the position of the pentagon relative to the hexagon? A. left B. top left C. bottom left D. bottom right D location
595 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_595.png What is the position of the circle relative to the square? A. below B. bottom left C. left D. right D location
596 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_596.png What is the position of the pentagon relative to the triangle? A. below B. left C. top left D. above A location
597 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_597.png What is the position of the parallelogram relative to the heart? A. top right B. left C. top left D. below A location
598 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_598.png What is the position of the diamond relative to the pentagon? A. below B. top right C. right D. left A location
599 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_599.png What is the position of the parallelogram relative to the triangle? A. above B. right C. bottom left D. below A location
600 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_600.png What is the position of the hexagon relative to the parallelogram? A. left B. above C. right D. bottom left C location
601 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_601.png What is the position of the diamond relative to the parallelogram? A. bottom right B. bottom left C. right D. above D location
602 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_602.png What is the position of the square relative to the pentagon? A. bottom left B. right C. below D. top left D location
603 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_603.png What is the position of the diamond relative to the pentagon? A. below B. right C. bottom left D. left B location
604 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_604.png What is the position of the heart relative to the hexagon? A. below B. right C. left D. top left B location
605 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_605.png What is the position of the heart relative to the triangle? A. below B. top left C. above D. left A location
606 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_606.png What is the position of the square relative to the trapezoid? A. top right B. left C. right D. bottom right B location
607 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_607.png What is the position of the circle relative to the heart? A. above B. below C. left D. top left B location
608 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_608.png What is the position of the pentagon relative to the trapezoid? A. bottom left B. top right C. top left D. left B location
609 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_609.png What is the position of the pentagon relative to the triangle? A. above B. right C. bottom right D. left D location
610 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_610.png What is the position of the heart relative to the triangle? A. top right B. top left C. left D. below D location
611 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_611.png What is the position of the triangle relative to the trapezoid? A. left B. right C. top left D. above B location
612 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_612.png What is the position of the parallelogram relative to the diamond? A. below B. left C. bottom left D. right D location
613 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_613.png What is the position of the hexagon relative to the parallelogram? A. bottom left B. right C. left D. below B location
614 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_614.png What is the position of the trapezoid relative to the triangle? A. below B. bottom right C. left D. above D location
615 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_615.png What is the position of the triangle relative to the square? A. above B. right C. below D. bottom left A location
616 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_616.png What is the position of the diamond relative to the heart? A. bottom left B. right C. left D. top left B location
617 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_617.png What is the position of the hexagon relative to the trapezoid? A. right B. left C. top right D. bottom right B location
618 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_618.png What is the position of the trapezoid relative to the pentagon? A. left B. right C. above D. below C location
619 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_619.png What is the position of the trapezoid relative to the hexagon? A. bottom left B. right C. top left D. below C location
620 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_620.png What is the position of the diamond relative to the circle? A. below B. above C. right D. top right A location
621 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_621.png What is the position of the pentagon relative to the parallelogram? A. top left B. below C. bottom left D. right D location
622 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_622.png What is the position of the parallelogram relative to the heart? A. bottom right B. left C. below D. top right B location
623 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_623.png What is the position of the circle relative to the hexagon? A. above B. right C. left D. below A location
624 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_624.png What is the position of the diamond relative to the triangle? A. above B. left C. bottom right D. top left C location
625 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_625.png What is the position of the diamond relative to the hexagon? A. bottom left B. right C. above D. below C location
626 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_626.png What is the position of the triangle relative to the trapezoid? A. bottom right B. top right C. above D. bottom left A location
627 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_627.png What is the position of the hexagon relative to the square? A. right B. below C. bottom left D. left A location
628 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_628.png What is the position of the parallelogram relative to the trapezoid? A. left B. below C. top right D. right A location
629 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_629.png What is the position of the parallelogram relative to the trapezoid? A. left B. right C. above D. bottom left B location
630 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_630.png What is the position of the triangle relative to the parallelogram? A. above B. left C. top right D. below B location
631 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_631.png What is the position of the heart relative to the trapezoid? A. right B. top right C. below D. top left D location
632 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_632.png What is the position of the hexagon relative to the square? A. right B. above C. below D. left A location
633 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_633.png What is the position of the parallelogram relative to the triangle? A. top left B. right C. bottom left D. below B location
634 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_634.png What is the position of the triangle relative to the diamond? A. above B. left C. bottom right D. below B location
635 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_635.png What is the position of the heart relative to the square? A. left B. below C. top right D. bottom right A location
636 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_636.png What is the position of the square relative to the circle? A. left B. top right C. below D. above C location
637 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_637.png What is the position of the triangle relative to the diamond? A. bottom left B. left C. right D. above D location
638 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_638.png What is the position of the square relative to the heart? A. right B. bottom left C. below D. above D location
639 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_639.png What is the position of the square relative to the diamond? A. above B. top right C. left D. below D location
640 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_640.png What is the position of the hexagon relative to the square? A. above B. below C. left D. right D location
641 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_641.png What is the position of the heart relative to the triangle? A. right B. bottom right C. below D. above D location
642 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_642.png What is the position of the square relative to the pentagon? A. below B. top right C. top left D. above A location
643 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_643.png What is the position of the hexagon relative to the pentagon? A. bottom left B. right C. above D. top left B location
644 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_644.png What is the position of the hexagon relative to the parallelogram? A. bottom left B. top left C. top right D. left C location
645 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_645.png What is the position of the parallelogram relative to the diamond? A. left B. top left C. below D. top right C location
646 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_646.png What is the position of the circle relative to the hexagon? A. top right B. right C. bottom left D. top left D location
647 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_647.png What is the position of the square relative to the parallelogram? A. below B. left C. above D. right C location
648 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_648.png What is the position of the trapezoid relative to the hexagon? A. left B. bottom right C. below D. top right D location
649 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_649.png What is the position of the diamond relative to the hexagon? A. above B. left C. below D. top left C location
650 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_650.png What is the position of the diamond relative to the parallelogram? A. top right B. left C. top left D. below D location
651 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_651.png What is the position of the square relative to the hexagon? A. above B. right C. below D. bottom left B location
652 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_652.png What is the position of the heart relative to the hexagon? A. right B. bottom right C. below D. top left D location
653 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_653.png What is the position of the circle relative to the heart? A. above B. bottom right C. right D. left D location
654 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_654.png What is the position of the parallelogram relative to the pentagon? A. below B. bottom left C. top left D. top right D location
655 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_655.png What is the position of the hexagon relative to the triangle? A. bottom left B. right C. below D. above D location
656 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_656.png What is the position of the hexagon relative to the triangle? A. bottom left B. above C. left D. bottom right B location
657 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_657.png What is the position of the heart relative to the hexagon? A. below B. above C. left D. bottom left B location
658 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_658.png What is the position of the square relative to the diamond? A. right B. below C. left D. bottom left A location
659 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_659.png What is the position of the pentagon relative to the triangle? A. top left B. bottom right C. below D. right A location
660 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_660.png What is the position of the parallelogram relative to the diamond? A. below B. right C. top left D. left B location
661 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_661.png What is the position of the parallelogram relative to the circle? A. above B. right C. left D. bottom right A location
662 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_662.png What is the position of the trapezoid relative to the parallelogram? A. bottom left B. above C. bottom right D. left B location
663 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_663.png What is the position of the heart relative to the triangle? A. above B. left C. right D. bottom right B location
664 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_664.png What is the position of the trapezoid relative to the diamond? A. bottom right B. left C. right D. above D location
665 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_665.png What is the position of the trapezoid relative to the heart? A. right B. top left C. left D. below A location
666 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_666.png What is the position of the square relative to the trapezoid? A. right B. left C. bottom right D. below B location
667 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_667.png What is the position of the parallelogram relative to the hexagon? A. right B. top right C. left D. below D location
668 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_668.png What is the position of the heart relative to the diamond? A. bottom left B. left C. below D. right D location
669 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_669.png What is the position of the square relative to the trapezoid? A. left B. right C. below D. above C location
670 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_670.png What is the position of the pentagon relative to the diamond? A. top right B. right C. top left D. bottom left C location
671 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_671.png What is the position of the hexagon relative to the trapezoid? A. above B. bottom right C. right D. below A location
672 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_672.png What is the position of the pentagon relative to the trapezoid? A. left B. right C. above D. top left B location
673 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_673.png What is the position of the pentagon relative to the hexagon? A. right B. below C. bottom left D. above D location
674 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_674.png What is the position of the circle relative to the hexagon? A. left B. below C. bottom right D. top right D location
675 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_675.png What is the position of the parallelogram relative to the square? A. left B. below C. top right D. bottom right A location
676 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_676.png What is the position of the square relative to the pentagon? A. right B. left C. below D. above D location
677 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_677.png What is the position of the triangle relative to the circle? A. bottom right B. below C. top left D. bottom left C location
678 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_678.png What is the position of the hexagon relative to the square? A. above B. below C. right D. left D location
679 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_679.png What is the position of the heart relative to the square? A. above B. below C. top right D. right B location
680 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_680.png What is the position of the pentagon relative to the square? A. above B. bottom left C. bottom right D. right B location
681 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_681.png What is the position of the square relative to the hexagon? A. left B. above C. below D. right A location
682 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_682.png What is the position of the triangle relative to the circle? A. bottom left B. bottom right C. top left D. left B location
683 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_683.png What is the position of the diamond relative to the pentagon? A. top left B. bottom right C. bottom left D. top right C location
684 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_684.png What is the position of the trapezoid relative to the parallelogram? A. above B. bottom right C. below D. left D location
685 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_685.png What is the position of the square relative to the hexagon? A. above B. right C. bottom left D. left B location
686 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_686.png What is the position of the parallelogram relative to the square? A. top right B. below C. top left D. left A location
687 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_687.png What is the position of the parallelogram relative to the trapezoid? A. top left B. above C. right D. bottom left C location
688 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_688.png What is the position of the pentagon relative to the hexagon? A. left B. bottom right C. below D. top right A location
689 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_689.png What is the position of the diamond relative to the circle? A. left B. right C. top left D. below B location
690 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_690.png What is the position of the triangle relative to the heart? A. top right B. below C. right D. left D location
691 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_691.png What is the position of the triangle relative to the heart? A. bottom right B. right C. left D. above C location
692 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_692.png What is the position of the circle relative to the triangle? A. below B. left C. right D. top right B location
693 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_693.png What is the position of the trapezoid relative to the heart? A. top left B. above C. bottom left D. bottom right C location
694 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_694.png What is the position of the pentagon relative to the triangle? A. below B. left C. right D. top left A location
695 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_695.png What is the position of the hexagon relative to the square? A. bottom left B. top right C. right D. top left A location
696 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_696.png What is the position of the pentagon relative to the triangle? A. top left B. top right C. right D. below D location
697 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_697.png What is the position of the triangle relative to the diamond? A. top left B. below C. right D. bottom left C location
698 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_698.png What is the position of the heart relative to the square? A. bottom right B. left C. top right D. top left C location
699 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_699.png What is the position of the diamond relative to the square? A. bottom left B. left C. above D. right C location
700 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_700.png What is the position of the square relative to the diamond? A. bottom left B. right C. top left D. above B location
701 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_701.png What is the position of the pentagon relative to the heart? A. below B. left C. top left D. right A location
702 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_702.png What is the position of the trapezoid relative to the heart? A. top right B. bottom left C. above D. top left B location
703 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_703.png What is the position of the diamond relative to the parallelogram? A. bottom right B. top right C. left D. right C location
704 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_704.png What is the position of the heart relative to the diamond? A. right B. above C. top left D. bottom left D location
705 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_705.png What is the position of the hexagon relative to the square? A. above B. bottom right C. top right D. left D location
706 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_706.png What is the position of the pentagon relative to the triangle? A. top left B. right C. below D. bottom left B location
707 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_707.png What is the position of the triangle relative to the parallelogram? A. bottom right B. above C. right D. left B location
708 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_708.png What is the position of the square relative to the parallelogram? A. bottom left B. left C. top right D. bottom right C location
709 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_709.png What is the position of the hexagon relative to the trapezoid? A. below B. bottom left C. top right D. bottom right C location
710 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_710.png What is the position of the circle relative to the hexagon? A. right B. above C. left D. bottom right C location
711 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_711.png What is the position of the trapezoid relative to the square? A. right B. left C. bottom right D. above D location
712 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_712.png What is the position of the trapezoid relative to the diamond? A. left B. top left C. right D. below D location
713 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_713.png What is the position of the diamond relative to the trapezoid? A. above B. below C. left D. bottom right A location
714 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_714.png What is the position of the heart relative to the parallelogram? A. right B. bottom left C. above D. top right B location
715 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_715.png What is the position of the triangle relative to the parallelogram? A. top right B. bottom left C. left D. top left A location
716 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_716.png What is the position of the square relative to the parallelogram? A. bottom right B. bottom left C. right D. above D location
717 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_717.png What is the position of the triangle relative to the trapezoid? A. right B. left C. below D. above D location
718 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_718.png What is the position of the circle relative to the square? A. right B. above C. below D. bottom left A location
719 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_719.png What is the position of the heart relative to the parallelogram? A. top left B. bottom right C. bottom left D. left B location
720 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_720.png What is the position of the circle relative to the heart? A. below B. above C. bottom left D. left B location
721 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_721.png What is the position of the hexagon relative to the diamond? A. top left B. bottom left C. bottom right D. below A location
722 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_722.png What is the position of the diamond relative to the hexagon? A. right B. above C. below D. bottom right B location
723 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_723.png What is the position of the square relative to the heart? A. bottom left B. bottom right C. top left D. above B location
724 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_724.png What is the position of the trapezoid relative to the parallelogram? A. below B. bottom right C. top right D. bottom left C location
725 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_725.png What is the position of the hexagon relative to the triangle? A. above B. left C. top right D. right B location
726 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_726.png What is the position of the hexagon relative to the diamond? A. top right B. top left C. right D. below D location
727 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_727.png What is the position of the diamond relative to the hexagon? A. top right B. left C. above D. below D location
728 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_728.png What is the position of the pentagon relative to the parallelogram? A. top left B. below C. above D. left B location
729 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_729.png What is the position of the pentagon relative to the parallelogram? A. below B. bottom left C. left D. right D location
730 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_730.png What is the position of the circle relative to the heart? A. top right B. below C. left D. bottom right C location
731 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_731.png What is the position of the square relative to the heart? A. top left B. above C. right D. bottom left D location
732 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_732.png What is the position of the hexagon relative to the parallelogram? A. left B. below C. top right D. top left C location
733 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_733.png What is the position of the heart relative to the pentagon? A. below B. left C. above D. right D location
734 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_734.png What is the position of the square relative to the diamond? A. below B. right C. top left D. above B location
735 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_735.png What is the position of the heart relative to the diamond? A. left B. top right C. right D. above A location
736 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_736.png What is the position of the parallelogram relative to the circle? A. bottom left B. top left C. right D. below B location
737 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_737.png What is the position of the pentagon relative to the circle? A. top right B. right C. above D. left D location
738 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_738.png What is the position of the triangle relative to the parallelogram? A. bottom right B. right C. above D. left D location
739 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_739.png What is the position of the hexagon relative to the pentagon? A. left B. below C. above D. top right B location
740 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_740.png What is the position of the hexagon relative to the trapezoid? A. top left B. left C. below D. above C location
741 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_741.png What is the position of the diamond relative to the triangle? A. top right B. bottom left C. below D. bottom right A location
742 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_742.png What is the position of the diamond relative to the triangle? A. below B. left C. above D. right A location
743 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_743.png What is the position of the diamond relative to the square? A. right B. left C. top right D. below D location
744 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_744.png What is the position of the diamond relative to the parallelogram? A. bottom right B. top right C. above D. left A location
745 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_745.png What is the position of the square relative to the parallelogram? A. right B. below C. above D. bottom right C location
746 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_746.png What is the position of the heart relative to the diamond? A. bottom left B. above C. below D. bottom right B location
747 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_747.png What is the position of the triangle relative to the heart? A. bottom right B. top right C. above D. left A location
748 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_748.png What is the position of the pentagon relative to the diamond? A. below B. right C. bottom right D. left D location
749 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_749.png What is the position of the hexagon relative to the triangle? A. bottom left B. top left C. below D. top right B location
750 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_750.png What is the position of the triangle relative to the hexagon? A. bottom right B. bottom left C. left D. above A location
751 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_751.png What is the position of the pentagon relative to the square? A. right B. bottom left C. bottom right D. top left D location
752 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_752.png What is the position of the heart relative to the pentagon? A. top left B. bottom left C. bottom right D. top right B location
753 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_753.png What is the position of the trapezoid relative to the heart? A. above B. left C. right D. bottom right B location
754 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_754.png What is the position of the pentagon relative to the trapezoid? A. above B. top left C. bottom right D. bottom left D location
755 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_755.png What is the position of the diamond relative to the square? A. above B. left C. right D. top left C location
756 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_756.png What is the position of the trapezoid relative to the circle? A. above B. top left C. bottom left D. right D location
757 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_757.png What is the position of the parallelogram relative to the circle? A. right B. above C. below D. left D location
758 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_758.png What is the position of the trapezoid relative to the circle? A. left B. top left C. bottom left D. bottom right D location
759 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_759.png What is the position of the trapezoid relative to the diamond? A. right B. top left C. bottom left D. top right B location
760 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_760.png What is the position of the trapezoid relative to the hexagon? A. left B. top right C. below D. bottom left B location
761 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_761.png What is the position of the circle relative to the parallelogram? A. bottom right B. above C. left D. top right A location
762 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_762.png What is the position of the circle relative to the trapezoid? A. below B. top right C. left D. top left A location
763 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_763.png What is the position of the square relative to the heart? A. top left B. bottom left C. right D. below C location
764 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_764.png What is the position of the diamond relative to the pentagon? A. above B. right C. bottom left D. below A location
765 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_765.png What is the position of the diamond relative to the heart? A. top right B. bottom right C. top left D. below A location
766 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_766.png What is the position of the triangle relative to the pentagon? A. below B. left C. top right D. top left A location
767 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_767.png What is the position of the pentagon relative to the circle? A. above B. bottom left C. bottom right D. top left B location
768 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_768.png What is the position of the heart relative to the triangle? A. top left B. left C. bottom left D. right D location
769 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_769.png What is the position of the trapezoid relative to the diamond? A. above B. bottom right C. right D. bottom left D location
770 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_770.png What is the position of the hexagon relative to the triangle? A. above B. bottom left C. top left D. right D location
771 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_771.png What is the position of the pentagon relative to the trapezoid? A. below B. right C. above D. bottom left B location
772 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_772.png What is the position of the hexagon relative to the diamond? A. above B. bottom left C. below D. left A location
773 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_773.png What is the position of the square relative to the pentagon? A. above B. top left C. left D. right D location
774 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_774.png What is the position of the hexagon relative to the diamond? A. bottom left B. left C. below D. right D location
775 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_775.png What is the position of the trapezoid relative to the circle? A. top left B. left C. above D. below D location
776 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_776.png What is the position of the pentagon relative to the circle? A. left B. below C. above D. right C location
777 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_777.png What is the position of the parallelogram relative to the pentagon? A. top right B. top left C. right D. below D location
778 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_778.png What is the position of the parallelogram relative to the hexagon? A. right B. bottom left C. left D. above A location
779 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_779.png What is the position of the pentagon relative to the triangle? A. right B. top left C. bottom right D. below B location
780 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_780.png What is the position of the parallelogram relative to the circle? A. left B. below C. bottom right D. above A location
781 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_781.png What is the position of the circle relative to the hexagon? A. below B. above C. top left D. top right A location
782 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_782.png What is the position of the circle relative to the parallelogram? A. top right B. below C. left D. top left B location
783 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_783.png What is the position of the square relative to the parallelogram? A. top right B. left C. bottom right D. above B location
784 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_784.png What is the position of the parallelogram relative to the pentagon? A. right B. above C. left D. top left A location
785 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_785.png What is the position of the triangle relative to the circle? A. top left B. top right C. left D. below D location
786 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_786.png What is the position of the square relative to the triangle? A. below B. top left C. left D. top right A location
787 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_787.png What is the position of the parallelogram relative to the pentagon? A. top right B. above C. left D. bottom right C location
788 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_788.png What is the position of the hexagon relative to the trapezoid? A. bottom right B. left C. top right D. above B location
789 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_789.png What is the position of the pentagon relative to the hexagon? A. top left B. bottom right C. top right D. bottom left D location
790 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_790.png What is the position of the diamond relative to the triangle? A. right B. above C. left D. top left A location
791 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_791.png What is the position of the pentagon relative to the hexagon? A. below B. bottom right C. right D. above D location
792 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_792.png What is the position of the hexagon relative to the circle? A. right B. above C. below D. left D location
793 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_793.png What is the position of the trapezoid relative to the circle? A. right B. above C. bottom right D. left B location
794 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_794.png What is the position of the square relative to the circle? A. bottom right B. top left C. right D. bottom left B location
795 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_795.png What is the position of the heart relative to the trapezoid? A. top left B. below C. top right D. right B location
796 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_796.png What is the position of the square relative to the circle? A. below B. top right C. top left D. bottom left C location
797 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_797.png What is the position of the diamond relative to the triangle? A. below B. left C. above D. right D location
798 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_798.png What is the position of the heart relative to the parallelogram? A. below B. right C. left D. bottom left B location
799 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_799.png What is the position of the diamond relative to the circle? A. bottom left B. above C. left D. right D location
800 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_800.png What is the position of the square relative to the pentagon? A. bottom left B. bottom right C. left D. top right D location
801 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_801.png What is the position of the circle relative to the heart? A. bottom right B. below C. above D. left C location
802 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_802.png What is the position of the square relative to the triangle? A. right B. below C. top right D. left B location
803 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_803.png What is the position of the pentagon relative to the square? A. bottom right B. below C. top left D. top right C location
804 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_804.png What is the position of the hexagon relative to the pentagon? A. right B. bottom right C. below D. above D location
805 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_805.png What is the position of the heart relative to the square? A. left B. below C. bottom left D. above D location
806 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_806.png What is the position of the triangle relative to the parallelogram? A. above B. below C. top left D. left B location
807 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_807.png What is the position of the triangle relative to the diamond? A. below B. left C. right D. above C location
808 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_808.png What is the position of the trapezoid relative to the square? A. above B. right C. below D. left D location
809 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_809.png What is the position of the pentagon relative to the hexagon? A. left B. below C. right D. bottom right A location
810 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_810.png What is the position of the trapezoid relative to the pentagon? A. left B. top right C. bottom left D. top left B location
811 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_811.png What is the position of the square relative to the hexagon? A. bottom right B. below C. above D. right C location
812 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_812.png What is the position of the pentagon relative to the trapezoid? A. right B. top right C. above D. bottom left D location
813 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_813.png What is the position of the trapezoid relative to the heart? A. above B. bottom right C. below D. bottom left A location
814 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_814.png What is the position of the heart relative to the trapezoid? A. below B. right C. top right D. left D location
815 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_815.png What is the position of the pentagon relative to the heart? A. above B. left C. right D. bottom left A location
816 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_816.png What is the position of the trapezoid relative to the hexagon? A. top left B. right C. below D. top right C location
817 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_817.png What is the position of the pentagon relative to the circle? A. right B. bottom left C. left D. top left A location
818 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_818.png What is the position of the circle relative to the trapezoid? A. top left B. top right C. below D. right C location
819 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_819.png What is the position of the trapezoid relative to the diamond? A. right B. above C. below D. bottom left B location
820 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_820.png What is the position of the circle relative to the square? A. above B. top right C. bottom left D. bottom right C location
821 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_821.png What is the position of the hexagon relative to the triangle? A. above B. bottom left C. right D. left A location
822 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_822.png What is the position of the pentagon relative to the hexagon? A. top right B. right C. left D. below C location
823 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_823.png What is the position of the square relative to the pentagon? A. bottom left B. below C. top right D. top left C location
824 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_824.png What is the position of the heart relative to the hexagon? A. top left B. below C. right D. left C location
825 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_825.png What is the position of the square relative to the diamond? A. top left B. below C. right D. left C location
826 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_826.png What is the position of the heart relative to the parallelogram? A. below B. right C. above D. bottom left C location
827 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_827.png What is the position of the pentagon relative to the parallelogram? A. above B. below C. left D. top right B location
828 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_828.png What is the position of the hexagon relative to the circle? A. top right B. left C. right D. below B location
829 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_829.png What is the position of the square relative to the pentagon? A. below B. right C. top left D. left A location
830 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_830.png What is the position of the triangle relative to the circle? A. bottom right B. top right C. left D. above C location
831 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_831.png What is the position of the diamond relative to the pentagon? A. left B. top left C. above D. below D location
832 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_832.png What is the position of the parallelogram relative to the diamond? A. top left B. above C. left D. right D location
833 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_833.png What is the position of the pentagon relative to the diamond? A. above B. bottom right C. right D. below A location
834 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_834.png What is the position of the parallelogram relative to the hexagon? A. bottom left B. top left C. right D. top right B location
835 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_835.png What is the position of the triangle relative to the square? A. below B. top right C. top left D. left A location
836 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_836.png What is the position of the circle relative to the parallelogram? A. right B. above C. below D. bottom left A location
837 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_837.png What is the position of the square relative to the circle? A. bottom right B. top left C. left D. above A location
838 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_838.png What is the position of the pentagon relative to the circle? A. top left B. top right C. above D. below D location
839 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_839.png What is the position of the trapezoid relative to the heart? A. above B. right C. bottom right D. left A location
840 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_840.png What is the position of the trapezoid relative to the pentagon? A. below B. top left C. above D. right D location
841 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_841.png What is the position of the hexagon relative to the square? A. above B. below C. right D. left A location
842 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_842.png What is the position of the parallelogram relative to the triangle? A. above B. bottom left C. top right D. top left B location
843 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_843.png What is the position of the heart relative to the pentagon? A. top right B. bottom left C. below D. top left A location
844 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_844.png What is the position of the pentagon relative to the heart? A. bottom left B. left C. above D. bottom right C location
845 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_845.png What is the position of the triangle relative to the hexagon? A. below B. above C. right D. bottom left C location
846 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_846.png What is the position of the square relative to the triangle? A. right B. below C. above D. left D location
847 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_847.png What is the position of the trapezoid relative to the hexagon? A. below B. above C. right D. left B location
848 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_848.png What is the position of the trapezoid relative to the triangle? A. top left B. right C. above D. below B location
849 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_849.png What is the position of the trapezoid relative to the pentagon? A. bottom left B. right C. above D. left C location
850 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_850.png What is the position of the parallelogram relative to the triangle? A. above B. bottom right C. top right D. left D location
851 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_851.png What is the position of the diamond relative to the trapezoid? A. above B. below C. right D. left A location
852 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_852.png What is the position of the parallelogram relative to the hexagon? A. top left B. right C. left D. above B location
853 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_853.png What is the position of the diamond relative to the pentagon? A. above B. left C. right D. below C location
854 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_854.png What is the position of the circle relative to the square? A. left B. below C. top right D. right A location
855 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_855.png What is the position of the pentagon relative to the hexagon? A. top right B. right C. above D. left D location
856 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_856.png What is the position of the diamond relative to the square? A. right B. above C. bottom left D. bottom right B location
857 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_857.png What is the position of the circle relative to the pentagon? A. left B. bottom left C. right D. above D location
858 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_858.png What is the position of the circle relative to the heart? A. left B. top right C. above D. bottom right A location
859 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_859.png What is the position of the parallelogram relative to the triangle? A. top left B. bottom right C. right D. top right A location
860 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_860.png What is the position of the trapezoid relative to the diamond? A. top right B. top left C. bottom right D. right B location
861 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_861.png What is the position of the hexagon relative to the heart? A. top left B. above C. bottom left D. right D location
862 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_862.png What is the position of the heart relative to the circle? A. right B. above C. bottom right D. left D location
863 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_863.png What is the position of the diamond relative to the square? A. left B. bottom left C. below D. top right D location
864 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_864.png What is the position of the heart relative to the diamond? A. bottom right B. above C. bottom left D. right B location
865 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_865.png What is the position of the square relative to the triangle? A. above B. bottom left C. left D. bottom right A location
866 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_866.png What is the position of the parallelogram relative to the square? A. bottom right B. below C. top right D. bottom left C location
867 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_867.png What is the position of the heart relative to the trapezoid? A. top right B. below C. top left D. above B location
868 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_868.png What is the position of the diamond relative to the square? A. above B. right C. below D. top right C location
869 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_869.png What is the position of the square relative to the hexagon? A. bottom right B. below C. above D. bottom left C location
870 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_870.png What is the position of the circle relative to the square? A. above B. right C. left D. bottom left B location
871 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_871.png What is the position of the diamond relative to the parallelogram? A. above B. right C. left D. bottom left A location
872 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_872.png What is the position of the pentagon relative to the trapezoid? A. above B. left C. top right D. bottom right B location
873 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_873.png What is the position of the triangle relative to the heart? A. below B. right C. bottom left D. top left D location
874 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_874.png What is the position of the parallelogram relative to the pentagon? A. above B. left C. bottom right D. bottom left A location
875 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_875.png What is the position of the circle relative to the square? A. left B. above C. right D. below D location
876 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_876.png What is the position of the triangle relative to the circle? A. left B. above C. top right D. right A location
877 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_877.png What is the position of the hexagon relative to the parallelogram? A. below B. above C. right D. left C location
878 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_878.png What is the position of the diamond relative to the square? A. left B. above C. below D. right C location
879 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_879.png What is the position of the pentagon relative to the diamond? A. right B. above C. left D. below B location
880 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_880.png What is the position of the square relative to the heart? A. left B. bottom left C. above D. right D location
881 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_881.png What is the position of the trapezoid relative to the heart? A. right B. below C. left D. top right C location
882 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_882.png What is the position of the trapezoid relative to the pentagon? A. top right B. bottom right C. left D. above C location
883 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_883.png What is the position of the triangle relative to the heart? A. left B. bottom left C. above D. right C location
884 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_884.png What is the position of the pentagon relative to the parallelogram? A. above B. below C. left D. bottom right C location
885 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_885.png What is the position of the heart relative to the hexagon? A. left B. top right C. right D. bottom right A location
886 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_886.png What is the position of the triangle relative to the heart? A. bottom right B. below C. above D. left C location
887 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_887.png What is the position of the circle relative to the parallelogram? A. bottom left B. below C. above D. right C location
888 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_888.png What is the position of the pentagon relative to the parallelogram? A. left B. above C. top left D. below D location
889 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_889.png What is the position of the heart relative to the diamond? A. above B. left C. below D. right C location
890 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_890.png What is the position of the diamond relative to the hexagon? A. right B. bottom right C. above D. bottom left C location
891 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_891.png What is the position of the heart relative to the diamond? A. bottom right B. above C. bottom left D. right C location
892 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_892.png What is the position of the square relative to the pentagon? A. bottom left B. top left C. left D. bottom right D location
893 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_893.png What is the position of the trapezoid relative to the pentagon? A. right B. bottom left C. top right D. top left B location
894 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_894.png What is the position of the heart relative to the hexagon? A. bottom right B. top left C. right D. below B location
895 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_895.png What is the position of the heart relative to the square? A. right B. top left C. left D. bottom left A location
896 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_896.png What is the position of the square relative to the heart? A. above B. bottom right C. right D. left A location
897 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_897.png What is the position of the diamond relative to the hexagon? A. bottom right B. above C. left D. right C location
898 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_898.png What is the position of the trapezoid relative to the parallelogram? A. top right B. bottom right C. left D. above C location
899 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_899.png What is the position of the trapezoid relative to the pentagon? A. below B. top right C. left D. bottom right C location
900 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_900.png What is the position of the parallelogram relative to the square? A. top left B. right C. bottom left D. below B location
901 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_901.png What is the position of the trapezoid relative to the circle? A. above B. below C. right D. top left C location
902 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_902.png What is the position of the square relative to the diamond? A. above B. top left C. bottom left D. right D location
903 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_903.png What is the position of the triangle relative to the trapezoid? A. right B. below C. left D. bottom right C location
904 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_904.png What is the position of the heart relative to the trapezoid? A. above B. bottom right C. bottom left D. left A location
905 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_905.png What is the position of the circle relative to the hexagon? A. left B. right C. bottom right D. top right A location
906 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_906.png What is the position of the trapezoid relative to the pentagon? A. right B. top right C. bottom left D. top left D location
907 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_907.png What is the position of the triangle relative to the diamond? A. right B. bottom right C. top left D. bottom left D location
908 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_908.png What is the position of the hexagon relative to the square? A. left B. top right C. above D. below A location
909 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_909.png What is the position of the trapezoid relative to the diamond? A. right B. top right C. below D. left C location
910 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_910.png What is the position of the heart relative to the diamond? A. top right B. top left C. right D. bottom left B location
911 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_911.png What is the position of the parallelogram relative to the square? A. top right B. left C. above D. right B location
912 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_912.png What is the position of the trapezoid relative to the square? A. above B. right C. bottom left D. top left B location
913 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_913.png What is the position of the trapezoid relative to the pentagon? A. top right B. below C. right D. top left B location
914 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_914.png What is the position of the trapezoid relative to the heart? A. right B. below C. left D. bottom right C location
915 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_915.png What is the position of the diamond relative to the parallelogram? A. bottom left B. left C. bottom right D. top right C location
916 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_916.png What is the position of the circle relative to the triangle? A. left B. top left C. right D. below D location
917 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_917.png What is the position of the circle relative to the heart? A. above B. below C. right D. bottom right A location
918 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_918.png What is the position of the diamond relative to the heart? A. below B. bottom right C. above D. left C location
919 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_919.png What is the position of the heart relative to the circle? A. above B. below C. left D. right B location
920 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_920.png What is the position of the diamond relative to the circle? A. above B. bottom right C. right D. left D location
921 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_921.png What is the position of the trapezoid relative to the hexagon? A. bottom left B. bottom right C. top right D. top left B location
922 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_922.png What is the position of the heart relative to the diamond? A. top left B. left C. above D. below D location
923 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_923.png What is the position of the circle relative to the parallelogram? A. above B. right C. top right D. left D location
924 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_924.png What is the position of the parallelogram relative to the trapezoid? A. bottom left B. right C. top left D. above B location
925 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_925.png What is the position of the pentagon relative to the circle? A. top left B. left C. right D. below D location
926 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_926.png What is the position of the hexagon relative to the square? A. above B. right C. below D. bottom left B location
927 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_927.png What is the position of the heart relative to the trapezoid? A. left B. bottom left C. above D. below C location
928 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_928.png What is the position of the circle relative to the triangle? A. bottom left B. top left C. bottom right D. above C location
929 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_929.png What is the position of the hexagon relative to the circle? A. right B. below C. top left D. top right B location
930 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_930.png What is the position of the diamond relative to the circle? A. top left B. right C. bottom right D. top right A location
931 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_931.png What is the position of the triangle relative to the trapezoid? A. above B. left C. right D. top left C location
932 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_932.png What is the position of the triangle relative to the pentagon? A. top left B. bottom left C. top right D. bottom right C location
933 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_933.png What is the position of the heart relative to the hexagon? A. right B. bottom left C. bottom right D. top right B location
934 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_934.png What is the position of the square relative to the trapezoid? A. bottom right B. top right C. top left D. below C location
935 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_935.png What is the position of the square relative to the heart? A. top left B. right C. above D. below D location
936 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_936.png What is the position of the pentagon relative to the diamond? A. top left B. right C. below D. bottom left A location
937 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_937.png What is the position of the circle relative to the parallelogram? A. left B. right C. top left D. above B location
938 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_938.png What is the position of the diamond relative to the pentagon? A. above B. left C. right D. top left C location
939 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_939.png What is the position of the diamond relative to the hexagon? A. bottom right B. right C. left D. above C location
940 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_940.png What is the position of the circle relative to the diamond? A. top right B. bottom left C. left D. below A location
941 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_941.png What is the position of the hexagon relative to the square? A. top right B. bottom right C. left D. right C location
942 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_942.png What is the position of the diamond relative to the parallelogram? A. below B. bottom right C. above D. bottom left C location
943 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_943.png What is the position of the diamond relative to the triangle? A. left B. below C. above D. right C location
944 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_944.png What is the position of the triangle relative to the circle? A. bottom left B. below C. left D. top right D location
945 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_945.png What is the position of the circle relative to the triangle? A. top left B. right C. left D. bottom left B location
946 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_946.png What is the position of the square relative to the parallelogram? A. left B. right C. above D. top right A location
947 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_947.png What is the position of the hexagon relative to the pentagon? A. top left B. left C. below D. top right C location
948 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_948.png What is the position of the heart relative to the circle? A. bottom right B. top left C. below D. top right B location
949 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_949.png What is the position of the triangle relative to the parallelogram? A. right B. top left C. top right D. bottom right B location
950 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_950.png What is the position of the circle relative to the diamond? A. bottom left B. top right C. top left D. left B location
951 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_951.png What is the position of the parallelogram relative to the trapezoid? A. below B. bottom right C. above D. right C location
952 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_952.png What is the position of the circle relative to the trapezoid? A. above B. below C. left D. bottom right A location
953 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_953.png What is the position of the heart relative to the trapezoid? A. bottom left B. below C. above D. right D location
954 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_954.png What is the position of the heart relative to the pentagon? A. above B. left C. right D. below B location
955 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_955.png What is the position of the parallelogram relative to the hexagon? A. bottom left B. right C. above D. below C location
956 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_956.png What is the position of the heart relative to the pentagon? A. below B. left C. right D. above A location
957 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_957.png What is the position of the triangle relative to the heart? A. above B. top left C. bottom right D. left C location
958 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_958.png What is the position of the parallelogram relative to the hexagon? A. right B. bottom left C. below D. top left A location
959 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_959.png What is the position of the pentagon relative to the circle? A. below B. left C. above D. right D location
960 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_960.png What is the position of the hexagon relative to the pentagon? A. above B. top right C. left D. bottom right C location
961 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_961.png What is the position of the circle relative to the triangle? A. right B. below C. top left D. above B location
962 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_962.png What is the position of the pentagon relative to the hexagon? A. top right B. above C. left D. right C location
963 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_963.png What is the position of the triangle relative to the square? A. left B. top right C. below D. right A location
964 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_964.png What is the position of the parallelogram relative to the pentagon? A. bottom left B. above C. bottom right D. left C location
965 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_965.png What is the position of the circle relative to the triangle? A. above B. top left C. bottom left D. bottom right C location
966 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_966.png What is the position of the diamond relative to the triangle? A. bottom right B. above C. left D. below C location
967 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_967.png What is the position of the hexagon relative to the triangle? A. top right B. above C. below D. right C location
968 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_968.png What is the position of the parallelogram relative to the trapezoid? A. right B. bottom left C. below D. above D location
969 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_969.png What is the position of the diamond relative to the parallelogram? A. right B. top right C. left D. bottom right C location
970 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_970.png What is the position of the hexagon relative to the circle? A. bottom left B. left C. right D. top left C location
971 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_971.png What is the position of the parallelogram relative to the square? A. right B. below C. above D. left C location
972 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_972.png What is the position of the diamond relative to the hexagon? A. left B. top right C. above D. right A location
973 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_973.png What is the position of the trapezoid relative to the circle? A. right B. above C. left D. below D location
974 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_974.png What is the position of the hexagon relative to the trapezoid? A. right B. below C. above D. bottom left C location
975 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_975.png What is the position of the trapezoid relative to the parallelogram? A. bottom left B. bottom right C. below D. above D location
976 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_976.png What is the position of the parallelogram relative to the heart? A. top left B. below C. above D. right D location
977 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_977.png What is the position of the triangle relative to the hexagon? A. right B. below C. bottom left D. above D location
978 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_978.png What is the position of the heart relative to the circle? A. bottom right B. above C. right D. left D location
979 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_979.png What is the position of the pentagon relative to the circle? A. bottom left B. right C. above D. below B location
980 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_980.png What is the position of the heart relative to the circle? A. bottom right B. right C. above D. below C location
981 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_981.png What is the position of the trapezoid relative to the hexagon? A. top right B. bottom left C. top left D. left A location
982 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_982.png What is the position of the heart relative to the circle? A. right B. above C. top left D. bottom left A location
983 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_983.png What is the position of the parallelogram relative to the triangle? A. bottom left B. bottom right C. right D. above D location
984 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_984.png What is the position of the heart relative to the parallelogram? A. left B. above C. top right D. below A location
985 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_985.png What is the position of the circle relative to the triangle? A. above B. below C. right D. left C location
986 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_986.png What is the position of the pentagon relative to the hexagon? A. left B. above C. below D. bottom right A location
987 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_987.png What is the position of the heart relative to the circle? A. top left B. left C. above D. below D location
988 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_988.png What is the position of the circle relative to the parallelogram? A. bottom right B. left C. top right D. below B location
989 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_989.png What is the position of the circle relative to the hexagon? A. top left B. top right C. right D. below D location
990 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_990.png What is the position of the diamond relative to the square? A. above B. below C. bottom left D. right A location
991 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_991.png What is the position of the circle relative to the triangle? A. right B. top left C. below D. bottom left A location
992 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_992.png What is the position of the trapezoid relative to the heart? A. top right B. right C. bottom left D. bottom right C location
993 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_993.png What is the position of the circle relative to the parallelogram? A. below B. right C. top right D. left A location
994 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_994.png What is the position of the diamond relative to the hexagon? A. below B. left C. top left D. right A location
995 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_995.png What is the position of the pentagon relative to the diamond? A. right B. bottom left C. above D. below A location
996 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_996.png What is the position of the parallelogram relative to the heart? A. bottom left B. below C. bottom right D. top right D location
997 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_997.png What is the position of the trapezoid relative to the pentagon? A. above B. top left C. bottom left D. right C location
998 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_998.png What is the position of the hexagon relative to the heart? A. left B. bottom right C. above D. top right A location
999 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_999.png What is the position of the heart relative to the hexagon? A. below B. above C. left D. right C location
1000 /home/zhangyichen/LMUData/LMUData/images/ShapeGrid_loc/merged_1000.png What is the position of the diamond relative to the trapezoid? A. right B. above C. top right D. left D location
|