Spaces:
Sleeping
Sleeping
cleaned
Browse files- cleanup_images.sh +30 -0
- public/media/new_image_11.jpg +0 -3
- public/media/new_image_14.jpg +0 -3
- public/media/new_image_15.jpg +0 -3
- public/media/new_image_16.jpg +0 -3
- public/media/new_image_17.jpg +0 -3
- public/media/new_image_18.jpg +0 -3
- public/media/new_image_19.jpg +0 -3
- public/media/new_image_2.jpg +0 -3
- public/media/new_image_20.jpg +0 -3
- public/media/new_image_21.jpg +0 -3
- public/media/new_image_23.jpg +0 -3
- public/media/new_image_26.jpg +0 -3
- public/media/new_image_28.jpg +0 -3
- public/media/new_image_29.jpg +0 -3
- public/media/new_image_33.jpg +0 -3
- public/media/new_image_35.jpg +0 -3
- public/media/new_image_38.jpg +0 -3
- public/media/new_image_40.jpg +0 -3
- public/media/new_image_44.jpg +0 -3
- public/media/new_image_45.jpg +0 -3
- public/media/new_image_46.jpg +0 -3
- public/media/new_image_47.jpg +0 -3
- public/media/new_image_48.jpg +0 -3
- public/media/new_image_5.jpg +0 -3
- public/media/new_image_50.jpg +0 -3
- public/media/new_image_51.jpg +0 -3
- public/media/new_image_52.jpg +0 -3
- public/media/new_image_7.jpg +0 -3
- public/media/new_image_8.jpg +0 -3
- public/media/new_image_9.jpg +0 -3
- public/media/sent30.jpg +0 -3
- public/media/sent33.jpg +0 -3
- public/media/sent38.jpg +0 -3
- public/media/sent51.jpg +0 -3
- public/media/sent58.jpg +0 -3
- public/media/sent61.jpg +0 -3
- public/to-where.json +28 -376
cleanup_images.sh
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Create a file with all image references from the JSON
|
| 4 |
+
cat public/to-where.json | grep '"file":' | sed -E 's/.*"file": "(.*)".*/\1/' | sort > referenced_files.txt
|
| 5 |
+
|
| 6 |
+
# Create a list of all jpg files in media directory (removing the /media/ prefix to match the JSON format)
|
| 7 |
+
ls public/media/*.jpg | sed 's|public||' | sort > existing_files.txt
|
| 8 |
+
|
| 9 |
+
# Find files that exist but are not referenced in the JSON
|
| 10 |
+
echo "Images that exist but are not referenced in the JSON:"
|
| 11 |
+
comm -23 existing_files.txt referenced_files.txt
|
| 12 |
+
|
| 13 |
+
# Ask for confirmation before deletion
|
| 14 |
+
echo ""
|
| 15 |
+
echo "Do you want to delete these files? (y/n)"
|
| 16 |
+
read confirm
|
| 17 |
+
|
| 18 |
+
if [ "$confirm" = "y" ]; then
|
| 19 |
+
# Remove files that exist but are not referenced
|
| 20 |
+
for file in $(comm -23 existing_files.txt referenced_files.txt); do
|
| 21 |
+
echo "Removing public$file"
|
| 22 |
+
rm "public$file"
|
| 23 |
+
done
|
| 24 |
+
echo "Files removed successfully."
|
| 25 |
+
else
|
| 26 |
+
echo "Operation cancelled. No files were deleted."
|
| 27 |
+
fi
|
| 28 |
+
|
| 29 |
+
# Clean up temporary files
|
| 30 |
+
rm referenced_files.txt existing_files.txt
|
public/media/new_image_11.jpg
DELETED
Git LFS Details
|
public/media/new_image_14.jpg
DELETED
Git LFS Details
|
public/media/new_image_15.jpg
DELETED
Git LFS Details
|
public/media/new_image_16.jpg
DELETED
Git LFS Details
|
public/media/new_image_17.jpg
DELETED
Git LFS Details
|
public/media/new_image_18.jpg
DELETED
Git LFS Details
|
public/media/new_image_19.jpg
DELETED
Git LFS Details
|
public/media/new_image_2.jpg
DELETED
Git LFS Details
|
public/media/new_image_20.jpg
DELETED
Git LFS Details
|
public/media/new_image_21.jpg
DELETED
Git LFS Details
|
public/media/new_image_23.jpg
DELETED
Git LFS Details
|
public/media/new_image_26.jpg
DELETED
Git LFS Details
|
public/media/new_image_28.jpg
DELETED
Git LFS Details
|
public/media/new_image_29.jpg
DELETED
Git LFS Details
|
public/media/new_image_33.jpg
DELETED
Git LFS Details
|
public/media/new_image_35.jpg
DELETED
Git LFS Details
|
public/media/new_image_38.jpg
DELETED
Git LFS Details
|
public/media/new_image_40.jpg
DELETED
Git LFS Details
|
public/media/new_image_44.jpg
DELETED
Git LFS Details
|
public/media/new_image_45.jpg
DELETED
Git LFS Details
|
public/media/new_image_46.jpg
DELETED
Git LFS Details
|
public/media/new_image_47.jpg
DELETED
Git LFS Details
|
public/media/new_image_48.jpg
DELETED
Git LFS Details
|
public/media/new_image_5.jpg
DELETED
Git LFS Details
|
public/media/new_image_50.jpg
DELETED
Git LFS Details
|
public/media/new_image_51.jpg
DELETED
Git LFS Details
|
public/media/new_image_52.jpg
DELETED
Git LFS Details
|
public/media/new_image_7.jpg
DELETED
Git LFS Details
|
public/media/new_image_8.jpg
DELETED
Git LFS Details
|
public/media/new_image_9.jpg
DELETED
Git LFS Details
|
public/media/sent30.jpg
DELETED
Git LFS Details
|
public/media/sent33.jpg
DELETED
Git LFS Details
|
public/media/sent38.jpg
DELETED
Git LFS Details
|
public/media/sent51.jpg
DELETED
Git LFS Details
|
public/media/sent58.jpg
DELETED
Git LFS Details
|
public/media/sent61.jpg
DELETED
Git LFS Details
|
public/to-where.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
| 44 |
"to_where": "to the school",
|
| 45 |
"distractors": [
|
| 46 |
"to the hospital",
|
| 47 |
-
"to the
|
| 48 |
"to Salam Youth Academy"
|
| 49 |
]
|
| 50 |
},
|
|
@@ -136,7 +136,7 @@
|
|
| 136 |
"doing": "is going",
|
| 137 |
"what": "",
|
| 138 |
"to_where": "to the post office",
|
| 139 |
-
"distractors": ["to the
|
| 140 |
},
|
| 141 |
{
|
| 142 |
"file": "/media/sent17.jpg",
|
|
@@ -154,7 +154,7 @@
|
|
| 154 |
"doing": "are going",
|
| 155 |
"what": "",
|
| 156 |
"to_where": "to the classroom",
|
| 157 |
-
"distractors": ["to the learning room", "to the school", "to
|
| 158 |
},
|
| 159 |
{
|
| 160 |
"file": "/media/sent19.jpg",
|
|
@@ -164,8 +164,8 @@
|
|
| 164 |
"what": "",
|
| 165 |
"to_where": "to the old place",
|
| 166 |
"distractors": [
|
| 167 |
-
"to the
|
| 168 |
-
"to the
|
| 169 |
"to the city centre"
|
| 170 |
]
|
| 171 |
},
|
|
@@ -239,7 +239,7 @@
|
|
| 239 |
"doing": "are going",
|
| 240 |
"what": "",
|
| 241 |
"to_where": "to the hospital",
|
| 242 |
-
"distractors": ["to a school", "to
|
| 243 |
},
|
| 244 |
{
|
| 245 |
"file": "/media/sent28.jpg",
|
|
@@ -259,15 +259,6 @@
|
|
| 259 |
"to_where": "to the airport",
|
| 260 |
"distractors": ["to London", "to Uzbekistan", "to Tashkent"]
|
| 261 |
},
|
| 262 |
-
{
|
| 263 |
-
"file": "/media/sent30.jpg",
|
| 264 |
-
"gender": "",
|
| 265 |
-
"who": "The soldiers",
|
| 266 |
-
"doing": "are sneaking",
|
| 267 |
-
"what": "",
|
| 268 |
-
"to_where": "to a house",
|
| 269 |
-
"distractors": ["to a hotel", "to an apartment", "to a flat"]
|
| 270 |
-
},
|
| 271 |
{
|
| 272 |
"file": "/media/sent31.jpg",
|
| 273 |
"gender": "",
|
|
@@ -286,15 +277,6 @@
|
|
| 286 |
"to_where": "to the beach",
|
| 287 |
"distractors": ["to a lake", "to a garden", "to the forest"]
|
| 288 |
},
|
| 289 |
-
{
|
| 290 |
-
"file": "/media/sent33.jpg",
|
| 291 |
-
"gender": "",
|
| 292 |
-
"who": "The ants",
|
| 293 |
-
"doing": "are marching",
|
| 294 |
-
"what": "",
|
| 295 |
-
"to_where": "to home",
|
| 296 |
-
"distractors": ["to a garden", "to a playground", "to the forest"]
|
| 297 |
-
},
|
| 298 |
{
|
| 299 |
"file": "/media/sent34.jpg",
|
| 300 |
"gender": "",
|
|
@@ -329,20 +311,7 @@
|
|
| 329 |
"doing": "are going",
|
| 330 |
"what": "",
|
| 331 |
"to_where": "to a school",
|
| 332 |
-
"distractors": ["to
|
| 333 |
-
},
|
| 334 |
-
{
|
| 335 |
-
"file": "/media/sent38.jpg",
|
| 336 |
-
"gender": "",
|
| 337 |
-
"who": "The mountain climbers",
|
| 338 |
-
"doing": "are climbing",
|
| 339 |
-
"what": "",
|
| 340 |
-
"to_where": "to Halford Road",
|
| 341 |
-
"distractors": [
|
| 342 |
-
"to Eatington Road",
|
| 343 |
-
"to Whipps Cross",
|
| 344 |
-
"to Hainault Forest"
|
| 345 |
-
]
|
| 346 |
},
|
| 347 |
{
|
| 348 |
"file": "/media/sent39.jpg",
|
|
@@ -387,7 +356,7 @@
|
|
| 387 |
"doing": "is poofing",
|
| 388 |
"what": "",
|
| 389 |
"to_where": "to the library",
|
| 390 |
-
"distractors": ["to a school", "to
|
| 391 |
},
|
| 392 |
{
|
| 393 |
"file": "/media/sent44.jpg",
|
|
@@ -450,16 +419,7 @@
|
|
| 450 |
"doing": "is traveling",
|
| 451 |
"what": "",
|
| 452 |
"to_where": "to a meeting room",
|
| 453 |
-
"distractors": ["to a conference hall", "to an office", "to
|
| 454 |
-
},
|
| 455 |
-
{
|
| 456 |
-
"file": "/media/sent51.jpg",
|
| 457 |
-
"gender": "",
|
| 458 |
-
"who": "The spy",
|
| 459 |
-
"doing": "is sneaking",
|
| 460 |
-
"what": "",
|
| 461 |
-
"to_where": "to a hotel",
|
| 462 |
-
"distractors": ["to a house", "to an apartment", "to a flat"]
|
| 463 |
},
|
| 464 |
{
|
| 465 |
"file": "/media/sent52.jpg",
|
|
@@ -486,7 +446,7 @@
|
|
| 486 |
"doing": "is going",
|
| 487 |
"what": "",
|
| 488 |
"to_where": "to the lab",
|
| 489 |
-
"distractors": ["to a school", "to
|
| 490 |
},
|
| 491 |
{
|
| 492 |
"file": "/media/sent55.jpg",
|
|
@@ -495,7 +455,7 @@
|
|
| 495 |
"doing": "is going",
|
| 496 |
"what": "",
|
| 497 |
"to_where": "to the gym",
|
| 498 |
-
"distractors": ["to a playground", "to a playpark", "to
|
| 499 |
},
|
| 500 |
{
|
| 501 |
"file": "/media/sent56.jpg",
|
|
@@ -503,8 +463,8 @@
|
|
| 503 |
"who": "The traveler",
|
| 504 |
"doing": "is walking",
|
| 505 |
"what": "",
|
| 506 |
-
"to_where": "to the
|
| 507 |
-
"distractors": ["to the
|
| 508 |
},
|
| 509 |
{
|
| 510 |
"file": "/media/sent57.jpg",
|
|
@@ -515,15 +475,6 @@
|
|
| 515 |
"to_where": "to a garden",
|
| 516 |
"distractors": ["to a park", "to Hainault Forest", "to a playground"]
|
| 517 |
},
|
| 518 |
-
{
|
| 519 |
-
"file": "/media/sent58.jpg",
|
| 520 |
-
"gender": "",
|
| 521 |
-
"who": "The explorer",
|
| 522 |
-
"doing": "is looking for",
|
| 523 |
-
"what": "",
|
| 524 |
-
"to_where": "to London",
|
| 525 |
-
"distractors": ["to Uzbekistan", "to Tashkent", "to Whipps Cross"]
|
| 526 |
-
},
|
| 527 |
{
|
| 528 |
"file": "/media/sent59.jpg",
|
| 529 |
"gender": "",
|
|
@@ -542,19 +493,6 @@
|
|
| 542 |
"to_where": "to bed",
|
| 543 |
"distractors": ["to the bedroom", "to the living room", "to the kitchen"]
|
| 544 |
},
|
| 545 |
-
{
|
| 546 |
-
"file": "/media/sent61.jpg",
|
| 547 |
-
"gender": "",
|
| 548 |
-
"who": "The teacher",
|
| 549 |
-
"doing": "is going",
|
| 550 |
-
"what": "",
|
| 551 |
-
"to_where": "to the teachers' room",
|
| 552 |
-
"distractors": [
|
| 553 |
-
"to the classroom",
|
| 554 |
-
"to the learning room",
|
| 555 |
-
"to the staff room"
|
| 556 |
-
]
|
| 557 |
-
},
|
| 558 |
{
|
| 559 |
"file": "/media/sent62.jpg",
|
| 560 |
"gender": "",
|
|
@@ -602,7 +540,7 @@
|
|
| 602 |
"doing": "is traveling",
|
| 603 |
"what": "",
|
| 604 |
"to_where": "to the big game",
|
| 605 |
-
"distractors": ["to a playground", "to
|
| 606 |
},
|
| 607 |
{
|
| 608 |
"file": "/media/new_image_1.jpg",
|
|
@@ -612,20 +550,11 @@
|
|
| 612 |
"what": "a flower",
|
| 613 |
"to_where": "to a school",
|
| 614 |
"distractors": [
|
| 615 |
-
"to the
|
| 616 |
-
"to the
|
| 617 |
"to a house"
|
| 618 |
]
|
| 619 |
},
|
| 620 |
-
{
|
| 621 |
-
"file": "/media/new_image_2.jpg",
|
| 622 |
-
"gender": "male",
|
| 623 |
-
"who": "Zaki",
|
| 624 |
-
"doing": "is flying",
|
| 625 |
-
"what": "",
|
| 626 |
-
"to_where": "to a garden",
|
| 627 |
-
"distractors": ["to the classroom", "to the kitchen", "to a playpark"]
|
| 628 |
-
},
|
| 629 |
{
|
| 630 |
"file": "/media/new_image_3.jpg",
|
| 631 |
"gender": "male",
|
|
@@ -642,16 +571,7 @@
|
|
| 642 |
"doing": "is taking",
|
| 643 |
"what": "an icecream",
|
| 644 |
"to_where": "to a playpark",
|
| 645 |
-
"distractors": ["to the
|
| 646 |
-
},
|
| 647 |
-
{
|
| 648 |
-
"file": "/media/new_image_5.jpg",
|
| 649 |
-
"gender": "male",
|
| 650 |
-
"who": "Kazwa",
|
| 651 |
-
"doing": "is driving",
|
| 652 |
-
"what": "",
|
| 653 |
-
"to_where": "to a playground",
|
| 654 |
-
"distractors": ["to the cash machine", "to a house", "to the living room"]
|
| 655 |
},
|
| 656 |
{
|
| 657 |
"file": "/media/new_image_6.jpg",
|
|
@@ -663,36 +583,9 @@
|
|
| 663 |
"distractors": [
|
| 664 |
"to the shop",
|
| 665 |
"to a hotel",
|
| 666 |
-
"to the
|
| 667 |
]
|
| 668 |
},
|
| 669 |
-
{
|
| 670 |
-
"file": "/media/new_image_7.jpg",
|
| 671 |
-
"gender": "male",
|
| 672 |
-
"who": "The honeybee",
|
| 673 |
-
"doing": "is taking",
|
| 674 |
-
"what": "a pen",
|
| 675 |
-
"to_where": "to a flat",
|
| 676 |
-
"distractors": ["to the toilet", "to a cafe", "to London"]
|
| 677 |
-
},
|
| 678 |
-
{
|
| 679 |
-
"file": "/media/new_image_8.jpg",
|
| 680 |
-
"gender": "male",
|
| 681 |
-
"who": "The dinosaur",
|
| 682 |
-
"doing": "is moving",
|
| 683 |
-
"what": "",
|
| 684 |
-
"to_where": "to the supermarket",
|
| 685 |
-
"distractors": ["to the petrol station", "to the garage", "to the kitchen"]
|
| 686 |
-
},
|
| 687 |
-
{
|
| 688 |
-
"file": "/media/new_image_9.jpg",
|
| 689 |
-
"gender": "male",
|
| 690 |
-
"who": "A boy",
|
| 691 |
-
"doing": "is jumping",
|
| 692 |
-
"what": "",
|
| 693 |
-
"to_where": "to the shop",
|
| 694 |
-
"distractors": ["to the kitchen", "to College", "to the Masjid"]
|
| 695 |
-
},
|
| 696 |
{
|
| 697 |
"file": "/media/new_image_10.jpg",
|
| 698 |
"gender": "female",
|
|
@@ -702,15 +595,6 @@
|
|
| 702 |
"to_where": "to the post office",
|
| 703 |
"distractors": ["to a playground", "to a flat", "to the learning room"]
|
| 704 |
},
|
| 705 |
-
{
|
| 706 |
-
"file": "/media/new_image_11.jpg",
|
| 707 |
-
"gender": "male",
|
| 708 |
-
"who": "A man",
|
| 709 |
-
"doing": "is sneaking",
|
| 710 |
-
"what": "",
|
| 711 |
-
"to_where": "to the bus station",
|
| 712 |
-
"distractors": ["to the city centre", "to home", "to the Masjid"]
|
| 713 |
-
},
|
| 714 |
{
|
| 715 |
"file": "/media/new_image_12.jpg",
|
| 716 |
"gender": "female",
|
|
@@ -718,7 +602,7 @@
|
|
| 718 |
"doing": "is going",
|
| 719 |
"what": "",
|
| 720 |
"to_where": "to the train station",
|
| 721 |
-
"distractors": ["to the market", "to a playground", "to the
|
| 722 |
},
|
| 723 |
{
|
| 724 |
"file": "/media/new_image_13.jpg",
|
|
@@ -726,89 +610,9 @@
|
|
| 726 |
"who": "A lady",
|
| 727 |
"doing": "is taking",
|
| 728 |
"what": "socks",
|
| 729 |
-
"to_where": "to the
|
| 730 |
"distractors": ["to a flat", "to a school", "to the living room"]
|
| 731 |
},
|
| 732 |
-
{
|
| 733 |
-
"file": "/media/new_image_14.jpg",
|
| 734 |
-
"gender": "",
|
| 735 |
-
"who": "Children",
|
| 736 |
-
"doing": "is flying",
|
| 737 |
-
"what": "",
|
| 738 |
-
"to_where": "to the London Transport Museum",
|
| 739 |
-
"distractors": ["to the toilet", "to College", "to a school"]
|
| 740 |
-
},
|
| 741 |
-
{
|
| 742 |
-
"file": "/media/new_image_15.jpg",
|
| 743 |
-
"gender": "",
|
| 744 |
-
"who": "Kids",
|
| 745 |
-
"doing": "is walking",
|
| 746 |
-
"what": "",
|
| 747 |
-
"to_where": "to a cafe",
|
| 748 |
-
"distractors": ["to the Mosque", "to the bus station", "to the barber's"]
|
| 749 |
-
},
|
| 750 |
-
{
|
| 751 |
-
"file": "/media/new_image_16.jpg",
|
| 752 |
-
"gender": "",
|
| 753 |
-
"who": "A cat",
|
| 754 |
-
"doing": "is taking",
|
| 755 |
-
"what": "underwear",
|
| 756 |
-
"to_where": "to the barber's",
|
| 757 |
-
"distractors": ["to a house", "to Hainault Forest", "to the learning room"]
|
| 758 |
-
},
|
| 759 |
-
{
|
| 760 |
-
"file": "/media/new_image_17.jpg",
|
| 761 |
-
"gender": "",
|
| 762 |
-
"who": "A dog",
|
| 763 |
-
"doing": "is driving",
|
| 764 |
-
"what": "",
|
| 765 |
-
"to_where": "to the Masjid",
|
| 766 |
-
"distractors": ["to a hotel", "to a flat", "to the classroom"]
|
| 767 |
-
},
|
| 768 |
-
{
|
| 769 |
-
"file": "/media/new_image_18.jpg",
|
| 770 |
-
"gender": "",
|
| 771 |
-
"who": "A mouse",
|
| 772 |
-
"doing": "is riding",
|
| 773 |
-
"what": "",
|
| 774 |
-
"to_where": "to the Mosque",
|
| 775 |
-
"distractors": ["to the Madrasa", "to the shop", "to an apartment"]
|
| 776 |
-
},
|
| 777 |
-
{
|
| 778 |
-
"file": "/media/new_image_19.jpg",
|
| 779 |
-
"gender": "female",
|
| 780 |
-
"who": "A witch",
|
| 781 |
-
"doing": "is taking",
|
| 782 |
-
"what": "a coat",
|
| 783 |
-
"to_where": "to Salam Youth Academy",
|
| 784 |
-
"distractors": [
|
| 785 |
-
"to the city centre",
|
| 786 |
-
"to the bus station",
|
| 787 |
-
"to the supermarket"
|
| 788 |
-
]
|
| 789 |
-
},
|
| 790 |
-
{
|
| 791 |
-
"file": "/media/new_image_20.jpg",
|
| 792 |
-
"gender": "",
|
| 793 |
-
"who": "An elephant",
|
| 794 |
-
"doing": "is moving",
|
| 795 |
-
"what": "",
|
| 796 |
-
"to_where": "to a restaurant",
|
| 797 |
-
"distractors": [
|
| 798 |
-
"to the London Transport Museum",
|
| 799 |
-
"to the market",
|
| 800 |
-
"to a flat"
|
| 801 |
-
]
|
| 802 |
-
},
|
| 803 |
-
{
|
| 804 |
-
"file": "/media/new_image_21.jpg",
|
| 805 |
-
"gender": "male",
|
| 806 |
-
"who": "Mustafo",
|
| 807 |
-
"doing": "is jumping",
|
| 808 |
-
"what": "",
|
| 809 |
-
"to_where": "to the city centre",
|
| 810 |
-
"distractors": ["to the supermarket", "to a garden", "to the classroom"]
|
| 811 |
-
},
|
| 812 |
{
|
| 813 |
"file": "/media/new_image_22.jpg",
|
| 814 |
"gender": "male",
|
|
@@ -816,16 +620,7 @@
|
|
| 816 |
"doing": "is taking",
|
| 817 |
"what": "wellies",
|
| 818 |
"to_where": "to the forest",
|
| 819 |
-
"distractors": ["to
|
| 820 |
-
},
|
| 821 |
-
{
|
| 822 |
-
"file": "/media/new_image_23.jpg",
|
| 823 |
-
"gender": "female",
|
| 824 |
-
"who": "Hidoyat",
|
| 825 |
-
"doing": "is sneaking",
|
| 826 |
-
"what": "",
|
| 827 |
-
"to_where": "to a church",
|
| 828 |
-
"distractors": ["to the kitchen", "to a playpark", "to the garage"]
|
| 829 |
},
|
| 830 |
{
|
| 831 |
"file": "/media/new_image_24.jpg",
|
|
@@ -845,15 +640,6 @@
|
|
| 845 |
"to_where": "to a hotel",
|
| 846 |
"distractors": ["to a house", "to the cash machine", "to a restaurant"]
|
| 847 |
},
|
| 848 |
-
{
|
| 849 |
-
"file": "/media/new_image_26.jpg",
|
| 850 |
-
"gender": "male",
|
| 851 |
-
"who": "A policeman",
|
| 852 |
-
"doing": "is flying",
|
| 853 |
-
"what": "",
|
| 854 |
-
"to_where": "to the Madrasa",
|
| 855 |
-
"distractors": ["to the market", "to London", "to a flat"]
|
| 856 |
-
},
|
| 857 |
{
|
| 858 |
"file": "/media/new_image_27.jpg",
|
| 859 |
"gender": "female",
|
|
@@ -861,25 +647,7 @@
|
|
| 861 |
"doing": "is walking",
|
| 862 |
"what": "",
|
| 863 |
"to_where": "to the toilet",
|
| 864 |
-
"distractors": ["to
|
| 865 |
-
},
|
| 866 |
-
{
|
| 867 |
-
"file": "/media/new_image_28.jpg",
|
| 868 |
-
"gender": "male",
|
| 869 |
-
"who": "A pilot",
|
| 870 |
-
"doing": "is taking",
|
| 871 |
-
"what": "a spoon",
|
| 872 |
-
"to_where": "to the living room",
|
| 873 |
-
"distractors": ["to a restaurant", "to a hotel", "to the airport"]
|
| 874 |
-
},
|
| 875 |
-
{
|
| 876 |
-
"file": "/media/new_image_29.jpg",
|
| 877 |
-
"gender": "female",
|
| 878 |
-
"who": "A florist",
|
| 879 |
-
"doing": "is driving",
|
| 880 |
-
"what": "",
|
| 881 |
-
"to_where": "to the learning room",
|
| 882 |
-
"distractors": ["to the market", "to a playpark", "to the kitchen"]
|
| 883 |
},
|
| 884 |
{
|
| 885 |
"file": "/media/new_image_30.jpg",
|
|
@@ -908,37 +676,15 @@
|
|
| 908 |
"to_where": "to the first floor",
|
| 909 |
"distractors": ["to a garden", "to the airport", "to Whipps Cross"]
|
| 910 |
},
|
| 911 |
-
{
|
| 912 |
-
"file": "/media/new_image_33.jpg",
|
| 913 |
-
"gender": "male",
|
| 914 |
-
"who": "A dentist",
|
| 915 |
-
"doing": "is jumping",
|
| 916 |
-
"what": "",
|
| 917 |
-
"to_where": "to Eatington Road",
|
| 918 |
-
"distractors": [
|
| 919 |
-
"to London",
|
| 920 |
-
"to the learning room",
|
| 921 |
-
"to Salam Youth Academy"
|
| 922 |
-
]
|
| 923 |
-
},
|
| 924 |
{
|
| 925 |
"file": "/media/new_image_34.jpg",
|
| 926 |
-
"gender": "
|
| 927 |
"who": "A binman",
|
| 928 |
"doing": "is taking",
|
| 929 |
"what": "food",
|
| 930 |
"to_where": "to Halford Road",
|
| 931 |
"distractors": ["to the toilet", "to an apartment", "to the shop"]
|
| 932 |
},
|
| 933 |
-
{
|
| 934 |
-
"file": "/media/new_image_35.jpg",
|
| 935 |
-
"gender": "female",
|
| 936 |
-
"who": "A postman",
|
| 937 |
-
"doing": "is sneaking",
|
| 938 |
-
"what": "",
|
| 939 |
-
"to_where": "to home",
|
| 940 |
-
"distractors": ["to the mosque", "to the classroom", "to a school"]
|
| 941 |
-
},
|
| 942 |
{
|
| 943 |
"file": "/media/new_image_36.jpg",
|
| 944 |
"gender": "male",
|
|
@@ -946,7 +692,7 @@
|
|
| 946 |
"doing": "is going",
|
| 947 |
"what": "",
|
| 948 |
"to_where": "to the airport",
|
| 949 |
-
"distractors": ["to a hotel", "to the
|
| 950 |
},
|
| 951 |
{
|
| 952 |
"file": "/media/new_image_37.jpg",
|
|
@@ -955,16 +701,7 @@
|
|
| 955 |
"doing": "is taking",
|
| 956 |
"what": "bread",
|
| 957 |
"to_where": "to Tashkent",
|
| 958 |
-
"distractors": ["to a restaurant", "to the
|
| 959 |
-
},
|
| 960 |
-
{
|
| 961 |
-
"file": "/media/new_image_38.jpg",
|
| 962 |
-
"gender": "male",
|
| 963 |
-
"who": "A gardener",
|
| 964 |
-
"doing": "is flying",
|
| 965 |
-
"what": "",
|
| 966 |
-
"to_where": "to Uzbekistan",
|
| 967 |
-
"distractors": ["to a church", "to the city centre", "to the shop"]
|
| 968 |
},
|
| 969 |
{
|
| 970 |
"file": "/media/new_image_39.jpg",
|
|
@@ -973,16 +710,7 @@
|
|
| 973 |
"doing": "is walking",
|
| 974 |
"what": "",
|
| 975 |
"to_where": "to London",
|
| 976 |
-
"distractors": ["to the market", "to the
|
| 977 |
-
},
|
| 978 |
-
{
|
| 979 |
-
"file": "/media/new_image_40.jpg",
|
| 980 |
-
"gender": "male",
|
| 981 |
-
"who": "A painter",
|
| 982 |
-
"doing": "is taking",
|
| 983 |
-
"what": "butter",
|
| 984 |
-
"to_where": "to the ice cream van",
|
| 985 |
-
"distractors": ["to the Masjid", "to College", "to the mosque"]
|
| 986 |
},
|
| 987 |
{
|
| 988 |
"file": "/media/new_image_41.jpg",
|
|
@@ -1002,7 +730,7 @@
|
|
| 1002 |
"to_where": "to the cash machine",
|
| 1003 |
"distractors": [
|
| 1004 |
"to the train station",
|
| 1005 |
-
"to the
|
| 1006 |
"to Hainault Forest"
|
| 1007 |
]
|
| 1008 |
},
|
|
@@ -1015,51 +743,6 @@
|
|
| 1015 |
"to_where": "to the petrol station",
|
| 1016 |
"distractors": ["to the mosque", "to the hospital", "to a playground"]
|
| 1017 |
},
|
| 1018 |
-
{
|
| 1019 |
-
"file": "/media/new_image_44.jpg",
|
| 1020 |
-
"gender": "female",
|
| 1021 |
-
"who": "A chef",
|
| 1022 |
-
"doing": "is moving",
|
| 1023 |
-
"what": "",
|
| 1024 |
-
"to_where": "to Tesco",
|
| 1025 |
-
"distractors": ["to the kitchen", "to a church", "to the learning room"]
|
| 1026 |
-
},
|
| 1027 |
-
{
|
| 1028 |
-
"file": "/media/new_image_45.jpg",
|
| 1029 |
-
"gender": "male",
|
| 1030 |
-
"who": "A barber",
|
| 1031 |
-
"doing": "is jumping",
|
| 1032 |
-
"what": "",
|
| 1033 |
-
"to_where": "to Lidl",
|
| 1034 |
-
"distractors": ["to the market", "to the shop", "to London"]
|
| 1035 |
-
},
|
| 1036 |
-
{
|
| 1037 |
-
"file": "/media/new_image_46.jpg",
|
| 1038 |
-
"gender": "male",
|
| 1039 |
-
"who": "A farmer",
|
| 1040 |
-
"doing": "is taking",
|
| 1041 |
-
"what": "chilly",
|
| 1042 |
-
"to_where": "to Whipps Cross",
|
| 1043 |
-
"distractors": ["to a flat", "to a church", "to a playpark"]
|
| 1044 |
-
},
|
| 1045 |
-
{
|
| 1046 |
-
"file": "/media/new_image_47.jpg",
|
| 1047 |
-
"gender": "male",
|
| 1048 |
-
"who": "An astronaut",
|
| 1049 |
-
"doing": "is sneaking",
|
| 1050 |
-
"what": "",
|
| 1051 |
-
"to_where": "to College",
|
| 1052 |
-
"distractors": ["to a playpark", "to the classroom", "to the learning room"]
|
| 1053 |
-
},
|
| 1054 |
-
{
|
| 1055 |
-
"file": "/media/new_image_48.jpg",
|
| 1056 |
-
"gender": "male",
|
| 1057 |
-
"who": "A paramedic",
|
| 1058 |
-
"doing": "is going",
|
| 1059 |
-
"what": "",
|
| 1060 |
-
"to_where": "to an apartment",
|
| 1061 |
-
"distractors": ["to a playpark", "to the classroom", "to a garden"]
|
| 1062 |
-
},
|
| 1063 |
{
|
| 1064 |
"file": "/media/new_image_49.jpg",
|
| 1065 |
"gender": "male",
|
|
@@ -1070,38 +753,7 @@
|
|
| 1070 |
"distractors": [
|
| 1071 |
"to a playground",
|
| 1072 |
"to a garden",
|
| 1073 |
-
"to the
|
| 1074 |
-
]
|
| 1075 |
-
},
|
| 1076 |
-
{
|
| 1077 |
-
"file": "/media/new_image_50.jpg",
|
| 1078 |
-
"gender": "male",
|
| 1079 |
-
"who": "Zaki",
|
| 1080 |
-
"doing": "is flying",
|
| 1081 |
-
"what": "",
|
| 1082 |
-
"to_where": "to the bedroom",
|
| 1083 |
-
"distractors": [
|
| 1084 |
-
"to the bus station",
|
| 1085 |
-
"to the hospital",
|
| 1086 |
-
"to the learning room"
|
| 1087 |
]
|
| 1088 |
-
},
|
| 1089 |
-
{
|
| 1090 |
-
"file": "/media/new_image_51.jpg",
|
| 1091 |
-
"gender": "male",
|
| 1092 |
-
"who": "Harun",
|
| 1093 |
-
"doing": "is walking",
|
| 1094 |
-
"what": "",
|
| 1095 |
-
"to_where": "to upstairs",
|
| 1096 |
-
"distractors": ["to the Masjid", "to a church", "to a house"]
|
| 1097 |
-
},
|
| 1098 |
-
{
|
| 1099 |
-
"file": "/media/new_image_52.jpg",
|
| 1100 |
-
"gender": "male",
|
| 1101 |
-
"who": "Rashid",
|
| 1102 |
-
"doing": "is taking",
|
| 1103 |
-
"what": "coffee",
|
| 1104 |
-
"to_where": "to downstairs",
|
| 1105 |
-
"distractors": ["to a playpark", "to the petrol station", "to a restaurant"]
|
| 1106 |
}
|
| 1107 |
]
|
|
|
|
| 44 |
"to_where": "to the school",
|
| 45 |
"distractors": [
|
| 46 |
"to the hospital",
|
| 47 |
+
"to the mosque",
|
| 48 |
"to Salam Youth Academy"
|
| 49 |
]
|
| 50 |
},
|
|
|
|
| 136 |
"doing": "is going",
|
| 137 |
"what": "",
|
| 138 |
"to_where": "to the post office",
|
| 139 |
+
"distractors": ["to the bank museum", "to the shop", "to the market"]
|
| 140 |
},
|
| 141 |
{
|
| 142 |
"file": "/media/sent17.jpg",
|
|
|
|
| 154 |
"doing": "are going",
|
| 155 |
"what": "",
|
| 156 |
"to_where": "to the classroom",
|
| 157 |
+
"distractors": ["to the learning room", "to the school", "to college"]
|
| 158 |
},
|
| 159 |
{
|
| 160 |
"file": "/media/sent19.jpg",
|
|
|
|
| 164 |
"what": "",
|
| 165 |
"to_where": "to the old place",
|
| 166 |
"distractors": [
|
| 167 |
+
"to the bank museum",
|
| 168 |
+
"to the london transport museum",
|
| 169 |
"to the city centre"
|
| 170 |
]
|
| 171 |
},
|
|
|
|
| 239 |
"doing": "are going",
|
| 240 |
"what": "",
|
| 241 |
"to_where": "to the hospital",
|
| 242 |
+
"distractors": ["to a school", "to college", "to the mosque"]
|
| 243 |
},
|
| 244 |
{
|
| 245 |
"file": "/media/sent28.jpg",
|
|
|
|
| 259 |
"to_where": "to the airport",
|
| 260 |
"distractors": ["to London", "to Uzbekistan", "to Tashkent"]
|
| 261 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 262 |
{
|
| 263 |
"file": "/media/sent31.jpg",
|
| 264 |
"gender": "",
|
|
|
|
| 277 |
"to_where": "to the beach",
|
| 278 |
"distractors": ["to a lake", "to a garden", "to the forest"]
|
| 279 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 280 |
{
|
| 281 |
"file": "/media/sent34.jpg",
|
| 282 |
"gender": "",
|
|
|
|
| 311 |
"doing": "are going",
|
| 312 |
"what": "",
|
| 313 |
"to_where": "to a school",
|
| 314 |
+
"distractors": ["to college", "to the mosque", "to the madrasa"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 315 |
},
|
| 316 |
{
|
| 317 |
"file": "/media/sent39.jpg",
|
|
|
|
| 356 |
"doing": "is poofing",
|
| 357 |
"what": "",
|
| 358 |
"to_where": "to the library",
|
| 359 |
+
"distractors": ["to a school", "to college", "to the learning room"]
|
| 360 |
},
|
| 361 |
{
|
| 362 |
"file": "/media/sent44.jpg",
|
|
|
|
| 419 |
"doing": "is traveling",
|
| 420 |
"what": "",
|
| 421 |
"to_where": "to a meeting room",
|
| 422 |
+
"distractors": ["to a conference hall", "to an office", "to college"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 423 |
},
|
| 424 |
{
|
| 425 |
"file": "/media/sent52.jpg",
|
|
|
|
| 446 |
"doing": "is going",
|
| 447 |
"what": "",
|
| 448 |
"to_where": "to the lab",
|
| 449 |
+
"distractors": ["to a school", "to college", "to the learning room"]
|
| 450 |
},
|
| 451 |
{
|
| 452 |
"file": "/media/sent55.jpg",
|
|
|
|
| 455 |
"doing": "is going",
|
| 456 |
"what": "",
|
| 457 |
"to_where": "to the gym",
|
| 458 |
+
"distractors": ["to a playground", "to a playpark", "to college"]
|
| 459 |
},
|
| 460 |
{
|
| 461 |
"file": "/media/sent56.jpg",
|
|
|
|
| 463 |
"who": "The traveler",
|
| 464 |
"doing": "is walking",
|
| 465 |
"what": "",
|
| 466 |
+
"to_where": "to the mosque",
|
| 467 |
+
"distractors": ["to the masjid", "to the madrasa", "to a church"]
|
| 468 |
},
|
| 469 |
{
|
| 470 |
"file": "/media/sent57.jpg",
|
|
|
|
| 475 |
"to_where": "to a garden",
|
| 476 |
"distractors": ["to a park", "to Hainault Forest", "to a playground"]
|
| 477 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 478 |
{
|
| 479 |
"file": "/media/sent59.jpg",
|
| 480 |
"gender": "",
|
|
|
|
| 493 |
"to_where": "to bed",
|
| 494 |
"distractors": ["to the bedroom", "to the living room", "to the kitchen"]
|
| 495 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 496 |
{
|
| 497 |
"file": "/media/sent62.jpg",
|
| 498 |
"gender": "",
|
|
|
|
| 540 |
"doing": "is traveling",
|
| 541 |
"what": "",
|
| 542 |
"to_where": "to the big game",
|
| 543 |
+
"distractors": ["to a playground", "to college", "to a school"]
|
| 544 |
},
|
| 545 |
{
|
| 546 |
"file": "/media/new_image_1.jpg",
|
|
|
|
| 550 |
"what": "a flower",
|
| 551 |
"to_where": "to a school",
|
| 552 |
"distractors": [
|
| 553 |
+
"to the mosque",
|
| 554 |
+
"to the london transport museum",
|
| 555 |
"to a house"
|
| 556 |
]
|
| 557 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 558 |
{
|
| 559 |
"file": "/media/new_image_3.jpg",
|
| 560 |
"gender": "male",
|
|
|
|
| 571 |
"doing": "is taking",
|
| 572 |
"what": "an icecream",
|
| 573 |
"to_where": "to a playpark",
|
| 574 |
+
"distractors": ["to the mosque", "to the market", "to a garden"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 575 |
},
|
| 576 |
{
|
| 577 |
"file": "/media/new_image_6.jpg",
|
|
|
|
| 583 |
"distractors": [
|
| 584 |
"to the shop",
|
| 585 |
"to a hotel",
|
| 586 |
+
"to the london transport museum"
|
| 587 |
]
|
| 588 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 589 |
{
|
| 590 |
"file": "/media/new_image_10.jpg",
|
| 591 |
"gender": "female",
|
|
|
|
| 595 |
"to_where": "to the post office",
|
| 596 |
"distractors": ["to a playground", "to a flat", "to the learning room"]
|
| 597 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 598 |
{
|
| 599 |
"file": "/media/new_image_12.jpg",
|
| 600 |
"gender": "female",
|
|
|
|
| 602 |
"doing": "is going",
|
| 603 |
"what": "",
|
| 604 |
"to_where": "to the train station",
|
| 605 |
+
"distractors": ["to the market", "to a playground", "to the bank museum"]
|
| 606 |
},
|
| 607 |
{
|
| 608 |
"file": "/media/new_image_13.jpg",
|
|
|
|
| 610 |
"who": "A lady",
|
| 611 |
"doing": "is taking",
|
| 612 |
"what": "socks",
|
| 613 |
+
"to_where": "to the bank museum",
|
| 614 |
"distractors": ["to a flat", "to a school", "to the living room"]
|
| 615 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 616 |
{
|
| 617 |
"file": "/media/new_image_22.jpg",
|
| 618 |
"gender": "male",
|
|
|
|
| 620 |
"doing": "is taking",
|
| 621 |
"what": "wellies",
|
| 622 |
"to_where": "to the forest",
|
| 623 |
+
"distractors": ["to the school", "to the mosque", "to the market"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 624 |
},
|
| 625 |
{
|
| 626 |
"file": "/media/new_image_24.jpg",
|
|
|
|
| 640 |
"to_where": "to a hotel",
|
| 641 |
"distractors": ["to a house", "to the cash machine", "to a restaurant"]
|
| 642 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 643 |
{
|
| 644 |
"file": "/media/new_image_27.jpg",
|
| 645 |
"gender": "female",
|
|
|
|
| 647 |
"doing": "is walking",
|
| 648 |
"what": "",
|
| 649 |
"to_where": "to the toilet",
|
| 650 |
+
"distractors": ["to college", "to the barber's", "to the shop"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 651 |
},
|
| 652 |
{
|
| 653 |
"file": "/media/new_image_30.jpg",
|
|
|
|
| 676 |
"to_where": "to the first floor",
|
| 677 |
"distractors": ["to a garden", "to the airport", "to Whipps Cross"]
|
| 678 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 679 |
{
|
| 680 |
"file": "/media/new_image_34.jpg",
|
| 681 |
+
"gender": "male",
|
| 682 |
"who": "A binman",
|
| 683 |
"doing": "is taking",
|
| 684 |
"what": "food",
|
| 685 |
"to_where": "to Halford Road",
|
| 686 |
"distractors": ["to the toilet", "to an apartment", "to the shop"]
|
| 687 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 688 |
{
|
| 689 |
"file": "/media/new_image_36.jpg",
|
| 690 |
"gender": "male",
|
|
|
|
| 692 |
"doing": "is going",
|
| 693 |
"what": "",
|
| 694 |
"to_where": "to the airport",
|
| 695 |
+
"distractors": ["to a hotel", "to the mosque", "to Halford Road"]
|
| 696 |
},
|
| 697 |
{
|
| 698 |
"file": "/media/new_image_37.jpg",
|
|
|
|
| 701 |
"doing": "is taking",
|
| 702 |
"what": "bread",
|
| 703 |
"to_where": "to Tashkent",
|
| 704 |
+
"distractors": ["to a restaurant", "to the bank museum", "to a garden"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 705 |
},
|
| 706 |
{
|
| 707 |
"file": "/media/new_image_39.jpg",
|
|
|
|
| 710 |
"doing": "is walking",
|
| 711 |
"what": "",
|
| 712 |
"to_where": "to London",
|
| 713 |
+
"distractors": ["to the market", "to the mosque", "to the petrol station"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 714 |
},
|
| 715 |
{
|
| 716 |
"file": "/media/new_image_41.jpg",
|
|
|
|
| 730 |
"to_where": "to the cash machine",
|
| 731 |
"distractors": [
|
| 732 |
"to the train station",
|
| 733 |
+
"to the bank museum",
|
| 734 |
"to Hainault Forest"
|
| 735 |
]
|
| 736 |
},
|
|
|
|
| 743 |
"to_where": "to the petrol station",
|
| 744 |
"distractors": ["to the mosque", "to the hospital", "to a playground"]
|
| 745 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 746 |
{
|
| 747 |
"file": "/media/new_image_49.jpg",
|
| 748 |
"gender": "male",
|
|
|
|
| 753 |
"distractors": [
|
| 754 |
"to a playground",
|
| 755 |
"to a garden",
|
| 756 |
+
"to the london transport museum"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 757 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 758 |
}
|
| 759 |
]
|