-
Notifications
You must be signed in to change notification settings - Fork 2
/
shared1000_HED.tsv
We can't make this file beautiful and searchable because it's too large.
executable file
·1001 lines (1001 loc) · 869 KB
/
shared1000_HED.tsv
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
File_Name nsd_id cocoId HED_short HED_long
shared0001_nsd02951.png 2950 262145 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, ((Human, Body, Agent-trait/Adult), Outdoors, Furnishing, Natural-feature/Sky, Urban, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Furnishing,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object))"
shared0002_nsd02991.png 2990 262239 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), ((Item-count, High), Furnishing))), (Background-view, (Ingestible-object, Furnishing, Room, Indoors, Man-made-object, Assistive-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object,Item/Object/Man-made-object/Device/Assistive-device))"
shared0003_nsd03050.png 3049 262414 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0004_nsd03078.png 3077 524646 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object))), (Item-count/1, River), (Item-count/3, Man-made-object), Terrain/Sand)), (Background-view, (Mountain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0005_nsd03147.png 3146 262690 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face), (Item-count/1, Roof), (Item-Count/1, Entrance))), (Background-view, (Grassy-terrain, Path, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Man-made-object/Navigational-object/Path,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0006_nsd03158.png 3157 584 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0007_nsd03165.png 3164 605 "(Foreground-view, ((Item-count/1, Ingestible-object), (Item-count/2, Furnishing), (Item-count/1, Assistive-device))), (Background-view, (Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0008_nsd03172.png 3171 625 "(Foreground-view, ((Item-count/3, ((Human, Human-agent), Body, Female, Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Field, Grassy-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant))"
shared0009_nsd03182.png 3181 650 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Car, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Outdoors))"
shared0010_nsd03387.png 3386 1308 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky))"
shared0011_nsd03435.png 3434 263599 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/2, Word))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0012_nsd03450.png 3449 525790 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Child)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky))"
shared0013_nsd03490.png 3489 525932 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, River, Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0014_nsd03627.png 3626 264244 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Laptop-computer))), (Background-view, (Furnishing, Room, Indoors, Animal, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Animal,Item/Biological-item/Organism/Plant))"
shared0015_nsd03683.png 3682 264396 "(Foreground-view, (Item-count/1, Train)), (Background-view, (Outdoors, Urban, Mountain, River, Composite-terrain, Car, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building))"
shared0016_nsd03688.png 3687 2270 "(Foreground-view, (((Item-count, High), Book), ((Item-count, High), Furnishing))), (Background-view, (Room, Indoors, Man-made-object/Musical-instrument, Plant, Entrance, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Document/Book),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Musical-instrument,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Furnishing))"
shared0017_nsd03730.png 3729 2372 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Microphone), (Item-count/1, Pen))), (Background-view, (Indoors, Display-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Microphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device))"
shared0018_nsd03810.png 3809 264735 "(Foreground-view, (((Item-count, High), (Animal, Animal-agent)), Run)), (Background-view, (Outdoors, Grassy-terrain, Mountain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Run)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0019_nsd03843.png 3842 526968 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Grassy-terrain, Field, Car, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Outdoors))"
shared0020_nsd03848.png 3847 526980 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0021_nsd03857.png 3856 274108 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Agent-trait/Infant, Male)), (Item-count/1, (Human, Body, (Face, Towards), Agent-trait/Child, Male)), (Item-count/1, Book), ((Item-count, High), Word))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Infant,Property/Agent-property/Agent-trait/Sex/Male)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child,Property/Agent-property/Agent-trait/Sex/Male)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0022_nsd03914.png 3913 265023 "(Foreground-view, (((Item-count, High), (Human, Body, (Face, Towards), Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, Sloped-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain))"
shared0023_nsd03952.png 3951 265150 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0024_nsd04052.png 4051 265453 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Action/Ride, (Item-count/2, (Animal, Animal-agent)), Walk))), (Background-view, (Path, Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0025_nsd04059.png 4058 527618 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0026_nsd04130.png 4129 3521 "(Foreground-view, ((Item-count/2, Man-made-object/Toy), (Item-count/1, Man-made-object/Musical-instrument), (Item-count/1, Furnishing), ((Item-count, High), Plant))), (Background-view, (Room, Entrance, Indoors, (Human, Body, Agent-trait/Adult), (Human, Body, Male, Agent-trait/Child)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Musical-instrument),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Building/Entrance,Property/Environmental-property/Indoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)))"
shared0027_nsd04157.png 4156 265745 "(Foreground-view, (Item-count/3, Ingestible-object)), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0028_nsd04250.png 4249 558788 "(Foreground-view, ((Item-count/1, Aircraft), ((Item-count, High), Character), (Item-count/1, Icon), Terrain/Sand)), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0029_nsd04326.png 4325 393907 "(Foreground-view, ((Item-count/2, Animal), ((Item-count, High), Plant))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0030_nsd04424.png 4423 4442 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Agent-trait/Child, Female)), (Item-count/1, Furnishing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child,Property/Agent-property/Agent-trait/Sex/Female)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0031_nsd04437.png 4436 266622 "(Foreground-view, ((Item-count/2, Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0032_nsd04613.png 4612 5028 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Laptop-computer), (Item-count/1, Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Indoors, Furnishing, Room, Book, Man-made-object, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Entrance))"
shared0033_nsd04668.png 4667 267338 "(Foreground-view, ((Item-count/1, Animal), (Item-count/3, Furnishing))), (Background-view, (Room, Indoors, Art-installation))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Art-installation))"
shared0034_nsd04691.png 4690 5277 "(Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0035_nsd04769.png 4768 267647 "(Foreground-view, ((Item-count/1, Ingestible-object), ((Item-count, High), Icon), (Item-count/1, Assistive-device))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0036_nsd04787.png 4786 267699 "(Foreground-view, ((Item-count/2, (Human, Body, Agent-trait/Adult)), (Item-count/3, Vehicle), ((Item-count, High), Car), (Item-count/2, Man-made-object), (Item-count/1, Road), ((Item-count, High), Plant))), (Background-view, (Car, Vehicle, Road, Building, Urban, Outdoors, Paved-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Vehicle,Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant))"
shared0037_nsd04836.png 4835 5684 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/2, Word), (Item-count/1, Road), (Item-count/1, Plant))), (Background-view, (Outdoors, Car, Building, Paved-terrain, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban))"
shared0038_nsd04870.png 4869 312536 "(Foreground-view, (Item-count/3, Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0039_nsd04893.png 4892 268008 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), Terrain/Sand)), (Background-view, (Outdoors, Grassy-terrain, Furnishing, Roof, (Human, Body, Male, Agent-trait/Adult)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Roof,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)))"
shared0040_nsd04931.png 4930 268114 "(Foreground-view, ((Item-count/4, Boat), (Item-count/1, River), (Item-count/1, Path))), (Background-view, (Outdoors, Composite-terrain, Hill, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Natural-object/Natural-feature/Hill,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0041_nsd05035.png 5034 268418 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0042_nsd05107.png 5106 268659 "(Foreground-view, ((Item-count/1, (Animal, Animal-agent)), Walk)), (Background-view, (Dirt-terrain, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0043_nsd05205.png 5204 6765 "(Foreground-view, (Item-count/1, Train)), (Background-view, (Outdoors, Grassy-terrain, Hill, Building, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Hill,Item/Object/Man-made-object/Building,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0044_nsd05286.png 5285 7048 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean))"
shared0045_nsd05302.png 5301 531392 "(Foreground-view, ((Item-count/1, Furnishing), ((Item-count, High), Plant))), (Background-view, (Indoors, Man-made-object/Musical-instrument))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Musical-instrument))"
shared0046_nsd05339.png 5338 531515 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Building, Car, Grassy-terrain, Field, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0047_nsd05428.png 5427 531828 "(Foreground-view, ((Item-count/1, Ingestible-object), (Item-count/1, (Human, Body)))), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0048_nsd05460.png 5459 11299 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Word))), (Background-view, (Runway, Outdoors, Icon, Field, Mountain, Building, Aircraft))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Runway,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Media/Visualization/Image/Icon,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Aircraft))"
shared0049_nsd05503.png 5502 219750 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/2, Man-made-object), (Item-count/1, Road), (Item-count/1, Path))), (Background-view, (Urban, Outdoors, Paved-terrain, Car, (Human, Body, Agent-trait/Older-adult), Building, Bicycle, Plant, Vehicle))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Vehicle/Car,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Older-adult),Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Bicycle,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Vehicle))"
shared0050_nsd05543.png 5542 7932 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adolescent))), (Play, (Item-count/3, Man-made-object/Toy)))), (Background-view, (Outdoors, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent))),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0051_nsd05575.png 5574 8027 "(Foreground-view, (((Item-count, High), Plant), (Item-count/1, Animal))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0052_nsd05584.png 5583 8053 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adult)), (Walk, (Item-count/1, Man-made-object)))), (Background-view, (Paved-terrain, Path, Building, Urban, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Navigational-object/Path,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors))"
shared0053_nsd05603.png 5602 270278 "(Foreground-view, (Natural-feature/Ocean, (Item-count/3, 2D-Shape), Terrain/Sand)), (Background-view, (Outdoors, Natural-feature/Sky, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Item/Object/Natural-object/Natural-feature/Ocean,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Geometric-object/2D-shape),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0054_nsd05715.png 5714 532753 "(Foreground-view, ((Item-count, High), Aircraft)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0055_nsd05879.png 5878 533231 "(Foreground-view, ((Item-count/2, Boat), (Item-count/1, River))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0056_nsd05891.png 5890 8998 "(Foreground-view, ((Item-count/2, Building), (Item-count/1, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0057_nsd06133.png 6132 1625 "(Foreground-view, ((Item-count/1, Bicycle), (Item-count/1, Furnishing))), (Background-view, (Vehicle, Paved-terrain, Road, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Navigational-object/Road,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0058_nsd06200.png 6199 534259 "(Foreground-view, ((Item-count/1, Train), (Item-count/2, Word))), (Background-view, (Mountain, Composite-terrain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0059_nsd06223.png 6222 10046 "(Foreground-view, ((Item-count/2, Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0060_nsd06432.png 6431 10710 "(Foreground-view, (((Item-count/3, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/2, Character))), (Background-view, (Composite-terrain, Field, Icon, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Man-made-object/Media/Visualization/Image/Icon,Property/Environmental-property/Outdoors))"
shared0061_nsd06445.png 6444 272901 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Action/Ride, (Item-count/1, Bicycle))), (Item-count/1, Road), (Item-count/2, Car), (Item-count/1, Truck))), (Background-view, (Building, Urban, Outdoors, Man-made-object, (Human, Body, Agent-trait/Adult), Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Truck))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Item/Object/Man-made-object,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Vehicle/Car))"
shared0062_nsd06490.png 6489 10903 "(Foreground-view, (Item-count/4, Furnishing)), (Background-view, (Furnishing, Room, Plant, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Item/Biological-item/Organism/Plant,Property/Environmental-property/Indoors))"
shared0063_nsd06515.png 6514 273120 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/2, Word))), (Background-view, ((Human, Body, Agent-trait/Adolescent), Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adolescent),Property/Environmental-property/Outdoors))"
shared0064_nsd06522.png 6521 273138 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing, Assistive-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Device/Assistive-device))"
shared0065_nsd06525.png 6524 273147 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0066_nsd06559.png 6558 273250 "(Foreground-view, ((Item-count/3, Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, ((Human, Body), Indoors, Furnishing, Room, Assistive-device, Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Device/Assistive-device,Item/Object/Ingestible-object))"
shared0067_nsd06641.png 6640 11358 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0068_nsd06714.png 6713 535871 "(Foreground-view, (((Item-count/2, ((Human, Human-agent), Body, Agent-trait/Child)), (Play, (Item-count/2, Man-made-object/Toy))), Paved-terrain)), (Background-view, (Outdoors, Composite-terrain, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0069_nsd06802.png 6801 11856 "(Foreground-view, ((Item-count/2, (Human, Body, Female, Agent-trait/Adult)), (Item-count/1, Furnishing), (Item-count/1, Road))), (Background-view, (Photograph, Outdoors, Truck))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Vehicle/Truck))"
shared0070_nsd07008.png 7007 536786 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Grassy-terrain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0071_nsd07040.png 7039 536884 "(Foreground-view, ((Item-count/1, Man-made-object), ((Item-count, High), Plant))), (Background-view, (Outdoors, Path, Road, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Navigational-object/Path,Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Terrain/Composite-terrain))"
shared0072_nsd07121.png 7120 274978 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Walk, (Item-count/1, Man-made-object))), Terrain/Sand)), (Background-view, (Outdoors, Natural-feature/Ocean, (Human, Body), Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Mountain))"
shared0073_nsd07208.png 7207 537393 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Uneven-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Uneven-terrain,Property/Environmental-property/Outdoors))"
shared0074_nsd07337.png 7336 275663 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0075_nsd07367.png 7366 399878 "(Foreground-view, (((Item-count, High), Man-made-object/Toy), (Item-count/1, River))), (Background-view, (Grassy-terrain, Field, Mountain, Natural-feature/Sky, Outdoors, (Human, Body), Path))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Navigational-object/Path))"
shared0076_nsd07410.png 7409 275902 "(Foreground-view, (Item-count/1, Train)), (Background-view, (Outdoors, Mountain, River, Plant, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/River,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Composite-terrain))"
shared0077_nsd07419.png 7418 275938 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Child)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Natural-feature/Sky, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0078_nsd07481.png 7480 13969 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Ingestible-object), (Item-count/1, Assistive-device))), (Background-view, ((Human, Body, Agent-trait/Adolescent), Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adolescent),Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0079_nsd07655.png 7654 276664 "(Foreground-view, (Item-count/1, Boat)), (Background-view, (Furnishing, Room, Indoors, Assistive-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/Assistive-device))"
shared0080_nsd07660.png 7659 538822 "(Foreground-view, ((Item-count/1, (Human, Body)), (Item-count/1, Tool))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0081_nsd07841.png 7840 539340 "(Foreground-view, ((Item-count/1, Man-made-object/Toy), (Item-count/1, Clothing))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0082_nsd07860.png 7859 539395 "(Foreground-view, (Item-count/1, Train)), (Background-view, (Outdoors, Rural, Plant, Grassy-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain))"
shared0083_nsd07945.png 7944 277524 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Road, Plant, Composite-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors))"
shared0084_nsd07949.png 7948 570543 "(Foreground-view, (Natural-feature/Ocean, (Item-count/1, Boat))), (Background-view, (Natural-feature/Sky, Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Item/Object/Natural-object/Natural-feature/Ocean,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0085_nsd07955.png 7954 539705 "(Foreground-view, (((Item-count, High), Boat), (Item-count/1, River))), (Background-view, (Plant, Composite-terrain, Outdoors, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0086_nsd08007.png 8006 539879 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0087_nsd08110.png 8109 300383 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0088_nsd08205.png 8204 540538 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0089_nsd08226.png 8225 16314 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Grassy-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant))"
shared0090_nsd08263.png 8262 278555 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Outdoors, Natural-feature/Ocean, Rocky-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Terrain/Rocky-terrain))"
shared0091_nsd08275.png 8274 540735 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Grassy-terrain, Field, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0092_nsd08319.png 8318 278714 "(Background-view, (Furnishing, Room, Plant, Painting, Sculpture, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Media/Visualization/Image/Painting,Item/Object/Man-made-object/Media/Visualization/Sculpture,Property/Environmental-property/Indoors))"
shared0093_nsd08388.png 8387 541077 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Action/Ride, (Item-count/1, Bicycle))), (Item-count/1, Car), (Item-count/1, Road))), (Background-view, (Building, Outdoors, Plant, Natural-feature/Sky, Urban, Man-made-object, (Human, Body), Bicycle, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Vehicle/Bicycle,Item/Object/Man-made-object/Vehicle/Car))"
shared0094_nsd08395.png 8394 278962 "(Foreground-view, ((Item-count/1, Ingestible-object), (Item-count/1, Man-made-object))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0095_nsd08416.png 8415 16898 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0096_nsd08436.png 8435 541258 "(Foreground-view, ((Item-count/2, Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0097_nsd08466.png 8465 279197 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0098_nsd08510.png 8509 541472 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)))"
shared0099_nsd08632.png 8631 271183 "(Foreground-view, (Item-count/1, Animal)), (Background-view, ((Human, Body, Agent-trait/Adult), Furnishing, Room, Indoors, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object))"
shared0100_nsd08647.png 8646 541856 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Ingestible-object), (Item-count/1, Man-made-object))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0101_nsd08808.png 8807 17967 "(Foreground-view, (((Item-count, High), (Human, Body, Agent-trait/Adult)), (Item-count/4, Face, Away-from), (Item-count/2, Furnishing), (Item-count/3, Assistive-device))), (Background-view, (Indoors, Ingestible-object, Furnishing, Book, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Building/Room))"
shared0102_nsd08844.png 8843 18078 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face))), (Background-view, (Urban, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0103_nsd08926.png 8925 280484 "(Foreground-view, ((Item-count/1, Truck), ((Item-count, High), Plant), (Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Furnishing))), (Background-view, (Road, Car, (Human, Body), Path, Composite-terrain, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Truck),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Vehicle/Car,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Urban))"
shared0104_nsd08934.png 8933 18367 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Male, Agent-trait/Adolescent)), ((Action/Ride, (Item-count/1, (Animal, Animal-agent))), Walk))), (Background-view, (Path, Outdoors, Plant, Grassy-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),((Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Walk))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Rural))"
shared0105_nsd09028.png 9027 280764 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Child)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0106_nsd09049.png 9048 280808 "(Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0107_nsd09148.png 9147 543254 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0108_nsd09231.png 9230 281330 "(Foreground-view, ((Item-count/2, Boat), (Item-count/1, Path))), (Background-view, (River, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors))"
shared0109_nsd09435.png 9434 544060 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Rocky-terrain, Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0110_nsd09463.png 9462 19863 "(Foreground-view, (Item-count/1, Train)), (Background-view, (Paved-terrain, Indoors, Furnishing, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room))"
shared0111_nsd09681.png 9680 20517 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face), (Item-count/1, Road), (Item-count/1, Man-made-object), (Item-count/1, Car))), (Background-view, (Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban))"
shared0112_nsd09723.png 9722 544926 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Action/Ride, (Item-count/1, Bicycle)))), (Background-view, (Path, Plant, Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0113_nsd09805.png 9804 545160 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/3, Ingestible-object), (Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse))), (Background-view, (Room, Indoors, Furnishing, Sculpture, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Media/Visualization/Sculpture,Item/Object/Man-made-object))"
shared0114_nsd09848.png 9847 571485 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0115_nsd09866.png 9865 21095 "(Foreground-view, ((Item-count, High), Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))"
shared0116_nsd09918.png 9917 283426 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Word), (Item-count/2, Runway), Grassy-terrain)), (Background-view, (Hill, Outdoors, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Runway),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Hill,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0117_nsd09979.png 9978 396793 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Dirt-terrain, Furnishing, (Human, Body, Male, Agent-trait/Child)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Dirt-terrain,Item/Object/Man-made-object/Furnishing,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)))"
shared0118_nsd10007.png 10006 283678 "(Foreground-view, (((Item-count/3, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Man-made-object/Toy))), Composite-terrain, (Item-count/1, Word), (Item-count/1, Character), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Composite-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0119_nsd10047.png 10046 545950 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Female, Agent-trait/Adolescent)), (Action/Ride, (Item-count/1, (Animal, Animal-agent)), Walk))), (Background-view, (Path, Outdoors, Plant, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0120_nsd10065.png 10064 21718 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing), (Item-count/1, Assistive-device))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0121_nsd10106.png 10105 546140 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/3, Word), (Item-count/1, Icon), Grassy-terrain)), (Background-view, (Natural-feature/Sky, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0122_nsd10108.png 10107 546147 "(Foreground-view, ((Item-count/4, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Laptop-computer), (Item-count/1, Path), (Item-count/2, Furnishing))), (Background-view, (Plant, Composite-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors))"
shared0123_nsd10245.png 10244 22256 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Ingestible-object), (Item-count/1, Clock-face))), (Background-view, (Building, Urban, Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0124_nsd10394.png 10393 122964 "(Foreground-view, ((Item-count/3, Furnishing), (Item-count/1, Photograph), (Item-count/1, Man-made-object))), (Background-view, (Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Photograph),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0125_nsd10472.png 10471 22964 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Grassy-terrain, Outdoors, (Human, Body, Agent-trait/Adult)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))"
shared0126_nsd10508.png 10507 547367 "(Foreground-view, (((Item-count, High), Plant), (Item-count/1, Ingestible-object)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object)))"
shared0127_nsd10587.png 10586 285450 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0128_nsd10601.png 10600 547644 "(Background-view, (Furnishing, Room, Indoors, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object))"
shared0129_nsd10611.png 10610 23392 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Cellphone), (Item-count/1, Man-made-object), (Item-count/1, Furnishing))), (Background-view, (Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain))"
shared0130_nsd10908.png 10907 548593 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0131_nsd11160.png 11159 549301 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0132_nsd11334.png 11333 549830 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Walk, (Item-count/1, Man-made-object))), (Item-count/2, Animal), Terrain/Sand)), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0133_nsd11488.png 11487 26029 "(Foreground-view, ((Item-count/3, (Human, Body, Male, Agent-trait/Adult)), (Item-count/3, Laptop-computer), ((Item-count, High), Furnishing))), (Background-view, (Plant, Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0134_nsd11522.png 11521 550396 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Walk, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0135_nsd11567.png 11566 288372 "(Foreground-view, ((Item-count/2, Animal), Dirt-terrain)), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Dirt-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0136_nsd11618.png 11617 26388 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Microphone))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Microphone))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0137_nsd11636.png 11635 26443 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/2, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Animal), (Item-count/1, Furnishing))), (Background-view, (Path, Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0138_nsd11690.png 11689 288751 "(Foreground-view, ((Item-count/1, Path), (Item-count/2, Boat), Natural-feature/Ocean)), (Background-view, (Building, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat),Item/Object/Natural-object/Natural-feature/Ocean)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0139_nsd11726.png 11725 26702 "(Foreground-view, ((Item-count/2, (Animal, Animal-agent)), Walk)), (Background-view, (Path, Uneven-terrain, Rocky-terrain, Grassy-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Terrain/Uneven-terrain,Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0140_nsd11797.png 11796 551164 "(Foreground-view, (Item-count/4, Furnishing)), (Background-view, (Indoors, Plant, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant,Item/Biological-item/Organism/Animal))"
shared0141_nsd11828.png 11827 26981 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0142_nsd11838.png 11837 27002 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Path), (Item-count/1, Furnishing))), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0143_nsd11845.png 11844 27030 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0144_nsd11933.png 11932 354070 "(Foreground-view, ((Item-count/2, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, (Human, Body, Male, Agent-trait/Adult)), ((Item-count, High), Furnishing))), (Background-view, (Outdoors, Paved-terrain, Plant, Furnishing, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Furnishing,Item/Object/Natural-object/Natural-feature/Sky))"
shared0145_nsd11943.png 11942 27298 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Room, Indoors, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Entrance))"
shared0146_nsd11953.png 11952 289460 "(Foreground-view, ((Item-count/1, Bicycle), Grassy-terrain, (Item-count/1, Path), (Item-count/1, Man-made-object))), (Background-view, (Outdoors, Entrance, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle),Property/Environmental-property/Terrain/Grassy-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Building))"
shared0147_nsd12066.png 12065 289791 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, ((Human, Body, Agent-trait/Adult), Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0148_nsd12076.png 12075 27665 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, Field)), (Background-view, (Animal, Outdoors,Plant, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Animal,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building))"
shared0149_nsd12215.png 12214 290192 "(Foreground-view, ((Item-count, High), Aircraft)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0150_nsd12309.png 12308 552589 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0151_nsd12488.png 12487 553150 "(Foreground-view, (Item-count/1, Aircraft)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0152_nsd12496.png 12495 553166 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0153_nsd12635.png 12634 553586 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Furnishing, Document))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Document))"
shared0154_nsd12686.png 12685 291560 "(Foreground-view, (Item-count/1, Man-made-object)), (Background-view, (Building, Grassy-terrain, Outdoors, Cone))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Object/Geometric-object/3D-shape/Cone))"
shared0155_nsd12797.png 12796 29730 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Sloped-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0156_nsd12799.png 12798 29732 "(Foreground-view, ((Item-count/1, Animal), Rocky-terrain)), (Background-view, (Outdoors, Rocky-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Rocky-terrain,Item/Biological-item/Organism/Plant))"
shared0157_nsd12923.png 12922 30109 "(Foreground-view, ((((Item-count, High), ((Human, Human-agent), Body, Agent-trait/Child)), (Play, ((Item-count, High), Man-made-object/Toy))), ((Item-count, High), (Human,Body, Agent-trait/Adult)), Grassy-terrain, Field)),(Background-view, (Outdoors, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0158_nsd12938.png 12937 30148 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/2, Loudspeaker), (Item-count/1, Furnishing), (Item-count/1, Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0159_nsd13139.png 13138 292845 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Older-adult)), (Item-count/1, Furnishing))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Older-adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0160_nsd13231.png 13230 293130 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, (Item-count/1, Man-made-object/Toy))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0161_nsd13313.png 13312 293368 "(Foreground-view, ((Item-count/1, Plant), (Item-count/1, Book), (Item-count/3, Furnishing))), (Background-view, (Outdoors, Plant, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Furnishing))"
shared0162_nsd13315.png 13314 293372 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adolescent)), (Item-count/1, Furnishing))), (Background-view, (Indoors, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room))"
shared0163_nsd13614.png 13613 32134 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/1, Word))), (Background-view, (Outdoors, Paved-terrain, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Vehicle/Car))"
shared0164_nsd13654.png 13653 556542 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Female, (Face, Towards), Agent-trait/Adult)), (Action/Ride, (Item-count/1, (Animal, Animal-agent))), Run), (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), Dirt-terrain)), (Background-view, (Grassy-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Run),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),Property/Environmental-property/Terrain/Dirt-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0165_nsd13663.png 13662 32275 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0166_nsd13721.png 13720 556748 "(Foreground-view, ((Item-count/1, Vehicle), ((Item-count, High), Word))), (Background-view, (Road, Building, Outdoors, Paved-terrain, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban))"
shared0167_nsd13847.png 13846 32809 "(Foreground-view, ((Item-count/1, Vehicle), ((Item-count, High), (Human, Body)), ((Item-count, High), Word))), (Background-view, (Road, Car, Vehicle, Outdoors, Paved-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Vehicle,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant))"
shared0168_nsd14111.png 14110 557848 "(Foreground-view, ((Item-count/4, Furnishing), (Item-count/4, Box))), (Background-view, (Plant, Paved-terrain, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Geometric-object/3D-shape/Box))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0169_nsd14122.png 14121 557886 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Cart), ((Item-count/1, (Animal, Animal-agent)), (Walk, (Item-count/1, Road))))), (Background-view, (Outdoors, Rural, Natural-feature/Sky, Grassy-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Cart),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Grassy-terrain))"
shared0170_nsd14166.png 14165 33727 "(Foreground-view, ((Item-count/2, Building), (Item-count/1, Clock-face), (Item-count/2, Plant))), (Background-view, (Building, Outdoors, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0171_nsd14180.png 14179 33764 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), ((Item-count/1, ((Human, Human-agent), Body, Male)), Play), Grassy-terrain)), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male)),Action/Perform/Play),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0172_nsd14444.png 14443 558822 "(Foreground-view, ((Item-count/1, Building), Grassy-terrain, Field, ((Item-count, High), Animal), (Item-count/1, Hill))), (Background-view, (Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/Hill))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0173_nsd14529.png 14528 559816 "(Foreground-view, ((Item-count/1, Clock-face), ((Item-count, High), Furnishing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0174_nsd14568.png 14567 559145 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Biological-item/Organism/Animal))"
shared0175_nsd14595.png 14594 559225 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0176_nsd14611.png 14610 297154 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/3, Word))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0177_nsd14645.png 14644 573830 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0178_nsd14794.png 14793 355458 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0179_nsd14809.png 14808 559958 "(Foreground-view, (Item-count/1, Assistive-device)), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0180_nsd14821.png 14820 297844 "(Foreground-view, (((Item-count/2, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), Grassy-terrain, Field)), (Background-view, (Outdoors, Building, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0181_nsd14899.png 14898 35927 "(Foreground-view, ((Item-count/1, Animal), Terrain/Sand)), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0182_nsd14932.png 14931 298170 "(Foreground-view, ((Item-count/1, Train), Grassy-terrain)), (Background-view, (Outdoors, Rural, Plant, Hill, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Hill,Item/Object/Natural-object/Natural-feature/Sky))"
shared0183_nsd15004.png 15003 298395 "(Foreground-view, (Item-count/2, Furnishing)),(Background-view, (Room, Indoors, Assistive-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/Assistive-device))"
shared0184_nsd15026.png 15025 6053 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0185_nsd15129.png 15128 36589 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Newborn)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Indoors, Keyboard))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Newborn)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard))"
shared0186_nsd15365.png 15364 37358 "(Foreground-view, ((Item-count/2, Man-made-object), (Item-count/1, Sculpture))), (Background-view, (Building, Natural-feature/Sky, Urban, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Sculpture))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object))"
shared0187_nsd15493.png 15492 37779 "(Foreground-view, ((Item-count/1, Car), (Item-count/4, Vehicle), (Item-count/3, (Human, Body, Agent-trait/Adult)), (Item-count/1, Road))), (Background-view, (Paved-terrain, Plant, Outdoors, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0188_nsd15507.png 15506 37823 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain)), (Background-view, (Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0189_nsd15794.png 15793 300881 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)))), (Background-view, (Natural-feature/Sky, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0190_nsd15820.png 15819 38801 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0191_nsd15940.png 15939 39196 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, (Item-count/2, Furnishing))), (Background-view, (Path, Road, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Outdoors))"
shared0192_nsd16064.png 16063 225054 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), Sloped-terrain)), (Background-view, (Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0193_nsd16253.png 16252 564465 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), ((Item-count, High), Photograph))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Photograph))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0194_nsd16345.png 16344 302588 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Road))), (Background-view, (Car, Grassy-terrain, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0195_nsd16422.png 16421 40685 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0196_nsd16467.png 16466 574784 "(Foreground-view, ((Item-count/2, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0197_nsd16617.png 16616 303392 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Plant))), (Background-view, (Room, Indoors, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Entrance))"
shared0198_nsd16636.png 16635 303436 "(Foreground-view, ((Item-count/1, Car), (Item-count/1, Vehicle), ((Item-count, High), Word), (Item-count/1, Road))), (Background-view, (Path, Plant, Outdoors, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Vehicle/Car))"
shared0199_nsd16656.png 16655 565652 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain)), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0200_nsd16703.png 16702 565834 "(Foreground-view, ((Item-count/1, Train), ((Item-count, High), Plant), (Item-count/1, Path))), (Background-view, (Outdoors, Building, Plant, Composite-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0201_nsd16724.png 16723 41606 "(Foreground-view, ((Item-count/2, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Car), Terrain/Sand)), (Background-view, (Building, Man-made-object/Toy, Outdoors, Natural-feature/Sky, Rural, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Toy,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0202_nsd16824.png 16823 566201 "(Foreground-view, (((Item-count, High), (Human, Body, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy), (Item-count/1, Plant))), (Background-view, (Outdoors, Plant, Mountain, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0203_nsd16842.png 16841 566261 "(Foreground-view, (((Item-count, High), Vehicle), ((Item-count, High), (Human, Body, Agent-trait/Adult)), (Item-count/1, Road))), (Background-view, (Mountain, Building, Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0204_nsd16866.png 16865 304187 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0205_nsd16869.png 16868 566341 "(Foreground-view, (((Item-count, High), Animal), Rocky-terrain)), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0206_nsd16918.png 16917 263276 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0207_nsd17049.png 17048 42578 "(Foreground-view, ((Item-count/1, Road), (Item-count/2, Man-made-object))), (Background-view, (Building, Plant, Outdoors, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0208_nsd17231.png 17230 43150 "(Foreground-view, ((Item-count/1, Clock-face), (Item-count/1, Roof), (Item-count/1, Plant))), (Background-view, (Outdoors, Car, Plant, Natural-feature/Sky, Urban, Building, (Human, Body, Agent-trait/Adult)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Vehicle/Car,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))"
shared0209_nsd17239.png 17238 43176 "(Foreground-view, (Item-count/1, Clock-face)), (Background-view, (Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0210_nsd17370.png 17369 305685 "(Foreground-view, (((Item-count, High), (Human, Body, Male, Agent-trait/Adult)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/1, Pen))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0211_nsd17375.png 17374 567837 "(Foreground-view, ((Item-count/2, 2D-shape), (Item-count/1, Word), (Item-count/1, Character))), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0212_nsd17451.png 17450 43776 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Word), Dirt-terrain)), (Background-view, (Outdoors, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),Property/Environmental-property/Terrain/Dirt-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0213_nsd17464.png 17463 43815 "(Foreground-view, (((Item-count, High), Train), Rocky-terrain, ((Item-count, High), Character))), (Background-view, (Natural-feature/Sky, Urban, Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Rocky-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0214_nsd17486.png 17485 306031 "(Background-view, (Furnishing, Room, Indoors, Photograph))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))"
shared0215_nsd17550.png 17549 306249 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Photograph, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0216_nsd17596.png 17595 225829 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/2, Word))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0217_nsd17777.png 17776 306988 "(Foreground-view, ((Item-count/2, (Female, Human, Body, Agent-trait/Adult)), (Item-count/3, (Human, Body, Agent-trait/Adult, Male)), (Item-count/1, Path), (Item-count/1, Furnishing))), (Background-view, (Grassy-terrain, Outdoors, Sculpture, Building, Plant, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Property/Agent-property/Agent-trait/Sex/Female,Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult,Property/Agent-property/Agent-trait/Sex/Male)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Media/Visualization/Sculpture,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0218_nsd17795.png 17794 569196 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0219_nsd17935.png 17934 219735 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/3, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)))), (Background-view, (Indoors, Furnishing, Photograph, Icon))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Media/Visualization/Image/Icon))"
shared0220_nsd17943.png 17942 569645 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0221_nsd18269.png 18268 575701 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), ((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Female, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/1, Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Indoors, Furnishing, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room))"
shared0222_nsd18435.png 18434 308950 "(Background-view, ((Item-count/2, Clock-face), Grassy-terrain, ((Item-count, High), Plant))), (Background-view, (Outdoors, Rural, Natural-feature/Sky, River, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),Property/Environmental-property/Terrain/Grassy-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Natural-object/Natural-feature/River,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0223_nsd18484.png 18483 309135 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0224_nsd18506.png 18505 309192 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, (Face, Away-from), Male, Agent-trait/Adult)), (Bite, (Item-count/1, Ingestible-object))))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-face/Bite,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object))))"
shared0225_nsd18536.png 18535 47172 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant), Grassy-terrain, Field)), (Background-view, (Plant, Outdoors, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0226_nsd18544.png 18543 571499 "(Foreground-view, ((Item-count/1, (Human, Body)), (Item-count/1, Man-made-object))), (Background-view, (Plant, Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0227_nsd18691.png 18690 47638 "(Foreground-view, (Item-count/2, Man-made-object)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0228_nsd18797.png 18796 572215 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Road), (Item-count/1, Vehicle))), (Background-view, (Plant, Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0229_nsd19075.png 19074 310870 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Rocky-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors))"
shared0230_nsd19182.png 19181 573337 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing), (Item-count/2, Assistive-device))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0231_nsd19200.png 19199 270325 "(Foreground-view, ((Item-count/1, Train), Rocky-terrain)), (Background-view, (Plant, Natural-feature/Sky, Man-made-object, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object,Property/Environmental-property/Outdoors))"
shared0232_nsd19201.png 19200 311232 "(Foreground-view, ((Item-count/1, Train), Rocky-terrain)), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0233_nsd19293.png 19292 532520 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0234_nsd19437.png 19436 312003 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Man-made-object), (Item-count/1, Road))), (Background-view, (Car, Building, Plant, Outdoors, Urban, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object))"
shared0235_nsd19574.png 19573 50256 "(Foreground-view, ((Item-count/1, Truck), (Item-count/1, Road))), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Truck),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0236_nsd19643.png 19642 574760 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Operate, (Item-count/1, Man-made-object))))), (Background-view, (Indoors, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Operate,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room))"
shared0237_nsd19673.png 19672 95809 "(Foreground-view, ((Item-count/3, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/4, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0238_nsd19691.png 19690 50624 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (River, Outdoors, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0239_nsd19934.png 19933 313480 "(Foreground-view, (((Item-count, High), (Human, Body)), (Item-count/1, Boat), (Item-count/1, River))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0240_nsd20055.png 20054 575971 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult, Male)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, (Human, Body, Female, Agent-trait/Adult)))), (Background-view, (Rocky-terrain, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult,Property/Agent-property/Agent-trait/Sex/Male)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0241_nsd20065.png 20064 576011 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing), ((Item-count, High), Clothing))), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0242_nsd20081.png 20080 51774 "(Background-view, (Animal, Grassy-terrain, Field, River, Outdoors, Mountain, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Animal,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0243_nsd20207.png 20206 560396 "(Foreground-view, (((Item-count, High), Furnishing), Terrain/Sand)), (Background-view, (Outdoors, (Human, Body), Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Sky))"
shared0244_nsd20224.png 20223 314379 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), Sloped-terrain)), (Background-view, (Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0245_nsd20266.png 20265 52348 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Towards), Agent-trait/Child)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Paved-terrain, Building, Car, Outdoors, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0246_nsd20308.png 20307 576749 "(Foreground-view, (((Item-count, High), (Human, Body)), (Item-count/1, Boat), (Item-count/2, Furnishing))), (Background-view, (Building, Natural-feature/Ocean, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0247_nsd20443.png 20442 576789 "(Foreground-view, (Item-count/1, Vehicle)), (Background-view, (Building, Car, Road, Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Navigational-object/Road,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0248_nsd20634.png 20633 455691 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/3, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0249_nsd20651.png 20650 577817 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view,(Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0250_nsd20703.png 20702 577964 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adolescent)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Paved-terrain, Outdoors, Natural-feature/Sky, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant))"
shared0251_nsd20739.png 20738 53778 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Dirt-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0252_nsd20778.png 20777 578169 "(Foreground-view, ((Item-count/1, Assistive-device), ((Item-count, High), Furnishing))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0253_nsd20821.png 20820 54001 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, Plant, Rural, Sloped-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Property/Environmental-property/Terrain/Sloped-terrain))"
shared0254_nsd21109.png 21108 317061 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Natural-feature/Sky, Building, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban))"
shared0255_nsd21193.png 21192 55184 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)))"
shared0256_nsd21195.png 21194 9199 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0257_nsd21198.png 21197 55206 "(Foreground-view, ((Item-count/3, (Human, Body, Agent-trait/Adult)), (Item-count/1, Boat), (Item-count/1, River))), (Background-view, (Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0258_nsd21219.png 21218 55294 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Adult)), (Item-count/1, Furnishing))), (Background-view, ((Human, Body, Agent-trait/Adult), Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Indoors))"
shared0259_nsd21254.png 21253 55402 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, Path), Field, Grassy-terrain)), (Background-view, (Outdoors, Natural-feature/Sky, Rural, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Item/Biological-item/Organism/Animal))"
shared0260_nsd21280.png 21279 55514 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Sloped-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain))"
shared0261_nsd21319.png 21318 317781 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing))), (Background-view, (Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0262_nsd21509.png 21508 318381 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0263_nsd21527.png 21526 318444 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), Sloped-terrain)), (Background-view, (Outdoors, Plant, Mountain, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0264_nsd21554.png 21553 1877 "(Foreground-view, ((Item-count/1, Train), (Item-count/2, Word), (Item-count/1, Plant))), (Background-view, (Outdoors, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0265_nsd21602.png 21601 580813 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Path, Road, Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0266_nsd21704.png 21703 56837 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0267_nsd21951.png 21950 57631 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/2, Animal), (Item-count/1, Car))), (Background-view, (Grassy-terrain, Plant, Outdoors, Rural, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Man-made-object/Vehicle/Car))"
shared0268_nsd21990.png 21989 57796 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0269_nsd22139.png 22138 320533 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, Field, ((Item-count, High), Plant))), (Background-view, (Outdoors, Rural, Natural-feature/Sky, Plant, Hill))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Hill))"
shared0270_nsd22144.png 22143 58407 "(Foreground-view, ((Item-count/4, Furnishing), ((Item-count, High), Plant))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0271_nsd22156.png 22155 58465 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building))"
shared0272_nsd22264.png 22263 359337 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Outdoors, Grassy-terrain, Field, Sloped-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Terrain/Sloped-terrain))"
shared0273_nsd22388.png 22387 59321 "(Foreground-view, ((Item-count/2, 2D-Shape), (Item-count/3, Word), (Item-count/1, Plant))), (Background-view, (Building, Clock-face, Outdoors, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0274_nsd22496.png 22495 321902 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0275_nsd22506.png 22505 403184 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, Car))), (Background-view, (Grassy-terrain, (Human, Body, Agent-trait/Older-adult), Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Older-adult),Property/Environmental-property/Outdoors))"
shared0276_nsd22516.png 22515 322008 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Photograph))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0277_nsd22524.png 22523 9983 "(Foreground-view, ((Item-count/2, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0278_nsd22531.png 22530 9987 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/3, (Human, Body, Agent-trait/Adult)))), (Background-view, (Road, Paved-terrain, Natural-feature/Sky, Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0279_nsd22586.png 22585 322246 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing), ((Item-count, High), Clothing))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0280_nsd22588.png 22587 322255 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Child)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Paved-terrain, Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0281_nsd22773.png 22772 323010 "(Foreground-view, ((Item-count/1, Animal), Composite-terrain)), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Composite-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0282_nsd22783.png 22782 53842 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face), ((Item-count, High), Plant))), (Background-view, (Outdoors, Natural-feature/Sky, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0283_nsd22795.png 22794 359687 "(Foreground-view, (((Item-count, High), Boat), (Item-count/1, Path), Natural-feature/Ocean)), (Background-view, (Hill, Building, Outdoors, Urban, Natural-feature/Sky, Boat))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),Item/Object/Natural-object/Natural-feature/Ocean)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Hill,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Vehicle/Boat))"
shared0284_nsd22810.png 22809 323182 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0285_nsd22846.png 22845 61174 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, Path))), (Background-view, (Grassy-terrain, Field, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0286_nsd22874.png 22873 323397 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adult)), Walk), ((Item-count, High), Plant))), (Background-view, (Urban, Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),Action/Move/Move-body-part/Move-lower-extremity/Walk),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0287_nsd22880.png 22879 61266 "(Foreground-view, (((Item-count, High), (Human, Body)), (Item-count/2, Train), ((Item-count, High), Furnishing), (Item-count/1, Roof))), (Background-view, (Indoors, (Human, Body), Furnishing, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Furnishing,Item/Biological-item/Organism/Plant))"
shared0288_nsd22887.png 22886 61288 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Adult))), (Background-view, (Car, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0289_nsd22958.png 22957 61559 "(Foreground-view, ((Item-count/1, Train), Grassy-terrain, ((Item-count, High), Plant))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Grassy-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0290_nsd22968.png 22967 534553 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/2, Photograph))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0291_nsd22994.png 22993 490875 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), Paved-terrain, (Item-count/3, Word))), (Background-view, (Outdoors, Clock-face, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Paved-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0292_nsd23037.png 23036 323970 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Plant, Grassy-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain))"
shared0293_nsd23242.png 23241 62547 "(Foreground-view, ((Item-count/2, (Human, Body, Male, (Item-count/1, Face, Towards), Agent-trait/Adult)), (Item-count/1, Animal), (Item-count/1, Laptop-computer))), (Background-view, (Book, Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0294_nsd23493.png 23492 325710 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/2, (Human, Body, Male, Agent-trait/Adult)), ((Item-count, High), Ingestible-object), (Item-count/3, Furnishing), (Item-count/1, Path))), (Background-view, (Grassy-terrain, Outdoors, Plant, Building, Natural-feature/Sky, Urban, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0295_nsd23716.png 23715 10743 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Building, Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0296_nsd23730.png 23729 64534 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Word), (Item-count/1, Man-made-object/Toy))), (Background-view, (Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0297_nsd23872.png 23871 65012 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Natural-feature/Sky, (Human, Body), Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Toy))"
shared0298_nsd23877.png 23876 65029 "(Foreground-view, ((Item-count/3, Box), (Item-count/3, Furnishing), ((Item-count, High), Plant))), (Background-view, ((Human, Body, Agent-trait/Adult), Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Geometric-object/3D-shape/Box),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0299_nsd23884.png 23883 327191 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0300_nsd23994.png 23993 65400 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/1, Animal), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Paved-terrain, Urban, Man-made-object, Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban,Item/Object/Man-made-object,Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0301_nsd24203.png 24202 66253 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0302_nsd24215.png 24214 328454 "(Foreground-view, ((Item-count/1, Animal), Composite-terrain)), (Background-view, (Outdoors, Animal, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Composite-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Animal,Item/Biological-item/Organism/Plant))"
shared0303_nsd24265.png 24264 328628 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Paved-terrain, Outdoors, Plant, (Human, Body), Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Sky))"
shared0304_nsd24318.png 24317 66696 "(Foreground-view, ((Item-count/4, Furnishing), (Item-count/1, Display-device), (Item-count/1, Tool))), (Background-view, (Plant, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0305_nsd24481.png 24480 67347 "(Foreground-view, ((Item-count/1, Train), (Item-count/2, Man-made-object), (Item-count/3, Character))), (Background-view, (Outdoors, Grassy-terrain, Plant, (Human, Body), Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Rural))"
shared0306_nsd24518.png 24517 281575 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Animal))), (Background-view, (Rocky-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0307_nsd24531.png 24530 329641 "(Foreground-view, ((Item-count/1, Animal), (Item-count/2, Clothing))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0308_nsd24561.png 24560 67623 "(Foreground-view, ((Item-count/1, Icon), (Item-count/2, 2D-Shape), (Item-count/1, Car), (Item-count/3, Road))), (Background-view, (Plant, Natural-feature/Sky, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Vehicle/Car))"
shared0309_nsd24639.png 24638 330084 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0310_nsd24641.png 24640 330086 "(Foreground-view, (Item-count/3, Furnishing)), (Background-view, ((Human, Body), Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0311_nsd24650.png 24649 67961 "(Foreground-view, ((Item-count, High), Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))"
shared0312_nsd24740.png 24739 68238 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)))"
shared0313_nsd24741.png 24740 11373 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0314_nsd24788.png 24787 55090 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adolescent)), (Play, ((Item-count, High), Man-made-object/Toy))), (Item-count/1, Furnishing), (Item-count/1, Display-device))), (Background-view, (Room, Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0315_nsd24847.png 24846 68623 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain, Field)), (Background-view, (Plant, Outdoors, Hill, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Hill,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0316_nsd25060.png 25059 246728 "(Foreground-view, ((Item-count/1, Car), (Item-count/1, Road), ((Item-count, High), Word), ((Item-count, High), 2D-Shape), (Item-count/1, Building))), (Background-view, (Natural-feature/Sky, Urban, Car, Building, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0317_nsd25092.png 25091 69625 "(Background-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Furnishing))), (Background-view, (Paved-terrain, Outdoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Furnishing))"
shared0318_nsd25112.png 25111 69705 "(Foreground-view, (((Item-count/1, (Animal, Animal-agent)), (Collide-with, (Item-count/1, (Animal, Animal-agent)))), Grassy-terrain, Field)), (Background-view, (Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),(Action/Perform/Collide-with,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)))),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0319_nsd25206.png 25205 332261 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0320_nsd25251.png 25250 332448 "(Foreground-view, ((Item-count/1, Furnishing), ((Item-count, High), Plant))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0321_nsd25269.png 25268 332498 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Path))), (Background-view, (Composite-terrain, Building, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0322_nsd25285.png 25284 70421 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Car))), (Background-view, (Road, Grassy-terrain, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0323_nsd25288.png 25287 332574 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Man-made-object))), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0324_nsd25319.png 25318 332692 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Plant))), (Background-view, (Outdoors, Rural, River, Rocky-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Terrain/Rocky-terrain))"
shared0325_nsd25320.png 25319 2349 "(Foreground-view, ((Item-count/1, Animal), (Item-count/2, Furnishing))), (Background-view, (Room, Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0326_nsd25372.png 25371 332875 "(Foreground-view, (((Item-count, High), (Human, Body, (Face, Away-from), Agent-trait/Adult)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Indoors, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room))"
shared0327_nsd25455.png 25454 333152 "(Foreground-view, (((Item-count/3, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), Dirt-terrain)), (Background-view, (Outdoors, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Dirt-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0328_nsd25571.png 25570 71429 "(Foreground-view, ((Item-count/1, Ingestible-object), ((Item-count, High), Plant)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant)))"
shared0329_nsd25579.png 25578 333615 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Child)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0330_nsd25582.png 25581 333629 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), Sloped-terrain)), (Background-view, (Outdoors, Mountain, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0331_nsd25589.png 25588 333654 "(Background-view, (Urban, Road, Car, Vehicle, Truck, Building, Plant, Outdoors, Paved-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Vehicle,Item/Object/Man-made-object/Vehicle/Truck,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0332_nsd25603.png 25602 579906 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Action/Ride, (Item-count/1, Vehicle))), ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), Walk), Grassy-terrain, Field)), (Background-view, (Outdoors, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),Action/Move/Move-body-part/Move-lower-extremity/Walk),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0333_nsd25694.png 25693 334011 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/1, Animal))), (Background-view, (Uneven-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Uneven-terrain))"
shared0334_nsd25703.png 25702 334048 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, Field)), (Background-view, (Mountain, Natural-feature/Sky, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0335_nsd25712.png 25711 71927 "(Foreground-view, ((Item-count/1, Boat), (Item-count/2, (Human, Body), Agent-trait/Adult), (Item-count/1, River))), (Background-view, (Outdoors, Building, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Agent-property/Agent-trait/Adult),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban))"
shared0336_nsd25742.png 25741 334208 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0337_nsd25747.png 25746 72095 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Grassy-terrain, Plant, (Human, Body), Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Sky))"
shared0338_nsd25882.png 25881 334772 "(Foreground-view, ((Item-count/2, Animal), Paved-terrain)), (Background-view, (River, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0339_nsd25907.png 25906 72715 "(Foreground-view, ((Item-count/3, Furnishing), ((Item-count, High), Book), (Item-count/3, Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0340_nsd25960.png 25959 335063 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Older-adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, Cone))), (Background-view, (Paved-terrain, Outdoors, Road, Plant, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Older-adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Geometric-object/3D-shape/Cone))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Navigational-object/Road,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban))"
shared0341_nsd26120.png 26119 492851 "(Foreground-view, (((Item-count, High), (Human, Body, (Face, Away-from), Agent-trait/Adolescent)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Furnishing, Indoors, Room, Book, Photograph))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))"
shared0342_nsd26128.png 26127 335688 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/3, Furnishing))), (Background-view, (Room, Indoors, Photograph, Pen, Furnishing, Notebook))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Document/Notebook))"
shared0343_nsd26164.png 26163 335824 "(Foreground-view, ((Item-count/3, (Human, Body, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Sloped-terrain, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0344_nsd26244.png 26243 73997 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Grassy-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant))"
shared0345_nsd26293.png 26292 281567 "(Foreground-view, ((Item-count/2, Furnishing), ((Item-count, High), Book))), (Background-view, (Room, Indoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Document/Book))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant))"
shared0346_nsd26308.png 26307 336374 "(Foreground-view, (((Item-count, High), ((Human, Human-agent), Body)), (Play, ((Item-count, High), Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0347_nsd26352.png 26351 74390 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Plant))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0348_nsd26373.png 26372 74461 "(Foreground-view, ((Item-count/1, Path), (Item-count/4, Furnishing))), (Background-view, (Furnishing, (Human, Body, Agent-trait/Adult), Outdoors, Plant, Grassy-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain))"
shared0349_nsd26436.png 26435 74714 "(Foreground-view, (((Item-count, High), (Human, Body)), ((Item-count, High), Man-made-object/Toy), Terrain/Sand)), (Background-view, (Outdoors, (Human, Body), Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Sky))"
shared0350_nsd26459.png 26458 74828 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Plant))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0351_nsd26599.png 26598 337479 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, Field)), (Background-view, (Outdoors, Plant, Natural-feature/Sky, Rural, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Item/Biological-item/Organism/Animal))"
shared0352_nsd26721.png 26720 274776 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), ((Item-count, High), Furnishing), ((Item-count, High), Photograph), (Item-count/1, Pen, Notebook))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Photograph),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen,Item/Object/Man-made-object/Document/Notebook))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0353_nsd26781.png 26780 338169 "(Foreground-view, (((Item-count, High), Vehicle), ((Item-count, High), Man-made-object/Toy))), (Background-view, ((Human, Body, Agent-trait/Adult), Building, Outdoors, Paved-terrain, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban))"
shared0354_nsd26896.png 26895 76476 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/2, Icon))), (Background-view, (Grassy-terrain, Car, Road, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0355_nsd26910.png 26909 338670 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/1, Word))), (Background-view, (Indoors, Room, (Human, Body, Agent-trait/Adult), Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0356_nsd26972.png 26971 12795 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0357_nsd26991.png 26990 338987 "(Foreground-view, ((Item-count/1, Man-made-object), Paved-terrain)), (Background-view, (Outdoors, Plant, (Human, Body, Female, Agent-trait/Adult)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)))"
shared0358_nsd27243.png 27242 77870 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Keyboard))), (Background-view, (Computer-mouse, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0359_nsd27276.png 27275 78000 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0360_nsd27288.png 27287 78042 "(Foreground-view, ((Item-count/2, Square), (Item-count/3, Word), (Item-count/3, Icon), (Item-count/1, Plant))), (Background-view, (Grassy-terrain, Field, Outdoors, Path, Plant, (Human, Body, Agent-trait/Adult), Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Geometric-object/2D-shape/Rectangle/Square),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Navigational-object/Path,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0361_nsd27327.png 27326 340317 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Man-made-object), (Item-count/3, Word))), (Background-view, (Paved-terrain, Outdoors, Car, Building, Plant, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0362_nsd27436.png 27435 340734 "(Foreground-view, ((Item-count/1, Car), (Item-count/1, Animal))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0363_nsd27569.png 27568 79111 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing), ((Item-count, High), Assistive-device))), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0364_nsd27581.png 27580 275335 "(Foreground-view, (Item-count/3, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0365_nsd27831.png 27830 80084 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult))), (Background-view, (Furnishing, Room, Indoors, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object))"
shared0366_nsd27879.png 27878 80275 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain)), (Background-view, (Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0367_nsd27973.png 27972 80619 "(Foreground-view, (Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult))), (Background-view, (Indoors, Building, Furnishing, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Urban))"
shared0368_nsd28025.png 28024 8471 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/1, Icon), Grassy-terrain)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0369_nsd28069.png 28068 80987 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Dirt-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0370_nsd28097.png 28096 81105 "(Background-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0371_nsd28160.png 28159 81365 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0372_nsd28190.png 28189 81474 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Dirt-terrain, Plant, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0373_nsd28287.png 28286 81841 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Room, Indoors, Book, Plant, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Document/Book,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Furnishing))"
shared0374_nsd28304.png 28303 46372 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/1, Man-made-object), (Item-count/2, Furnishing), Terrain/Sand)), (Foreground-view, (Plant, Outdoors, Rural, (Human, Body, Agent-trait/Adult), (Human, Body, Agent-trait/Child)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Child)))"
shared0375_nsd28320.png 28319 81961 "(Foreground-view, ((Item-count/3, (Human, Body, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Outdoors, Sloped-terrain, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0376_nsd28326.png 28325 81995 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Action/Ride, (Item-count/1, (Animal, Animal-agent))), Walk)), (Background-view, (Grassy-terrain, Sloped-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors))"
shared0377_nsd28342.png 28341 450584 "(Foreground-view, ((Item-count/3, Furnishing), ((Item-count, High), Plant))), (Background-view, (Book, Man-made-object/Toy, Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Toy,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0378_nsd28350.png 28349 319517 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Boat))), (Background-view, (River, Natural-feature/Sky, Outdoors, Urban, (Human, Body), Boat))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Vehicle/Boat))"
shared0379_nsd28419.png 28418 569678 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0380_nsd28488.png 28487 82650 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Building))), (Background-view, (Natural-feature/Sky, Urban, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0381_nsd28525.png 28524 82770 "(Foreground-view, ((Item-count/3, Car), (Item-count/2, Man-made-object), Paved-terrain)), (Background-view, (Terrain/Sand, Natural-feature/Ocean, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sand,Item/Object/Natural-object/Natural-feature/Ocean,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0382_nsd28596.png 28595 345149 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0383_nsd28690.png 28689 83393 "(Foreground-view, (((Item-count, High), Car), (Item-count/1, Road), (Item-count/1, Clock-face))), (Background-view, (Paved-terrain, Outdoors, Urban, Natural-feature/Sky, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Building))"
shared0384_nsd28746.png 28745 345725 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0385_nsd28752.png 28751 345751 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0386_nsd28756.png 28755 83632 "(Foreground-view, ((Item-count, High), Aircraft)), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0387_nsd28789.png 28788 83738 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Entrance))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0388_nsd28899.png 28898 84174 "(Foreground-view, ((Item-count/3, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Grassy-terrain, Field))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field))"
shared0389_nsd28964.png 28963 346583 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Car))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0390_nsd29011.png 29010 346754 "(Foreground-view, (Item-count/4, Furnishing)), (Background-view, (Room, Indoors, Furnishing, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object))"
shared0391_nsd29022.png 29021 346795 "(Foreground-view, ((Item-count/3, (Human, Body, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Sloped-terrain, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0392_nsd29382.png 29381 348204 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, Path))), (Background-view, (Composite-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0393_nsd29569.png 29568 86811 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Natural-feature/Ocean, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0394_nsd29661.png 29660 87126 "(Foreground-view, ((Item-count/1, Furnishing), ((Item-count, High), Man-made-object))), (Background-view, (Room, Indoors, Furnishing, Plant, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object))"
shared0395_nsd29664.png 29663 87146 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Mountain, Grassy-terrain, Field, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0396_nsd29681.png 29680 349363 "(Foreground-view, ((Item-count/3, Man-made-object), (Item-count/1, Road), (Item-count/3, Icon))), (Background-view, (Outdoors, Natural-feature/Sky, Man-made-object, Urban, Building, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Car))"
shared0397_nsd29712.png 29711 87334 "(Foreground-view, ((Item-count/1, Animal), (Item-count/3, Furnishing), (Item-count/3, Tool))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0398_nsd29838.png 29837 87871 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/1, Animal), (Item-count/1, Furnishing), (Item-count/1, Ingestible-object), (Item-count/1, Pen))), (Background-view, ((Human, Body), Room, Indoors, Book, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Furnishing))"
shared0399_nsd29887.png 29886 320508 "(Foreground-view, ((Item-count/1, Road), (Item-count/1, Man-made-object), ((Item-count, High), Plant))), (Background-view, (Paved-terrain, Outdoors, Building, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0400_nsd29920.png 29919 350299 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Path), (Item-count/1, Furnishing))), (Background-view, (Paved-terrain, Outdoors, Plant, (Human, Body, Female), Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female),Property/Environmental-property/Urban))"
shared0401_nsd29981.png 29980 88414 "(Foreground-view, ((Item-count/1, Train), ((Item-count, High), Character), (Item-count/1, Path))), (Background-view, (Outdoors, Building, Roof))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Building/Roof))"
shared0402_nsd30082.png 30081 88835 "(Foreground-view, ((Item-count/1, Road), (Item-count/2, Car), (Item-count/1, Icon), (Item-count/3, Rectangle), (Item-count/1, Word), (Item-count/1, Character))), (Background-view, (Paved-terrain, Outdoors, Plant, Natural-feature/Sky, Urban, Car, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Geometric-object/2D-shape/Rectangle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object))"
shared0403_nsd30374.png 30373 89908 "(Foreground-view, ((Item-count/4, Furnishing), ((Item-count, High), Plant))), (Background-view, ((Human, Body), Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0404_nsd30396.png 30395 352129 "(Foreground-view, ((Item-count/2, Animal), Rocky-terrain)), (Background-view, (Outdoors, Natural-feature/Sky, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant))"
shared0405_nsd30408.png 30407 189765 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Child)), Walk), (Item-count/1, Man-made-object/Toy))), (Background-view, (Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),Action/Move/Move-body-part/Move-lower-extremity/Walk),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0406_nsd30431.png 30430 352236 "(Foreground-view, (Item-count/1, Man-made-object)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0407_nsd30564.png 30563 352724 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/3, Furnishing), ((Item-count, High), Word))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0408_nsd30602.png 30601 352861 "(Foreground-view, (((Item-count, High), Car), (Item-count/1, Road), (Item-count/2, Man-made-object))), (Background-view, (Outdoors, Paved-terrain, Plant, Rectangle, Icon, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Item/Object/Geometric-object/2D-shape/Rectangle,Item/Object/Man-made-object/Media/Visualization/Image/Icon,Item/Object/Natural-object/Natural-feature/Sky))"
shared0409_nsd30633.png 30632 90827 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car))"
shared0410_nsd30673.png 30672 90994 "(Foreground-view, ((Item-count/2, Animal), Grassy-terrain, Field)), (Background-view, (Outdoors, Plant, Rural, Natural-feature/Sky, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Animal))"
shared0411_nsd30675.png 30674 91005 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Entrance))), (Background-view, (Paved-terrain, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0412_nsd30848.png 30847 408492 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Outdoors, Rural, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0413_nsd30857.png 30856 364806 "(Foreground-view, (Item-count/2, Boat)), (Background-view, (Natural-feature/Ocean, Mountain, Outdoors, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0414_nsd30888.png 30887 91784 "(Foreground-view, ((Item-count/2, Animal), Grassy-terrain)), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0415_nsd30923.png 30922 354045 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Ingestible-object, Furnishing, Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0416_nsd30936.png 30935 354095 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0417_nsd30955.png 30954 92001 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Indoors, Furnishing, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room))"
shared0418_nsd31029.png 31028 92221 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Furnishing))), (Background-view, (Building, Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0419_nsd31050.png 31049 92288 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing), (Item-count/2, Assistive-device))), (Background-view, (Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0420_nsd31065.png 31064 92353 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Child)), (Item-count/1, Man-made-object/Toy), (Item-count/1, Animal), Grassy-terrain, Field, (Item-count/1, River))), (Background-view, (Outdoors, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0421_nsd31124.png 31123 354761 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Plant), (Item-count/1, Man-made-object))), (Background-view, (Entrance, Plant, Furnishing, Man-made-object, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Entrance,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0422_nsd31234.png 31233 59194 "(Foreground-view, ((Item-count/3, Furnishing), (Item-count/1, Desktop-Computer), (Item-count/1, Book))), (Background-view, (Photograph, Loudspeaker, Indoors, Room, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing))"
shared0423_nsd31350.png 31349 355622 "(Foreground-view, (Item-count/4, Furnishing)), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0424_nsd31447.png 31446 277778 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Assistive-device, Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Device/Assistive-device,Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0425_nsd31660.png 31659 356771 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Male, Agent-trait/Child)), (Play, (Item-count/1, Man-made-object/Toy))), Paved-terrain)), (Background-view, (Outdoors, Plant, Building, Urban, (Human, Body, Agent-trait/Adolescent), Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adolescent),Item/Object/Man-made-object/Toy))"
shared0426_nsd31748.png 31747 357074 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/2, (Human, Body, Male, (Face, Towards), Agent-trait/Adult)), ((Item-count, High), Vehicle), (Item-count/1, Plant), (Item-count/1, Path))), (Background-view, (Paved-terrain, Road, Building, Outdoors, Plant, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban))"
shared0427_nsd31783.png 31782 357228 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0428_nsd31802.png 31801 95176 "(Foreground-view, ((Item-count/2, (Human, Body)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Uneven-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Uneven-terrain,Property/Environmental-property/Outdoors))"
shared0429_nsd31838.png 31837 95337 "(Foreground-view, ((Item-count/1, Entrance), (Item-count/3, Furnishing))), (Background-view, (Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0430_nsd31937.png 31936 357865 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0431_nsd31965.png 31964 95828 "(Foreground-view, ((Item-count/2, Desktop-computer), (Item-count/2, Keyboard), (Item-count/1, Laptop-computer), (Item-count/1, Furnishing))), (Background-view, (Room, Indoors, Man-made-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object,Item/Object/Man-made-object/Furnishing))"
shared0432_nsd32054.png 32053 96161 "(Foreground-view, (((Item-count, High), Animal), Composite-terrain)), (Background-view, (Outdoors, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Composite-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0433_nsd32233.png 32232 359085 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Animal))), (Background-view, (Terrain/Sand, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sand,Property/Environmental-property/Outdoors))"
shared0434_nsd32304.png 32303 97201 "(Foreground-view, (((Item-count, High), Animal), (Item-count/1, Plant))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0435_nsd32308.png 32307 97218 "(Foreground-view, (((Item-count, High), (Human, Body, Agent-trait/Adult)), (Item-count/2, Laptop-computer), ((Item-count, High), Furnishing), ((Item-count, High), Pen), ((Item-count, High), Notebook))), (Background-view, (Indoors, Room, (Human, Body), Furnishing, Plant, Display-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Document/Notebook))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Furnishing,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device))"
shared0436_nsd32626.png 32625 98480 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/3, Man-made-object))), (Background-view, (Plant, Indoors, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room))"
shared0437_nsd32644.png 32643 60117 "(Foreground-view, (Item-count/4, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0438_nsd32717.png 32716 147547 "(Foreground-view, ((Item-count/2, Cellphone), ((Item-count, High), Plant))), (Background-view, (Rocky-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Cellphone),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors))"
shared0439_nsd32772.png 32771 361193 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0440_nsd32773.png 32772 361197 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/3, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0441_nsd32858.png 32857 99363 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/2, Word), (Item-count/1, Character))), (Background-view, (Sloped-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors))"
shared0442_nsd32892.png 32891 361648 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Roof), (Item-count/1, River))), (Background-view, (Urban, Outdoors, Paved-terrain, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0443_nsd32911.png 32910 99580 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/3, Plant), (Item-count/4, Tool))), (Background-view, (Book, Room, Furnishing, Indoors, Plant, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object))"
shared0444_nsd33132.png 33131 100396 "(Foreground-view, ((Item-count/2, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adolescent)), (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Older-adult)), ((Item-count, High), Furnishing))), (Background-view, (Indoors, Furnishing, Room, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Older-adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0445_nsd33172.png 33171 362677 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Path, Outdoors,Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0446_nsd33190.png 33189 100599 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/2, (Human, Body, Female, (Face, Towards), Agent-trait/Child)), ((Item-count/1, (Animal, Animal-agent)), Walk), (Item-count/1, Vehicle))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0447_nsd33246.png 33245 100863 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0448_nsd33290.png 33289 101069 "(Foreground-view, (Item-count/1, Train)), (Background-view, (Outdoors, Rocky-terrain,Plant, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Rocky-terrain,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object))"
shared0449_nsd33522.png 33521 101952 "(Foreground-view, ((Item-count/1, Laptop-computer), ((Item-count, High), Word), (Item-count/1, Computer-mouse), (Item-count/1, Furnishing), (Item-count/1, Ingestible-object), (Item-count/1, Notebook), (Item-count/1, Pen))), (Background-view, (Desktop-computer, Book, Drawing, Furnishing, Room, Indoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Notebook),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Device/Computing-device/Desktop-computer,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Media/Visualization/Image/Drawing,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant))"
shared0450_nsd33544.png 33543 570785 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0451_nsd33753.png 33752 365003 "(Foreground-view, ((Item-count/4, Furnishing), (Item-count/1, Display-device), (Item-count/3, Man-made-object))), (Background-view, (Room, Indoors, Painting, Book, Entrance, Photograph, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Painting,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Furnishing))"
shared0452_nsd33814.png 33813 365218 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Agent-trait/Adult)), ((Item-count, High), Ingestible-object))), (Background-view, (Outdoors, Urban, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0453_nsd33907.png 33906 103366 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0454_nsd34069.png 34068 366146 "(Foreground-view, (((Item-count, High), (Human, Body)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Aircraft, Building, Outdoors, Natural-feature/Sky, Rural, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Aircraft,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0455_nsd34081.png 34080 104044 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/3, (Human, Body, Agent-trait/Adult)), (Item-count/2, Word))), (Background-view, (Outdoors, Paved-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0456_nsd34090.png 34089 104081 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Grassy-terrain, Plant, Outdoors, Rural, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Biological-item/Organism/Animal))"
shared0457_nsd34127.png 34126 366396 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Sloped-terrain, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0458_nsd34187.png 34186 104502 "(Foreground-view, (Item-count/3, Furnishing)), (Background-view, (Room, Plant, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Biological-item/Organism/Plant,Property/Environmental-property/Indoors))"
shared0459_nsd34239.png 34238 366802 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Outdoors, Grassy-terrain, Field, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Rural))"
shared0460_nsd34419.png 34418 367552 "(Foreground-view, ((Item-count/2, (Human, Body, Male, (Face, Towards), Agent-trait/Child)), (Item-count/3, Man-made-object/Toy))), (Background-view, (Outdoors, Building, (Human, Body), Man-made-object/Toy, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Toy,Item/Object/Natural-object/Natural-feature/Sky))"
shared0461_nsd34604.png 34603 106107 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0462_nsd34752.png 34751 368852 "(Foreground-view, ((Item-count/1, (Human, Body)), (Item-count/1, Animal))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0463_nsd34830.png 34829 369171 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, Road))), (Background-view, (Paved-terrain, Outdoors, Plant, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building))"
shared0464_nsd34846.png 34845 369230 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Animal), Grassy-terrain, Field)), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0465_nsd34851.png 34850 369253 "(Foreground-view, (((Item-count, High), Plant), (Item-count/1, Path), Grassy-terrain)), (Background-view, ((Human, Body), Building, Clock-face, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0466_nsd34875.png 34874 107204 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Older-adult))), (Background-view, (Car, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Older-adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0467_nsd34976.png 34975 17935 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0468_nsd35095.png 35094 542304 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0469_nsd35130.png 35129 370369 "(Foreground-view, (((Item-count, High), Animal), (Item-count/2, Plant))), (Background-view, (Outdoors, Rural, Grassy-terrain, Field, Sloped-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Terrain/Sloped-terrain))"
shared0470_nsd35744.png 35743 110611 "(Foreground-view, ((Item-count/3, Animal), Dirt-terrain)), (Background-view, (Natural-feature/Sky, Plant, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Dirt-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0471_nsd35753.png 35752 372775 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0472_nsd35791.png 35790 110780 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0473_nsd35799.png 35798 372959 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Grassy-terrain, Field, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0474_nsd35987.png 35986 373679 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Entrance))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0475_nsd36068.png 36067 373970 "(Foreground-view, ((Item-count/2, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Child)), (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adolescent)), (Item-count/3, Man-made-object/Toy))), (Background-view, (Outdoors, Paved-terrain, Path, Building, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Navigational-object/Path,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban))"
shared0476_nsd36259.png 36258 112734 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Path, Composite-terrain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0477_nsd36477.png 36476 113593 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, Boat))), (Background-view, (River, Natural-feature/Ocean, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Item/Object/Natural-object/Natural-feature/Ocean,Item/Biological-item/Organism/Plant))"
shared0478_nsd36570.png 36569 114035 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult))), (Background-view, (Ingestible-object, Furnishing, Room, Indoors, Photograph, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object))"
shared0479_nsd36577.png 36576 114077 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face), ((Item-count, High), Plant), (Item-count/1, River), Grassy-terrain)), (Background-view, (Outdoors, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0480_nsd36624.png 36623 376407 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, Road))), (Background-view, (Sloped-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors))"
shared0481_nsd36630.png 36629 114274 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Path, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0482_nsd36683.png 36682 376643 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Car))), (Background-view, (Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0483_nsd36732.png 36731 376858 "(Foreground-view, ((Item-count/1, (Animal, Animal-agent)), Walk)), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0484_nsd36760.png 36759 114822 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0485_nsd36911.png 36910 377576 "(Foreground-view, ((Item-count/1, Animal), Uneven-terrain, ((Item-count, High), Plant))), (Background-view, (Natural-feature/Sky, Rural, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Uneven-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Property/Environmental-property/Outdoors))"
shared0486_nsd36946.png 36945 377703 "(Foreground-view, (((Item-count, High), Vehicle), (Item-count/2, Word), ((Item-count, High), Icon))), (Background-view, (Outdoors, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0487_nsd36975.png 36974 115637 "(Foreground-view, ((Item-count/1, River), ((Item-count, High), Plant))), (Background-view, (Plant, Path, Leaf-covered-terrain, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Terrain/Leaf-covered-terrain,Item/Object/Man-made-object/Furnishing))"
shared0488_nsd36979.png 36978 115649 "(Foreground-view, ((Item-count/1, Ingestible-object), ((Item-count, High), Plant), (Item-count/2, Furnishing), (Item-count/1, Assistive-device))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0489_nsd37060.png 37059 115967 "(Foreground-view, ((Item-count/1, Road), (Item-count/1, Car), (Item-count/1, Plant), (Item-count/2, Man-made-object))), (Background-view, (Building, Car, Man-made-object, Plant, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0490_nsd37222.png 37221 116588 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Plant))), (Background-view, (Ingestible-object, Man-made-object, Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0491_nsd37225.png 37224 116603 "(Foreground-view, (Item-count/2, Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object))"
shared0492_nsd37437.png 37436 150636 "(Background-view, (Vehicle, Car, (Human, Body), Plant, Road, Urban, Natural-feature/Sky, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle,Item/Object/Man-made-object/Vehicle/Car,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object))"
shared0493_nsd37495.png 37494 379713 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards))), (Play, (Item-count/1, Man-made-object/Toy))), ((Item-count/1, ((Human, Human-agent), Body, Female)), Play), (Item-count/1, Word))), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards))),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female)),Action/Perform/Play),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0494_nsd37609.png 37608 380227 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Sloped-terrain, Plant, Outdoors, Rural, (Human, Body), Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Toy))"
shared0495_nsd37737.png 37736 380729 "(Foreground-view, ((Item-count/2, Road), (Item-count/1, Building), ((Item-count, High), Plant))), (Background-view, (Building, Car, Outdoors, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0496_nsd37802.png 37801 380989 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Grassy-terrain, Mountain, Outdoors, Natural-feature/Sky, Rural, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Item/Biological-item/Organism/Plant))"
shared0497_nsd37928.png 37927 282032 "(Foreground-view, ((Item-count/2, (Human, Body, Agent-trait/Adult)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0498_nsd38023.png 38022 119669 "(Foreground-view, (((Item-count, High), Animal), (Item-count/1, River), ((Item-count, High), Plant), Grassy-terrain, Field)), (Background-view, (Building, Plant, Outdoors, Natural-feature/Sky, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Animal))"
shared0499_nsd38026.png 38025 575164 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Adult)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0500_nsd38061.png 38060 381961 "(Foreground-view, ((Item-count/4, Animal), Composite-terrain)), (Background-view, (Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Composite-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0501_nsd38247.png 38246 353175 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, River))), (Background-view, (Plant, Outdoors, Rural, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0502_nsd38279.png 38278 120655 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Sloped-terrain, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0503_nsd38298.png 38297 382890 "(Foreground-view, ((Item-count/2, Vehicle), (Item-count/1, Road), ((Item-count, High), Photograph))), (Background-view, (Building, Plant, Outdoors, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Photograph))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0504_nsd38311.png 38310 382951 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0505_nsd38359.png 38358 120987 "(Foreground-view, ((Item-count/2, Animal), Grassy-terrain, Field)), (Background-view, (Natural-feature/Sky, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0506_nsd38484.png 38483 383641 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Rocky-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors))"
shared0507_nsd38487.png 38486 383652 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/1, Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0508_nsd38495.png 38494 413472 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Ingestible-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0509_nsd38642.png 38641 384235 "(Foreground-view, ((Item-count/1, Laptop-computer), (Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/1, Furnishing))), (Background-view, (Room, Furnishing, Indoors, Notebook, Man-made-object, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Document/Notebook,Item/Object/Man-made-object,Item/Biological-item/Organism/Plant))"
shared0510_nsd38795.png 38794 544738 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Natural-feature/Sky, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object))"
shared0511_nsd38818.png 38817 122776 "(Foreground-view, ((Item-count/1, Train), Rocky-terrain, (Item-count/1, Path))), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Rocky-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Building))"
shared0512_nsd38830.png 38829 122811 "(Foreground-view, ((Item-count/2, Train), ((Item-count, High), Plant), (Item-count/1, Word), ((Item-count, High), Character))), (Background-view, (Outdoors, Rocky-terrain, Natural-feature/Sky, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Rocky-terrain,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant))"
shared0513_nsd38854.png 38853 282631 "(Foreground-view, ((Item-count/1, Vehicle), Rocky-terrain)), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0514_nsd38979.png 38978 282707 "(Foreground-view, ((Item-count/4, Man-made-object), ((Item-count, High), Furnishing))), (Background-view, (Room, Indoors, Photograph))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))"
shared0515_nsd39048.png 39047 123692 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Dirt-terrain, Outdoors, (Human, Body), Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0516_nsd39059.png 39058 385864 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)))"
shared0517_nsd39096.png 39095 123891 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, Field)), (Background-view, (Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0518_nsd39290.png 39289 124711 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0519_nsd39299.png 39298 124747 "(Foreground-view, (((Item-count, High), Boat), Natural-feature/Ocean)), (Background-view, (Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Boat),Item/Object/Natural-object/Natural-feature/Ocean)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky))"
shared0520_nsd39370.png 39369 125042 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Book), (Item-count/2, Word))), (Background-view, (Indoors, Furnishing, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room))"
shared0521_nsd39403.png 39402 387318 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0522_nsd39510.png 39509 125586 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain, Field)), (Background-view, (Plant, Animal, River, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Biological-item/Organism/Animal,Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0523_nsd39548.png 39547 125703 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, (Human, Body, Agent-trait/Adult)))), (Background-view, (Composite-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0524_nsd39554.png 39553 125725 "(Foreground-view, ((Item-count/3, Animal), (Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, Female, Agent-trait/Adult)), Dirt-terrain)), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),Property/Environmental-property/Terrain/Dirt-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0525_nsd39842.png 39841 388980 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adolescent)), (Action/Ride, (Item-count/1, (Animal, Animal-agent))), Walk)), (Background-view, (Composite-terrain, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0526_nsd39998.png 39997 389582 "(Foreground-view, (((Item-count/2, (Animal, Animal-agent)), Action), Composite-terrain, Field)), (Background-view, (Outdoors, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action),Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0527_nsd40154.png 40153 390120 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Uneven-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Uneven-terrain,Property/Environmental-property/Rural))"
shared0528_nsd40236.png 40235 239828 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Dirt-terrain, Outdoors, Natural-feature/Sky, Bicycle, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Vehicle/Bicycle,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0529_nsd40424.png 40423 129060 "(Foreground-view, ((((Item-count, High), ((Human, Human-agent), Body)), (Play, ((Item-count, High), Man-made-object/Toy))), (Item-count/1, Machine))), (Background-view, (Plant, Sloped-terrain, Outdoors, Rural, Natural-feature/Sky, Machine))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Machine))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Device/Machine))"
shared0530_nsd40549.png 40548 391678 "(Foreground-view, ((Item-count/2, (Human, Body, (Face, Towards), Male, Agent-trait/Child)), (Item-count/2, Assistive-device), (Item-count/2, Word))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0531_nsd40576.png 40575 391754 "(Foreground-view, ((Item-count/2, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0532_nsd40722.png 40721 130181 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain, (Item-count/1, Plant))), (Background-view, (Outdoors, Rural, Natural-feature/Sky, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant))"
shared0533_nsd40771.png 40770 392556 "(Foreground-view, ((Item-count/1, Animal), Grassy-terrain, Field)), (Background-view, (Plant, Outdoors, Hill, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Hill,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0534_nsd40841.png 40840 130681 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, Plant))), (Background-view, (Grassy-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0535_nsd40847.png 40846 392851 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Building, Urban, Road, Natural-feature/Sky, Vehicle))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Vehicle))"
shared0536_nsd40910.png 40909 196584 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0537_nsd40921.png 40920 371353 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0538_nsd40925.png 40924 130973 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Word), (Item-count/1, Runway))), (Background-view, (Outdoors, Truck, Natural-feature/Sky, Aircraft))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Vehicle/Truck,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Vehicle/Aircraft))"
shared0539_nsd40936.png 40935 131011 "(Foreground-view, ((Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse), (Item-count/1, Furnishing), ((Item-count, High), Furnishing))), (Background-view, (Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0540_nsd40980.png 40979 21826 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), Sloped-terrain)), (Background-view, (Mountain, Rural, Natural-feature/Sky, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0541_nsd41057.png 41056 131524 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0542_nsd41098.png 41097 284089 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Plant))), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0543_nsd41117.png 41116 131763 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Infant)), (Item-count/1, Laptop-computer))), (Background-view, (Indoors, Furnishing, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Infant)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room))"
shared0544_nsd41138.png 41137 394008 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face), (Item-count/3, Sculpture))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Media/Visualization/Sculpture))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0545_nsd41163.png 41162 131967 "(Foreground-view, ((Item-count/1, Boat), (Item-count/1, River))), (Background-view, (Mountain, Plant, Outdoors, Building, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0546_nsd41483.png 41482 133281 "(Foreground-view, ((Item-count/4, Plant), ((Item-count, High), Furnishing))), (Background-view, (Furnishing, Room, Indoors, Plant, Photograph))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Plant),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))"
shared0547_nsd41567.png 41566 395758 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/1, Display-device), (Item-count/1, Drawing))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Drawing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0548_nsd41575.png 41574 395775 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/1, Desktop-computer), (Item-count/1, Entrance))), (Background-view, (Room, Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0549_nsd41624.png 41623 197068 "(Foreground-view, ((Item-count/2, Cellphone), (Item-count/1, Tool))), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0550_nsd41654.png 41653 66014 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/1, Word), ((Item-count, High), Truck))), (Background-view, (Outdoors, Paved-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Truck))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0551_nsd41711.png 41710 134169 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Adolescent)), (Item-count/1, Furnishing), (Item-count/2, Word))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0552_nsd41779.png 41778 396550 "(Foreground-view, (((Item-count, High), Animal), Grassy-terrain, Sloped-terrain)), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0553_nsd41815.png 41814 134562 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Building, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0554_nsd41928.png 41927 135032 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing))), (Background-view, (Plant, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0555_nsd41935.png 41934 397192 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Building, Urban, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0556_nsd42008.png 42007 135316 "(Foreground-view, (Item-count/1, Aircraft)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0557_nsd42127.png 42126 22627 "(Foreground-view, ((Item-count/1, Animal), (Item-count/2, Furnishing))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0558_nsd42167.png 42166 398083 "(Foreground-view, (((Item-count/2, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/2, Character), Composite-terrain)), (Background-view, (Field, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character),Property/Environmental-property/Terrain/Composite-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0559_nsd42172.png 42171 135965 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Child)), ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))))), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0560_nsd42215.png 42214 136111 "(Foreground-view, ((Item-count/1, Animal), (Item-count/2, Ingestible-object))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0561_nsd42225.png 42224 136142 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), ((Item-count, High), Assistive-device), ((Item-count, High), Plant), (Item-count/1, Furnishing))), (Background-view, (Indoors, Man-made-object, Photograph, Furnishing, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Device/Assistive-device),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room))"
shared0562_nsd42239.png 42238 22696 "(Foreground-view, ((Item-count/2, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), ((Item-count, High), Ingestible-object), (Item-count/3, Assistive-device), ((Item-count, High), Furnishing))), (Background-view, (Plant, Urban, (Human, Body), Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Device/Assistive-device),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Furnishing))"
shared0563_nsd42300.png 42299 398540 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain, ((Item-count, High), Plant))), (Background-view, (Outdoors, Hill, Rural, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Hill,Property/Environmental-property/Rural,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0564_nsd42474.png 42473 399162 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0565_nsd42564.png 42563 197656 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Word), Rocky-terrain)), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0566_nsd42643.png 42642 399835 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Composite-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors))"
shared0567_nsd42649.png 42648 137706 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0568_nsd42698.png 42697 399984 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Composite-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0569_nsd42782.png 42781 138153 "(Foreground-view, ((Item-count/4, Furnishing), ((Item-count, High), Plant), (Item-count/1, Drawing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Drawing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0570_nsd42852.png 42851 400581 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/3, Plant), (Item-count/1, Man-made-object), (Item-count/1, Word))), (Background-view, (Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0571_nsd42913.png 42912 229233 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/4, Assistive-device))), (Background-view, (Outdoors, Building, Entrance, Paved-terrain, Urban, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Building/Entrance,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban,Item/Object/Man-made-object/Furnishing))"
shared0572_nsd42947.png 42946 138785 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Plant), (Item-count/1, Man-made-object/Toy), (Item-count/4, Photograph))), (Background-view, (Book, Furnishing, Painting, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Media/Visualization/Image/Painting,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0573_nsd42981.png 42980 138904 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/1, Entrance))), (Background-view, (Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0574_nsd43108.png 43107 139344 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Animal, Car, Plant, Grassy-terrain, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Animal,Item/Object/Man-made-object/Vehicle/Car,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0575_nsd43157.png 43156 139551 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/4, Character))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0576_nsd43158.png 43157 401699 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Mountain), Grassy-terrain)), (Background-view, (Mountain, Outdoors, Natural-feature/Sky, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/Mountain),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0577_nsd43160.png 43159 139561 "(Foreground-view, ((Item-count/1, (Animal, Animal-agent)), Walk)), (Background-view, (Grassy-terrain, Field, Mountain, Outdoors, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0578_nsd43165.png 43164 401720 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Animal))), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0579_nsd43225.png 43224 139815 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/1, Man-made-object), (Item-count/1, Furnishing), (Item-count/1, Path))), (Background-view, (Plant, Outdoors, River))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/River))"
shared0580_nsd43251.png 43250 402057 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0581_nsd43289.png 43288 402199 "(Foreground-view, ((Item-count/1, Assistive-device), (Item-count/1, Pen), (Item-count/1, Word))), (Background-view, (Assistive-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Device/Assistive-device))"
shared0582_nsd43429.png 43428 140590 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Field, Sloped-terrain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0583_nsd43430.png 43429 198195 "(Foreground-view, ((Item-count/3, Ingestible-object), (Item-count/1, (Human, Body))))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body))))"
shared0584_nsd43446.png 43445 285588 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male), Agent-trait/Child), (Item-count/1, Man-made-object/Toy))), (Background-view, (Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male),Property/Agent-property/Agent-trait/Child),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0585_nsd43466.png 43465 140724 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Animal))), (Background-view, (Rocky-terrain, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0586_nsd43501.png 43500 154556 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Hill, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Hill,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0587_nsd43620.png 43619 403535 "(Foreground-view, ((Item-count/1, (Animal, Animal-agent)), (Collide-with, (Item-count/1, (Animal, Animal-agent))))), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),(Action/Perform/Collide-with,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0588_nsd43676.png 43675 403739 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Outdoors, Rural, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0589_nsd43690.png 43689 403789 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Action/Ride, (Item-count/1, (Animal, Animal-agent))), Walk)), (Background-view, (Composite-terrain, Outdoors, Plant, Hill, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Walk)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Hill,Item/Object/Man-made-object/Building))"
shared0590_nsd43747.png 43746 404007 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0591_nsd43819.png 43818 404282 "(Foreground-view, (((Item-count, High), Plant), (Item-count/1, Man-made-object/Toy))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0592_nsd43821.png 43820 504289 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0593_nsd43853.png 43852 196777 "(Foreground-view, (((Item-count, High), Vehicle), ((Item-count, High), (Human, Body, Agent-trait/Adult)), (Item-count/1, Road))), (Background-view, (Outdoors, Rural, Natural-feature/Sky, Mountain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Natural-object/Natural-feature/Mountain,Item/Biological-item/Organism/Plant))"
shared0594_nsd43951.png 43950 404823 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Walk, (Item-count/1, Runway)))), (Background-view, (Aircraft, Paved-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Aircraft,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0595_nsd43985.png 43984 142803 "(Foreground-view, (((Item-count/2, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, Word), (Item-count/1, Character))), (Background-view, (Outdoors, Composite-terrain, Field))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain,Item/Object/Natural-object/Natural-feature/Field))"
shared0596_nsd44053.png 44052 405215 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0597_nsd44098.png 44097 143245 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (River, Outdoors, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0598_nsd44108.png 44107 405437 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Older-adult)), (Reach, (Item-count/1, (Animal, Animal-agent))), Bite)), (Background-view, (Indoors, Furnishing, Room, Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Older-adult)),(Action/Move/Move-body-part/Move-upper-extremity/Reach,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-face/Bite)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Item/Object/Ingestible-object))"
shared0599_nsd44139.png 44138 388853 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0600_nsd44145.png 44144 143420 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Man-made-object))), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0601_nsd44185.png 44184 143594 "(Foreground-view, ((Item-count/1, Boat), (Item-count/2, Animal))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0602_nsd44325.png 44324 406292 "(Foreground-view, (((Item-count, High), Animal), ((Item-count, High), (Human, Body, Agent-trait/Adult)))), (Background-view, (Dirt-terrain, Outdoors, Mountain, Vehicle, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Man-made-object/Vehicle,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0603_nsd44340.png 44339 144193 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Building, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0604_nsd44370.png 44369 406445 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0605_nsd44413.png 44412 406595 "(Foreground-view, ((Item-count/1, Car), (Item-count/1, Road))), (Background-view, (Composite-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0606_nsd44706.png 44705 407778 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Path))), (Background-view, (Outdoors, (Human, Body, Agent-trait/Adult), Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0607_nsd44721.png 44720 461187 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Furnishing), (Item-count/1, Cellphone))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0608_nsd44730.png 44729 24287 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Field, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0609_nsd44737.png 44736 504888 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Older-adult)), (Item-count/1, Furnishing))), (Background-view, (Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Older-adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0610_nsd44845.png 44844 146256 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing))), (Background-view, ((Human, Body), Outdoors, Paved-terrain, Roof))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building/Roof))"
shared0611_nsd44972.png 44971 408922 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Building))), (Background-view, (Natural-feature/Sky, Paved-terrain, Cone, Outdoors, Icon))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Geometric-object/3D-shape/Cone,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Media/Visualization/Image/Icon))"
shared0612_nsd44981.png 44980 408965 "(Foreground-view, (Item-count/1, Aircraft)), (Background-view, (Outdoors, Natural-feature/Sky, Urban, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0613_nsd45130.png 45129 147331 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/3, Furnishing), (Item-count/3, Plant), (Item-count/1, Bicycle))), (Background-view, (Vehicle, Paved-terrain, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban))"
shared0614_nsd45214.png 45213 147694 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Adult)), (Item-count/1, Box), (Item-count/1, Character))), (Background-view, (Paved-terrain, Building, Outdoors, Drawing, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Geometric-object/3D-shape/Box),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Media/Visualization/Image/Drawing,Property/Environmental-property/Urban))"
shared0615_nsd45357.png 45356 148263 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0616_nsd45596.png 45595 149221 "(Foreground-view, ((Item-count/4, Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Furnishing, (Human, Body, Agent-trait/Adult), Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0617_nsd45633.png 45632 411475 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, River))), (Background-view, (Rocky-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0618_nsd45747.png 45746 149791 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0619_nsd45751.png 45750 149810 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Mountain, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Man-made-object))"
shared0620_nsd45838.png 45837 153394 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Adolescent)), (Item-count/1, (Human, Body, Male, Agent-trait/Adolescent)), (Item-count/3, Man-made-object/Toy))), (Background-view, (Composite-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0621_nsd45844.png 45843 150196 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Road), (Item-count/1, Path), (Item-count/2, Character))), (Background-view, (Building, Composite-terrain, Plant, Outdoors, Urban, Natural-feature/Sky, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object))"
shared0622_nsd45946.png 45945 150559 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Male, Agent-trait/Adult)), (Action/Ride, (Item-count/1, Bicycle))), (Item-count/1, Road))), (Background-view, (Vehicle, Building, Urban, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0623_nsd45982.png 45981 412855 "(Foreground-view, ((Item-count/2, Road), (Item-count/1, 2D-shape), (Item-count/3, Man-made-object))), (Background-view, (Outdoors, Paved-terrain, Plant, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0624_nsd45983.png 45982 412857 "(Foreground-view, (((Item-count, High), Animal), (Item-count/1, Waterfall))), (Background-view, (Composite-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/Waterfall))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0625_nsd46000.png 45999 369367 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Outdoors, Grassy-terrain, Field, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0626_nsd46003.png 46002 412922 "(Foreground-view, (((Item-count, High), Animal), (Item-count/1, Path))), (Background-view, (Composite-terrain, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0627_nsd46037.png 46036 150931 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky))"
shared0628_nsd46102.png 46101 151163 "(Foreground-view, ((Item-count/2, (Human, Body)), (Item-count/1, Furnishing), Paved-terrain)), (Background-view, (Hill, River, Building, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Hill,Item/Object/Natural-object/Natural-feature/River,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0629_nsd46137.png 46136 151307 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0630_nsd46151.png 46150 462134 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/1, Word))), (Background-view, (Man-made-object/Toy, Paved-terrain, Outdoors, (Human, Body), Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Toy,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Sky))"
shared0631_nsd46161.png 46160 151414 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Animal))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0632_nsd46275.png 46274 68996 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Path))), (Background-view, (Composite-terrain, Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0633_nsd46322.png 46321 414176 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (River, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors))"
shared0634_nsd46373.png 46372 152273 "(Foreground-view, ((Item-count/3, Cellphone), (Item-count/1, Furnishing)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)))"
shared0635_nsd46381.png 46380 152328 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Action/Ride, (Item-count/1, Bicycle))), (Item-count/1, Path))), (Background-view, (River, Plant, Paved-terrain, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0636_nsd46461.png 46460 549729 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/2, Tool), (Item-count/1, Computer-mouse))), (Background-view, (Room, Indoors, Desktop-computer, Photograph, Clothing, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Tool),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Clothing,Item/Object/Man-made-object))"
shared0637_nsd46463.png 46462 506039 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0638_nsd46481.png 46480 414853 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0639_nsd46524.png 46523 415026 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0640_nsd46643.png 46642 162230 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/3, Furnishing))), (Background-view, (Furnishing, Indoors, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors,Item/Object/Man-made-object))"
shared0641_nsd46662.png 46661 415608 "(Foreground-view, (((Item-count, High), Boat), Terrain/Sand)), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Boat),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0642_nsd46807.png 46806 154011 "(Foreground-view, ((Item-count/2, Animal), (Item-count/1, River))), (Background-view, (Rocky-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors))"
shared0643_nsd46836.png 46835 416279 "(Foreground-view, ((Item-count/2, Boat), Natural-feature/Ocean)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat),Item/Object/Natural-object/Natural-feature/Ocean)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0644_nsd46862.png 46861 154207 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0645_nsd47034.png 47033 416972 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors, Hill, Rocky-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Hill,Property/Environmental-property/Terrain/Rocky-terrain))"
shared0646_nsd47071.png 47070 417141 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0647_nsd47100.png 47099 417264 "(Foreground-view, ((Item-count/4, (Human, Body, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Sloped-terrain, Natural-feature/Sky, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0648_nsd47201.png 47200 417700 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky))"
shared0649_nsd47291.png 47290 418115 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Plant))), (Background-view, (Book, Photograph, Display-device, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0650_nsd47294.png 47293 419212 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0651_nsd47322.png 47321 156084 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0652_nsd47409.png 47408 113449 "(Foreground-view, (((Item-count, High), (Human, Body, (Face, Towards), Agent-trait/Adult)), ((Item-count, High), Man-made-object))), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0653_nsd47599.png 47598 157119 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0654_nsd47601.png 47600 157125 "(Foreground-view, ((Item-count/4, (Human, Body, Male, Agent-trait/Adolescent)), (Item-count/3, Cellphone), (Item-count/1, Path))), (Background-view, (River, Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0655_nsd47615.png 47614 157181 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Entrance), (Item-count/1, Furnishing))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0656_nsd47657.png 47656 157342 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0657_nsd47688.png 47687 419586 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/1, Word))), (Background-view, (Indoors, (Human, Body, Agent-trait/Adult), Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Furnishing))"
shared0658_nsd48158.png 48157 563961 "(Foreground-view, ((Item-count/3, Furnishing), (Item-count/1, Entrance))), (Background-view, (Room, Indoors, Furnishing, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Biological-item/Organism/Plant))"
shared0659_nsd48261.png 48260 159680 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face), (Item-count/3, Sculpture))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Media/Visualization/Sculpture))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0660_nsd48375.png 48374 422268 "(Foreground-view, (Item-count/1, Clock-face)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0661_nsd48380.png 48379 160142 "(Foreground-view, ((Item-count/1, Tool), ((Item-count, High), Man-made-object/Toy), ((Item-count, High), Furnishing), (Item-count/1, Book), (Item-count/1, Display-device))), (Background-view, (Man-made-object, Room, Indoors, Furnishing, Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Toy))"
shared0662_nsd48394.png 48393 160181 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Child)), (Item-count/2, Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Ingestible-object, Furnishing, Room, Indoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant))"
shared0663_nsd48423.png 48422 463620 "(Foreground-view, ((Item-count/1, Train), ((Item-count, High), Drawing), (Item-count/1, Man-made-object))), (Background-view, (River, Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Drawing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0664_nsd48509.png 48508 551063 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Dirt-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0665_nsd48531.png 48530 160735 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0666_nsd48618.png 48617 161062 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway))), (Background-view, (Plant, Outdoors, Paved-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0667_nsd48619.png 48618 423209 "(Foreground-view, (((Item-count, High), Aircraft), ((Item-count, High), Vehicle), (Item-count/1, Runway), ((Item-count, High), Character))), (Background-view, (Outdoors, Natural-feature/Sky, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Aircraft),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Paved-terrain))"
shared0668_nsd48623.png 48622 423222 "(Foreground-view, ((Item-count/1, Pen), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, (Room, Furnishing, Indoors, Pen, Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen,Item/Object/Ingestible-object))"
shared0669_nsd48680.png 48679 161328 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0670_nsd48682.png 48681 423488 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/2, Cellphone), (Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse), (Item-count/1, Device))), (Background-view, (Room, Indoors, Ingestible-object, Furnishing, Display-device, Pen, Notebook))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen,Item/Object/Man-made-object/Document/Notebook))"
shared0671_nsd48803.png 48802 161836 "(Foreground-view, (Item-count/1, Vehicle)), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0672_nsd48833.png 48832 424110 "(Foreground-view, ((Item-count/2, (Human, Body, Agent-trait/Adult)), (Item-count/1, (Human, Body, Agent-trait/Child)), ((Item-count, High), Man-made-object/Toy), ((Item-count, High), Building))), (Background-view, (Sloped-terrain, Plant, Outdoors, Mountain, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Child)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0673_nsd48840.png 48839 424138 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0674_nsd49077.png 49076 425135 "(Foreground-view, (Item-count/3, Furnishing)), (Background-view, (Entrance, Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0675_nsd49153.png 49152 163250 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0676_nsd49157.png 49156 163263 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Adult)), (Item-count/2, (Human, Body, Male, Agent-trait/Child)), (Item-count/1, Path), ((Item-count, High), Animal))), (Background-view, (Hill, Plant, Outdoors, Grassy-terrain, Field, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Hill,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0677_nsd49235.png 49234 425712 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse), (Item-count/1, Cellphone), (Item-count/1, Book), (Item-count/1, Pen), (Item-count/1, Notebook))), (Background-view, (Room, Indoors, Man-made-object, Drawing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Notebook))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object,Item/Object/Man-made-object/Media/Visualization/Image/Drawing))"
shared0678_nsd49467.png 49466 164502 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0679_nsd49481.png 49480 164564 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Male, Agent-trait/Infant)), Move-upper-extremity), (Item-count/2, Man-made-object/Toy), ((Item-count, High), Icon))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Infant)),Action/Move/Move-body-part/Move-upper-extremity),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0680_nsd49623.png 49622 485595 "(Foreground-view, (Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Adult))), (Background-view, (Grassy-terrain, Furnishing, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0681_nsd49732.png 49731 427729 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0682_nsd49924.png 49923 14269 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adolescent)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Sloped-terrain, Plant, Mountain, Outdoors, Rural, Natural-feature/Sky, (Human, Body), Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Toy))"
shared0683_nsd49945.png 49944 428605 "(Foreground-view, (Item-count/1, Man-made-object)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0684_nsd49956.png 49955 166489 "(Foreground-view, ((Item-count/4, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/3, Man-made-object/Toy)))), (Background-view, (Composite-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0685_nsd49958.png 49957 166504 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0686_nsd49970.png 49969 428691 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Boat), (Item-count/1, (Human, Body)), Rocky-terrain)), (Background-view, (Outdoors, Natural-feature/Sky, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0687_nsd49980.png 49979 428726 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Composite-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors))"
shared0688_nsd50027.png 50026 166764 "(Foreground-view, ((Item-count/3, (Human, Body, Male, (Face, Towards), Agent-trait/Child)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Path, Dirt-terrain, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0689_nsd50115.png 50114 508456 "(Foreground-view, ((Item-count/2, Animal), ((Item-count, High), Plant))), (Background-view, (Dirt-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0690_nsd50171.png 50170 43829 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, Man-made-object))), (Background-view, (Plant, Outdoors, Sloped-terrain, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0691_nsd50501.png 50500 168690 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse), (Item-count/1, Keyboard), (Item-count/1, Tool))), (Background-view, (Painting, Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Painting,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0692_nsd50654.png 50653 169262 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Plant))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0693_nsd50735.png 50734 431764 "(Foreground-view, ((Item-count/2, Train), Rocky-terrain)), (Background-view, (Outdoors, Plant, Building, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky))"
shared0694_nsd50756.png 50755 431825 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0695_nsd50812.png 50811 284987 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0696_nsd50883.png 50882 28367 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0697_nsd51052.png 51051 433019 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0698_nsd51053.png 51052 433021 "(Foreground-view, ((Item-count/3, 2D-Shape), (Item-count/2, Character))), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0699_nsd51063.png 51062 170917 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse), (Item-count/1, Keyboard), (Item-count/1, (Human, Body, Agent-trait/Adult)))), (Background-view, (Furnishing, Man-made-object, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0700_nsd51078.png 51077 170968 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/3, Clothing))), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0701_nsd51149.png 51148 79701 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0702_nsd51172.png 51171 171328 "(Foreground-view, (((Item-count, High), Plant), ((Item-count, High), Ingestible-object))), (Background-view, (Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0703_nsd51186.png 51185 171374 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Furnishing, Room, Indoors, Animal, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Animal,Item/Biological-item/Organism/Plant))"
shared0704_nsd51522.png 51521 420713 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/4, Furnishing), ((Item-count, High), Plant))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0705_nsd51746.png 51745 28930 "(Foreground-view, ((Item-count/3, Animal), ((Item-count, High), Plant))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0706_nsd51789.png 51788 435902 "(Foreground-view, ((Item-count/3, Animal), Grassy-terrain, Field)), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0707_nsd51844.png 51843 173987 "(Foreground-view, (((Item-count/3, (Animal, Animal-agent)), Run), (Item-count/1, Path))), (Background-view, (Grassy-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Run),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0708_nsd51908.png 51907 174213 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object))), (Item-count/1, River))), (Background-view, (Composite-terrain, Outdoors, (Human, Body, Agent-trait/Adult), (Human, Body, Agent-trait/Child), Plant, Path))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Child),Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Navigational-object/Path))"
shared0709_nsd51929.png 51928 174303 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Child)), (Item-count/2, Tool), (Item-count/3, Word))), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Tool),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0710_nsd51966.png 51965 436578 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Road))), (Background-view, (Plant, Paved-terrain, Mountain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0711_nsd51984.png 51983 174504 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0712_nsd51989.png 51988 174522 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0713_nsd52071.png 52070 291280 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/2, Word))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0714_nsd52217.png 52216 437516 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Paved-terrain, Outdoors, Natural-feature/Sky, (Human, Body), Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Toy))"
shared0715_nsd52303.png 52302 175715 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Outdoors, Plant, Building, Road, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0716_nsd52329.png 52328 437967 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Ingestible-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Ingestible-object,Item/Object/Man-made-object/Furnishing))"
shared0717_nsd52376.png 52375 438154 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Animal))), (Background-view, (Grassy-terrain, Outdoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Furnishing))"
shared0718_nsd52395.png 52394 176085 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0719_nsd52528.png 52527 438751 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Car))), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0720_nsd52555.png 52554 176728 "(Foreground-view, ((Item-count/1, Clock-face), ((Item-count, High), Building))), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0721_nsd52597.png 52596 176873 "(Foreground-view, ((Item-count/3, Man-made-object), (Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/2, Road), ((Item-count, High), Icon), (Item-count/1, Bicycle))), (Background-view, (Outdoors, Plant, Urban, Natural-feature/Sky, Man-made-object, Vehicle, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object,Item/Object/Man-made-object/Vehicle,Item/Object/Man-made-object/Building))"
shared0722_nsd52599.png 52598 73172 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/2, Furnishing))), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0723_nsd52653.png 52652 439241 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Photograph, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0724_nsd52893.png 52892 178031 "(Foreground-view, ((((Item-count, High), ((Human, Human-agent), Body)), (Action/Ride, ((Item-count, High), (Animal, Animal-agent))), Walk), Terrain/Sand)), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Ride,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Walk),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0725_nsd52932.png 52931 440334 "(Foreground-view, ((Item-count, High), Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))"
shared0726_nsd52991.png 52990 178423 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Path), (Item-count/1, Roof), Rocky-terrain)), (Background-view, (Natural-feature/Sky, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0727_nsd53053.png 53052 440792 "(Foreground-view, (Item-count/1, Clock-face)), (Background-view, (Pattern))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Geometric-object/Pattern))"
shared0728_nsd53071.png 53070 395740 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/4, Man-made-object), ((Item-count, High), (Human, Body)), (Item-count/2, Path))), (Background-view, (Paved-terrain, Plant, Outdoors, Urban, Natural-feature/Sky, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Building))"
shared0729_nsd53153.png 53152 179019 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/2, Man-made-object))), (Background-view, (Room, Indoors, Man-made-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object,Item/Object/Man-made-object/Furnishing))"
shared0730_nsd53156.png 53155 441172 "(Foreground-view, ((Item-count/2, (Human, Body, (Item-count/1, Female), (Item-count/1, Male))), (Item-count/1, Path), (Item-count/1, Roof), (Item-count/1, Man-made-object))), (Background-view, (Outdoors, Paved-terrain, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Property/Agent-property/Agent-trait/Sex/Female),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Property/Agent-property/Agent-trait/Sex/Male))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0731_nsd53158.png 53157 179034 "(Foreground-view, ((Item-count/4, Animal), (Item-count/1, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Furnishing))), (Background-view, (Rocky-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0732_nsd53271.png 53270 179480 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Towards), Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, Plant, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0733_nsd53371.png 53370 179914 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Agent-trait/Child)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Natural-feature/Ocean, Outdoors, Natural-feature/Sky, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0734_nsd53490.png 53489 442489 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing), (Item-count/1, Assistive-device))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0735_nsd53512.png 53511 180410 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0736_nsd53571.png 53570 180609 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant, Sloped-terrain, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0737_nsd53728.png 53727 443377 "(Foreground-view, ((Item-count/1, Train), (Item-count/2, Word), Rocky-terrain)), (Background-view, (Plant, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0738_nsd53729.png 53728 204969 "(Foreground-view, ((Item-count/1, Assistive-device), ((Item-count, High), Plant), ((Item-count, High), Ingestible-object)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)))"
shared0739_nsd53774.png 53773 443575 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), ((Item-count, High), Furnishing))), (Background-view, (Book, Drawing, Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Media/Visualization/Image/Drawing,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0740_nsd53859.png 53858 161354 "(Foreground-view, (Item-count/3, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0741_nsd53882.png 53881 443940 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Dirt-terrain, Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0742_nsd53892.png 53891 181837 "(Foreground-view, (((Item-count/3, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adolescent)), (Action/Ride, (Item-count/3, Bicycle))), (Item-count/1, Path), ((Item-count, High), Plant), (Item-count/1, Furnishing))), (Background-view, (Building, Urban, Natural-feature/Sky, River, Composite-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0743_nsd54079.png 54078 189388 "(Foreground-view, ((Item-count/1, Entrance), (Item-count/1, Drawing), ((Item-count, High), Furnishing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Drawing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0744_nsd54148.png 54147 182799 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Cellphone))), (Background-view, (Waterfall, Plant, Building, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Waterfall,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0745_nsd54258.png 54257 445351 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0746_nsd54362.png 54361 445726 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0747_nsd54390.png 54389 183719 "(Foreground-view, ((Item-count/2, Animal), ((Item-count, High), Plant))), (Background-view, (Outdoors, Rural, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Property/Environmental-property/Terrain/Composite-terrain))"
shared0748_nsd54644.png 54643 184822 "(Foreground-view, (Item-count/1, Vehicle)), (Background-view, (Road, Paved-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Road,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0749_nsd54684.png 54683 447130 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Paved-terrain, (Human, Body), Man-made-object/Toy, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Toy,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0750_nsd54699.png 54698 447182 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), Sloped-terrain)), (Background-view, (Natural-feature/Sky, Rural, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Sloped-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Property/Environmental-property/Outdoors))"
shared0751_nsd54744.png 54743 185225 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing), (Item-count/1, Man-made-object), (Item-count/1, Assistive-device))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0752_nsd54813.png 54812 36151 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy))), ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Character))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0753_nsd54825.png 54824 6178 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0754_nsd54914.png 54913 185888 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/2, Icon))), (Background-view, (Grassy-terrain, Building, Natural-feature/Sky, Urban, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors))"
shared0755_nsd54960.png 54959 55764 "(Foreground-view, (((Item-count/3, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/3, Man-made-object/Toy))), (Item-count/1, Character))), (Background-view, (Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0756_nsd55006.png 55005 448401 "(Foreground-view, ((Item-count/1, Train), Grassy-terrain, (Item-count/1, River))), (Background-view, (Natural-feature/Sky, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Property/Environmental-property/Terrain/Grassy-terrain,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0757_nsd55108.png 55107 442666 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, Cellphone)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone)))"
shared0758_nsd55164.png 55163 186828 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Entrance))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0759_nsd55406.png 55405 449914 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/1, Word))), (Background-view, (Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0760_nsd55409.png 55408 276853 "(Foreground-view, ((Item-count/3, 2D-Shape), (Item-count/1, Word), (Item-count/4, Car), (Item-count/1, Road))), (Background-view, (Building, Plant, Outdoors, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0761_nsd55527.png 55526 188225 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Roof), (Item-count/1, Runway), (Item-count/2, (Human, Body, Agent-trait/Adult)), (Item-count/1, Icon))), (Background-view, (Outdoors, Paved-terrain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0762_nsd55650.png 55649 188660 "(Foreground-view, (((Item-count, High), Animal), Terrain/Sand)), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0763_nsd55670.png 55669 450864 "(Foreground-view, ((Item-count/3, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), ((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), ((Item-count, High), Assistive-device), (Item-count/4, Character))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Device/Assistive-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0764_nsd55679.png 55678 450903 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/2, Character))), (Background-view, (Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0765_nsd55681.png 55680 450914 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/2, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0766_nsd55858.png 55857 451680 "(Foreground-view, ((Item-count/1, (Human, Body, Female, Agent-trait/Child)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant))"
shared0767_nsd55934.png 55933 189794 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adult)), (Action/Ride, (Item-count/1, Bicycle))), (Item-count/1, Building), (Item-count/1, Path), ((Item-count, High), Furnishing))), (Background-view, (Outdoors, Plant, Paved-terrain, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0768_nsd55969.png 55968 189888 "(Foreground-view, ((Item-count/2, Vehicle), (Item-count/1, Car))), (Background-view, (Paved-terrain, Building, Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0769_nsd55970.png 55969 189893 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Photograph, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0770_nsd56043.png 56042 452341 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0771_nsd56067.png 56066 190271 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, River))), (Background-view, (Rocky-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0772_nsd56127.png 56126 190487 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0773_nsd56155.png 56154 303133 "(Foreground-view, ((Item-count/1, Clock-face), (Item-count/1, Sculpture), (Item-count/1, Building))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Sculpture),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0774_nsd56270.png 56269 191005 "(Foreground-view, ((Item-count/3, Animal), ((Item-count, High), Plant))), (Background-view, (Outdoors, Rural, Dirt-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Property/Environmental-property/Terrain/Dirt-terrain))"
shared0775_nsd56291.png 56290 453221 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Vehicle))), (Background-view, (Outdoors, Road))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Navigational-object/Road))"
shared0776_nsd56315.png 56314 468771 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Reach, (Item-count/1, (Animal, Animal-agent)), Bite)), (Item-count/1, Pen))), (Background-view, (Composite-terrain, Plant, Roof, Outdoors, Natural-feature/Sky, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-upper-extremity/Reach,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-face/Bite)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building/Roof,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Item/Biological-item/Organism/Animal))"
shared0777_nsd56419.png 56418 453682 "(Foreground-view, ((Item-count/3, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/3, Man-made-object/Toy)))), (Background-view, (Furnishing, Composite-terrain, Outdoors, (Human, Body, Agent-trait/Adult)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)))"
shared0778_nsd56455.png 56454 191686 "(Foreground-view, ((Item-count/1, Animal), Rocky-terrain, ((Item-count, High), Plant))), (Background-view, (Outdoors, Rural, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Rocky-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Rural,Item/Biological-item/Organism/Plant))"
shared0779_nsd56472.png 56471 191740 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing), (Item-count/1, Assistive-device))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0780_nsd56671.png 56670 192576 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Vehicle))), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0781_nsd56682.png 56681 192631 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0782_nsd56696.png 56695 454830 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Child)), (Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Child)), (Item-count/2, Assistive-device), ((Item-count, High), Icon))), (Background-view, (Furnishing, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors))"
shared0783_nsd56724.png 56723 454915 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse))), (Background-view, (Room, Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0784_nsd56752.png 56751 455020 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/1, Loudspeaker))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0785_nsd56783.png 56782 119550 "(Foreground-view, ((Item-count/2, Furnishing), ((Item-count, High), Plant))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0786_nsd56785.png 56784 193023 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Child)), (Item-count/1, Man-made-object))), (Background-view, (Paved-terrain, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0787_nsd56851.png 56850 193318 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Paved-terrain, Outdoors, Building, Plant, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0788_nsd56868.png 56867 193373 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0789_nsd56912.png 56911 455657 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/4, Plant))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0790_nsd56949.png 56948 455799 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Reach, ((Item-count, High), Ingestible-object))), ((Item-count, High), Furnishing))), (Background-view, (Indoors, Furnishing, Room, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-upper-extremity/Reach,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object))"
shared0791_nsd57047.png 57046 194054 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0792_nsd57061.png 57060 194108 "(Foreground-view, ((Item-count/1, Clock-face), (Item-count/1, Building), (Item-count/3, Man-made-object), (Item-count/1, Plant))), (Background-view, ((Human, Body), Car, Outdoors, Natural-feature/Sky, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Vehicle/Car,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0793_nsd57436.png 57435 338439 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/3, Icon))), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0794_nsd57444.png 57443 195650 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face), (Item-count/1, River))), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0795_nsd57479.png 57478 195768 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0796_nsd57543.png 57542 338501 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/1, Word), (Item-count/2, Character))), (Background-view, (Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0797_nsd57554.png 57553 458178 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Desktop-computer), ((Item-count, High), Man-made-object))), (Background-view, (Room, Indoors, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Entrance))"
shared0798_nsd57649.png 57648 196365 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), ((Item-count, High), Icon))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0799_nsd57651.png 57650 196368 "(Foreground-view, ((Item-count/4, Furnishing), (Item-count/1, Plant))), (Background-view, (Indoors, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room))"
shared0800_nsd57682.png 57681 458616 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/2, Assistive-device))), (Background-view, (Indoors, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0801_nsd57823.png 57822 459190 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Assistive-device)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device)))"
shared0802_nsd57839.png 57838 197118 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0803_nsd57907.png 57906 197401 "(Foreground-view, ((Item-count/2, Animal), (Data-property, Plant))), (Background-view, (Outdoors, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),(Property/Data-property,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain))"
shared0804_nsd58097.png 58096 460236 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Biological-item/Organism/Animal))"
shared0805_nsd58145.png 58144 460408 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing), (Item-count/2, Assistive-device), (Item-count/3, Word)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word)))"
shared0806_nsd58165.png 58164 198319 "(Foreground-view, ((Item-count/2, Icon), (Item-count/3, 2D-Shape), (Item-count/1, Road))), (Background-view, (Plant, Vehicle, Natural-feature/Sky, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Vehicle,Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object))"
shared0807_nsd58188.png 58187 397815 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Male, Agent-trait/Adult)), Walk), (Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, Agent-trait/Adult, Female)), (Item-count/2, Man-made-object))), (Background-view, (Outdoors, Paved-terrain, Building, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),Action/Move/Move-body-part/Move-lower-extremity/Walk),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult,Property/Agent-property/Agent-trait/Sex/Female)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban))"
shared0808_nsd58405.png 58404 461428 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), ((Item-count, High), Photograph), (Item-count/1, Furnishing), (Item-count/2, Assistive-device), ((Item-count, High), Notebook))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Photograph),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Assistive-device),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Document/Notebook))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0809_nsd58669.png 58668 462505 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Road), (Item-count/1, Word))), (Background-view, (Composite-terrain, Plant, Outdoors, Urban, Car, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building))"
shared0810_nsd58682.png 58681 200391 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/2, Plant))), (Background-view, (Natural-feature/Sky, Outdoors, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0811_nsd59024.png 59023 201722 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (River, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/River,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0812_nsd59040.png 59039 201758 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Composite-terrain, Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0813_nsd59047.png 59046 557920 "(Foreground-view, ((Item-count/1, Train), (Item-count/2, Word), Rocky-terrain)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0814_nsd59080.png 59079 201969 "(Foreground-view, ((Item-count/3, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, Female, Agent-trait/Child)), (Item-count/4, Animal), (Item-count/1, Furnishing))), (Background-view, (Outdoors, Paved-terrain, River, Building, Boat, Urban, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/River,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Boat,Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky))"
shared0815_nsd59092.png 59091 202050 "(Foreground-view, ((Item-count/2, Boat), (Item-count/1, Word), (Item-count/2, Character))), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0816_nsd59195.png 59194 464616 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Composite-terrain, Outdoors, (Human, Body), Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Biological-item/Organism/Plant))"
shared0817_nsd59285.png 59284 202805 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/2, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0818_nsd59420.png 59419 465412 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0819_nsd59421.png 59420 298139 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0820_nsd59586.png 59585 203937 "(Foreground-view, ((Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0821_nsd59596.png 59595 77686 "(Foreground-view, ((Item-count/2, (Human, Body, Male, (Face, Away-from), Agent-trait/Child)), (Item-count/1, (Human, Body, Male, Agent-trait/Child)), (Item-count/1, Tool))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0822_nsd59632.png 59631 466265 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Indoors, Paved-terrain, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant))"
shared0823_nsd59700.png 59699 204422 "(Foreground-view, ((Item-count/3, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Outdoors, Sloped-terrain, Plant, Rural, Natural-feature/Sky, (Human, Body), Machine))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Device/Machine))"
shared0824_nsd59818.png 59817 204806 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Plant))), (Background-view, (Outdoors, Grassy-terrain, Field))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field))"
shared0825_nsd59995.png 59994 467646 "(Foreground-view, (((Item-count, High), (Human, Body)), ((Item-count, High), Man-made-object/Toy), ((Item-count, High), Man-made-object), Terrain/Sand)), (Background-view, (Outdoors, Plant, Natural-feature/Ocean, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Man-made-object/Building))"
shared0826_nsd60095.png 60094 205875 "(Foreground-view, (Item-count/2, Furnishing)), (Background-view, (Room, Indoors, Furnishing, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Entrance))"
shared0827_nsd60120.png 60119 296474 "(Foreground-view, (((Item-count, High), (Human, Body)), ((Item-count, High), Furnishing))), (Background-view, (Train, Paved-terrain, Outdoors, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Train,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0828_nsd60187.png 60186 468394 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/1, Path), ((Item-count, High), Plant))), (Background-view, (Outdoors, Urban, Furnishing, Building, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0829_nsd60252.png 60251 206467 "(Foreground-view, ((Item-count/1, Train), ((Item-count, High), Building), ((Item-count, High), (Human, Body)))), (Background-view, (Plant, Paved-terrain, Natural-feature/Sky, Urban, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Building),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Property/Environmental-property/Outdoors))"
shared0830_nsd60306.png 60305 468825 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy))), ((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Female, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0831_nsd60457.png 60456 469445 "(Foreground-view, ((Item-count, High), Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))"
shared0832_nsd60506.png 60505 203615 "(Foreground-view, (((Item-count, High), Animal), (Item-count/1, River), ((Item-count, High), Plant))), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0833_nsd60520.png 60519 207549 "(Foreground-view, ((Item-count/1, Car), (Item-count/1, Road), ((Item-count/1, (Animal, Animal-agent)), Walk))), (Background-view, (Composite-terrain, Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent)),Action/Move/Move-body-part/Move-lower-extremity/Walk))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0834_nsd60554.png 60553 469816 "(Foreground-view, ((Item-count/1, 2D-shape), (Item-count/1, Man-made-object))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0835_nsd60726.png 60725 129143 "(Foreground-view, ((Item-count/1, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Vehicle), (Item-count/1, Road))), (Background-view, (Building, Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0836_nsd60835.png 60834 470907 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0837_nsd60846.png 60845 208805 "(Foreground-view, ((Item-count/4, Furnishing), (Item-count/1, Loudspeaker), (Item-count/2, Drawing), (Item-count/1, Book), (Item-count/1, Tool))), (Background-view, (Room, Indoors, Display-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Drawing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Tool))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/IO-device/Output-device/Display-device))"
shared0838_nsd60868.png 60867 208849 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Car))), (Background-view, (Urban, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Item/Object/Man-made-object/Vehicle/Car))"
shared0839_nsd60979.png 60978 209229 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Towards), Agent-trait/Adult)), (Item-count/1, Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing, Man-made-object/Toy, Book, Room, Indoors, Ingestible-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Toy,Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Ingestible-object))"
shared0840_nsd61123.png 61122 471871 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Car))), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0841_nsd61134.png 61133 34961 "(Foreground-view, (((Item-count, High), Animal), Grassy-terrain, Field)), (Background-view, (Building, Outdoors, Plant, Rural, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Sky))"
shared0842_nsd61178.png 61177 209919 "(Foreground-view, ((Item-count/2, (Human, Body)), (Item-count/1, River), (Item-count/2, Man-made-object), ((Item-count, High), Plant))), (Background-view, (Mountain, Outdoors, Plant, Building, Boat, Natural-feature/Sky, Grassy-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Boat,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Grassy-terrain))"
shared0843_nsd61217.png 61216 210065 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/2, Plant))), (Background-view, (Entrance, Room, Indoors, Painting))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Painting))"
shared0844_nsd61511.png 61510 341033 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0845_nsd61514.png 61513 211198 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), (Item-count/1, Plant), Paved-terrain)), (Background-view, (Building, Plant, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),Property/Environmental-property/Terrain/Paved-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0846_nsd61678.png 61677 474024 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Female, Agent-trait/Adult)), Walk), (Item-count/1, Cellphone))), (Background-view, (Paved-terrain, Outdoors, Plant, Furnishing, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),Action/Move/Move-body-part/Move-lower-extremity/Walk),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Urban))"
shared0847_nsd61739.png 61738 207833 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Plant))), (Background-view, (Entrance, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0848_nsd61749.png 61748 474353 "(Foreground-view, (Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0849_nsd61753.png 61752 212229 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Laptop-computer), (Item-count/3, Furnishing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0850_nsd61798.png 61797 212380 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Car))), (Background-view, (Urban, Man-made-object, Car))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Car))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Item/Object/Man-made-object,Item/Object/Man-made-object/Vehicle/Car))"
shared0851_nsd61802.png 61801 474545 "(Foreground-view, ((Item-count/3, Animal), (Item-count/1, River))), (Background-view, (Grassy-terrain, Field, Mountain, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Object/Natural-object/Natural-feature/Mountain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0852_nsd61810.png 61809 212440 "(Foreground-view, ((Item-count, High), Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0853_nsd61874.png 61873 474827 "(Foreground-view, (Item-count/1, Clock-face)), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0854_nsd61973.png 61972 475236 "(Foreground-view, (Item-count/4, Ingestible-object)), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Ingestible-object)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0855_nsd62007.png 62006 122923 "(Foreground-view, ((Item-count/1, River), (Item-count/1, Boat))), (Background-view, (Natural-feature/Sky, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0856_nsd62016.png 62015 213288 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Entrance), (Item-count/3, Man-made-object))), (Background-view, (Room, Indoors, Furnishing, Plant, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building/Entrance))"
shared0857_nsd62210.png 62209 213988 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/3, Building), (Item-count/1, Path))), (Background-view, (Outdoors, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0858_nsd62229.png 62228 214059 "(Foreground-view, (((Item-count, High), Aircraft), ((Item-count, High), Vehicle), (Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/1, Runway))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Aircraft),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0859_nsd62276.png 62275 476380 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)))"
shared0860_nsd62303.png 62302 476481 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Indoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant))"
shared0861_nsd62366.png 62365 560054 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), Walk), (Item-count/2, Train), (Item-count/1, Path), (Item-count/3, Plant))), (Background-view, (Plant, Outdoors, Mountain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),Action/Move/Move-body-part/Move-lower-extremity/Walk),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0862_nsd62480.png 62479 215023 "(Foreground-view, ((Item-count/2, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), ((Item-count, High), Furnishing))), (Background-view, (Furnishing, Room, Indoors, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object))"
shared0863_nsd62545.png 62544 215291 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0864_nsd62562.png 62561 385417 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/2, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/2, Loudspeaker), (Item-count/2, Laptop-computer))), (Background-view, (Photograph, Man-made-object, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Photograph,Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0865_nsd62684.png 62683 35972 "(Foreground-view, ((Item-count/1, Man-made-object), (Item-count/1, Road), (Item-count/1, Word))), (Background-view, (Car, Building, Paved-terrain, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0866_nsd62749.png 62748 216029 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0867_nsd62961.png 62960 479035 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing), (Item-count/1, (Human, Body, Female)), (Item-count/1, Assistive-device))), (Background-view, (Furnishing, Indoors, Assistive-device))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Device/Assistive-device))"
shared0868_nsd63082.png 63081 444880 "(Foreground-view, ((Item-count/1, Building), (Item-count/1, Clock-face))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0869_nsd63183.png 63182 294744 "(Foreground-view, ((Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/1, Notebook), (Item-count/1, Pen), (Item-count/1, Furnishing))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Document/Notebook),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device/Writing-device/Pen),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0870_nsd63346.png 63345 480601 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body)), (Play, (Item-count/4, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Hill, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Hill,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0871_nsd63450.png 63449 480990 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Sloped-terrain, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0872_nsd63747.png 63746 429887 "(Foreground-view, ((Item-count/1, Building), (Item-count/2, Clock-face), ((Item-count, High), Icon))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0873_nsd63782.png 63781 429902 "(Foreground-view, ((Item-count/1, Boat), (Item-count/1, River), Rocky-terrain)), (Background-view, (Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0874_nsd63826.png 63825 561006 "(Foreground-view, (((Item-count, High), Vehicle), (Item-count/1, Word), (Item-count/1, Road))), (Background-view, (Natural-feature/Sky, Paved-terrain, Outdoors, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0875_nsd63923.png 63922 482858 "(Foreground-view, ((Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adolescent)), (Item-count/1, Building), (Item-count/1, Man-made-object))), (Background-view, (Book, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Document/Book,Item/Object/Man-made-object/Furnishing))"
shared0876_nsd63932.png 63931 482912 "(Foreground-view, ((Item-count/1, Animal), (Item-count/2, Boat), (Item-count/1, River))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0877_nsd63945.png 63944 342639 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Furnishing), (Item-count/1, Man-made-object), (Item-count/2, Man-made-object/Toy))), (Background-view, (Composite-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0878_nsd64005.png 64004 167908 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Towards), Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy))), (Item-count/1, Word))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0879_nsd64097.png 64096 221441 "(Foreground-view, (((Item-count, High), (Human, Body, Agent-trait/Adult)), (Item-count/1, Path), ((Item-count, High), Man-made-object))), (Background-view, (Outdoors, Paved-terrain, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0880_nsd64296.png 64295 484300 "(Foreground-view, ((Item-count/3, ((Human, Human-agent), Body)), (Play, (Item-count/3, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0881_nsd64484.png 64483 222921 "(Foreground-view, ((Item-count/4, Animal), (Item-count/1, River))), (Background-view, (Dirt-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0882_nsd64499.png 64498 485113 "(Foreground-view, ((Item-count/1, Man-made-object), (Item-count/1, Path))), (Background-view, (Outdoors, Plant, Composite-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Composite-terrain))"
shared0883_nsd64616.png 64615 223447 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Towards), Agent-trait/Adult)), (Action/Ride, (Item-count/1, (Animal, Animal-agent))), Walk), (Item-count/1, Path))), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Animal,Agent/Animal-agent))),Action/Move/Move-body-part/Move-lower-extremity/Walk),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0884_nsd64622.png 64621 485605 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/2, Sculpture), (Item-count/1, Painting))), (Background-view, (Room, Indoors, Entrance))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Sculpture),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Painting))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Entrance))"
shared0885_nsd64688.png 64687 223718 "(Foreground-view, (((Item-count/4, ((Human, Human-agent), Body, Male, Agent-trait/Adolescent)), (Play, ((Item-count, High), Man-made-object/Toy))), (Item-count/1, (Human, Body, Male, Agent-trait/Adult)))), (Background-view, (Composite-terrain, Outdoors, Plant, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/4,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building))"
shared0886_nsd64772.png 64771 386856 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Child)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors, Grassy-terrain, Field, Plant, (Human, Body, Agent-trait/Child), (Human, Body, Agent-trait/Adult), Natural-feature/Sky, Man-made-object/Toy))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Child),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Item/Object/Natural-object/Natural-feature/Sky,Item/Object/Man-made-object/Toy))"
shared0887_nsd64868.png 64867 561677 "(Foreground-view, ((Item-count/3, Furnishing), (Item-count/1, Plant))), (Background-view, (Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0888_nsd64881.png 64880 486503 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Man-made-object/Toy))), (Background-view, (Plant, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors))"
shared0889_nsd64894.png 64893 224396 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Ingestible-object), (Item-count/3, Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0890_nsd64980.png 64979 224759 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0891_nsd65011.png 65010 224869 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Building), (Item-count/1, Path))), (Background-view, ((Human, Body), Outdoors, Paved-terrain, Vehicle, Plant, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Vehicle,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0892_nsd65070.png 65069 225113 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Child)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Outdoors, Plant, Sloped-terrain, Natural-feature/Sky, (Human, Body), Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Urban))"
shared0893_nsd65149.png 65148 225383 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Word), ((Item-count, High), Character), Rocky-terrain)), (Background-view, (Path, (Human, Body, Female, Agent-trait/Adult), Plant, Natural-feature/Sky, Urban, Building, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character),Property/Environmental-property/Terrain/Rocky-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Navigational-object/Path,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult),Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors))"
shared0894_nsd65188.png 65187 225533 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, River), ((Item-count, High), Plant))), (Background-view, (Composite-terrain, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0895_nsd65233.png 65232 487825 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/4, Man-made-object), (Item-count/1, Desktop-computer), (Item-count/1, Keyboard), (Item-count/1, Computer-mouse), (Item-count/2, Photograph))), (Background-view, (Building, Plant, Urban, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Keyboard),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0896_nsd65254.png 65253 225750 "(Foreground-view, ((Item-count/1, Path), (Item-count/1, Furnishing), Grassy-terrain)), (Background-view, (Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0897_nsd65268.png 65267 430850 "(Foreground-view, ((Item-count/2, Furnishing), ((Item-count, High), Plant))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0898_nsd65377.png 65376 488406 "(Foreground-view, ((Item-count/1, Man-made-object), (Item-count/1, Path))), (Background-view, (Car, Road, Building, Paved-terrain, Outdoors, Plant, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Navigational-object/Road,Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban))"
shared0899_nsd65415.png 65414 168803 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Furnishing))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0900_nsd65446.png 65445 488658 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Composite-terrain, Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0901_nsd65640.png 65639 7567 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Word))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0902_nsd65655.png 65654 227307 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), ((Item-count, High), Vehicle), (Item-count/1, Building))), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0903_nsd65687.png 65686 227451 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0904_nsd65770.png 65769 227733 "(Foreground-view, ((Item-count/2, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Outdoors, Natural-feature/Ocean))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean))"
shared0905_nsd65800.png 65799 227843 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/3, Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0906_nsd65822.png 65821 227928 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0907_nsd65873.png 65872 228133 "(Foreground-view, ((Item-count/2, Ingestible-object), (Item-count/1, Furnishing)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)))"
shared0908_nsd65921.png 65920 228316 "(Foreground-view, ((Item-count/1, Animal), Terrain/Sand)), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Sand)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0909_nsd65944.png 65943 228380 "(Foreground-view, ((Item-count/1, Train), (Item-count/1, Roof), (Item-count/1, Path), (Item-count/1, Character))), (Background-view, (Urban, Natural-feature/Sky, (Human, Body), Building, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Path),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0910_nsd66005.png 66004 228565 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Outdoors, Grassy-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Rural))"
shared0911_nsd66215.png 66214 229456 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Plant, Outdoors, Grassy-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Rural))"
shared0912_nsd66217.png 66216 491611 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Plant, Outdoors, Grassy-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Rural))"
shared0913_nsd66279.png 66278 356810 "(Foreground-view, (Item-count/4, Aircraft)), (Background-view, (Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Vehicle/Aircraft)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0914_nsd66331.png 66330 492037 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Plant, Rural, Animal))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural,Item/Biological-item/Organism/Animal))"
shared0915_nsd66343.png 66342 229947 "(Foreground-view, (((Item-count, High), Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, ((Human, Body, Agent-trait/Adult), Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Indoors))"
shared0916_nsd66422.png 66421 38370 "(Foreground-view, ((Item-count/2, (Human, Body, (Face, Away-from), Female, Agent-trait/Child)), (Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Child)), (Item-count/2, (Human, Body, Female, Agent-trait/Child)), ((Item-count, High), Furnishing), ((Item-count, High), Ingestible-object))), (Background-view, (Composite-terrain, Outdoors, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Child)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0917_nsd66465.png 66464 354185 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0918_nsd66480.png 66479 230422 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Man-made-object/Toy))), (Background-view, (Plant, Natural-feature/Sky, Grassy-terrain, Field, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors))"
shared0919_nsd66490.png 66489 492627 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/1, Plant), (Item-count/1, Entrance), ((Item-count, High), Clothing))), (Foreground-view, (Man-made-object, Room, Indoors, Drawing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Object/Man-made-object/Media/Visualization/Image/Drawing))"
shared0920_nsd66581.png 66580 300622 "(Foreground-view, (Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Child))), (Background-view, (Paved-terrain, Building, Outdoors, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Child))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban))"
shared0921_nsd66644.png 66643 231102 "(Foreground-view, ((Item-count/1, Furnishing), (Item-count/1, Desktop-computer), (Item-count/1, Laptop-computer), (Item-count/1, Computer-mouse), (Item-count/2, Loudspeaker))), (Background-view, (Man-made-object, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Desktop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/IO-device/Input-device/Computer-mouse),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0922_nsd66774.png 66773 235479 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))), Grassy-terrain, Field)), (Background-view, (Plant, Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0923_nsd66837.png 66836 231851 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Natural-feature/Ocean, Building, Boat, Outdoors, Natural-feature/Sky, Rocky-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle/Boat,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Rocky-terrain))"
shared0924_nsd66947.png 66946 232277 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, Runway), (Item-count/1, Word))), (Background-view, (Outdoors, Character, Cone, Building, Natural-feature/Sky, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Runway),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Language-item/Character,Item/Object/Geometric-object/3D-shape/Cone,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Paved-terrain))"
shared0925_nsd66977.png 66976 494552 "(Foreground-view, ((Item-count/2, Animal), Paved-terrain, ((Item-count, High), Furnishing))), (Background-view, (Building, Outdoors, (Human, Body), Plant, Urban, Man-made-object, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Paved-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Biological-item/Organism/Plant,Property/Environmental-property/Urban,Item/Object/Man-made-object,Item/Object/Man-made-object/Furnishing))"
shared0926_nsd67046.png 67045 232648 "(Foreground-view, ((Item-count, High), Furnishing)), (Background-view, (Entrance, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0927_nsd67114.png 67113 495040 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Building), (Item-count/2, Road))), (Background-view, (Paved-terrain, Outdoors, Plant, Natural-feature/Sky, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban))"
shared0928_nsd67169.png 67168 233104 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0929_nsd67205.png 67204 495387 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/2, Painting), (Item-count/1, Plant))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Painting),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0930_nsd67238.png 67237 344729 "(Foreground-view, ((Item-count/4, Ingestible-object), ((Item-count, High), Furnishing))), (Background-view, ((Human, Body, Male, Agent-trait/Adult), Cellphone, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult),Item/Object/Man-made-object/Device/Computing-device/Cellphone,Property/Environmental-property/Indoors))"
shared0931_nsd67253.png 67252 495568 "(Foreground-view, ((Item-count/2, (Human, Body, Female, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, (Human, Body, Female, (Face, Away-from), Agent-trait/Older-adult)), (Item-count/1, (Human, Body)), (Item-count/1, Cellphone), (Item-count/3, Man-made-object))), (Background-view, (Paved-terrain, Laptop-computer, Outdoors, Loudspeaker, Urban, Roof, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Older-adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Device/IO-device/Output-device/Auditory-device/Loudspeaker,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building/Roof,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0932_nsd67296.png 67295 233580 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, (Face, Towards), Agent-trait/Adult)), (Play, (Item-count/2, Man-made-object/Toy)))), (Background-view, (Plant, (Human, Body), Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0933_nsd67364.png 67363 233873 "(Foreground-view, ((Item-count, High), Man-made-object/Toy)), (Background-view, (Outdoors, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain))"
shared0934_nsd67743.png 67742 497464 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/2, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/3, Man-made-object), (Item-count/3, Ingestible-object), (Item-count/3, Furnishing), (Item-count/1, Word))), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, (Human, Body, Agent-trait/Adult), Outdoors, Terrain/Sand))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sand))"
shared0935_nsd67803.png 67802 82945 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Outdoors, Sloped-terrain, Natural-feature/Sky, Rural, Machine))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Item/Object/Man-made-object/Device/Machine))"
shared0936_nsd67830.png 67829 497797 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Sloped-terrain, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0937_nsd68024.png 68023 498615 "(Foreground-view, (((Item-count, High), Animal), (Item-count/1, Vehicle), (Item-count/1, Road))), (Background-view, (Composite-terrain, Outdoors, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0938_nsd68169.png 68168 237093 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, Roof), ((Item-count, High), Plant), Grassy-terrain)), (Background-view, (Plant, Outdoors, Natural-feature/Ocean, Natural-feature/Sky, Terrain/Sand))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),Property/Environmental-property/Terrain/Grassy-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Terrain/Sand))"
shared0939_nsd68279.png 68278 499627 "(Foreground-view, ((Item-count/1, Furnishing), ((Item-count, High), Plant), (Item-count/1, Clock-face))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Measurement-device/Clock/Clock-face))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0940_nsd68312.png 68311 499730 "(Foreground-view, ((Item-count/2, 2D-shape), (Item-count/1, Icon), (Item-count/1, Building))), (Background-view, (Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Geometric-object/2D-shape),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors))"
shared0941_nsd68340.png 68339 237697 "(Foreground-view, (Item-count/1, Furnishing)), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0942_nsd68419.png 68418 238001 "(Foreground-view, (((Item-count, High), (Human, Body, Agent-trait/Adult)), ((Item-count, High), Furnishing), ((Item-count, High), Word))), (Background-view, (Indoors, Room, Photograph))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room,Item/Object/Man-made-object/Media/Visualization/Image/Photograph))"
shared0943_nsd68472.png 68471 238201 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Grassy-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0944_nsd68742.png 68741 239337 "(Foreground-view, ((Item-count/1, Animal), Composite-terrain, ((Item-count, High), Plant))), (Background-view, (Natural-feature/Ocean, Natural-feature/Sky, (Human, Body), Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),Property/Environmental-property/Terrain/Composite-terrain,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Property/Environmental-property/Outdoors))"
shared0945_nsd68815.png 68814 501739 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Furnishing))"
shared0946_nsd68843.png 68842 501867 "(Foreground-view, (((Item-count, High), Vehicle), (Item-count/1, Roof), ((Item-count, High), Word), ((Item-count, High), Icon), (Item-count/1, Road))), (Background-view, (Natural-feature/Sky, Urban, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Roof),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Media/Visualization/Image/Icon),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object/Building))"
shared0947_nsd68859.png 68858 501926 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), ((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy))))), (Background-view, (Outdoors, Sloped-terrain, Rural, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural,Item/Biological-item/Organism/Plant))"
shared0948_nsd68898.png 68897 502058 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Away-from), Female, Agent-trait/Infant)), (Item-count/1, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/1, Animal))), (Background-view, (Composite-terrain, Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Infant)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0949_nsd69008.png 69007 240278 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object)))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0950_nsd69026.png 69025 502470 "(Foreground-view, (Item-count/1, Animal)), (Background-view, (Rocky-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0951_nsd69031.png 69030 214821 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Composite-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0952_nsd69131.png 69130 502860 "(Foreground-view, ((Item-count/2, Furnishing), (Item-count/3, Book), Indoors, (Item-count/4, Tool), (Item-count/1, Assistive-device))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Document/Book),Property/Environmental-property/Indoors,(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Device/Tool),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0953_nsd69215.png 69214 241026 "(Foreground-view, ((Item-count/1, Train), Field)), (Background-view, (Outdoors, Composite-terrain, Plant, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),Item/Object/Natural-object/Natural-feature/Field)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Composite-terrain,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0954_nsd69241.png 69240 40187 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/4, Man-made-object))), (Background-view, (Entrance, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0955_nsd69443.png 69442 112805 "(Foreground-view, (((Item-count, High), Furnishing), (Item-count/2, Path))), (Background-view, (Paved-terrain, Plant, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Navigational-object/Path))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0956_nsd69503.png 69502 242133 "(Foreground-view, ((Item-count/1, (Human, Body, Male, (Face, Away-from), Agent-trait/Adult)), (Item-count/1, Man-made-object))), (Background-view, (Natural-feature/Ocean, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors))"
shared0957_nsd69615.png 69614 242631 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, Agent-trait/Adult)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Grassy-terrain, Field, (Human, Body, Agent-trait/Adult), Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult),Property/Environmental-property/Outdoors))"
shared0958_nsd69617.png 69616 433657 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Grassy-terrain, Field, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0959_nsd69786.png 69785 505486 "(Foreground-view, ((Item-count/2, Animal), ((Item-count, High), Plant))), (Background-view, (Composite-terrain, Outdoors, Plant, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building))"
shared0960_nsd69814.png 69813 505592 "(Foreground-view, ((Item-count/1, Animal), (Item-count/1, River))), (Background-view, (Grassy-terrain, Outdoors, Plant, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Natural-object/Natural-feature/River))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Rural))"
shared0961_nsd69832.png 69831 505643 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Female, (Face, Away-from), Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0962_nsd69840.png 69839 505661 "(Foreground-view, (((Item-count, High), Book), (Item-count/2, Word), (Item-count/1, Man-made-object))), (Background-view, (Indoors, Furnishing))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Document/Book),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Furnishing))"
shared0963_nsd69855.png 69854 505738 "(Foreground-view, (((Item-count, High), Car), ((Item-count, High), Vehicle), (Item-count/4, (Human, Body, Male, Agent-trait/Adult)), (Item-count/1, Road), ((Item-count, High), Plant))), (Background-view, (Plant, Building, Natural-feature/Sky, Urban, Man-made-object, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Car),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/4,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Urban,Item/Object/Man-made-object,Property/Environmental-property/Outdoors))"
shared0964_nsd69919.png 69918 243839 "(Foreground-view, (Item-count/1, (Human, Body, Female, Agent-trait/Adult))), (Background-view, ((Human, Body), Train))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,((Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Vehicle/Train))"
shared0965_nsd70039.png 70038 244334 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Plant, Outdoors, Sloped-terrain, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Rural))"
shared0966_nsd70076.png 70075 244476 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Infant)), (Item-count/1, Ingestible-object), (Item-count/3, Furnishing))), (Background-view, (Indoors, Room))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Infant)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors,Item/Object/Man-made-object/Building/Room))"
shared0967_nsd70096.png 70095 244578 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adult)), (Walk, (Item-count/3, Man-made-object/Toy)))), (Background-view, (Natural-feature/Ocean, Outdoors, Plant, Terrain/Sand))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adult)),(Action/Move/Move-body-part/Move-lower-extremity/Walk,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Natural-object/Natural-feature/Ocean,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Sand))"
shared0968_nsd70194.png 70193 244967 "(Foreground-view, ((Item-count/2, (Human, Body, Male, (Face, Towards), Agent-trait/Adult)), (Item-count/2, Ingestible-object), (Item-count/1, Furnishing))), (Background-view, (Outdoors, Roof))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building/Roof))"
shared0969_nsd70233.png 70232 434069 "(Foreground-view, ((Item-count/3, (Human, Body, (Face, Away-from), Male, Agent-trait/Adult)), (Item-count/2, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/2, (Human, Body, Female, Agent-trait/Adult)), (Item-count/1, Road))), (Background-view, (Urban, Outdoors, Plant, Building, Paved-terrain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Property/Environmental-property/Terrain/Paved-terrain))"
shared0970_nsd70336.png 70335 507642 "(Foreground-view, ((Item-count/3, Animal), ((Item-count, High), Plant))), (Background-view, (Composite-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Composite-terrain,Property/Environmental-property/Outdoors))"
shared0971_nsd70361.png 70360 507789 "(Foreground-view, ((Item-count/4, Furnishing), (Item-count/1, Entrance))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building/Entrance))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0972_nsd70369.png 70368 477852 "(Foreground-view, (((Item-count/1, ((Human, Human-agent), Body, Agent-trait/Adult)), (Action/Ride, (Item-count/1, Vehicle))), (Item-count/1, Road), ((Item-count, High), Word), ((Item-count, High), Character))), (Background-view, (Paved-terrain, (Human, Body), Vehicle, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Man-made-object/Vehicle,Property/Environmental-property/Outdoors))"
shared0973_nsd70428.png 70427 245895 "(Foreground-view, (((Item-count/3, ((Human, Human-agent), Body, Male, Agent-trait/Adolescent)), (Play, (Item-count/2, Man-made-object/Toy))), ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy))), ((Item-count, High), Word), ((Item-count, High), Character), Composite-terrain)), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count/3,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy))),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Word),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Language-item/Character),Property/Environmental-property/Terrain/Composite-terrain)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0974_nsd70506.png 70505 246166 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), (Item-count/1, Cellphone))), (Background-view, (Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Cellphone))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Indoors))"
shared0975_nsd70586.png 70585 246453 "(Foreground-view, ((Item-count/1, Laptop-computer), ((Item-count, High), Furnishing))), (Background-view, (Drawing, Entrance, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Computing-device/Laptop-computer),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Media/Visualization/Image/Drawing,Item/Object/Man-made-object/Building/Entrance,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0976_nsd70590.png 70589 508612 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Rocky-terrain, Outdoors, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant))"
shared0977_nsd70672.png 70671 246759 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Word), (Item-count/1, Road))), (Background-view, (Plant, Paved-terrain, Outdoors, Building))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Biological-item/Organism/Plant,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Item/Object/Man-made-object/Building))"
shared0978_nsd70759.png 70758 247121 "(Foreground-view, ((Item-count/4, Furnishing), ((Item-count, High), Clothing))), (Background-view, (Room, Indoors, Plant, Building, Urban))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Clothing))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Property/Environmental-property/Urban))"
shared0979_nsd70765.png 70764 509292 "(Foreground-view, ((((Item-count, High), ((Human, Human-agent), Body, Agent-trait/Adult)), (Play, ((Item-count, High), Man-made-object))), Natural-feature/Ocean)), (Background-view, (Urban, Outdoors, Plant, Building, Mountain, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object))),Item/Object/Natural-object/Natural-feature/Ocean)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Urban,Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Man-made-object/Building,Item/Object/Natural-object/Natural-feature/Mountain,Item/Object/Natural-object/Natural-feature/Sky))"
shared0980_nsd70948.png 70947 247893 "(Foreground-view, (((Item-count, High), ((Human, Human-agent), Body)), (Play, ((Item-count, High), Man-made-object/Toy)))), (Background-view, (Sloped-terrain, (Human, Body), Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0981_nsd71026.png 71025 510334 "(Foreground-view, ((Item-count, High), Animal)), (Background-view, (Dirt-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Dirt-terrain,Property/Environmental-property/Outdoors))"
shared0982_nsd71187.png 71186 510900 "(Foreground-view, (((Item-count, High), Ingestible-object), (Item-count/1, Furnishing), (Item-count/1, (Human, Body)))), (Background-view, (Grassy-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Furnishing),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Property/Environmental-property/Outdoors))"
shared0983_nsd71230.png 71229 303637 "(Foreground-view, ((Item-count/1, Aircraft), (Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/1, Icon))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Aircraft),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0984_nsd71233.png 71232 511127 "(Foreground-view, ((((Item-count, High), ((Human, Human-agent), Body)), (Play, ((Item-count, High), Man-made-object/Toy))), (Item-count/1, Building), (Item-count/1, Machine))), (Background-view, (Sloped-terrain, (Human, Body), Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body)),(Action/Perform/Play,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Building),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Machine))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0985_nsd71242.png 71241 511165 "(Foreground-view, (((Item-count, High), Furnishing), ((Item-count, High), Ingestible-object), ((Item-count, High), Man-made-object))), (Background-view, (Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Furnishing),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Ingestible-object),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"
shared0986_nsd71411.png 71410 216378 "(Foreground-view, (Item-count/2, Vehicle)), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Vehicle)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0987_nsd71451.png 71450 249905 "(Foreground-view, ((Item-count/3, (Human, Body, (Face, Towards), Male, Agent-trait/Adult)), ((Item-count, High), Man-made-object/Toy))), (Background-view, (Sloped-terrain, Plant, Outdoors, (Human, Body), Natural-feature/Sky, Rural, Mountain))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/3,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Male,Property/Agent-property/Agent-trait/Adult)),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body),Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,Item/Object/Natural-object/Natural-feature/Mountain))"
shared0988_nsd71754.png 71753 251084 "(Foreground-view, ((Item-count/1, Vehicle), (Item-count/1, Road), (Item-count/1, Character), (Item-count/3, Word))), (Background-view, (Outdoors, Paved-terrain, Urban, Car, Building, Plant))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Character),(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Urban,Item/Object/Man-made-object/Vehicle/Car,Item/Object/Man-made-object/Building,Item/Biological-item/Organism/Plant))"
shared0989_nsd71895.png 71894 304092 "(Foreground-view, ((Item-count/4, Animal), ((Item-count, High), Plant))), (Background-view, (Grassy-terrain, Plant, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/4,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0990_nsd71929.png 71928 251818 "(Foreground-view, ((Item-count/1, ((Human, Human-agent), Body, Male, (Face, Away-from), Agent-trait/Adolescent)), (Play, (Item-count/1, Man-made-object/Toy)))), (Background-view, (Outdoors, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Sex/Male,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Away-from),Property/Agent-property/Agent-trait/Adolescent)),(Action/Perform/Play,(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Toy)))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky))"
shared0991_nsd72016.png 72015 252160 "(Foreground-view, ((Item-count/1, Boat), (Item-count/1, Word))), (Background-view, (Rocky-terrain, Natural-feature/Ocean, Natural-feature/Sky, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Boat),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Language-item/Word))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Rocky-terrain,Item/Object/Natural-object/Natural-feature/Ocean,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Outdoors))"
shared0992_nsd72081.png 72080 514563 "(Foreground-view, ((((Item-count, High), ((Human, Human-agent), Body, Agent-trait/Adult)), (Action/Ride, ((Item-count, High), Bicycle))), (Item-count/1, Road))), (Background-view, (Building, Vehicle, Paved-terrain, Outdoors, Urban, Man-made-object))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),((Item/Biological-item/Organism/Human,Agent/Human-agent),Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Action/Ride,((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Object/Man-made-object/Vehicle/Bicycle))),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Navigational-object/Road))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Building,Item/Object/Man-made-object/Vehicle,Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors,Property/Environmental-property/Urban,Item/Object/Man-made-object))"
shared0993_nsd72171.png 72170 514955 "(Foreground-view, (Item-count/3, Animal)), (Background-view, (Paved-terrain, Outdoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/3,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Paved-terrain,Property/Environmental-property/Outdoors))"
shared0994_nsd72210.png 72209 515102 "(Foreground-view, ((Item-count/1, (Human, Body, (Face, Towards), Female, Agent-trait/Adult)), (Item-count/1, Assistive-device)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,(Item/Biological-item/Anatomical-item/Body-part/Head/Face,Relation/Directional-relation/Towards),Property/Agent-property/Agent-trait/Sex/Female,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Device/Assistive-device)))"
shared0995_nsd72258.png 72257 515296 "(Foreground-view, (Item-count/2, Animal)), (Background-view, (Grassy-terrain, Field, Outdoors, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Biological-item/Organism/Animal)),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Object/Natural-object/Natural-feature/Field,Property/Environmental-property/Outdoors,Property/Environmental-property/Rural))"
shared0996_nsd72313.png 72312 515508 "(Foreground-view, ((Item-count/1, (Human, Body, Agent-trait/Adult)), (Item-count/2, Man-made-object/Toy))), (Background-view, (Sloped-terrain, Outdoors, Natural-feature/Sky, Rural, (Human, Body)))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body,Property/Agent-property/Agent-trait/Adult)),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Toy))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Sloped-terrain,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural,(Item/Biological-item/Organism/Human,Item/Biological-item/Anatomical-item/Body)))"
shared0997_nsd72511.png 72510 254130 "(Foreground-view, ((Item-count/1, Train), ((Item-count, High), Plant))), (Background-view, (Outdoors, Plant, Natural-feature/Sky))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object/Vehicle/Train),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Outdoors,Item/Biological-item/Organism/Plant,Item/Object/Natural-object/Natural-feature/Sky))"
shared0998_nsd72606.png 72605 516634 "(Foreground-view, ((Item-count/1, Animal), ((Item-count, High), Plant))), (Background-view, (Grassy-terrain, Plant, Outdoors, Natural-feature/Sky, Rural))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Biological-item/Organism/Animal),((Property/Data-property/Data-value/Quantitative-value/Item-count,Property/Data-property/Data-value/Categorical-value/Categorical-level-value/High),Item/Biological-item/Organism/Plant))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Property/Environmental-property/Terrain/Grassy-terrain,Item/Biological-item/Organism/Plant,Property/Environmental-property/Outdoors,Item/Object/Natural-object/Natural-feature/Sky,Property/Environmental-property/Rural))"
shared0999_nsd72720.png 72719 304627 "(Foreground-view, ((Item-count/1, Man-made-object), (Item-count/2, Icon))), (Background-view, (Bicycle, Furnishing, Room, Indoors))" "(Property/Sensory-property/Sensory-presentation/Visual-presentation/Foreground-view,((Property/Data-property/Data-value/Quantitative-value/Item-count/1,Item/Object/Man-made-object),(Property/Data-property/Data-value/Quantitative-value/Item-count/2,Item/Object/Man-made-object/Media/Visualization/Image/Icon))),(Property/Sensory-property/Sensory-presentation/Visual-presentation/Background-view,(Item/Object/Man-made-object/Vehicle/Bicycle,Item/Object/Man-made-object/Furnishing,Item/Object/Man-made-object/Building/Room,Property/Environmental-property/Indoors))"