Upload folder using huggingface_hub
Browse files- stanford_filtered/scene-graph-TF-release/data_tools/README.md +69 -0
- stanford_filtered/scene-graph-TF-release/data_tools/VG/object_alias.txt +3435 -0
- stanford_filtered/scene-graph-TF-release/data_tools/VG/object_list.txt +150 -0
- stanford_filtered/scene-graph-TF-release/data_tools/VG/predicate_alias.txt +0 -0
- stanford_filtered/scene-graph-TF-release/data_tools/VG/predicate_list.txt +50 -0
- stanford_filtered/scene-graph-TF-release/data_tools/create_imdb.sh +5 -0
- stanford_filtered/scene-graph-TF-release/data_tools/create_roidb.sh +21 -0
- stanford_filtered/scene-graph-TF-release/data_tools/vg_to_imdb.py +128 -0
- stanford_filtered/scene-graph-TF-release/data_tools/vg_to_roidb.py +639 -0
stanford_filtered/scene-graph-TF-release/data_tools/README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Dataset Preperation
|
| 2 |
+
This instruction contains details about how to convert the VisualGenome dataset into a format that can be read by the framework. Alternatively,
|
| 3 |
+
you may follow the instruction to download a pre-processed dataset.
|
| 4 |
+
|
| 5 |
+
## Overview
|
| 6 |
+
|
| 7 |
+
A dataset for the framework consists of five files:
|
| 8 |
+
1. An image database in hdf5 format.
|
| 9 |
+
2. An scene graph database in hdf5 format.
|
| 10 |
+
3. An scene graph database metadata file in json format.
|
| 11 |
+
4. An RoI proposal database in hdf5 format.
|
| 12 |
+
5. An RoI distribution for normalizing the bounding boxes.
|
| 13 |
+
|
| 14 |
+
**Important:** Note that (1) takes ~320GB of space. Hence we recommend creating (1) by yourself and download (2-5). If you just want to test/visualize predictions,
|
| 15 |
+
you may download a subset of the processed dataset following the instructions in the next section.
|
| 16 |
+
Also note that the framework does not include a regional proposal network implementation. Hence (4) is needed to run the framework.
|
| 17 |
+
|
| 18 |
+
## Download pre-processed dataset.
|
| 19 |
+
You may download the pre-processd full VG dataset using the following links
|
| 20 |
+
1. Image database (currently unavailable, please refer to the next section on how to create an IMDB by yourself)
|
| 21 |
+
2. Scene graph database: [VG-SGG.h5](http://svl.stanford.edu/projects/scene-graph/dataset/VG-SGG.h5)
|
| 22 |
+
3. Scene graph database metadata: [VG-SGG-dicts.json](http://svl.stanford.edu/projects/scene-graph/dataset/VG-SGG-dicts.json)
|
| 23 |
+
4. RoI proposals: [proposals.h5](http://svl.stanford.edu/projects/scene-graph/dataset/proposals.h5)
|
| 24 |
+
5. RoI distribution: [bbox_distribution.npy](http://svl.stanford.edu/projects/scene-graph/dataset/bbox_distribution.npy)
|
| 25 |
+
|
| 26 |
+
**mini-vg:** Alternatively, you may download a subset of the dataset (mini-vg). The dataset contains 1000 images (973 have scene graph annotations) from the test set
|
| 27 |
+
of the full VG dataset and no training data. mini-vg takes around 4GB of space uncompressed. Note that you don't have to download it if you have ran the `download.sh` script.
|
| 28 |
+
|
| 29 |
+
[mini-vg.zip](http://svl.stanford.edu/projects/scene-graph/dataset/mini-vg.zip)
|
| 30 |
+
|
| 31 |
+
After downloading the dataset, place all files under `data/vg/`. If you use the mini-vg dataset, the directory should look like this:
|
| 32 |
+
|
| 33 |
+
```
|
| 34 |
+
data/vg/mini_imdb_1024.h5
|
| 35 |
+
data/vg/mini_proposals.h5
|
| 36 |
+
data/vg/mini_VG-SGG.h5
|
| 37 |
+
data/vg/mini_VG-SGG-dicts.json
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
## Convert VisualGenome to desired format
|
| 42 |
+
(i). To start with, download VisualGenome dataset using the following links:
|
| 43 |
+
- Images [part1](https://cs.stanford.edu/people/rak248/VG_100K_2/images.zip) [part2](https://cs.stanford.edu/people/rak248/VG_100K_2/images2.zip)
|
| 44 |
+
- [Image metadata](http://svl.stanford.edu/projects/scene-graph/VG/image_data.json)
|
| 45 |
+
- [VG scene graph](http://svl.stanford.edu/projects/scene-graph/VG/VG-scene-graph.zip)
|
| 46 |
+
|
| 47 |
+
(ii). Place all the json files under `data_tools/VG/`. Place the images under `data_tools/VG/images`
|
| 48 |
+
|
| 49 |
+
(iii). Create image database by executing `./create_imdb.sh` in this directory. This script creates a hdf5 databse of images `imdb_1024.h5`.
|
| 50 |
+
The longer dimension of an image is resized to 1024 pixels and the shorter side is scaled accordingly. You may also create a image database of smaller dimension by
|
| 51 |
+
editing the size argument of the script. You may skip to (vii) if you chose to downloaded (2-4).
|
| 52 |
+
|
| 53 |
+
(iv). Create an ROI database and its metadata by executing `./create_roidb.sh` in this directory. The scripts creates a scene graph database file `VG-SGG.h5` and its metadata `VG-SGG-dicts.json`.
|
| 54 |
+
By default, the script reads the dimensions of the images from the imdb file created in (iii). If your imdb file is of different size than 512 and 1024, you must add the size to
|
| 55 |
+
the `img_long_sizes` list variable in the `vg_to_roidb.py` script.
|
| 56 |
+
|
| 57 |
+
(v). Use the script provided by py-faster-rcnn to generate (4).
|
| 58 |
+
|
| 59 |
+
(vi). Change line 93 of `tools/train_net.py` to `True` to generate (5).
|
| 60 |
+
|
| 61 |
+
(vii). Finally, place (1-5) in `data/vg`.
|
| 62 |
+
|
| 63 |
+
```
|
| 64 |
+
data/vg/imdb_1024.h5
|
| 65 |
+
data/vg/bbox_distribution.npy
|
| 66 |
+
data/vg/proposals.h5
|
| 67 |
+
data/vg/VG-SGG-dicts.json
|
| 68 |
+
data/vg/VG-SGG.h5
|
| 69 |
+
```
|
stanford_filtered/scene-graph-TF-release/data_tools/VG/object_alias.txt
ADDED
|
@@ -0,0 +1,3435 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
called a forest,is called a forest
|
| 2 |
+
saver,savers
|
| 3 |
+
bookend,bookends
|
| 4 |
+
yellow,is yellow,yellows
|
| 5 |
+
gladiola,gladiolas
|
| 6 |
+
four,fours
|
| 7 |
+
railing,railings,of railing
|
| 8 |
+
skeleton,skeletons
|
| 9 |
+
trolley,trolleys
|
| 10 |
+
hyssop,hyssops
|
| 11 |
+
buddy,buddies
|
| 12 |
+
swab,swabs
|
| 13 |
+
swan,swans
|
| 14 |
+
glider,gliders
|
| 15 |
+
bike,bikes,bikes are
|
| 16 |
+
teaspoon,teaspoons
|
| 17 |
+
crossbar,crossbars
|
| 18 |
+
toga,togas
|
| 19 |
+
spec,specs
|
| 20 |
+
shaving,shavings
|
| 21 |
+
digit,digits
|
| 22 |
+
ceramic,ceramics
|
| 23 |
+
fishbone,fishbones
|
| 24 |
+
blanket,blankets
|
| 25 |
+
costume,costumes
|
| 26 |
+
jack,jacks
|
| 27 |
+
peripheral,peripherals
|
| 28 |
+
kick,kicks
|
| 29 |
+
wall white,is wall white
|
| 30 |
+
em,ems
|
| 31 |
+
undergarment,undergarments
|
| 32 |
+
wick,wicks
|
| 33 |
+
prize,prizes
|
| 34 |
+
motorcyclist,motorcyclists
|
| 35 |
+
shoelace,shoelaces
|
| 36 |
+
venue,venues
|
| 37 |
+
handout,handouts
|
| 38 |
+
piling,pilings
|
| 39 |
+
roadblock,roadblocks
|
| 40 |
+
electric traffic,an electric traffic
|
| 41 |
+
poppy,poppies
|
| 42 |
+
fritter,fritters
|
| 43 |
+
farmhouse,farmhouses
|
| 44 |
+
paperback,paperbacks
|
| 45 |
+
bicycle,bicycles,bicycle is,of bicycle
|
| 46 |
+
speck,specks
|
| 47 |
+
quilt,quilts
|
| 48 |
+
eagle,eagles
|
| 49 |
+
kitchenware,kitchenwares
|
| 50 |
+
panther,panthers
|
| 51 |
+
almond,almonds
|
| 52 |
+
horn,horns
|
| 53 |
+
nail,nails
|
| 54 |
+
bannister,bannisters
|
| 55 |
+
second,seconds
|
| 56 |
+
street,streets
|
| 57 |
+
tether,tethers
|
| 58 |
+
cactus,cacti,cactuses
|
| 59 |
+
panda,pandas
|
| 60 |
+
monster,monsters
|
| 61 |
+
blue,are blue,blue a,is blue,blues
|
| 62 |
+
man on,man on a
|
| 63 |
+
person ,person is
|
| 64 |
+
lampshade,lampshades
|
| 65 |
+
older couple,an older couple
|
| 66 |
+
conduct,conducts
|
| 67 |
+
numeral,numerals
|
| 68 |
+
net,nets,net is
|
| 69 |
+
color yellow,is the color yellow
|
| 70 |
+
crunch,crunches
|
| 71 |
+
niche,niches
|
| 72 |
+
hero,heroes
|
| 73 |
+
dahl,dahls
|
| 74 |
+
herb,herbs
|
| 75 |
+
hydrangea,hydrangeas
|
| 76 |
+
men,mens
|
| 77 |
+
pontoon,pontoons
|
| 78 |
+
here,heres,is here,here is
|
| 79 |
+
herd,herd of
|
| 80 |
+
preserver,preservers
|
| 81 |
+
floret,florets
|
| 82 |
+
path,paths
|
| 83 |
+
chino,chinos
|
| 84 |
+
cardboard,cardboards
|
| 85 |
+
substance,substances
|
| 86 |
+
luggage,luggages
|
| 87 |
+
guide,guides
|
| 88 |
+
credit,credits
|
| 89 |
+
indentation,indentations
|
| 90 |
+
eaves are on,eaves are on the
|
| 91 |
+
climber,climbers
|
| 92 |
+
bloomer,bloomers
|
| 93 |
+
tenst,tenst are
|
| 94 |
+
straw,straws
|
| 95 |
+
snowcap,snowcaps
|
| 96 |
+
seven,sevens
|
| 97 |
+
strap,straps
|
| 98 |
+
visible,is visible
|
| 99 |
+
remnant,remnants
|
| 100 |
+
pyramid,pyramids
|
| 101 |
+
stern,sterns
|
| 102 |
+
handlebar,handlebars
|
| 103 |
+
unit,units
|
| 104 |
+
plot,plots
|
| 105 |
+
spoke,spokes
|
| 106 |
+
marine,marines
|
| 107 |
+
sweater,sweaters
|
| 108 |
+
backrest,backrests
|
| 109 |
+
foster,fosters
|
| 110 |
+
call,calls
|
| 111 |
+
card,cards
|
| 112 |
+
spike,spikes
|
| 113 |
+
type,types
|
| 114 |
+
blueberry,blueberries
|
| 115 |
+
calf,calves
|
| 116 |
+
refection,refections,refection is
|
| 117 |
+
posting,postings
|
| 118 |
+
wart,warts
|
| 119 |
+
under,under the
|
| 120 |
+
reign,reigns
|
| 121 |
+
glass,glasses,glassses,glasss,an glass
|
| 122 |
+
pigmentation,pigmentations
|
| 123 |
+
farmland,farmlands
|
| 124 |
+
pecan,pecans
|
| 125 |
+
adult,adults,an adult
|
| 126 |
+
airport in,airport in the
|
| 127 |
+
indent,indents
|
| 128 |
+
hole,holes
|
| 129 |
+
ware,wares
|
| 130 |
+
scribble,scribbles
|
| 131 |
+
shoot,shoots
|
| 132 |
+
shamrock,shamrocks
|
| 133 |
+
word,words,word of,word the
|
| 134 |
+
room,of room,rooms
|
| 135 |
+
mm,mms
|
| 136 |
+
candelabra,candelabras
|
| 137 |
+
blade,blades
|
| 138 |
+
worm,worms
|
| 139 |
+
roof,roofs,roof of
|
| 140 |
+
waiter,waiters
|
| 141 |
+
locker,lockers
|
| 142 |
+
rim,rims
|
| 143 |
+
wort,worts
|
| 144 |
+
era,eras
|
| 145 |
+
mechanic,mechanics
|
| 146 |
+
elbow,an elbow,elbows
|
| 147 |
+
root,roots
|
| 148 |
+
pinecone,pinecones
|
| 149 |
+
inscription,inscriptions
|
| 150 |
+
iron gate,an iron gate
|
| 151 |
+
wand,wands
|
| 152 |
+
organizer,organizers
|
| 153 |
+
nozzle,nozzles
|
| 154 |
+
dolphin,dolphins
|
| 155 |
+
taxiway,taxiways
|
| 156 |
+
liter,liters
|
| 157 |
+
knickknack,knickknacks
|
| 158 |
+
green hose on,green hose on the
|
| 159 |
+
indention,indentions
|
| 160 |
+
sideline,sidelines
|
| 161 |
+
end,ends,end of
|
| 162 |
+
turn,turns
|
| 163 |
+
dimple,dimples
|
| 164 |
+
bunk,bunks
|
| 165 |
+
sitting,is sitting
|
| 166 |
+
feature,features
|
| 167 |
+
machine,machines
|
| 168 |
+
end table,an end table
|
| 169 |
+
shred,shreds
|
| 170 |
+
popover,popovers
|
| 171 |
+
cheetah,cheetahs
|
| 172 |
+
beach,beaches,beach is,beachs
|
| 173 |
+
guardrail,guardrails
|
| 174 |
+
pizza,pizzas,of pizza
|
| 175 |
+
poker,pokers
|
| 176 |
+
briefcase,briefcases
|
| 177 |
+
lad,lads
|
| 178 |
+
ladder,ladders,ladder is
|
| 179 |
+
stroller,strollers
|
| 180 |
+
lump,lumps
|
| 181 |
+
diagram,diagrams
|
| 182 |
+
lay,lays
|
| 183 |
+
infielder,infielders
|
| 184 |
+
lat,lats
|
| 185 |
+
president,presidents
|
| 186 |
+
law,laws
|
| 187 |
+
arch,arches,an arch,archs
|
| 188 |
+
pigtail,pigtails
|
| 189 |
+
plier,pliers
|
| 190 |
+
turd,turds
|
| 191 |
+
messed up,are messed up
|
| 192 |
+
croissant,croissants
|
| 193 |
+
spout,spouts
|
| 194 |
+
tulip,tulips
|
| 195 |
+
green,greens,are green,is green,green is the
|
| 196 |
+
ambulance,ambulances
|
| 197 |
+
wing,wings
|
| 198 |
+
wind,winds
|
| 199 |
+
wine,wines
|
| 200 |
+
blind,blinds
|
| 201 |
+
popsicle,popsicles
|
| 202 |
+
office,offices,an office
|
| 203 |
+
pelican,pelicanss,pelicans
|
| 204 |
+
pothole,potholes
|
| 205 |
+
muffin,muffins
|
| 206 |
+
plane on landing,plane on landing are
|
| 207 |
+
foodstuff,foodstuffs
|
| 208 |
+
oven,ovens,an oven
|
| 209 |
+
keyboard,keyboards,keyboard is
|
| 210 |
+
dwelling,dwellings
|
| 211 |
+
caster,casters
|
| 212 |
+
windshield,windshields
|
| 213 |
+
surfboarder,surfboarders
|
| 214 |
+
fir,firs
|
| 215 |
+
forehead,foreheads
|
| 216 |
+
backpack,backpacks
|
| 217 |
+
avocado,avocados
|
| 218 |
+
writing,writings
|
| 219 |
+
plantation,plantations
|
| 220 |
+
condition,conditions
|
| 221 |
+
fade,fades
|
| 222 |
+
savory,savories
|
| 223 |
+
carton,cartons
|
| 224 |
+
fin,fins
|
| 225 |
+
shear,shears
|
| 226 |
+
belly,bellies
|
| 227 |
+
tourist,tourists
|
| 228 |
+
fragment,fragments
|
| 229 |
+
sitting on,sitting on the
|
| 230 |
+
slate,slates
|
| 231 |
+
handcuff,handcuffs
|
| 232 |
+
band,bands
|
| 233 |
+
bang,bangs
|
| 234 |
+
giraffe,giraffes,giraffes are,giraffess,giraffe is
|
| 235 |
+
they,they are
|
| 236 |
+
flotation,flotations
|
| 237 |
+
silver,are silver,is silver
|
| 238 |
+
bank,banks
|
| 239 |
+
headboard,headboards
|
| 240 |
+
old clock,an old clock
|
| 241 |
+
overcast day,an overcast day
|
| 242 |
+
meat,meats
|
| 243 |
+
spigot,spigots
|
| 244 |
+
chuck,chucks
|
| 245 |
+
in the middle,is in the middle
|
| 246 |
+
wooden,is of wooden
|
| 247 |
+
filling,fillings
|
| 248 |
+
panini,paninis
|
| 249 |
+
arrow,arrows,an arrow
|
| 250 |
+
side,sides,side of
|
| 251 |
+
bone,bones
|
| 252 |
+
gargoyle,gargoyles
|
| 253 |
+
hanger,hangers
|
| 254 |
+
tumbleweed,tumbleweeds
|
| 255 |
+
periodical,periodicals
|
| 256 |
+
palm tree on,palm tree on the
|
| 257 |
+
garment,garments
|
| 258 |
+
blinder,blinders
|
| 259 |
+
spider,spiders
|
| 260 |
+
waffle,waffles
|
| 261 |
+
owner,owners
|
| 262 |
+
bra,bras
|
| 263 |
+
turnip,turnips
|
| 264 |
+
logo,logos
|
| 265 |
+
poncho,ponchos
|
| 266 |
+
ward,wards
|
| 267 |
+
enclosure,of enclosure,enclosures,an enclosure
|
| 268 |
+
trench,trenches
|
| 269 |
+
rv,rvs
|
| 270 |
+
snail,snails
|
| 271 |
+
marcher,marchers
|
| 272 |
+
gradation,gradations
|
| 273 |
+
content,contents
|
| 274 |
+
sparkle,sparkles
|
| 275 |
+
hanging,hangings
|
| 276 |
+
washer,washers
|
| 277 |
+
marigold,marigolds
|
| 278 |
+
resistor,resistors
|
| 279 |
+
foundation,foundations
|
| 280 |
+
barrier,barriers
|
| 281 |
+
soda can,is a soda can
|
| 282 |
+
free,frees
|
| 283 |
+
formation,formations
|
| 284 |
+
regulation,regulations
|
| 285 |
+
terrain in,terrain in the
|
| 286 |
+
kit,kits
|
| 287 |
+
lollipop,lollipops
|
| 288 |
+
aisle,aisles,of the aisle
|
| 289 |
+
tendril,tendrils
|
| 290 |
+
equine,equines
|
| 291 |
+
denture,dentures
|
| 292 |
+
raisin,raisins
|
| 293 |
+
louse,lice
|
| 294 |
+
scruff,scruffs
|
| 295 |
+
filter,filters
|
| 296 |
+
sprig,sprigs
|
| 297 |
+
soda,sodas
|
| 298 |
+
thumbtack,thumbtacks
|
| 299 |
+
breed,breeds
|
| 300 |
+
shopper,shoppers
|
| 301 |
+
gazelle,gazelles
|
| 302 |
+
traveller,travellers
|
| 303 |
+
hoop,hoops
|
| 304 |
+
veggie,veggies
|
| 305 |
+
buttock,buttocks
|
| 306 |
+
hook,hooks
|
| 307 |
+
green and leafy,is green and leafy
|
| 308 |
+
chevron,chevrons
|
| 309 |
+
comforter,comforters
|
| 310 |
+
comic,comics
|
| 311 |
+
hoof,hoofs,hooves
|
| 312 |
+
hood,hoods
|
| 313 |
+
sky is blue,the sky is blue
|
| 314 |
+
chequer,chequers
|
| 315 |
+
toy,toys,toy is
|
| 316 |
+
elephant standing,an elephant standing
|
| 317 |
+
hydrant,hydrant is,hydrants
|
| 318 |
+
service,services
|
| 319 |
+
lego,legos
|
| 320 |
+
undersole,undersole of
|
| 321 |
+
top,tops,top of,top of a,top is
|
| 322 |
+
giraffe pen,of giraffe pen
|
| 323 |
+
elevator,elevators
|
| 324 |
+
blackberry,blackberries
|
| 325 |
+
periwinkle,periwinkles
|
| 326 |
+
tea,teas
|
| 327 |
+
flagpole,flagpoles
|
| 328 |
+
kid,kids
|
| 329 |
+
toe,toes
|
| 330 |
+
kiwi,kiwi is,kiwis
|
| 331 |
+
danish,danishes
|
| 332 |
+
ceiling,ceilings
|
| 333 |
+
emblem,emblems,a emblem
|
| 334 |
+
tool,tools
|
| 335 |
+
scenery,sceneries
|
| 336 |
+
task,tasks
|
| 337 |
+
cereal,cereals
|
| 338 |
+
tampon,tampons
|
| 339 |
+
stocking,stockings
|
| 340 |
+
chef,chefs
|
| 341 |
+
icicle,icicles
|
| 342 |
+
outlaw,outlaws
|
| 343 |
+
tree,trees,tree is,of trees,of a tree,trees are,treess
|
| 344 |
+
rate,rates
|
| 345 |
+
project,projects
|
| 346 |
+
matter,matters
|
| 347 |
+
store on,store on the
|
| 348 |
+
flame,flames
|
| 349 |
+
iron,irons
|
| 350 |
+
wheeler,wheelers
|
| 351 |
+
bridge,bridges
|
| 352 |
+
donkey,donkeys
|
| 353 |
+
hue,hues
|
| 354 |
+
runner,runners
|
| 355 |
+
ram,rams
|
| 356 |
+
sconce,sconces
|
| 357 |
+
canvass,canvasses
|
| 358 |
+
rat,rats
|
| 359 |
+
seed,seeds
|
| 360 |
+
pylon,pylons
|
| 361 |
+
increment,increments
|
| 362 |
+
dinner,dinners
|
| 363 |
+
mint,mints
|
| 364 |
+
spade,spades
|
| 365 |
+
ray,rays
|
| 366 |
+
escalator,escalators,an escalator
|
| 367 |
+
necktie,neckties
|
| 368 |
+
latter,latters
|
| 369 |
+
thruster,thrusters
|
| 370 |
+
snow,snows,of snow
|
| 371 |
+
sachet,sachets
|
| 372 |
+
chest,chests
|
| 373 |
+
hatch,hatches
|
| 374 |
+
orange with a fac,an orange with a fac
|
| 375 |
+
matchstick,matchsticks
|
| 376 |
+
rider,riders
|
| 377 |
+
paintbrush,paintbrushes
|
| 378 |
+
blouse,blouses
|
| 379 |
+
unoccupied,is unoccupied
|
| 380 |
+
stirrup,stirrups
|
| 381 |
+
boxcar,boxcars
|
| 382 |
+
object,objects,an object
|
| 383 |
+
rambutan,rambutans
|
| 384 |
+
sidewalk area,sidewalk area is
|
| 385 |
+
y,ys
|
| 386 |
+
mouth,mouths,of mouth
|
| 387 |
+
letter,letters,letter a
|
| 388 |
+
peppercorn,peppercorns
|
| 389 |
+
coil,coils
|
| 390 |
+
coin,coins
|
| 391 |
+
suture,sutures
|
| 392 |
+
dummy,dummies
|
| 393 |
+
lifesaver,lifesavers
|
| 394 |
+
grove,groves
|
| 395 |
+
alarm,alarms
|
| 396 |
+
partition,partitions
|
| 397 |
+
metal,metals,of metal,is metal
|
| 398 |
+
dog,dogs,dog is
|
| 399 |
+
valance,valances
|
| 400 |
+
leaflet,leaflets
|
| 401 |
+
ice machine,an ice machine
|
| 402 |
+
bracket,brackets
|
| 403 |
+
camo,camos
|
| 404 |
+
rocker,rockers
|
| 405 |
+
pineapple,pineapples
|
| 406 |
+
tuff,tuffs
|
| 407 |
+
sunbeam,sunbeams
|
| 408 |
+
dot,dots
|
| 409 |
+
saying,sayings
|
| 410 |
+
chariot,chariots
|
| 411 |
+
bomb,bombs
|
| 412 |
+
mitten,mittens
|
| 413 |
+
sightseer,sightseers
|
| 414 |
+
hilltop,hilltops
|
| 415 |
+
visitor,visitors
|
| 416 |
+
queen,queens
|
| 417 |
+
flagstone,flagstones
|
| 418 |
+
chandelier,chandeliers
|
| 419 |
+
gauge,gauges
|
| 420 |
+
cruller,crullers
|
| 421 |
+
outdoor concert,an outdoor concert
|
| 422 |
+
bail,bails
|
| 423 |
+
recliner,recliners
|
| 424 |
+
kale,kales
|
| 425 |
+
caper,capers
|
| 426 |
+
herbivore,herbivores
|
| 427 |
+
lovebird,lovebirds
|
| 428 |
+
menu,menus
|
| 429 |
+
refreshment,refreshments
|
| 430 |
+
sugar,sugars
|
| 431 |
+
celery,celeries
|
| 432 |
+
bush,bushes
|
| 433 |
+
knuckle,knuckles
|
| 434 |
+
branding,brandings
|
| 435 |
+
tropic,tropics
|
| 436 |
+
folder,folders
|
| 437 |
+
forelock,forelocks
|
| 438 |
+
rectangle,rectangles
|
| 439 |
+
wearing,is wearing
|
| 440 |
+
plate,plates
|
| 441 |
+
sunglasses,sunglassess
|
| 442 |
+
fossil,fossils
|
| 443 |
+
de,des
|
| 444 |
+
watch,watches
|
| 445 |
+
fluid,fluids
|
| 446 |
+
appetizer,appetizers
|
| 447 |
+
pocket,pockets
|
| 448 |
+
boathouse,boathouses
|
| 449 |
+
watermelon,watermelons
|
| 450 |
+
cushion,cushions
|
| 451 |
+
report,reports
|
| 452 |
+
footrest,footrests
|
| 453 |
+
prune,prunes
|
| 454 |
+
bat,bats
|
| 455 |
+
bar,bars
|
| 456 |
+
avenger,avengers
|
| 457 |
+
covering,coverings
|
| 458 |
+
boarder,boarders
|
| 459 |
+
pretzel,pretzels
|
| 460 |
+
licking,is licking
|
| 461 |
+
patch,patches,patch of
|
| 462 |
+
emu,emus
|
| 463 |
+
bag,bags,of bag
|
| 464 |
+
troop,troops
|
| 465 |
+
rung,rungs
|
| 466 |
+
lettering,letterings
|
| 467 |
+
spool on,spool on the
|
| 468 |
+
obey sticker,an obey sticker
|
| 469 |
+
observer,observers
|
| 470 |
+
freesia,freesias
|
| 471 |
+
nut,nuts
|
| 472 |
+
signage,signages
|
| 473 |
+
grass hill,of the grass hill
|
| 474 |
+
cattle,cattles
|
| 475 |
+
christian,christians
|
| 476 |
+
trivet,trivets
|
| 477 |
+
nub,nubs
|
| 478 |
+
hairbrush,hairbrushes
|
| 479 |
+
plantation that,plantation that is
|
| 480 |
+
dungaree,dungarees
|
| 481 |
+
sombrero,sombreros
|
| 482 |
+
scrap,scraps
|
| 483 |
+
sail,sails
|
| 484 |
+
gentleman,gentlemen
|
| 485 |
+
mug,mugs
|
| 486 |
+
score,scores
|
| 487 |
+
finger,fingers
|
| 488 |
+
mum,mums
|
| 489 |
+
jumpsuit,jumpsuits
|
| 490 |
+
cubby,cubbies
|
| 491 |
+
pirate,pirates
|
| 492 |
+
preserve,preserves
|
| 493 |
+
warrior,warriors
|
| 494 |
+
splinter,splinters
|
| 495 |
+
wa,was
|
| 496 |
+
component,components
|
| 497 |
+
vitamin,vitamins
|
| 498 |
+
lotion,lotions
|
| 499 |
+
toothbrush,toothbrushes
|
| 500 |
+
rime,rimes
|
| 501 |
+
cut,cuts
|
| 502 |
+
wear,wears
|
| 503 |
+
medallion,medallions
|
| 504 |
+
beautician,beauticians
|
| 505 |
+
mule,mules
|
| 506 |
+
roller,rollers
|
| 507 |
+
kitchen,kitchens,kitchen are
|
| 508 |
+
cop,cops
|
| 509 |
+
frosting on,frosting on a
|
| 510 |
+
cot,cots
|
| 511 |
+
cow,cows,a cow,is a cow,of cow
|
| 512 |
+
country,countries
|
| 513 |
+
adapter,adapters
|
| 514 |
+
eyeball,eyeballs
|
| 515 |
+
hoofprint,hoofprints
|
| 516 |
+
jelly,jellies,jellys
|
| 517 |
+
all fully grown,are all fully grown
|
| 518 |
+
facet,facets
|
| 519 |
+
bookcase,bookcases
|
| 520 |
+
empty plate,an empty plate
|
| 521 |
+
cog,cogs
|
| 522 |
+
photographer,photographers
|
| 523 |
+
con,cons
|
| 524 |
+
gable,gables
|
| 525 |
+
spear,spears
|
| 526 |
+
royal,royals
|
| 527 |
+
hairline,hairlines
|
| 528 |
+
mullion,mullions
|
| 529 |
+
train color,train color is
|
| 530 |
+
orange object,an orange object
|
| 531 |
+
truss,trusses
|
| 532 |
+
beetroot,beetroots
|
| 533 |
+
redskin,redskins
|
| 534 |
+
bathroom,bathrooms
|
| 535 |
+
tint,tints
|
| 536 |
+
seashell,seashells
|
| 537 |
+
three,threes,three of
|
| 538 |
+
advert,adverts
|
| 539 |
+
fowl,fowls
|
| 540 |
+
beer,beers
|
| 541 |
+
airport employee,an airport employee
|
| 542 |
+
beet,beets
|
| 543 |
+
stadium,stadiums
|
| 544 |
+
this person,this person is
|
| 545 |
+
basin,basins
|
| 546 |
+
image projector,an image projector
|
| 547 |
+
idol,idols
|
| 548 |
+
board,boards
|
| 549 |
+
mushroom,mushrooms
|
| 550 |
+
horseshoe,horseshoes
|
| 551 |
+
worker,workers
|
| 552 |
+
shoestring,shoestrings
|
| 553 |
+
lift,lifts
|
| 554 |
+
chile,chiles
|
| 555 |
+
child,children,childs
|
| 556 |
+
chili,chilis
|
| 557 |
+
spin,spins
|
| 558 |
+
teapot,teapots
|
| 559 |
+
train this,train this is
|
| 560 |
+
tank,tanks
|
| 561 |
+
cracker,crackers
|
| 562 |
+
warbler,warblers
|
| 563 |
+
n,ns
|
| 564 |
+
dept,dept of
|
| 565 |
+
motorist,motorists
|
| 566 |
+
property,properties
|
| 567 |
+
armband,armbands
|
| 568 |
+
anchor,anchors
|
| 569 |
+
cylinder,cylinders
|
| 570 |
+
cane,canes
|
| 571 |
+
congratulation,congratulations
|
| 572 |
+
handrail,handrails
|
| 573 |
+
house in,house in the
|
| 574 |
+
sticker,stickers,the stickers
|
| 575 |
+
sushi,sushis
|
| 576 |
+
tress,tresses
|
| 577 |
+
it,its,it is a,it is
|
| 578 |
+
sting,stings
|
| 579 |
+
player,players,of the player,of players,player is
|
| 580 |
+
tissue,tissues,of tissues
|
| 581 |
+
brake,brakes
|
| 582 |
+
cone,cones
|
| 583 |
+
decanter,decanters
|
| 584 |
+
conditioner,conditioners
|
| 585 |
+
bathroom has,bathroom has a
|
| 586 |
+
mouse,mouse is,mice
|
| 587 |
+
id,ids
|
| 588 |
+
emergency,emergencies
|
| 589 |
+
nike,nikes
|
| 590 |
+
journal,journals
|
| 591 |
+
saw,saws
|
| 592 |
+
toaster,toasters
|
| 593 |
+
wound,wounds
|
| 594 |
+
umbrellas in,umbrellas in the
|
| 595 |
+
grass near,grass near the
|
| 596 |
+
drawstring,drawstrings
|
| 597 |
+
boater,boaters
|
| 598 |
+
carnation,carnations
|
| 599 |
+
vegetable,vegetables
|
| 600 |
+
bunny,bunnies
|
| 601 |
+
wheel,wheels,of a wheel
|
| 602 |
+
satellite,satellites
|
| 603 |
+
papaya,papayas
|
| 604 |
+
smoke,smoke is,smokes
|
| 605 |
+
rotor,rotors
|
| 606 |
+
swell,swells
|
| 607 |
+
pinstripe,pinstripes
|
| 608 |
+
rail,rails
|
| 609 |
+
clove,cloves
|
| 610 |
+
hand,hands,an hand,hand of
|
| 611 |
+
suburb,suburbs
|
| 612 |
+
waterfall,waterfalls
|
| 613 |
+
warden,wardens
|
| 614 |
+
pantograph,pantographs
|
| 615 |
+
cycle,cycles
|
| 616 |
+
tassel,tassels
|
| 617 |
+
whicker,whickers
|
| 618 |
+
drip,drips
|
| 619 |
+
ocean,oceans,an ocean
|
| 620 |
+
tho,thos
|
| 621 |
+
bedspread,bedspreads
|
| 622 |
+
client,clients
|
| 623 |
+
tombstone,tombstones
|
| 624 |
+
mother,mothers
|
| 625 |
+
jean,jeans
|
| 626 |
+
plaque,plaques
|
| 627 |
+
snowman,snowmen
|
| 628 |
+
american flag,an american flag
|
| 629 |
+
barge,barges
|
| 630 |
+
open window,an open window
|
| 631 |
+
orange umbrella,an orange umbrella
|
| 632 |
+
photo,photos,of photo,photo is
|
| 633 |
+
laptop,laptops,of laptop,laptop is
|
| 634 |
+
bruise,bruises
|
| 635 |
+
rush,rushes
|
| 636 |
+
rodent,rodents
|
| 637 |
+
human,humans
|
| 638 |
+
campbell,campbells
|
| 639 |
+
pectoral,pectorals
|
| 640 |
+
transformer,transformers
|
| 641 |
+
ham,hams
|
| 642 |
+
sunflower,sunflowers
|
| 643 |
+
palm tree,a palm tree
|
| 644 |
+
kabob,kabobs
|
| 645 |
+
cherry,cherries
|
| 646 |
+
character,characters
|
| 647 |
+
hay,hays
|
| 648 |
+
collard,collards
|
| 649 |
+
spread,spreads
|
| 650 |
+
stallion,stallions
|
| 651 |
+
teenager,teenagers
|
| 652 |
+
striation,striations
|
| 653 |
+
basketball,basketballs
|
| 654 |
+
hat,hats
|
| 655 |
+
trimming,trimmings
|
| 656 |
+
teddy bears,the teddy bears
|
| 657 |
+
menorah,menorahs
|
| 658 |
+
elevation,elevations
|
| 659 |
+
visor,visors
|
| 660 |
+
confection,confections
|
| 661 |
+
vulture,vultures
|
| 662 |
+
cosmetic,cosmetics
|
| 663 |
+
boxer,boxers
|
| 664 |
+
background,background of,backgrounds
|
| 665 |
+
judge,judges
|
| 666 |
+
cape,capes,cape is
|
| 667 |
+
shadow,shadows,shadow of,shadows of
|
| 668 |
+
hatchback,hatchbacks
|
| 669 |
+
flavoring,flavorings
|
| 670 |
+
shoulder,shoulders
|
| 671 |
+
specie,species
|
| 672 |
+
gift,gifts
|
| 673 |
+
cooler,coolers
|
| 674 |
+
pharmacist,pharmacists
|
| 675 |
+
cheeseburger on,cheeseburger on the
|
| 676 |
+
manual,manuals
|
| 677 |
+
50,50s
|
| 678 |
+
mit,mits
|
| 679 |
+
specific,specifics
|
| 680 |
+
forepaw,forepaws
|
| 681 |
+
pavement,pavements
|
| 682 |
+
officer,officers,an officer
|
| 683 |
+
eyelet,eyelets
|
| 684 |
+
signal,signals
|
| 685 |
+
clementine,clementines
|
| 686 |
+
antique,antiques,an antique
|
| 687 |
+
dean,deans
|
| 688 |
+
crowd,crowds,crowd is
|
| 689 |
+
people,people are,peoples
|
| 690 |
+
shirtsleeve,shirtsleeves
|
| 691 |
+
crown,crowns
|
| 692 |
+
sponge,sponges
|
| 693 |
+
statistic,statistics
|
| 694 |
+
billboard,billboards
|
| 695 |
+
black tire,black tire is
|
| 696 |
+
bore,bores
|
| 697 |
+
marlin,marlins
|
| 698 |
+
orchid,orchids
|
| 699 |
+
trace,traces
|
| 700 |
+
bottom,bottoms,bottom of,bottom is
|
| 701 |
+
notification,notifications
|
| 702 |
+
microwave,microwaves
|
| 703 |
+
rhino,rhinos
|
| 704 |
+
buffer,buffers
|
| 705 |
+
skylight,skylights
|
| 706 |
+
plantain,plantains
|
| 707 |
+
skateboarder,skateboarders,of skateboarder,skateboarder is
|
| 708 |
+
avatar,avatars
|
| 709 |
+
cord,cords
|
| 710 |
+
peek,peeks
|
| 711 |
+
shaker,shakers
|
| 712 |
+
khaki,khakis
|
| 713 |
+
peel,peels
|
| 714 |
+
corn,corns
|
| 715 |
+
burn,burns
|
| 716 |
+
illustration,illustrations
|
| 717 |
+
cork,corks
|
| 718 |
+
all the bikers,all the bikers are
|
| 719 |
+
binder,binders
|
| 720 |
+
aqua surf board,an aqua surf board
|
| 721 |
+
yoke,yokes
|
| 722 |
+
bolt,bolts
|
| 723 |
+
front part,front part of the
|
| 724 |
+
post,posts
|
| 725 |
+
headstone,headstones
|
| 726 |
+
plug,plugs
|
| 727 |
+
oreo,oreos
|
| 728 |
+
houseplant,houseplants
|
| 729 |
+
diner,diners
|
| 730 |
+
cowboy,cowboys
|
| 731 |
+
latrine,latrines
|
| 732 |
+
plum,plums
|
| 733 |
+
o,os
|
| 734 |
+
essential,essentials
|
| 735 |
+
orange bear on,orange bear on a
|
| 736 |
+
magazine,magazines
|
| 737 |
+
tomatillo,tomatillos
|
| 738 |
+
seabird,seabirds
|
| 739 |
+
octopus,octopuses
|
| 740 |
+
partial view,partial view of a
|
| 741 |
+
mantle,of mantle
|
| 742 |
+
puzzle,puzzles
|
| 743 |
+
float,floats
|
| 744 |
+
sol,soles
|
| 745 |
+
fern,ferns
|
| 746 |
+
sedan,sedans
|
| 747 |
+
carafe,carafes
|
| 748 |
+
furnishing,furnishings
|
| 749 |
+
fuselage,of the fuselage
|
| 750 |
+
carving,carvings
|
| 751 |
+
wrap,wraps
|
| 752 |
+
chime,chimes
|
| 753 |
+
cubicle,cubicles
|
| 754 |
+
wavelet,wavelets
|
| 755 |
+
fabric,fabrics
|
| 756 |
+
medal,medals
|
| 757 |
+
support,supports
|
| 758 |
+
initial,initials
|
| 759 |
+
frill,frills
|
| 760 |
+
sunlight,sunlights,sunlight is,of sunlight
|
| 761 |
+
wildflower,wildflowers
|
| 762 |
+
way,ways
|
| 763 |
+
spring,springs
|
| 764 |
+
icon,icons
|
| 765 |
+
overhang,overhangs,an overhang
|
| 766 |
+
fork,forks
|
| 767 |
+
head,heads,head is
|
| 768 |
+
medium,media
|
| 769 |
+
form,forms
|
| 770 |
+
snowy,is snowy
|
| 771 |
+
artichoke,artichokes
|
| 772 |
+
landing,landings
|
| 773 |
+
gumdrop,gumdrops
|
| 774 |
+
floorboard,floorboards
|
| 775 |
+
heat,heats
|
| 776 |
+
diaper,diapers
|
| 777 |
+
broccoli,broccolis
|
| 778 |
+
onlooker,onlookers
|
| 779 |
+
friday,fridays
|
| 780 |
+
inside,an inside,insides
|
| 781 |
+
smasher,smashers
|
| 782 |
+
pistil,pistils
|
| 783 |
+
crystal,crystals
|
| 784 |
+
gyro,gyros
|
| 785 |
+
boomerang,boomerangs
|
| 786 |
+
whisker,whiskers
|
| 787 |
+
latch,latches
|
| 788 |
+
trim,trims
|
| 789 |
+
passenger,passengers
|
| 790 |
+
shin,shins
|
| 791 |
+
sill,sills
|
| 792 |
+
forearm,forearms
|
| 793 |
+
umpire,an umpire,umpires
|
| 794 |
+
porthole,portholes
|
| 795 |
+
textbook,textbooks
|
| 796 |
+
drive,drives
|
| 797 |
+
gland,glands
|
| 798 |
+
contour,contours
|
| 799 |
+
splotch,splotches
|
| 800 |
+
ship,ships,of ship
|
| 801 |
+
dent,dents
|
| 802 |
+
mold,molds
|
| 803 |
+
check,checks
|
| 804 |
+
baguette,baguettes
|
| 805 |
+
marking,markings
|
| 806 |
+
floor,floors,floor is,floor of,of a floor
|
| 807 |
+
glacier,glaciers
|
| 808 |
+
stake,stakes
|
| 809 |
+
tip,tips
|
| 810 |
+
ne,nes
|
| 811 |
+
actor,actors
|
| 812 |
+
flood,floods
|
| 813 |
+
tin,tins
|
| 814 |
+
setting,settings
|
| 815 |
+
protester,protesters
|
| 816 |
+
signpost,signposts
|
| 817 |
+
topper,toppers
|
| 818 |
+
tie,ties
|
| 819 |
+
nt,nts
|
| 820 |
+
roll,rolls
|
| 821 |
+
evergreen,evergreens,an evergreen
|
| 822 |
+
picture,pictures,of picture,picture of
|
| 823 |
+
jodhpur,jodhpurs
|
| 824 |
+
garland,garlands
|
| 825 |
+
convector,convectors
|
| 826 |
+
center,centers
|
| 827 |
+
diet,diets
|
| 828 |
+
journey,journeys
|
| 829 |
+
warp,warps
|
| 830 |
+
old truck,an old truck
|
| 831 |
+
windscreen,windscreens
|
| 832 |
+
airman,airmen
|
| 833 |
+
bike helmets,of bike helmets
|
| 834 |
+
bullet,bullets
|
| 835 |
+
phone,phones
|
| 836 |
+
adult giraffe,an adult giraffe
|
| 837 |
+
yacht,yachts
|
| 838 |
+
jacket,jackets,jacket is
|
| 839 |
+
gorilla,gorillas
|
| 840 |
+
fastener,fasteners
|
| 841 |
+
time,times
|
| 842 |
+
paige,paige a
|
| 843 |
+
handbill,handbills
|
| 844 |
+
shop,shops
|
| 845 |
+
coach,coaches
|
| 846 |
+
chain,chains
|
| 847 |
+
raffic,raffic is
|
| 848 |
+
rod,rods
|
| 849 |
+
washcloth,washcloths
|
| 850 |
+
mile,miles
|
| 851 |
+
ice,ices,of ice
|
| 852 |
+
skin,skins,of skin
|
| 853 |
+
chair,chairs,of chair
|
| 854 |
+
guava,guavas
|
| 855 |
+
toothpick,toothpicks
|
| 856 |
+
skid,skids
|
| 857 |
+
row,rows
|
| 858 |
+
vet,vets
|
| 859 |
+
hold,holds
|
| 860 |
+
grape,grapes
|
| 861 |
+
mallet,mallets
|
| 862 |
+
flask,flasks
|
| 863 |
+
pouch,pouches
|
| 864 |
+
hump,humps
|
| 865 |
+
flash,flashes
|
| 866 |
+
veg,vegs
|
| 867 |
+
bridesmaid,bridesmaids
|
| 868 |
+
bicycler,bicyclers
|
| 869 |
+
tusk,tusks,tusk of the
|
| 870 |
+
melon,melons
|
| 871 |
+
brown,is brown,are brown
|
| 872 |
+
string,strings
|
| 873 |
+
brownie,brownies
|
| 874 |
+
kitten,kittens
|
| 875 |
+
cook,cooks
|
| 876 |
+
ma,mas
|
| 877 |
+
minute,minutes
|
| 878 |
+
slip,slips
|
| 879 |
+
level,levels
|
| 880 |
+
cooky,cookies
|
| 881 |
+
two hands,two hands of
|
| 882 |
+
gun,guns
|
| 883 |
+
gum,gums
|
| 884 |
+
temple,temples
|
| 885 |
+
magnet,magnets
|
| 886 |
+
item,items,items are
|
| 887 |
+
eclair,eclairs
|
| 888 |
+
steeple,steeples
|
| 889 |
+
lever,levers
|
| 890 |
+
guy,guys
|
| 891 |
+
nicknack,nicknacks
|
| 892 |
+
sidewall,sidewalls
|
| 893 |
+
waggon,waggons
|
| 894 |
+
brave,braves
|
| 895 |
+
meadow,meadows
|
| 896 |
+
be,bes
|
| 897 |
+
seasoning,seasonings
|
| 898 |
+
fingernail,fingernails
|
| 899 |
+
pore,pores
|
| 900 |
+
sign,signs,the sign
|
| 901 |
+
currant,currants
|
| 902 |
+
candlestick,candlesticks
|
| 903 |
+
portfolio,portfolios
|
| 904 |
+
spindle,spindles
|
| 905 |
+
substitute,substitutes
|
| 906 |
+
headset,headsets
|
| 907 |
+
mt,mts
|
| 908 |
+
back portion,back portion of
|
| 909 |
+
scaffold,scaffolds
|
| 910 |
+
spire,spires
|
| 911 |
+
orange shirt,an orange shirt
|
| 912 |
+
fillet,fillets
|
| 913 |
+
uniform,uniforms
|
| 914 |
+
current,currents
|
| 915 |
+
goer,goers
|
| 916 |
+
fish tank,fish tank is
|
| 917 |
+
badge,badges
|
| 918 |
+
plane on,plane on a
|
| 919 |
+
mp,mps
|
| 920 |
+
explosion,explosions
|
| 921 |
+
mountainside,mountainsides
|
| 922 |
+
evening scene,an evening scene
|
| 923 |
+
briquette,briquettes
|
| 924 |
+
french,frenchs
|
| 925 |
+
bi,bis
|
| 926 |
+
water,waters,is the water,water is,of water,water of the
|
| 927 |
+
entertainer,entertainers
|
| 928 |
+
baseball,baseballs
|
| 929 |
+
flapjack,flapjacks
|
| 930 |
+
red hat on,red hat on a
|
| 931 |
+
taylor,taylors
|
| 932 |
+
teacher,teachers
|
| 933 |
+
box,boxes,boxes of,box of
|
| 934 |
+
boy,boys,boy is
|
| 935 |
+
leging,legings
|
| 936 |
+
male,males
|
| 937 |
+
arc,arcs
|
| 938 |
+
nectarine,nectarines
|
| 939 |
+
sitted down,are sitted down
|
| 940 |
+
strudel,strudels
|
| 941 |
+
bot,bots
|
| 942 |
+
bow,bows
|
| 943 |
+
orange toy,an orange toy
|
| 944 |
+
nylon,nylons
|
| 945 |
+
pillow,pillows
|
| 946 |
+
engineer,engineers
|
| 947 |
+
love,loves
|
| 948 |
+
radish,radishes
|
| 949 |
+
tennis player,of tennis player,of the tennis player
|
| 950 |
+
kayak,kayaks
|
| 951 |
+
snowboard,snowboards
|
| 952 |
+
lamppost,lampposts
|
| 953 |
+
rus,russ
|
| 954 |
+
marker,markers
|
| 955 |
+
pony,ponies
|
| 956 |
+
planck,plancks
|
| 957 |
+
market,markets
|
| 958 |
+
passerby,passerbys
|
| 959 |
+
additive,additives
|
| 960 |
+
saltine,saltines
|
| 961 |
+
turret,turrets
|
| 962 |
+
lp,lps
|
| 963 |
+
dude,dudes
|
| 964 |
+
connector,connectors
|
| 965 |
+
handler,handlers
|
| 966 |
+
creamer,creamers
|
| 967 |
+
trophy,trophies
|
| 968 |
+
entrance,entrances,an entrance
|
| 969 |
+
conductor,conductors
|
| 970 |
+
countertop,countertops
|
| 971 |
+
club,clubs
|
| 972 |
+
brick structure,brick structure is
|
| 973 |
+
envelope,envelopes,an envelope
|
| 974 |
+
chocolate,chocolates
|
| 975 |
+
icecream cone,an icecream cone
|
| 976 |
+
olive,olives
|
| 977 |
+
on the shore,are on the shore
|
| 978 |
+
stain,stains
|
| 979 |
+
mascot,mascots
|
| 980 |
+
fly,flies
|
| 981 |
+
lowercase,lowercase a
|
| 982 |
+
graphic,graphics
|
| 983 |
+
slogan,slogans
|
| 984 |
+
edible,edibles
|
| 985 |
+
moccasin,moccasins
|
| 986 |
+
car,cars,of a car,of car,car is
|
| 987 |
+
cap,caps,cap is,of cap
|
| 988 |
+
cat,cats,of cat,cat is
|
| 989 |
+
wallet,wallets
|
| 990 |
+
vega,vegas
|
| 991 |
+
can,cans
|
| 992 |
+
cab,cabs
|
| 993 |
+
meatball,meatballs
|
| 994 |
+
interstate,interstates
|
| 995 |
+
pickle,pickles
|
| 996 |
+
streak,streaks
|
| 997 |
+
heart,hearts
|
| 998 |
+
sandbag,sandbags
|
| 999 |
+
earphone,earphones
|
| 1000 |
+
reflector,reflectors
|
| 1001 |
+
stream,streams,of the stream
|
| 1002 |
+
chip,chips
|
| 1003 |
+
carroll,carrolls
|
| 1004 |
+
soup,soups
|
| 1005 |
+
parachute,parachutes
|
| 1006 |
+
drawer,drawers
|
| 1007 |
+
sandbar,sandbars
|
| 1008 |
+
phrase,phrases
|
| 1009 |
+
chic,chics
|
| 1010 |
+
pictograph,pictographs
|
| 1011 |
+
pong,pongs
|
| 1012 |
+
hatchling,hatchlings
|
| 1013 |
+
pink,is pink
|
| 1014 |
+
sailboat,sailboats
|
| 1015 |
+
green box,of green box
|
| 1016 |
+
rosette,rosettes
|
| 1017 |
+
pine,pines
|
| 1018 |
+
chemical,chemicals
|
| 1019 |
+
cardinal,cardinals
|
| 1020 |
+
skater,skaters
|
| 1021 |
+
elephant,elephants,an elephant,of elephant,elephant is
|
| 1022 |
+
tile,tiles
|
| 1023 |
+
divider,dividers
|
| 1024 |
+
pathway,pathways
|
| 1025 |
+
drapery,draperies
|
| 1026 |
+
map,maps
|
| 1027 |
+
product,products
|
| 1028 |
+
mar,mars
|
| 1029 |
+
mat,mats
|
| 1030 |
+
cocktail,cocktails
|
| 1031 |
+
extinguisher,extinguishers
|
| 1032 |
+
spot,spots
|
| 1033 |
+
accessory,accessories
|
| 1034 |
+
levi,levis
|
| 1035 |
+
mag,mags
|
| 1036 |
+
date,dates
|
| 1037 |
+
banding,bandings
|
| 1038 |
+
tablecloth,tablecloths
|
| 1039 |
+
dove,doves
|
| 1040 |
+
aviator,aviators
|
| 1041 |
+
dampener,dampeners
|
| 1042 |
+
man,mans,man is,is a man
|
| 1043 |
+
crepe,crepes
|
| 1044 |
+
neck,necks
|
| 1045 |
+
liquid,liquids
|
| 1046 |
+
beam,beams
|
| 1047 |
+
wheelchair,wheelchairs
|
| 1048 |
+
impala,impalas
|
| 1049 |
+
numberplate,numberplates
|
| 1050 |
+
tale,tales
|
| 1051 |
+
switch,switches
|
| 1052 |
+
mango,mangos,mangoes
|
| 1053 |
+
truck,trucks,of the truck
|
| 1054 |
+
beany,beanies
|
| 1055 |
+
basket,baskets,basket is
|
| 1056 |
+
turnstile,turnstiles
|
| 1057 |
+
speedboat,speedboats
|
| 1058 |
+
gesture,gestures
|
| 1059 |
+
sd,sds
|
| 1060 |
+
inflated tire,an inflated tire
|
| 1061 |
+
stilt,stilts
|
| 1062 |
+
shield,shields
|
| 1063 |
+
cutoff,cutoffs
|
| 1064 |
+
webpage,webpages
|
| 1065 |
+
entryway,entryways
|
| 1066 |
+
footstep,footsteps
|
| 1067 |
+
haircut,haircuts
|
| 1068 |
+
pillowcase,pillowcases
|
| 1069 |
+
buyer,buyers
|
| 1070 |
+
chickpea,chickpeas
|
| 1071 |
+
lyric,lyrics
|
| 1072 |
+
terrace,terraces
|
| 1073 |
+
pitch,pitches
|
| 1074 |
+
braid,braids
|
| 1075 |
+
pointer,pointers
|
| 1076 |
+
blocked,is blocked
|
| 1077 |
+
propeller on,propeller on the
|
| 1078 |
+
rooftop,rooftops
|
| 1079 |
+
monitor,monitors,of monitor
|
| 1080 |
+
willow,willows
|
| 1081 |
+
orange stick,an orange stick
|
| 1082 |
+
platform,platforms
|
| 1083 |
+
window,windows,windows are,of windows,of a window,of window
|
| 1084 |
+
farmer,farmers
|
| 1085 |
+
mail,mails
|
| 1086 |
+
close to head,is close to head
|
| 1087 |
+
main,mains
|
| 1088 |
+
cornstalk,cornstalks
|
| 1089 |
+
cutter,cutters
|
| 1090 |
+
gizzard,gizzards
|
| 1091 |
+
apron,aprons
|
| 1092 |
+
tictac,tictacs
|
| 1093 |
+
civilian,civilians
|
| 1094 |
+
dark colored,is dark colored
|
| 1095 |
+
nob,nobs
|
| 1096 |
+
bound,bounds
|
| 1097 |
+
lunch,lunches
|
| 1098 |
+
nailhead,nailheads
|
| 1099 |
+
giraffe in,giraffe in an
|
| 1100 |
+
horse on,horse on the
|
| 1101 |
+
gate,gates
|
| 1102 |
+
taillight,taillights
|
| 1103 |
+
hall,halls
|
| 1104 |
+
wagon,wagons
|
| 1105 |
+
name,names,name of the,name of
|
| 1106 |
+
gull,gulls
|
| 1107 |
+
unattended,is unattended
|
| 1108 |
+
frank,franks
|
| 1109 |
+
drop,drops
|
| 1110 |
+
zig zags on,zig zags on the
|
| 1111 |
+
legume,legumes
|
| 1112 |
+
fisherman,fishermen
|
| 1113 |
+
rock,rocks
|
| 1114 |
+
quarter,quarters
|
| 1115 |
+
turtle,turtles
|
| 1116 |
+
square,squares
|
| 1117 |
+
ice maker,an ice maker
|
| 1118 |
+
ee,ees
|
| 1119 |
+
receipt,receipts
|
| 1120 |
+
sprinkle,sprinkles
|
| 1121 |
+
bovine,bovines
|
| 1122 |
+
goose,geese,gooses
|
| 1123 |
+
jena,jenas
|
| 1124 |
+
zebra,zebras
|
| 1125 |
+
year,years
|
| 1126 |
+
girl,girls,girl is,of the girl
|
| 1127 |
+
amusement,amusements
|
| 1128 |
+
yak,yaks
|
| 1129 |
+
album,albums
|
| 1130 |
+
canvas,canvass,canvases
|
| 1131 |
+
container,containers
|
| 1132 |
+
stitch,stitches
|
| 1133 |
+
space,spaces
|
| 1134 |
+
medicine,medicines
|
| 1135 |
+
looking,are looking
|
| 1136 |
+
formula,formulas
|
| 1137 |
+
sensor,sensors
|
| 1138 |
+
tongue,tongues
|
| 1139 |
+
reveler,revelers
|
| 1140 |
+
gram,grams
|
| 1141 |
+
clover,clovers
|
| 1142 |
+
nostril,nostrils
|
| 1143 |
+
frisbee is under,frisbee is under the
|
| 1144 |
+
thong,thongs
|
| 1145 |
+
cowling,cowlings
|
| 1146 |
+
id number,an id number
|
| 1147 |
+
smudge,smudges
|
| 1148 |
+
cart,carts
|
| 1149 |
+
vehicle in,vehicle in the
|
| 1150 |
+
flyer,flyers
|
| 1151 |
+
see out,see out of
|
| 1152 |
+
argo,argos
|
| 1153 |
+
headband,headbands
|
| 1154 |
+
orb,orbs
|
| 1155 |
+
manikin,manikins
|
| 1156 |
+
language,languages
|
| 1157 |
+
backside,backsides
|
| 1158 |
+
flare,flares
|
| 1159 |
+
parka,parkas
|
| 1160 |
+
granule,granules
|
| 1161 |
+
ostrich,ostriches
|
| 1162 |
+
motion,motions
|
| 1163 |
+
thing,things
|
| 1164 |
+
gosling,goslings
|
| 1165 |
+
place,places
|
| 1166 |
+
pepperoni,pepperonis
|
| 1167 |
+
swing,swings
|
| 1168 |
+
view,views
|
| 1169 |
+
parrot,parrots
|
| 1170 |
+
suspender,suspenders
|
| 1171 |
+
cheese,cheeses
|
| 1172 |
+
flying,is flying
|
| 1173 |
+
saving,savings
|
| 1174 |
+
question,questions
|
| 1175 |
+
potter,potters
|
| 1176 |
+
road has,road has an
|
| 1177 |
+
one,one of,ones
|
| 1178 |
+
sparkler,sparklers
|
| 1179 |
+
twinkie,twinkies
|
| 1180 |
+
parsnip,parsnips
|
| 1181 |
+
suspended,are suspended
|
| 1182 |
+
conifer,conifers
|
| 1183 |
+
rind,rinds
|
| 1184 |
+
ring,rings
|
| 1185 |
+
tomorrow,of tomorrow
|
| 1186 |
+
size,sizes
|
| 1187 |
+
sheep,sheeps,of sheep
|
| 1188 |
+
city,cities
|
| 1189 |
+
sheet,sheets
|
| 1190 |
+
bookmark,bookmarks
|
| 1191 |
+
lap,laps
|
| 1192 |
+
bite,bites
|
| 1193 |
+
shoebox,shoeboxes
|
| 1194 |
+
plastic,plastics
|
| 1195 |
+
linkage,linkages
|
| 1196 |
+
checker,checkers
|
| 1197 |
+
2,2s
|
| 1198 |
+
freebie,freebies
|
| 1199 |
+
streetlight,streetlights,streetlight is
|
| 1200 |
+
white,is white,whites,are white,white is,white a
|
| 1201 |
+
frame,frames
|
| 1202 |
+
friend,friends
|
| 1203 |
+
festivity,festivities
|
| 1204 |
+
girder,girders
|
| 1205 |
+
hub,hubs
|
| 1206 |
+
that,that is
|
| 1207 |
+
season,seasons
|
| 1208 |
+
memo,memos
|
| 1209 |
+
artifact,artifacts
|
| 1210 |
+
hut,huts
|
| 1211 |
+
canine,canines
|
| 1212 |
+
butt,butts
|
| 1213 |
+
copy,copies
|
| 1214 |
+
holder,holders
|
| 1215 |
+
message,messages
|
| 1216 |
+
100 ave,100 ave a
|
| 1217 |
+
television,televisions
|
| 1218 |
+
iceberg,icebergs
|
| 1219 |
+
breadstick,breadsticks
|
| 1220 |
+
cockle,cockles
|
| 1221 |
+
siding,sidings
|
| 1222 |
+
watchtower,watchtowers
|
| 1223 |
+
mariner,mariners
|
| 1224 |
+
tractor,tractors
|
| 1225 |
+
browser,browsers
|
| 1226 |
+
pond,ponds
|
| 1227 |
+
mountain,mountains,mountains are,of mountains,of the mountain
|
| 1228 |
+
coconut,coconuts
|
| 1229 |
+
dollop,dollops
|
| 1230 |
+
angel,angels,an angel
|
| 1231 |
+
slat,slats
|
| 1232 |
+
parking,parking are
|
| 1233 |
+
hershey,hersheys
|
| 1234 |
+
departure,departures
|
| 1235 |
+
dash,dashes
|
| 1236 |
+
say,says
|
| 1237 |
+
hieroglyphic,hieroglyphics
|
| 1238 |
+
pastry,pastries,pastrys
|
| 1239 |
+
spectacle,spectacles
|
| 1240 |
+
breakfast,breakfasts
|
| 1241 |
+
dragon,dragons
|
| 1242 |
+
slab,slabs
|
| 1243 |
+
pebble,pebbles
|
| 1244 |
+
preservative,preservatives
|
| 1245 |
+
silhouette,silhouettes
|
| 1246 |
+
baggage,baggages
|
| 1247 |
+
note,notes
|
| 1248 |
+
equipment,equipments
|
| 1249 |
+
freezer,freezers
|
| 1250 |
+
interior,interiors
|
| 1251 |
+
tambourine,tambourines
|
| 1252 |
+
handbag,handbags
|
| 1253 |
+
pimple,pimples
|
| 1254 |
+
channel,channels
|
| 1255 |
+
dread,dreads
|
| 1256 |
+
butterfly,butterflies,butterflys
|
| 1257 |
+
topping,toppings
|
| 1258 |
+
printer,printers,printer is
|
| 1259 |
+
equestrian,equestrians
|
| 1260 |
+
pail,pails
|
| 1261 |
+
track,tracks,of tracks
|
| 1262 |
+
price,prices
|
| 1263 |
+
pharaoh,pharaohs
|
| 1264 |
+
zigzag,zigzags
|
| 1265 |
+
donation,donations
|
| 1266 |
+
capital letter,capital letter a
|
| 1267 |
+
sunglass,sunglasses,sunglasss,sunglassses
|
| 1268 |
+
tract,tracts
|
| 1269 |
+
pair,pairs,pair of
|
| 1270 |
+
knee,knees
|
| 1271 |
+
upland,uplands
|
| 1272 |
+
foothold,footholds
|
| 1273 |
+
cc,ccs
|
| 1274 |
+
armrest,armrests
|
| 1275 |
+
highboy,highboys
|
| 1276 |
+
lawn,lawns
|
| 1277 |
+
white towels,of white towels
|
| 1278 |
+
napkin,napkins
|
| 1279 |
+
sale,sales
|
| 1280 |
+
order,orders
|
| 1281 |
+
macaroon,macaroons
|
| 1282 |
+
grassland,grasslands
|
| 1283 |
+
professional,professionals
|
| 1284 |
+
pantsuit,pantsuits
|
| 1285 |
+
slope,slopes
|
| 1286 |
+
walking,is walking
|
| 1287 |
+
shot,shots
|
| 1288 |
+
show,shows
|
| 1289 |
+
cufflink,cufflinks
|
| 1290 |
+
curler,curlers
|
| 1291 |
+
recipe,recipes
|
| 1292 |
+
crevasse,crevasses
|
| 1293 |
+
hairpin,hairpins
|
| 1294 |
+
in the sand,is in the sand
|
| 1295 |
+
scoop,scoops
|
| 1296 |
+
shoe,shoes
|
| 1297 |
+
demonstrator,demonstrators
|
| 1298 |
+
corner,corners
|
| 1299 |
+
line,lines
|
| 1300 |
+
ground,grounds,ground is
|
| 1301 |
+
slot,slots
|
| 1302 |
+
protrusion,protrusions
|
| 1303 |
+
snack,snacks
|
| 1304 |
+
slop,slops
|
| 1305 |
+
stair,stairs
|
| 1306 |
+
title,titles
|
| 1307 |
+
gourd,gourds
|
| 1308 |
+
appliance,appliances,an appliance
|
| 1309 |
+
plume,plumes
|
| 1310 |
+
deck,decks
|
| 1311 |
+
cheeseburger,cheeseburgers
|
| 1312 |
+
outside,outside the
|
| 1313 |
+
wood,woods,of wood,woods are
|
| 1314 |
+
black,is black,are black
|
| 1315 |
+
sprout,sprouts
|
| 1316 |
+
robe,robes
|
| 1317 |
+
wool,wools
|
| 1318 |
+
pumpkin,pumpkins
|
| 1319 |
+
hippo,hippos
|
| 1320 |
+
bevel,bevels
|
| 1321 |
+
cannon,cannons
|
| 1322 |
+
outlet,outlets,an outlet
|
| 1323 |
+
animal preserve,an animal preserve
|
| 1324 |
+
hedge,hedges
|
| 1325 |
+
boundary,boundaries
|
| 1326 |
+
gem,gems
|
| 1327 |
+
river rocks get,river rocks get the
|
| 1328 |
+
closure,closures
|
| 1329 |
+
timepiece,timepieces
|
| 1330 |
+
reading,readings
|
| 1331 |
+
pinnacle,pinnacles
|
| 1332 |
+
skull,skulls
|
| 1333 |
+
aluminum,of aluminum
|
| 1334 |
+
artist,artists
|
| 1335 |
+
leather,leathers,of leather
|
| 1336 |
+
businesswoman,businesswomen
|
| 1337 |
+
bifurcation,bifurcations
|
| 1338 |
+
median,medians
|
| 1339 |
+
stranger,strangers
|
| 1340 |
+
thumbnail,thumbnails
|
| 1341 |
+
undertone,undertones
|
| 1342 |
+
bison,bisons
|
| 1343 |
+
snowsuit,snowsuits
|
| 1344 |
+
tortilla,tortillas
|
| 1345 |
+
kernel,kernels
|
| 1346 |
+
spork,sporks
|
| 1347 |
+
brim,brims
|
| 1348 |
+
peony,peonies
|
| 1349 |
+
sitter,sitters
|
| 1350 |
+
spore,spores
|
| 1351 |
+
segway,segways
|
| 1352 |
+
cantaloupe,cantaloupes
|
| 1353 |
+
seat,seats
|
| 1354 |
+
seam,seams
|
| 1355 |
+
seal,seals
|
| 1356 |
+
calendar,calendars
|
| 1357 |
+
sport,sports
|
| 1358 |
+
smiling,is smiling
|
| 1359 |
+
loudspeaker,loudspeakers
|
| 1360 |
+
bicyclist,bicyclists
|
| 1361 |
+
ornament,ornaments
|
| 1362 |
+
label,labels
|
| 1363 |
+
teacup,teacups
|
| 1364 |
+
airplanes nose,an airplanes nose
|
| 1365 |
+
pump,pumps
|
| 1366 |
+
abdomen,abdomens
|
| 1367 |
+
skyscraper,skyscrapers
|
| 1368 |
+
vender,venders
|
| 1369 |
+
smokestack,smokestacks
|
| 1370 |
+
groom has,groom has a
|
| 1371 |
+
spartan,spartans
|
| 1372 |
+
arrival,arrivals
|
| 1373 |
+
notice,notices
|
| 1374 |
+
tamale,tamales
|
| 1375 |
+
parent,parents,parent a
|
| 1376 |
+
brown wood,is brown wood
|
| 1377 |
+
screen,screens
|
| 1378 |
+
adult zebra,an adult zebra
|
| 1379 |
+
dome,domes,of dome
|
| 1380 |
+
guitar,guitars
|
| 1381 |
+
tum,tums
|
| 1382 |
+
article,articles
|
| 1383 |
+
tub,tubs
|
| 1384 |
+
comb,combs
|
| 1385 |
+
umber,umbers
|
| 1386 |
+
sunbather,sunbathers
|
| 1387 |
+
printed paper on,printed paper on a
|
| 1388 |
+
contestant,contestants
|
| 1389 |
+
parapet,parapets
|
| 1390 |
+
residence,residences
|
| 1391 |
+
region,regions
|
| 1392 |
+
monk,monks
|
| 1393 |
+
restroom,restrooms
|
| 1394 |
+
tour,tours
|
| 1395 |
+
haunch,haunches
|
| 1396 |
+
berry,berries
|
| 1397 |
+
large amount,large amount of
|
| 1398 |
+
flipper,flippers
|
| 1399 |
+
railway,railways
|
| 1400 |
+
green vegetation,green vegetation is
|
| 1401 |
+
expression,expressions
|
| 1402 |
+
engine on,engine on a
|
| 1403 |
+
riddle,riddles
|
| 1404 |
+
insignia,insignias
|
| 1405 |
+
crossbeam,crossbeams
|
| 1406 |
+
color,colors
|
| 1407 |
+
armchair,armchairs
|
| 1408 |
+
pot,pots
|
| 1409 |
+
period,periods
|
| 1410 |
+
pole,poles,of pole,pole is
|
| 1411 |
+
pantaloon,pantaloons
|
| 1412 |
+
boar,boars
|
| 1413 |
+
pod,pods
|
| 1414 |
+
twig,twigs
|
| 1415 |
+
spark,sparks
|
| 1416 |
+
runaway,runaways
|
| 1417 |
+
kitchen sink,of kitchen sink
|
| 1418 |
+
turkey,turkeys
|
| 1419 |
+
caricature,caricatures
|
| 1420 |
+
teammate,teammates
|
| 1421 |
+
teddy,teddies,teddys
|
| 1422 |
+
toothpaste,toothpastes
|
| 1423 |
+
classic,classics
|
| 1424 |
+
airliner,airliners
|
| 1425 |
+
mark,marks
|
| 1426 |
+
memento,mementos
|
| 1427 |
+
acre,acres
|
| 1428 |
+
rancher,ranchers
|
| 1429 |
+
helicopter,helicopters
|
| 1430 |
+
skeg,skegs
|
| 1431 |
+
finial,finials
|
| 1432 |
+
fig,figs
|
| 1433 |
+
engine,engines,an engine,engine of
|
| 1434 |
+
direction,directions
|
| 1435 |
+
shopping,of shopping
|
| 1436 |
+
tangelo,tangelos
|
| 1437 |
+
blessing,blessings
|
| 1438 |
+
slub,slubs
|
| 1439 |
+
andrew,andrews
|
| 1440 |
+
centerpiece,centerpieces
|
| 1441 |
+
tire of a motor,the tire of a motor
|
| 1442 |
+
door is tan,the door is tan
|
| 1443 |
+
parasail,parasails
|
| 1444 |
+
pilot,pilots
|
| 1445 |
+
case,cases
|
| 1446 |
+
shaft,shafts
|
| 1447 |
+
crumb,crumbs
|
| 1448 |
+
seedling,seedlings
|
| 1449 |
+
these,these are,these is
|
| 1450 |
+
mount,mounts
|
| 1451 |
+
trick,tricks
|
| 1452 |
+
bedcover,bedcovers
|
| 1453 |
+
newspaper,newspapers
|
| 1454 |
+
mound,mounds
|
| 1455 |
+
cherub,cherubim,cherubs
|
| 1456 |
+
spotlight,spotlights
|
| 1457 |
+
vest,vests
|
| 1458 |
+
asian girl,an asian girl
|
| 1459 |
+
crewman,crewmen
|
| 1460 |
+
canoe,canoes
|
| 1461 |
+
brow,brows
|
| 1462 |
+
mill,mills
|
| 1463 |
+
purse,purses
|
| 1464 |
+
chopstick,chopsticks
|
| 1465 |
+
pinky,pinkies
|
| 1466 |
+
coupler,couplers
|
| 1467 |
+
someone,someones
|
| 1468 |
+
stewardess,stewardesses
|
| 1469 |
+
hijab,hijabs
|
| 1470 |
+
petunia,petunias
|
| 1471 |
+
receptacle,receptacles
|
| 1472 |
+
helmet,helmets,helmet is
|
| 1473 |
+
pas,pass
|
| 1474 |
+
pat,pats
|
| 1475 |
+
paw,paws
|
| 1476 |
+
teen on,teen on a
|
| 1477 |
+
mousepad,mousepads
|
| 1478 |
+
fender,fenders
|
| 1479 |
+
eggshell,eggshells
|
| 1480 |
+
wiring,wirings
|
| 1481 |
+
washrag,washrags
|
| 1482 |
+
cabana,cabanas
|
| 1483 |
+
mole,moles
|
| 1484 |
+
consumer,consumers
|
| 1485 |
+
figurine,figurines
|
| 1486 |
+
pad,pads
|
| 1487 |
+
sneaker,sneakers
|
| 1488 |
+
document,documents
|
| 1489 |
+
pan,pans
|
| 1490 |
+
mane,manes
|
| 1491 |
+
this man,this man is
|
| 1492 |
+
exhaust,exhausts
|
| 1493 |
+
oil,oils
|
| 1494 |
+
big bow,the big bow
|
| 1495 |
+
foam,foams
|
| 1496 |
+
driver,drivers
|
| 1497 |
+
weed,weeds,of weeds
|
| 1498 |
+
cymbal,cymbals
|
| 1499 |
+
edger,edgers
|
| 1500 |
+
fruit,fruits,fruits are,fruit is
|
| 1501 |
+
barber,barbers
|
| 1502 |
+
advertisement,advertisements,an advertisement
|
| 1503 |
+
footprint,footprints
|
| 1504 |
+
cartoon,cartoons
|
| 1505 |
+
hummingbird,hummingbirds
|
| 1506 |
+
break,breaks
|
| 1507 |
+
teepee,teepees
|
| 1508 |
+
drain,drains
|
| 1509 |
+
burrito,burritos
|
| 1510 |
+
charger,chargers
|
| 1511 |
+
no,noes
|
| 1512 |
+
tentacle,tentacles
|
| 1513 |
+
tit,tits
|
| 1514 |
+
bottle,bottles
|
| 1515 |
+
model,models
|
| 1516 |
+
taxi,taxis
|
| 1517 |
+
clog,clogs
|
| 1518 |
+
fume,fumes
|
| 1519 |
+
imprint,imprints
|
| 1520 |
+
orange tabby,an orange tabby
|
| 1521 |
+
photo through,photo through the
|
| 1522 |
+
kilo,kilos
|
| 1523 |
+
flavor,flavors
|
| 1524 |
+
straw hats,straw hats are
|
| 1525 |
+
speed,speeds
|
| 1526 |
+
announcement,announcements
|
| 1527 |
+
blot,blots
|
| 1528 |
+
snowboarder,snowboarders
|
| 1529 |
+
application,applications
|
| 1530 |
+
rose,roses
|
| 1531 |
+
sunshade,sunshades
|
| 1532 |
+
weenie,weenies
|
| 1533 |
+
pallet,pallets
|
| 1534 |
+
instrument,instruments
|
| 1535 |
+
pile,piles,of pile
|
| 1536 |
+
grounder,grounders
|
| 1537 |
+
haystack,haystacks
|
| 1538 |
+
bread,breads
|
| 1539 |
+
pill,pills
|
| 1540 |
+
skier,skiers,skiers are
|
| 1541 |
+
grip,grips
|
| 1542 |
+
anchovy,anchovies
|
| 1543 |
+
grit,grits
|
| 1544 |
+
frown,frowns
|
| 1545 |
+
read,reads
|
| 1546 |
+
fridge,fridges
|
| 1547 |
+
dart,darts
|
| 1548 |
+
traffic,traffics
|
| 1549 |
+
warehouse,warehouses
|
| 1550 |
+
grid,grids
|
| 1551 |
+
bandage,bandages
|
| 1552 |
+
stunt,stunts
|
| 1553 |
+
railroad,railroads
|
| 1554 |
+
walk,walks
|
| 1555 |
+
lady,ladies,lady is,ladys
|
| 1556 |
+
fryer,fryers
|
| 1557 |
+
rear,rears
|
| 1558 |
+
crock,crocks
|
| 1559 |
+
clam,clams
|
| 1560 |
+
towel,towels
|
| 1561 |
+
silhouette in,silhouette in a
|
| 1562 |
+
postcard,postcards
|
| 1563 |
+
patrick,patricks
|
| 1564 |
+
bracelet,bracelets
|
| 1565 |
+
twin,twins
|
| 1566 |
+
leek,leeks
|
| 1567 |
+
shutter,shutters
|
| 1568 |
+
nugget,nuggets
|
| 1569 |
+
audience,audiences
|
| 1570 |
+
nose,noses,nose of a
|
| 1571 |
+
claw,claws
|
| 1572 |
+
tower,towers,tower of the,of tower
|
| 1573 |
+
groomsman,groomsmen
|
| 1574 |
+
node,nodes
|
| 1575 |
+
seating,seatings
|
| 1576 |
+
in a haze,are in a haze
|
| 1577 |
+
doll,dolls
|
| 1578 |
+
wattle,wattles
|
| 1579 |
+
bobber,bobbers
|
| 1580 |
+
l,ls
|
| 1581 |
+
lobster,lobsters
|
| 1582 |
+
pasture,pastures
|
| 1583 |
+
umbrella hat,an umbrella hat
|
| 1584 |
+
slice,slices
|
| 1585 |
+
blue stripe,blue stripe is
|
| 1586 |
+
wristband,wristbands
|
| 1587 |
+
stanchion,stanchions
|
| 1588 |
+
tube,tubes
|
| 1589 |
+
nook,nooks
|
| 1590 |
+
exit,exits
|
| 1591 |
+
boat,boats,boats are,of the boat,boat is
|
| 1592 |
+
doggy,doggies
|
| 1593 |
+
knife,knives,knifes
|
| 1594 |
+
football,footballs
|
| 1595 |
+
crouton,croutons
|
| 1596 |
+
business,businesses
|
| 1597 |
+
raincoat,raincoats
|
| 1598 |
+
zit,zits
|
| 1599 |
+
kleenex,kleenexes
|
| 1600 |
+
leftover,leftovers
|
| 1601 |
+
strainer,strainers
|
| 1602 |
+
tread,treads
|
| 1603 |
+
on,on the,are on,is on,on a
|
| 1604 |
+
stone,stones
|
| 1605 |
+
taking a picture,is taking a picture
|
| 1606 |
+
placard,placards
|
| 1607 |
+
ace,aces
|
| 1608 |
+
package,packages
|
| 1609 |
+
jeep,jeeps
|
| 1610 |
+
island,islands,an island
|
| 1611 |
+
fringe,fringes
|
| 1612 |
+
mixer,mixers
|
| 1613 |
+
meal,meals
|
| 1614 |
+
chop,chops
|
| 1615 |
+
pistachio,pistachios
|
| 1616 |
+
hindquarter,hindquarters
|
| 1617 |
+
devon,devons
|
| 1618 |
+
wolf,wolves
|
| 1619 |
+
stand,stands
|
| 1620 |
+
neighbor,neighbors
|
| 1621 |
+
ox,oxen,oxes
|
| 1622 |
+
chive,chives
|
| 1623 |
+
airfoil,airfoils
|
| 1624 |
+
road,roads,road is,of a road,of road,of the road
|
| 1625 |
+
upside down vi,an upside down vi
|
| 1626 |
+
heater,heaters
|
| 1627 |
+
statuette,statuettes
|
| 1628 |
+
marshmallow,marshmallows
|
| 1629 |
+
coupon,coupons
|
| 1630 |
+
communication,communications
|
| 1631 |
+
image,images,an image
|
| 1632 |
+
tripe,tripes
|
| 1633 |
+
splint,splints
|
| 1634 |
+
earring,earrings,an earring
|
| 1635 |
+
harness,harnesses
|
| 1636 |
+
treetop,treetops
|
| 1637 |
+
strip,strips
|
| 1638 |
+
operator,operators
|
| 1639 |
+
pivot,pivots
|
| 1640 |
+
skillet,skillets
|
| 1641 |
+
people crossing,people crossing the
|
| 1642 |
+
awing coming off,an awing coming off
|
| 1643 |
+
racquet,racquets
|
| 1644 |
+
grater,graters
|
| 1645 |
+
jowl,jowls
|
| 1646 |
+
log,logs
|
| 1647 |
+
area,areas,an area
|
| 1648 |
+
hip,hips
|
| 1649 |
+
there,there is,there is a,theres,there are
|
| 1650 |
+
cafe,cafes
|
| 1651 |
+
lot,lots of,lots
|
| 1652 |
+
hem,hems
|
| 1653 |
+
hen,hens
|
| 1654 |
+
valley,valleys
|
| 1655 |
+
bubble,bubbles
|
| 1656 |
+
chalkboard,chalkboards
|
| 1657 |
+
elephants are in,elephants are in a
|
| 1658 |
+
zip,zips
|
| 1659 |
+
jug,jugs
|
| 1660 |
+
outcrop,outcrops
|
| 1661 |
+
buggy,buggys,buggies
|
| 1662 |
+
pitcher,pitchers
|
| 1663 |
+
cabinet,cabinets
|
| 1664 |
+
glass in,glass in the
|
| 1665 |
+
subtle knife,the subtle knife
|
| 1666 |
+
walkway,walkways
|
| 1667 |
+
fighter,fighters
|
| 1668 |
+
corduroy,corduroys
|
| 1669 |
+
spice,spices
|
| 1670 |
+
pull,pulls
|
| 1671 |
+
porkchop,porkchops
|
| 1672 |
+
offical,an offical
|
| 1673 |
+
potato,potatoes,potatos
|
| 1674 |
+
ember,embers
|
| 1675 |
+
tiptoe,tiptoes
|
| 1676 |
+
strawberry,strawberries,strawberrys
|
| 1677 |
+
suitcase,suitcases
|
| 1678 |
+
lifter,lifters
|
| 1679 |
+
grass,grasses,is grass,grasss,grass is
|
| 1680 |
+
torso,torsos
|
| 1681 |
+
distance,distances
|
| 1682 |
+
toilet,toilets
|
| 1683 |
+
ab,abs
|
| 1684 |
+
hellman,hellmans
|
| 1685 |
+
ad,ads,an ad
|
| 1686 |
+
epaulet,epaulets
|
| 1687 |
+
am,ams
|
| 1688 |
+
mike,mikes
|
| 1689 |
+
fellow,fellows
|
| 1690 |
+
as,ass
|
| 1691 |
+
lichen,lichens
|
| 1692 |
+
au,aus
|
| 1693 |
+
file,files
|
| 1694 |
+
pedestal,pedestals
|
| 1695 |
+
sandpiper,sandpipers
|
| 1696 |
+
cream,creams
|
| 1697 |
+
picture is on,picture is on the
|
| 1698 |
+
antenna,antennas,antennae,an antenna
|
| 1699 |
+
field,fields,of field,field of
|
| 1700 |
+
puppy,puppies,puppys
|
| 1701 |
+
curlicue,curlicues
|
| 1702 |
+
houseboat,houseboats
|
| 1703 |
+
lapel,lapels
|
| 1704 |
+
pushpin,pushpins
|
| 1705 |
+
mountains in,mountains in the
|
| 1706 |
+
shelter,shelters
|
| 1707 |
+
symbol,symbols
|
| 1708 |
+
drift,drifts
|
| 1709 |
+
slant,slants
|
| 1710 |
+
sideburn,sideburns
|
| 1711 |
+
squash,squashes
|
| 1712 |
+
bleacher,bleachers
|
| 1713 |
+
podium,podiums
|
| 1714 |
+
peak,peaks
|
| 1715 |
+
pool,pools
|
| 1716 |
+
building,buildings,of building,of the building,is a building,building is a
|
| 1717 |
+
red frisbee in,red frisbee in the
|
| 1718 |
+
sardine,sardines
|
| 1719 |
+
remote,remotes
|
| 1720 |
+
thorn,thorns
|
| 1721 |
+
groom,grooms
|
| 1722 |
+
mask,masks
|
| 1723 |
+
stripes,stripess
|
| 1724 |
+
angled cut,an angled cut
|
| 1725 |
+
landfill,landfills
|
| 1726 |
+
bystander,bystanders
|
| 1727 |
+
excretion,excretions
|
| 1728 |
+
mast,masts
|
| 1729 |
+
u,us
|
| 1730 |
+
adam,adams
|
| 1731 |
+
husky,huskies
|
| 1732 |
+
platter,platters
|
| 1733 |
+
trooper,troopers
|
| 1734 |
+
gaslight,gaslights
|
| 1735 |
+
snout,snouts
|
| 1736 |
+
lace,laces
|
| 1737 |
+
pointing,is pointing
|
| 1738 |
+
gown,gowns
|
| 1739 |
+
birdcage,birdcages
|
| 1740 |
+
beware,beware of
|
| 1741 |
+
wreath,wreaths
|
| 1742 |
+
dollar,dollars
|
| 1743 |
+
disc,discs
|
| 1744 |
+
dish,dishes
|
| 1745 |
+
disk,disks
|
| 1746 |
+
cuke,cukes
|
| 1747 |
+
carpet,carpets
|
| 1748 |
+
apartment,apartments
|
| 1749 |
+
number,numbers
|
| 1750 |
+
etching,etchings
|
| 1751 |
+
pinwheel,pinwheels
|
| 1752 |
+
tv,tvs,tv is
|
| 1753 |
+
dumpling,dumplings
|
| 1754 |
+
spirit,spirits
|
| 1755 |
+
tail,tails,tail is
|
| 1756 |
+
program,programs
|
| 1757 |
+
award,awards
|
| 1758 |
+
dressing,dressings
|
| 1759 |
+
smile,smiles
|
| 1760 |
+
crest,crests
|
| 1761 |
+
lory,lories
|
| 1762 |
+
roadway,roadways
|
| 1763 |
+
belonging,belongings
|
| 1764 |
+
woman,women,womans,womens,woman is
|
| 1765 |
+
appointment,appointments
|
| 1766 |
+
parcel,parcels
|
| 1767 |
+
active runway,an active runway
|
| 1768 |
+
screwdriver,screwdrivers
|
| 1769 |
+
blockade,blockades
|
| 1770 |
+
embarkment,embarkments
|
| 1771 |
+
fan,fans
|
| 1772 |
+
fall,falls
|
| 1773 |
+
floater,floaters
|
| 1774 |
+
ticket,tickets
|
| 1775 |
+
strand,strands
|
| 1776 |
+
heaven,heavens
|
| 1777 |
+
cable,cables,cable is
|
| 1778 |
+
lillie,lillies
|
| 1779 |
+
lot of buildings,a lot of buildings
|
| 1780 |
+
windowpane,windowpanes
|
| 1781 |
+
large,is large
|
| 1782 |
+
dinosaur,dinosaurs
|
| 1783 |
+
sand,of sand,sands
|
| 1784 |
+
skate,skates
|
| 1785 |
+
mammal,mammals
|
| 1786 |
+
staircase on,staircase on the
|
| 1787 |
+
dodger,dodgers
|
| 1788 |
+
locomotive,locomotives
|
| 1789 |
+
red icing,red icing is
|
| 1790 |
+
wallflower,wallflowers
|
| 1791 |
+
portable,portables
|
| 1792 |
+
fence,fences,the fence,fence is
|
| 1793 |
+
open umbrella,an open umbrella
|
| 1794 |
+
traveler,travelers
|
| 1795 |
+
tee,tees
|
| 1796 |
+
burger,burgers
|
| 1797 |
+
zero,zeroes,zeros
|
| 1798 |
+
design,designs
|
| 1799 |
+
link,links
|
| 1800 |
+
hamper,hampers
|
| 1801 |
+
ribbon,ribbons
|
| 1802 |
+
sunray,sunrays
|
| 1803 |
+
dial,dials
|
| 1804 |
+
clock,clocks,clock is,of the clock
|
| 1805 |
+
man wearing,man wearing a
|
| 1806 |
+
sun,sun is,suns
|
| 1807 |
+
section,sections,section of a
|
| 1808 |
+
stool,stools
|
| 1809 |
+
brief,briefs
|
| 1810 |
+
trinket,trinkets
|
| 1811 |
+
suv,suvs
|
| 1812 |
+
companion,companions
|
| 1813 |
+
bramble,brambles
|
| 1814 |
+
nurse,nurses
|
| 1815 |
+
plush,plushes
|
| 1816 |
+
movement,movements
|
| 1817 |
+
pug,pugs
|
| 1818 |
+
ruffle,ruffles
|
| 1819 |
+
bowtie,bowties
|
| 1820 |
+
against the wall,is against the wall,are against the wall
|
| 1821 |
+
blue fence,blue fence is
|
| 1822 |
+
surfer,surfers,surfer is
|
| 1823 |
+
skydiver,skydivers
|
| 1824 |
+
ranger,rangers
|
| 1825 |
+
trunk,trunks,trunk of the
|
| 1826 |
+
cub,cubs
|
| 1827 |
+
ontario,ontarios
|
| 1828 |
+
legend,legends
|
| 1829 |
+
storefront,storefronts
|
| 1830 |
+
soldier,soldiers
|
| 1831 |
+
airport,an airport
|
| 1832 |
+
older man,an older man
|
| 1833 |
+
hamster,hamsters
|
| 1834 |
+
front foot,front foot is
|
| 1835 |
+
trainer,trainers
|
| 1836 |
+
packed full,is packed full
|
| 1837 |
+
family,families
|
| 1838 |
+
va,vas
|
| 1839 |
+
firecracker,firecrackers
|
| 1840 |
+
airway,airways
|
| 1841 |
+
amenity,amenities
|
| 1842 |
+
tracking,trackings
|
| 1843 |
+
cargo,cargos
|
| 1844 |
+
eye,eyes,an eye,eyes are
|
| 1845 |
+
shepard,shepards
|
| 1846 |
+
hillock,hillocks
|
| 1847 |
+
destination,destinations
|
| 1848 |
+
two,two of
|
| 1849 |
+
pearl,pearls
|
| 1850 |
+
splash,splashes
|
| 1851 |
+
down to ground,is down to ground
|
| 1852 |
+
raft,rafts
|
| 1853 |
+
garnish,garnishes
|
| 1854 |
+
wiper,wipers
|
| 1855 |
+
teen,teens
|
| 1856 |
+
flat,flats
|
| 1857 |
+
flaw,flaws
|
| 1858 |
+
diamond,diamonds
|
| 1859 |
+
door,doors,doors of,door is,doors of the
|
| 1860 |
+
flap,flaps
|
| 1861 |
+
shrubbery,shrubberies
|
| 1862 |
+
pole that,pole that is
|
| 1863 |
+
emission,emissions
|
| 1864 |
+
telephone,telephones
|
| 1865 |
+
flag,flags
|
| 1866 |
+
stick,sticks
|
| 1867 |
+
coyote,coyotes
|
| 1868 |
+
eatable,eatables
|
| 1869 |
+
grill,grills
|
| 1870 |
+
hour,hours
|
| 1871 |
+
cluster,clusters
|
| 1872 |
+
next to,next to the
|
| 1873 |
+
paragraph,paragraphs
|
| 1874 |
+
wrestler,wrestlers
|
| 1875 |
+
seagull,seagulls
|
| 1876 |
+
parasol,parasols
|
| 1877 |
+
marble,marbles
|
| 1878 |
+
shark,sharks
|
| 1879 |
+
hamburger,hamburgers
|
| 1880 |
+
buttress,buttresses
|
| 1881 |
+
dragonfly,dragonflies
|
| 1882 |
+
bidet,bidets
|
| 1883 |
+
shard,shards
|
| 1884 |
+
access panel,an access panel
|
| 1885 |
+
sphere,spheres
|
| 1886 |
+
fish tank in,fish tank in the
|
| 1887 |
+
gallon,gallons
|
| 1888 |
+
airplane,airplanes,an airplane,airplane is
|
| 1889 |
+
scar,scars
|
| 1890 |
+
dress,dresses,dresss
|
| 1891 |
+
durian,durians
|
| 1892 |
+
freckle,freckles
|
| 1893 |
+
siren,sirens
|
| 1894 |
+
court,courts,of the court
|
| 1895 |
+
goal,goals
|
| 1896 |
+
window on side,window on side of
|
| 1897 |
+
ladle,ladles
|
| 1898 |
+
flying a kite,is flying a kite
|
| 1899 |
+
doubloon,doubloons
|
| 1900 |
+
dragee,dragees
|
| 1901 |
+
fleck,flecks
|
| 1902 |
+
tepee,tepees
|
| 1903 |
+
goat,goats
|
| 1904 |
+
creature,creatures
|
| 1905 |
+
plant,plants
|
| 1906 |
+
sandwich,sandwiches,sandwichs
|
| 1907 |
+
indian,indians
|
| 1908 |
+
headrest,headrests
|
| 1909 |
+
daisy,daisies,daisys
|
| 1910 |
+
sneak,sneaks
|
| 1911 |
+
skier has,skier has a
|
| 1912 |
+
prawn,prawns
|
| 1913 |
+
plane,planes,of plane
|
| 1914 |
+
lighting,lightings
|
| 1915 |
+
adventure,adventures of,adventures
|
| 1916 |
+
waver,wavers
|
| 1917 |
+
participant,participants
|
| 1918 |
+
bloom,blooms
|
| 1919 |
+
plank,planks
|
| 1920 |
+
a,as
|
| 1921 |
+
snowshoe,snowshoes
|
| 1922 |
+
workstation,workstations
|
| 1923 |
+
short,shorts,are short
|
| 1924 |
+
coat,coats
|
| 1925 |
+
doctor,doctors
|
| 1926 |
+
rosebud,rosebuds
|
| 1927 |
+
volleyball,volleyballs
|
| 1928 |
+
national,nationals
|
| 1929 |
+
coal,coals
|
| 1930 |
+
shore,shores
|
| 1931 |
+
wrench,wrenches
|
| 1932 |
+
shade,shades
|
| 1933 |
+
alphabet,alphabets
|
| 1934 |
+
egg,eggs
|
| 1935 |
+
turnover,turnovers
|
| 1936 |
+
infant,infants
|
| 1937 |
+
pant,pants,pants are
|
| 1938 |
+
bowl,bowls,bowl of
|
| 1939 |
+
artwork,artworks
|
| 1940 |
+
doorknob,doorknobs
|
| 1941 |
+
beignet,beignets
|
| 1942 |
+
shopfront,shopfronts
|
| 1943 |
+
wiener,wieners
|
| 1944 |
+
paper,papers
|
| 1945 |
+
pane,panes
|
| 1946 |
+
hell,hells
|
| 1947 |
+
turbine,turbines
|
| 1948 |
+
bangle,bangles
|
| 1949 |
+
heron,herons
|
| 1950 |
+
mattress,mattresses,of mattress
|
| 1951 |
+
resort,resorts
|
| 1952 |
+
selection,selections
|
| 1953 |
+
sauce,sauces
|
| 1954 |
+
colleague,colleagues
|
| 1955 |
+
good,goods
|
| 1956 |
+
toiletry,toiletries
|
| 1957 |
+
building in,building in the
|
| 1958 |
+
food,foods,of food
|
| 1959 |
+
sucker,suckers
|
| 1960 |
+
gadget,gadgets
|
| 1961 |
+
predator,predators
|
| 1962 |
+
cupcake,cupcakes,of the cupcakes
|
| 1963 |
+
abrasion,abrasions
|
| 1964 |
+
snowball,snowballs
|
| 1965 |
+
compound,compounds
|
| 1966 |
+
foot,feet,foot of the
|
| 1967 |
+
stopper,stoppers
|
| 1968 |
+
chairlift,chairlifts
|
| 1969 |
+
arched doorway,an arched doorway
|
| 1970 |
+
policeman,policemen,policemans
|
| 1971 |
+
swimsuit,swimsuits
|
| 1972 |
+
tear,tears
|
| 1973 |
+
piping,pipings
|
| 1974 |
+
trailer,trailers
|
| 1975 |
+
lantern,lanterns
|
| 1976 |
+
clamp,clamps
|
| 1977 |
+
hovel,hovels
|
| 1978 |
+
brunette,brunettes
|
| 1979 |
+
chopper,choppers
|
| 1980 |
+
weight,weights
|
| 1981 |
+
eyelash,eyelashes
|
| 1982 |
+
house,houses,houses are,of a house
|
| 1983 |
+
fish,fishes
|
| 1984 |
+
fixture,fixtures
|
| 1985 |
+
poodle,poodles
|
| 1986 |
+
brother,brothers
|
| 1987 |
+
clockwork,clockworks
|
| 1988 |
+
old hospital,an old hospital
|
| 1989 |
+
teat,teats
|
| 1990 |
+
fist,fists
|
| 1991 |
+
measurement,measurements
|
| 1992 |
+
ripple,ripples
|
| 1993 |
+
event,events
|
| 1994 |
+
bikers,bikers are
|
| 1995 |
+
embellishment,embellishments
|
| 1996 |
+
flower,flowers
|
| 1997 |
+
louver,louvers
|
| 1998 |
+
crustacean,crustaceans
|
| 1999 |
+
robert,roberts
|
| 2000 |
+
pigeon,pigeons
|
| 2001 |
+
dugout,dugouts
|
| 2002 |
+
seaport,seaport is
|
| 2003 |
+
fountain,fountains,fountain of
|
| 2004 |
+
hill,hills,of hill
|
| 2005 |
+
print,prints
|
| 2006 |
+
two brushes,two brushes are
|
| 2007 |
+
issue,issues
|
| 2008 |
+
highway,of the highway,highways
|
| 2009 |
+
smock,smocks
|
| 2010 |
+
fiber,fibers
|
| 2011 |
+
sarong,sarongs
|
| 2012 |
+
dirt,dirts
|
| 2013 |
+
team,teams
|
| 2014 |
+
horse,horses,horse is
|
| 2015 |
+
dune,dunes
|
| 2016 |
+
cockpit,cockpits
|
| 2017 |
+
loafer,loafers
|
| 2018 |
+
base,bases,base of
|
| 2019 |
+
acorn,acorns
|
| 2020 |
+
skewer,skewers
|
| 2021 |
+
dishcloth,dishcloths
|
| 2022 |
+
riser,risers
|
| 2023 |
+
ash,ashes
|
| 2024 |
+
sidewalk,sidewalks
|
| 2025 |
+
wall,walls
|
| 2026 |
+
temperature,temperatures
|
| 2027 |
+
dish on top,dish on top of
|
| 2028 |
+
faucet,faucets
|
| 2029 |
+
arch shaped kite,an arch shaped kite
|
| 2030 |
+
thread,threads
|
| 2031 |
+
seahorse,seahorses
|
| 2032 |
+
dip,dips
|
| 2033 |
+
script,scripts
|
| 2034 |
+
round,rounds
|
| 2035 |
+
elmo,an elmo
|
| 2036 |
+
canister,canisters
|
| 2037 |
+
w,ws
|
| 2038 |
+
bumper,bumpers
|
| 2039 |
+
castle,castles
|
| 2040 |
+
clump,clumps
|
| 2041 |
+
bushel,bushels
|
| 2042 |
+
ding,dings
|
| 2043 |
+
adult elephant,an adult elephant,of adult elephant
|
| 2044 |
+
statue,statues
|
| 2045 |
+
urinal,urinals
|
| 2046 |
+
feeder,feeders
|
| 2047 |
+
slipper,slippers
|
| 2048 |
+
muffler,mufflers
|
| 2049 |
+
sailor,sailors
|
| 2050 |
+
tot,tots
|
| 2051 |
+
open section,an open section
|
| 2052 |
+
whale,whales
|
| 2053 |
+
villa,villas
|
| 2054 |
+
razor,razors
|
| 2055 |
+
story,stories
|
| 2056 |
+
guest,guests
|
| 2057 |
+
jet,jets,jets are
|
| 2058 |
+
paint,paints
|
| 2059 |
+
blossom,blossoms
|
| 2060 |
+
automobile,automobiles
|
| 2061 |
+
jetty,jetties
|
| 2062 |
+
scallion,scallions
|
| 2063 |
+
stork,storks
|
| 2064 |
+
minion,minions
|
| 2065 |
+
leash,leashes
|
| 2066 |
+
station,stations,of station
|
| 2067 |
+
storm,storm is
|
| 2068 |
+
master,masters
|
| 2069 |
+
compartment,compartments
|
| 2070 |
+
syrup,syrups
|
| 2071 |
+
banana,bananas,of the bananas
|
| 2072 |
+
store,stores
|
| 2073 |
+
option,options
|
| 2074 |
+
omelette,omelettes
|
| 2075 |
+
bowel,bowels
|
| 2076 |
+
needle,needles
|
| 2077 |
+
park,of the park,parks
|
| 2078 |
+
white trim,white trim of
|
| 2079 |
+
part,parts,part of,part of a
|
| 2080 |
+
crop,crops
|
| 2081 |
+
theater,theaters
|
| 2082 |
+
surfboard,surfboards
|
| 2083 |
+
king,kings
|
| 2084 |
+
grocery,groceries
|
| 2085 |
+
hundred,hundreds
|
| 2086 |
+
vial,vials
|
| 2087 |
+
double,doubles
|
| 2088 |
+
instruction,instructions,instructions are
|
| 2089 |
+
grey,is grey
|
| 2090 |
+
filum,fila
|
| 2091 |
+
outcropping,outcroppings
|
| 2092 |
+
colander,colanders
|
| 2093 |
+
bride,brides
|
| 2094 |
+
stall,stalls
|
| 2095 |
+
cuff,cuffs
|
| 2096 |
+
cockatiel,cockatiels
|
| 2097 |
+
dispenser,dispensers
|
| 2098 |
+
foreleg,forelegs
|
| 2099 |
+
colour,colours
|
| 2100 |
+
enclosed,an enclosed
|
| 2101 |
+
cleaner,cleaners
|
| 2102 |
+
nacelle,nacelles
|
| 2103 |
+
macaw,macaws
|
| 2104 |
+
footnote,footnotes
|
| 2105 |
+
chipmunk,chipmunks
|
| 2106 |
+
philippine,philippines
|
| 2107 |
+
earflap,earflaps
|
| 2108 |
+
pedestrian,pedestrians
|
| 2109 |
+
graffiti,graffiti is
|
| 2110 |
+
farm truck,farm truck is
|
| 2111 |
+
oriole,orioles
|
| 2112 |
+
backseat,backseats
|
| 2113 |
+
lid,lids
|
| 2114 |
+
lie,lies
|
| 2115 |
+
rower,rowers
|
| 2116 |
+
bloodstain,bloodstains
|
| 2117 |
+
drunk,drunks
|
| 2118 |
+
couch,couches,is a couch,of couch
|
| 2119 |
+
tick,ticks
|
| 2120 |
+
lip,lips
|
| 2121 |
+
depression,depressions
|
| 2122 |
+
window on,window on the,window on a
|
| 2123 |
+
brace,braces
|
| 2124 |
+
bobbin,bobbins
|
| 2125 |
+
zucchini,zucchinis
|
| 2126 |
+
kneecap,kneecaps
|
| 2127 |
+
hotel,hotels
|
| 2128 |
+
pyjama,pyjamas
|
| 2129 |
+
clothespin,clothespins
|
| 2130 |
+
blackboard,blackboards
|
| 2131 |
+
eater,eaters
|
| 2132 |
+
flute,flutes
|
| 2133 |
+
chart,charts
|
| 2134 |
+
plat,plats
|
| 2135 |
+
chari,charis
|
| 2136 |
+
cigarette,cigarettes
|
| 2137 |
+
poke,pokes
|
| 2138 |
+
charm,charms
|
| 2139 |
+
plan,plans
|
| 2140 |
+
70,70s
|
| 2141 |
+
mangrove,mangroves
|
| 2142 |
+
joystick,joysticks
|
| 2143 |
+
refrigerator,refrigerators
|
| 2144 |
+
aileron,ailerons
|
| 2145 |
+
apparatus,an apparatus
|
| 2146 |
+
mobile,mobiles
|
| 2147 |
+
clear,is clear
|
| 2148 |
+
cover,covers
|
| 2149 |
+
hosta,hostas
|
| 2150 |
+
outhouse,outhouses
|
| 2151 |
+
lounge,lounges
|
| 2152 |
+
pennant,pennants
|
| 2153 |
+
barrel,barrels
|
| 2154 |
+
notch,notches
|
| 2155 |
+
tuber,tubers
|
| 2156 |
+
wording,wordings
|
| 2157 |
+
clod,clods
|
| 2158 |
+
loveseat,loveseats
|
| 2159 |
+
potholder,potholders
|
| 2160 |
+
gold,golds
|
| 2161 |
+
sparrow,sparrows
|
| 2162 |
+
wildebeest,wildebeests
|
| 2163 |
+
ballplayer,ballplayers
|
| 2164 |
+
cheerio,cheerios
|
| 2165 |
+
barbell,barbells
|
| 2166 |
+
hillside,hillsides
|
| 2167 |
+
crayon,crayons
|
| 2168 |
+
rotter,rotters
|
| 2169 |
+
wayfarer,wayfarers
|
| 2170 |
+
gully,gullies
|
| 2171 |
+
chock,chocks
|
| 2172 |
+
blender,blenders
|
| 2173 |
+
stubble,stubbles
|
| 2174 |
+
sideboard,sideboards
|
| 2175 |
+
scooter,scooters
|
| 2176 |
+
clipboard,clipboards
|
| 2177 |
+
cassette,cassettes
|
| 2178 |
+
banister,banisters
|
| 2179 |
+
circle,circles
|
| 2180 |
+
boulder,boulders
|
| 2181 |
+
shepherd,shepherds
|
| 2182 |
+
triangle,triangles
|
| 2183 |
+
scuff,scuffs
|
| 2184 |
+
dandelion,dandelions
|
| 2185 |
+
capital,capital a
|
| 2186 |
+
brink,brinks
|
| 2187 |
+
kind,kinds
|
| 2188 |
+
strut,struts
|
| 2189 |
+
whistle,whistles
|
| 2190 |
+
batter,batters
|
| 2191 |
+
breast,breasts
|
| 2192 |
+
silk,silks
|
| 2193 |
+
pellet,pellets
|
| 2194 |
+
chimney,chimneys
|
| 2195 |
+
silo,silos
|
| 2196 |
+
enemy,enemies
|
| 2197 |
+
catcher,catchers
|
| 2198 |
+
hieroglyph,hieroglyphs
|
| 2199 |
+
sleeve,sleeves
|
| 2200 |
+
dormer,dormers
|
| 2201 |
+
gazebo,gazebos
|
| 2202 |
+
tabby,tabbys
|
| 2203 |
+
steamer,steamers
|
| 2204 |
+
perfume,perfumes
|
| 2205 |
+
propellor,propellors
|
| 2206 |
+
x,xs,an x
|
| 2207 |
+
tanker,tankers
|
| 2208 |
+
rivet,rivets
|
| 2209 |
+
nacho,nachos
|
| 2210 |
+
set,sets
|
| 2211 |
+
art,arts
|
| 2212 |
+
eye on stove,an eye on stove
|
| 2213 |
+
vine,vines
|
| 2214 |
+
rhinestone,rhinestones
|
| 2215 |
+
lion,lions,of lion
|
| 2216 |
+
individual,individuals
|
| 2217 |
+
sea,seas
|
| 2218 |
+
calaba,calabas
|
| 2219 |
+
portrait,portraits
|
| 2220 |
+
bark,barks
|
| 2221 |
+
arm,arms,an arm
|
| 2222 |
+
barn,barns
|
| 2223 |
+
shower,showers
|
| 2224 |
+
fang,fangs
|
| 2225 |
+
movie,movies
|
| 2226 |
+
burner,burners
|
| 2227 |
+
crossword,crosswords
|
| 2228 |
+
ink pen,an ink pen
|
| 2229 |
+
stalk,stalks
|
| 2230 |
+
crosswalk,crosswalks
|
| 2231 |
+
skittle,skittles
|
| 2232 |
+
hooter,hooters
|
| 2233 |
+
missing,is missing
|
| 2234 |
+
s,an s,ss,ses
|
| 2235 |
+
outfit,outfits
|
| 2236 |
+
pagoda,pagodas
|
| 2237 |
+
barrack,barracks
|
| 2238 |
+
spray,sprays
|
| 2239 |
+
apple in a basket,an apple in a basket
|
| 2240 |
+
foothill,foothills
|
| 2241 |
+
premise,premises
|
| 2242 |
+
hubcap,hubcaps
|
| 2243 |
+
condo,condos
|
| 2244 |
+
zipper,zippers
|
| 2245 |
+
blazer,blazers
|
| 2246 |
+
license,licenses
|
| 2247 |
+
restaurant,restaurants
|
| 2248 |
+
archway,archways,an archway
|
| 2249 |
+
bowie,bowies
|
| 2250 |
+
connection,connections
|
| 2251 |
+
separator,separators
|
| 2252 |
+
eggplant,eggplants
|
| 2253 |
+
lash,lashes
|
| 2254 |
+
protector,protectors
|
| 2255 |
+
stoplight,stoplights
|
| 2256 |
+
lanyard,lanyards
|
| 2257 |
+
patty,patties
|
| 2258 |
+
loaf,loaves
|
| 2259 |
+
lupin,lupins
|
| 2260 |
+
lev,leva
|
| 2261 |
+
pendulum,pendulums
|
| 2262 |
+
point,points
|
| 2263 |
+
battery,batteries
|
| 2264 |
+
sweet,sweets
|
| 2265 |
+
whelk,whelks
|
| 2266 |
+
pamphlet,pamphlets
|
| 2267 |
+
dancer,dancers
|
| 2268 |
+
church,churches
|
| 2269 |
+
vessel,vessels
|
| 2270 |
+
belt,belts
|
| 2271 |
+
trestle,trestles
|
| 2272 |
+
dishtowel,dishtowels
|
| 2273 |
+
pt,pts
|
| 2274 |
+
stamp,stamps
|
| 2275 |
+
apostle,apostles
|
| 2276 |
+
buzzard,buzzards
|
| 2277 |
+
dug,dugs
|
| 2278 |
+
pc,pcs
|
| 2279 |
+
brick,bricks,of brick
|
| 2280 |
+
orange globe,an orange globe
|
| 2281 |
+
empty,an empty,is empty
|
| 2282 |
+
cyclist,cyclists
|
| 2283 |
+
flight,flights
|
| 2284 |
+
champion,champions
|
| 2285 |
+
fire,fires
|
| 2286 |
+
elephant walking,an elephant walking
|
| 2287 |
+
crack,cracks
|
| 2288 |
+
gas,gass,gasses
|
| 2289 |
+
gar,garss
|
| 2290 |
+
imac,an imac
|
| 2291 |
+
gap,gaps
|
| 2292 |
+
racer,racers
|
| 2293 |
+
gal,galss
|
| 2294 |
+
close together,are close together
|
| 2295 |
+
ornate clock,an ornate clock
|
| 2296 |
+
serviceman,servicemen
|
| 2297 |
+
furrow,furrows
|
| 2298 |
+
fur,furs,of fur
|
| 2299 |
+
look,looks
|
| 2300 |
+
hostess,hostesses
|
| 2301 |
+
juice,juices
|
| 2302 |
+
bill,bills
|
| 2303 |
+
crutch,crutches
|
| 2304 |
+
rope,ropes
|
| 2305 |
+
pace,paces
|
| 2306 |
+
bikini,bikinis
|
| 2307 |
+
parachuter,parachuters
|
| 2308 |
+
barricade,barricades
|
| 2309 |
+
honey badger,honey badger is
|
| 2310 |
+
blue poles,blue poles are
|
| 2311 |
+
outskirt,outskirts
|
| 2312 |
+
loop,loops
|
| 2313 |
+
pack,packs
|
| 2314 |
+
underpass,an underpass
|
| 2315 |
+
ducky,duckies
|
| 2316 |
+
moth,moths
|
| 2317 |
+
petal,petals
|
| 2318 |
+
owen,owens
|
| 2319 |
+
binding,bindings
|
| 2320 |
+
rip,rips
|
| 2321 |
+
decoration,decorations,of a decoration
|
| 2322 |
+
obstacle,obstacles
|
| 2323 |
+
facade,facades
|
| 2324 |
+
rig,rigs
|
| 2325 |
+
rib,ribs
|
| 2326 |
+
shirt,shirts,the shirt
|
| 2327 |
+
squiggle,squiggles
|
| 2328 |
+
ewe,ewes
|
| 2329 |
+
port,ports
|
| 2330 |
+
bristle,bristles,bristles of the
|
| 2331 |
+
9,9s
|
| 2332 |
+
dozen,dozens
|
| 2333 |
+
many waves,is many waves
|
| 2334 |
+
sliver,slivers
|
| 2335 |
+
windmill,windmills
|
| 2336 |
+
fatty,are fatty
|
| 2337 |
+
cartridge,cartridges
|
| 2338 |
+
dime,dimes
|
| 2339 |
+
scaffolding for,scaffolding for the
|
| 2340 |
+
restraint,restraints
|
| 2341 |
+
pomegranate,pomegranates
|
| 2342 |
+
cigar,cigars
|
| 2343 |
+
deformity,deformities
|
| 2344 |
+
m,ms
|
| 2345 |
+
cucumber,cucumbers
|
| 2346 |
+
stripe,stripes,of stripes,the stripes
|
| 2347 |
+
parfait,parfaits
|
| 2348 |
+
knack,knacks
|
| 2349 |
+
stack,stacks,stack of
|
| 2350 |
+
bedroll,bedrolls
|
| 2351 |
+
lower,lowers
|
| 2352 |
+
noodle,noodles
|
| 2353 |
+
older,an older
|
| 2354 |
+
cheek,cheeks
|
| 2355 |
+
maker,makers
|
| 2356 |
+
person,persons,person is
|
| 2357 |
+
cheer,cheers
|
| 2358 |
+
edge,edges,an edge
|
| 2359 |
+
dreadlock,dreadlocks
|
| 2360 |
+
sweatshirt,sweatshirts
|
| 2361 |
+
landmark,landmarks
|
| 2362 |
+
entry,entries
|
| 2363 |
+
pepole,pepole are
|
| 2364 |
+
hotdog,hotdogs
|
| 2365 |
+
toothpaste ,toothpaste is
|
| 2366 |
+
chord,chords
|
| 2367 |
+
blur,blurs
|
| 2368 |
+
morsel,morsels
|
| 2369 |
+
small stick on,small stick on the
|
| 2370 |
+
shape,shapes
|
| 2371 |
+
old man drinking,an old man drinking
|
| 2372 |
+
goo,goos
|
| 2373 |
+
trees in,trees in the
|
| 2374 |
+
aerial view,an aerial view
|
| 2375 |
+
timber,timbers
|
| 2376 |
+
sandal,sandals
|
| 2377 |
+
concrete brick,is concrete brick
|
| 2378 |
+
goblet,goblets
|
| 2379 |
+
tablet,tablets
|
| 2380 |
+
cup,cups
|
| 2381 |
+
romper,rompers
|
| 2382 |
+
sire,sires
|
| 2383 |
+
cemetery,cemeteries
|
| 2384 |
+
fitting,fittings
|
| 2385 |
+
snag,snags
|
| 2386 |
+
source,sources
|
| 2387 |
+
cue,cues
|
| 2388 |
+
grapefruit,grapefruits
|
| 2389 |
+
plateau,plateaus
|
| 2390 |
+
ad on a bus,an ad on a bus
|
| 2391 |
+
tuxedo,tuxedos
|
| 2392 |
+
snap,snaps
|
| 2393 |
+
input,inputs
|
| 2394 |
+
bridal,bridals
|
| 2395 |
+
kumquat,kumquats
|
| 2396 |
+
divot,divots
|
| 2397 |
+
bin,bins
|
| 2398 |
+
australia,australias
|
| 2399 |
+
vendor,vendors
|
| 2400 |
+
outdoor image,an outdoor image
|
| 2401 |
+
big,big a,is big
|
| 2402 |
+
couple,couples
|
| 2403 |
+
bib,bibs
|
| 2404 |
+
game,games
|
| 2405 |
+
bit,bits
|
| 2406 |
+
blemish,blemishes
|
| 2407 |
+
d,ds,d a
|
| 2408 |
+
spine,spines
|
| 2409 |
+
pillar,pillars
|
| 2410 |
+
stiletto,stilettos
|
| 2411 |
+
glove,gloves
|
| 2412 |
+
snowflake,snowflakes
|
| 2413 |
+
nipple,nipples
|
| 2414 |
+
in grass,is in grass
|
| 2415 |
+
sequin,sequins
|
| 2416 |
+
gill,gills
|
| 2417 |
+
clipping,clippings
|
| 2418 |
+
google,googles
|
| 2419 |
+
whitecap,whitecaps
|
| 2420 |
+
cheerleader,cheerleaders
|
| 2421 |
+
back,backs,back of,back of the
|
| 2422 |
+
yolk,yolks
|
| 2423 |
+
oval,an oval,ovals
|
| 2424 |
+
palm,palms
|
| 2425 |
+
blue and white,is blue and white
|
| 2426 |
+
mirror,mirrors
|
| 2427 |
+
underbelly,underbellies
|
| 2428 |
+
candle,candles
|
| 2429 |
+
server,servers
|
| 2430 |
+
saucer,saucers
|
| 2431 |
+
scale,scales
|
| 2432 |
+
vacationer,vacationers
|
| 2433 |
+
cutlet,cutlets
|
| 2434 |
+
pet,pets
|
| 2435 |
+
pew,pews
|
| 2436 |
+
orange cone,an orange cone
|
| 2437 |
+
prop,props
|
| 2438 |
+
pen,pens
|
| 2439 |
+
slash,slashes
|
| 2440 |
+
colorful sail in,colorful sail in the
|
| 2441 |
+
peg,pegs
|
| 2442 |
+
pea,peas
|
| 2443 |
+
t,ts
|
| 2444 |
+
eyeglass,eyeglasses
|
| 2445 |
+
cameraman,cameramen
|
| 2446 |
+
run,runs
|
| 2447 |
+
ba,bas
|
| 2448 |
+
booklet,booklets
|
| 2449 |
+
rug,are rug,rugs
|
| 2450 |
+
stem,stems
|
| 2451 |
+
zombie,zombies
|
| 2452 |
+
step,steps,steps of
|
| 2453 |
+
garnishment,garnishments
|
| 2454 |
+
santa,santas
|
| 2455 |
+
lounger,loungers
|
| 2456 |
+
ache,aches
|
| 2457 |
+
accoutrement,accoutrements
|
| 2458 |
+
raspberry,raspberries
|
| 2459 |
+
rut,ruts
|
| 2460 |
+
projector,projectors
|
| 2461 |
+
open door,an open door
|
| 2462 |
+
gnome,gnomes
|
| 2463 |
+
building is made,building is made of
|
| 2464 |
+
goody,goodies
|
| 2465 |
+
smoothy,smoothies
|
| 2466 |
+
hinge,hinges
|
| 2467 |
+
range,ranges
|
| 2468 |
+
bridle,bridles
|
| 2469 |
+
jogger,joggers
|
| 2470 |
+
block,blocks,is a block
|
| 2471 |
+
repair,repairs
|
| 2472 |
+
jimmy,jimmies
|
| 2473 |
+
noddle,noddles
|
| 2474 |
+
rollerblade,rollerblades
|
| 2475 |
+
signature,signatures
|
| 2476 |
+
vehicles are on,vehicles are on the
|
| 2477 |
+
holster,holsters
|
| 2478 |
+
lesson,lessons
|
| 2479 |
+
pentagon,pentagons
|
| 2480 |
+
canal,canals
|
| 2481 |
+
appendage,appendages
|
| 2482 |
+
jockey,jockeys
|
| 2483 |
+
span,spans
|
| 2484 |
+
arcade,arcades
|
| 2485 |
+
white clouds,white clouds are
|
| 2486 |
+
sock,socks
|
| 2487 |
+
cuticle,cuticles
|
| 2488 |
+
splat,splats
|
| 2489 |
+
crag,crags
|
| 2490 |
+
oyster,oysters
|
| 2491 |
+
suit,suits
|
| 2492 |
+
forward,forwards
|
| 2493 |
+
athlete,an athlete,athletes
|
| 2494 |
+
lemmon,lemmons
|
| 2495 |
+
poster,posters
|
| 2496 |
+
plinth,plinths
|
| 2497 |
+
large and green,are large and green
|
| 2498 |
+
cloth,cloths
|
| 2499 |
+
reed,reeds
|
| 2500 |
+
ling,lings
|
| 2501 |
+
crane,cranes
|
| 2502 |
+
reel,reels
|
| 2503 |
+
penguin,penguins
|
| 2504 |
+
lifeguard,lifeguards
|
| 2505 |
+
clydesdale,clydesdales
|
| 2506 |
+
ringlet,ringlets
|
| 2507 |
+
apricot,apricots
|
| 2508 |
+
up,are up
|
| 2509 |
+
barring,barrings
|
| 2510 |
+
planet,planets
|
| 2511 |
+
growth,growths
|
| 2512 |
+
highlight,highlights
|
| 2513 |
+
groove,grooves
|
| 2514 |
+
doohickey,doohickeys
|
| 2515 |
+
bell,bells
|
| 2516 |
+
sort,sorts
|
| 2517 |
+
flop,flops
|
| 2518 |
+
forest,forests
|
| 2519 |
+
cattail,cattails
|
| 2520 |
+
white curtains,white curtains are
|
| 2521 |
+
cleat,cleats
|
| 2522 |
+
dark shelf,a dark shelf
|
| 2523 |
+
chap,chaps
|
| 2524 |
+
curb,curbs
|
| 2525 |
+
curl,curls
|
| 2526 |
+
work,works
|
| 2527 |
+
gecko,geckos
|
| 2528 |
+
shades of green,are shades of green
|
| 2529 |
+
rainbow,rainbows
|
| 2530 |
+
lemon,lemons
|
| 2531 |
+
polygon,polygons
|
| 2532 |
+
peach,peaches
|
| 2533 |
+
tuft,tufts
|
| 2534 |
+
fixing,fixings
|
| 2535 |
+
peace,peaces
|
| 2536 |
+
scrape,scrapes
|
| 2537 |
+
nick,nicks
|
| 2538 |
+
parakeet,parakeets
|
| 2539 |
+
swirl,swirls
|
| 2540 |
+
tarp,tarps
|
| 2541 |
+
tart,tarts
|
| 2542 |
+
padding,paddings
|
| 2543 |
+
draw,draws
|
| 2544 |
+
trouser,trousers
|
| 2545 |
+
scrub,scrubs
|
| 2546 |
+
kiosk,kiosks
|
| 2547 |
+
printing,printings
|
| 2548 |
+
cannister,cannisters
|
| 2549 |
+
stipe,stipes
|
| 2550 |
+
lens,lenses
|
| 2551 |
+
cobblestone,cobblestones
|
| 2552 |
+
insect,an insect,insects
|
| 2553 |
+
competitor,competitors
|
| 2554 |
+
wrinkle,wrinkles
|
| 2555 |
+
desert,deserts
|
| 2556 |
+
structure,structures
|
| 2557 |
+
wonton,wontons
|
| 2558 |
+
lane,lanes
|
| 2559 |
+
land,lands
|
| 2560 |
+
e,an e,es
|
| 2561 |
+
lead,leads
|
| 2562 |
+
wafer,wafers
|
| 2563 |
+
cooker,cookers
|
| 2564 |
+
dvd,dvds
|
| 2565 |
+
ledge,ledges
|
| 2566 |
+
ton,tons
|
| 2567 |
+
crease,creases
|
| 2568 |
+
circuit,circuits
|
| 2569 |
+
beverage,beverages
|
| 2570 |
+
crinkle,crinkles
|
| 2571 |
+
walker,walkers
|
| 2572 |
+
buffalo,buffalos,buffaloes
|
| 2573 |
+
scroll,scrolls
|
| 2574 |
+
rabbit,rabbits
|
| 2575 |
+
scratch,scratches
|
| 2576 |
+
lowland,lowlands
|
| 2577 |
+
alien,aliens
|
| 2578 |
+
baby,babies,babys
|
| 2579 |
+
moon,moons
|
| 2580 |
+
reactor,reactors
|
| 2581 |
+
handgrip,handgrips
|
| 2582 |
+
peanut,peanuts
|
| 2583 |
+
description,descriptions
|
| 2584 |
+
sky is clear,the sky is clear
|
| 2585 |
+
rudder,rudders
|
| 2586 |
+
shack,shacks
|
| 2587 |
+
geranium,geraniums
|
| 2588 |
+
stable,stables
|
| 2589 |
+
suite,suites
|
| 2590 |
+
gravel,gravels
|
| 2591 |
+
ingredient,ingredients
|
| 2592 |
+
rag,rags
|
| 2593 |
+
probe,probes
|
| 2594 |
+
toenail,toenails
|
| 2595 |
+
fishnet,fishnets
|
| 2596 |
+
dessert,desserts
|
| 2597 |
+
kitty,kitties
|
| 2598 |
+
wave,waves,waves of
|
| 2599 |
+
spool,spools
|
| 2600 |
+
spoon,spoons
|
| 2601 |
+
thermos,thermoses
|
| 2602 |
+
trough,troughs
|
| 2603 |
+
tricycle,tricycles
|
| 2604 |
+
tutu,tutus
|
| 2605 |
+
wipe,wipes
|
| 2606 |
+
footmark,footmarks
|
| 2607 |
+
knight,knights
|
| 2608 |
+
button,buttons,button the,button a
|
| 2609 |
+
shock,shocks
|
| 2610 |
+
kansa,kansas
|
| 2611 |
+
this,this is,this is a
|
| 2612 |
+
race,races
|
| 2613 |
+
ornamentation,ornamentations
|
| 2614 |
+
subwoofer,subwoofers
|
| 2615 |
+
rack,racks,rackss
|
| 2616 |
+
booty,booties
|
| 2617 |
+
pleat,pleats
|
| 2618 |
+
crow,crows
|
| 2619 |
+
scientist,scientists
|
| 2620 |
+
mural,murals
|
| 2621 |
+
jump,jumps
|
| 2622 |
+
fold,folds
|
| 2623 |
+
video,videos
|
| 2624 |
+
booth,booths
|
| 2625 |
+
folk,folks
|
| 2626 |
+
sausage,sausages
|
| 2627 |
+
font,fonts
|
| 2628 |
+
speckle,speckles
|
| 2629 |
+
showcase,showcases
|
| 2630 |
+
sunny day,sunny day is
|
| 2631 |
+
top shelf,of the top shelf
|
| 2632 |
+
paddle,paddles
|
| 2633 |
+
elephants trunk,an elephants trunk
|
| 2634 |
+
attire,attires
|
| 2635 |
+
bird,birds
|
| 2636 |
+
body,bodies,bodys
|
| 2637 |
+
toast,toasts
|
| 2638 |
+
led,leds
|
| 2639 |
+
cozy,cozies
|
| 2640 |
+
leg,legs,legs of,legs are,leg of
|
| 2641 |
+
lei,leis
|
| 2642 |
+
indicator,indicators
|
| 2643 |
+
gravel that,gravel that is
|
| 2644 |
+
let,lets
|
| 2645 |
+
sink,sinks,of sink,sink is,of the sink
|
| 2646 |
+
pancake,pancakes
|
| 2647 |
+
engraving,engravings
|
| 2648 |
+
barb,barbs
|
| 2649 |
+
leaving,leavings
|
| 2650 |
+
mussel,mussels
|
| 2651 |
+
implement,implements
|
| 2652 |
+
hexagon,hexagons
|
| 2653 |
+
ruin,ruins
|
| 2654 |
+
pajama,pajamas
|
| 2655 |
+
wig,wigs
|
| 2656 |
+
shovel,shovels
|
| 2657 |
+
apple,apples,an apple
|
| 2658 |
+
clark,clarks
|
| 2659 |
+
overpass,an overpass
|
| 2660 |
+
duct,ducts
|
| 2661 |
+
win,wins
|
| 2662 |
+
talon,talons
|
| 2663 |
+
performer,performers
|
| 2664 |
+
bust,busts
|
| 2665 |
+
motor,motors
|
| 2666 |
+
duck,ducks
|
| 2667 |
+
limb,limbs
|
| 2668 |
+
hedgerow,hedgerows
|
| 2669 |
+
lima,limas
|
| 2670 |
+
white sign,the white sign
|
| 2671 |
+
staple,staples
|
| 2672 |
+
cloud,clouds
|
| 2673 |
+
lime,limes
|
| 2674 |
+
standing,standings,is standing
|
| 2675 |
+
road with no zone,a road with no zone
|
| 2676 |
+
fee,fees
|
| 2677 |
+
figure,figures
|
| 2678 |
+
certificate,certificates
|
| 2679 |
+
doodle,doodles
|
| 2680 |
+
frog,frogs
|
| 2681 |
+
capri,capris
|
| 2682 |
+
camera,cameras
|
| 2683 |
+
crab,crabs
|
| 2684 |
+
vehicle,vehicles,vehicles are,of vehicle
|
| 2685 |
+
timing,timings
|
| 2686 |
+
stage,stages
|
| 2687 |
+
possession,possessions
|
| 2688 |
+
pencil,pencils
|
| 2689 |
+
speaker that,speaker that is
|
| 2690 |
+
porch,porches
|
| 2691 |
+
tennis,tenniss
|
| 2692 |
+
musician,musicians
|
| 2693 |
+
tangerine,tangerines
|
| 2694 |
+
sister,sisters
|
| 2695 |
+
missile,missiles
|
| 2696 |
+
trail,trails
|
| 2697 |
+
train,trains,of train,of the train
|
| 2698 |
+
escape,escapes
|
| 2699 |
+
brochure,brochures
|
| 2700 |
+
customer,customers
|
| 2701 |
+
sample,samples
|
| 2702 |
+
account,accounts
|
| 2703 |
+
salad,salads
|
| 2704 |
+
heard,heard of
|
| 2705 |
+
tunnel,tunnels
|
| 2706 |
+
ride,rides
|
| 2707 |
+
cornucopia,cornucopias
|
| 2708 |
+
villain,villains
|
| 2709 |
+
donut,donuts
|
| 2710 |
+
carrot,carrots
|
| 2711 |
+
stabilizer,stabilizers
|
| 2712 |
+
smear,smears
|
| 2713 |
+
pouf,poufs
|
| 2714 |
+
control,controls
|
| 2715 |
+
wedge,wedges
|
| 2716 |
+
tap,taps
|
| 2717 |
+
bent,bents
|
| 2718 |
+
patron,patrons
|
| 2719 |
+
carabao,carabaos
|
| 2720 |
+
lock,locks
|
| 2721 |
+
loch,lochs
|
| 2722 |
+
dripping,drippings
|
| 2723 |
+
open space,an open space
|
| 2724 |
+
slit,slits
|
| 2725 |
+
tag,tags
|
| 2726 |
+
streamer,streamers
|
| 2727 |
+
tab,tabs
|
| 2728 |
+
earmuff,earmuffs
|
| 2729 |
+
shrimp,shrimps
|
| 2730 |
+
skirt,skirts
|
| 2731 |
+
hangar,hangars
|
| 2732 |
+
lamb,lambs
|
| 2733 |
+
sitting down on,sitting down on the
|
| 2734 |
+
legging,leggings
|
| 2735 |
+
briar,briars
|
| 2736 |
+
tom,toms
|
| 2737 |
+
arrangement,arrangements
|
| 2738 |
+
lamp,lamps
|
| 2739 |
+
attachment,attachments
|
| 2740 |
+
animal,animals,an animal
|
| 2741 |
+
toddler,toddlers
|
| 2742 |
+
establishment,establishments
|
| 2743 |
+
filament,filaments
|
| 2744 |
+
airline,airlines
|
| 2745 |
+
profile,profiles
|
| 2746 |
+
egret,egrets
|
| 2747 |
+
cupboard,cupboards
|
| 2748 |
+
halter,halters
|
| 2749 |
+
farm,of farm,farms
|
| 2750 |
+
stop,stops
|
| 2751 |
+
collection,collection of
|
| 2752 |
+
tack,tacks
|
| 2753 |
+
wrist,wrists
|
| 2754 |
+
bluff,bluffs
|
| 2755 |
+
taco,tacos
|
| 2756 |
+
tier,tiers
|
| 2757 |
+
cabbage,cabbages
|
| 2758 |
+
hawk,hawks
|
| 2759 |
+
berg,bergs
|
| 2760 |
+
concession,concessions
|
| 2761 |
+
physic,physics
|
| 2762 |
+
tomato,tomatoes,tomatos
|
| 2763 |
+
drape,drapes
|
| 2764 |
+
bluebell,bluebells
|
| 2765 |
+
bine,bines
|
| 2766 |
+
light,lights,is light,lights are
|
| 2767 |
+
counter,counters
|
| 2768 |
+
platypus,platypuses
|
| 2769 |
+
liner,liners
|
| 2770 |
+
element,elements
|
| 2771 |
+
linen,linens
|
| 2772 |
+
hiawatha,hiawathas
|
| 2773 |
+
necklace,necklaces
|
| 2774 |
+
martini,martinis
|
| 2775 |
+
colonnade,colonnades
|
| 2776 |
+
maintained well,is maintained well
|
| 2777 |
+
flapper,flappers
|
| 2778 |
+
antelope,antelopes
|
| 2779 |
+
thigh,thighs
|
| 2780 |
+
minnow,minnows
|
| 2781 |
+
move,moves
|
| 2782 |
+
meter,meters
|
| 2783 |
+
spatula,spatulas
|
| 2784 |
+
motorcycle,motorcycles,motorcycle is,of motorcycle
|
| 2785 |
+
quake,quakes
|
| 2786 |
+
denim,denims
|
| 2787 |
+
bunch,bunches
|
| 2788 |
+
orange peach,an orange peach
|
| 2789 |
+
le,less
|
| 2790 |
+
galosh,galoshes
|
| 2791 |
+
banner,banners
|
| 2792 |
+
broom,brooms
|
| 2793 |
+
imperfection,imperfections
|
| 2794 |
+
pawpaw,pawpaws
|
| 2795 |
+
walnut,walnuts
|
| 2796 |
+
decal,decals
|
| 2797 |
+
knothole,knotholes
|
| 2798 |
+
paperclip,paperclips
|
| 2799 |
+
insulator,insulators
|
| 2800 |
+
orange,oranges,an orange,is orange
|
| 2801 |
+
holiday,holidays
|
| 2802 |
+
old brick road,an old brick road
|
| 2803 |
+
pixel,pixels
|
| 2804 |
+
greeting,greetings
|
| 2805 |
+
contrail,contrails
|
| 2806 |
+
sapling,saplings
|
| 2807 |
+
seatbelt,seatbelts
|
| 2808 |
+
sword,swords
|
| 2809 |
+
tailfin,tailfins
|
| 2810 |
+
huff,huffs
|
| 2811 |
+
frond,fronds
|
| 2812 |
+
material,materials
|
| 2813 |
+
dock,docks
|
| 2814 |
+
cutting,cuttings
|
| 2815 |
+
snake,snakes
|
| 2816 |
+
kiss,kisses
|
| 2817 |
+
fingerprint,fingerprints
|
| 2818 |
+
front,fronts,front of
|
| 2819 |
+
cage,cages
|
| 2820 |
+
day,days
|
| 2821 |
+
easel,an easel,easels
|
| 2822 |
+
footstool,footstools
|
| 2823 |
+
tram,trams
|
| 2824 |
+
wooden desk,of a wooden desk
|
| 2825 |
+
testicle,testicles
|
| 2826 |
+
white plate,of a white plate
|
| 2827 |
+
slide,slide is,slides
|
| 2828 |
+
trap,traps
|
| 2829 |
+
condominium,condominiums
|
| 2830 |
+
boat that,boat that is
|
| 2831 |
+
stock,stocks
|
| 2832 |
+
tray,trays,of tray
|
| 2833 |
+
glasses,glassess
|
| 2834 |
+
sunburn,sunburns
|
| 2835 |
+
fare,fares
|
| 2836 |
+
moped,mopeds
|
| 2837 |
+
lilac,lilacs
|
| 2838 |
+
bump,bumps
|
| 2839 |
+
chunk,chunks
|
| 2840 |
+
goalpost,goalposts
|
| 2841 |
+
bedstead,bedsteads
|
| 2842 |
+
drop of liquid,a drop of liquid
|
| 2843 |
+
antique tuck,an antique tuck
|
| 2844 |
+
one shoe,one shoe is
|
| 2845 |
+
special,specials
|
| 2846 |
+
out,is out
|
| 2847 |
+
matt,matts
|
| 2848 |
+
giant,giants
|
| 2849 |
+
staircase,staircases
|
| 2850 |
+
boutique,boutiques
|
| 2851 |
+
valve,valves
|
| 2852 |
+
sticking up,is sticking up
|
| 2853 |
+
stub,stubs
|
| 2854 |
+
stud,studs
|
| 2855 |
+
peeling,peelings
|
| 2856 |
+
open collar,an open collar
|
| 2857 |
+
burka,burkas
|
| 2858 |
+
yankee,yankees
|
| 2859 |
+
red,is red,red a
|
| 2860 |
+
young boy,young boy is
|
| 2861 |
+
umbrella,umbrellas,an umbrella
|
| 2862 |
+
this picture,of this picture
|
| 2863 |
+
tully,tullys
|
| 2864 |
+
utensil,utensils
|
| 2865 |
+
ipod,ipods
|
| 2866 |
+
tiger,tigers
|
| 2867 |
+
orange beak,an orange beak
|
| 2868 |
+
pendant,pendants
|
| 2869 |
+
dumpster,dumpsters
|
| 2870 |
+
thrust,thrusts
|
| 2871 |
+
van,vans
|
| 2872 |
+
philip,philips
|
| 2873 |
+
princess,princesses
|
| 2874 |
+
ramekin,ramekins
|
| 2875 |
+
retriever,retrievers
|
| 2876 |
+
chilli,chillis
|
| 2877 |
+
river,of river,rivers,of the river
|
| 2878 |
+
yard,yards
|
| 2879 |
+
g,gs
|
| 2880 |
+
spill,spills
|
| 2881 |
+
grassy,grassy are
|
| 2882 |
+
route,routes
|
| 2883 |
+
skateboard,skateboards
|
| 2884 |
+
wrapping,wrappings
|
| 2885 |
+
yarn,yarns
|
| 2886 |
+
chicken,chickens
|
| 2887 |
+
notebook,notebooks
|
| 2888 |
+
blotch,blotches
|
| 2889 |
+
fatigue,fatigues
|
| 2890 |
+
ossicle,ossicles
|
| 2891 |
+
scarf,scarves,scarfs
|
| 2892 |
+
windsock,windsocks
|
| 2893 |
+
ski trails,ski trails are
|
| 2894 |
+
bouquet,bouquets
|
| 2895 |
+
signboard,signboards
|
| 2896 |
+
sack,sacks
|
| 2897 |
+
spiral,spirals
|
| 2898 |
+
safety ring,safety ring is
|
| 2899 |
+
hurdle,hurdles
|
| 2900 |
+
drinker,drinkers
|
| 2901 |
+
stump,stumps
|
| 2902 |
+
horseman,horsemen
|
| 2903 |
+
bracer,bracers
|
| 2904 |
+
fella,fellas
|
| 2905 |
+
stencil,stencils
|
| 2906 |
+
monkey,monkeys
|
| 2907 |
+
terrier,terriers
|
| 2908 |
+
accent,accents
|
| 2909 |
+
system,systems
|
| 2910 |
+
wrapper,wrappers
|
| 2911 |
+
potty,potties
|
| 2912 |
+
autograph,autographs
|
| 2913 |
+
plane is white,the plane is white
|
| 2914 |
+
ankle,ankles
|
| 2915 |
+
prong,prongs
|
| 2916 |
+
cabin,cabins
|
| 2917 |
+
beard,beards
|
| 2918 |
+
tidbit,tidbits
|
| 2919 |
+
shell,shells
|
| 2920 |
+
stomach,stomachs
|
| 2921 |
+
gear,gears
|
| 2922 |
+
shallot,shallots
|
| 2923 |
+
shelf,shelves,shelfs,shelf is
|
| 2924 |
+
shallow,shallows
|
| 2925 |
+
adaptor,adaptors
|
| 2926 |
+
confectioner,confectioners
|
| 2927 |
+
what this,what this is
|
| 2928 |
+
manhole,manholes
|
| 2929 |
+
vas,vases
|
| 2930 |
+
newlywed,newlyweds
|
| 2931 |
+
outline,outlines
|
| 2932 |
+
photograph,photographs
|
| 2933 |
+
slack,slacks
|
| 2934 |
+
split,splits
|
| 2935 |
+
shampoo,shampoos
|
| 2936 |
+
cheekbone,cheekbones
|
| 2937 |
+
bed,beds,bed is
|
| 2938 |
+
bee,bees
|
| 2939 |
+
firework,fireworks
|
| 2940 |
+
dowel,dowels
|
| 2941 |
+
bind,binds
|
| 2942 |
+
sculpture,sculptures
|
| 2943 |
+
steer,steers
|
| 2944 |
+
exhibit,exhibits
|
| 2945 |
+
hairstyle,hairstyles
|
| 2946 |
+
thistle,thistles
|
| 2947 |
+
clip,clips
|
| 2948 |
+
crack on,crack on the
|
| 2949 |
+
viewer,viewers
|
| 2950 |
+
splatter,splatters
|
| 2951 |
+
tide,tides
|
| 2952 |
+
tender,tenders
|
| 2953 |
+
enforcer,enforcers
|
| 2954 |
+
quiche,quiches
|
| 2955 |
+
two lane road,of a two lane road
|
| 2956 |
+
border,borders
|
| 2957 |
+
screw,screws
|
| 2958 |
+
microphone,microphones
|
| 2959 |
+
angle,angles
|
| 2960 |
+
sprinkler,sprinklers
|
| 2961 |
+
scone,scones
|
| 2962 |
+
there is a letter,there is a letter a
|
| 2963 |
+
hammer,hammers
|
| 2964 |
+
bough,boughs
|
| 2965 |
+
mechanism,mechanisms
|
| 2966 |
+
gunner,gunners
|
| 2967 |
+
bagel,bagels
|
| 2968 |
+
action photo,an action photo
|
| 2969 |
+
lily,lilies
|
| 2970 |
+
soap,soaps
|
| 2971 |
+
vegetation,vegetations
|
| 2972 |
+
deposit,deposits
|
| 2973 |
+
raindrop,raindrops
|
| 2974 |
+
camper,campers
|
| 2975 |
+
white counter,white counter is
|
| 2976 |
+
kickstand,kickstands,kickstand of
|
| 2977 |
+
baseboard,baseboards
|
| 2978 |
+
sb,sbs
|
| 2979 |
+
device,devices
|
| 2980 |
+
blue frisbee in,blue frisbee in the
|
| 2981 |
+
segment,segments
|
| 2982 |
+
clasp,clasps
|
| 2983 |
+
cellphone,cellphones
|
| 2984 |
+
placement,placements
|
| 2985 |
+
burn area near,burn area near the
|
| 2986 |
+
crew,crews
|
| 2987 |
+
hot dog,an hot dog
|
| 2988 |
+
urn,urns
|
| 2989 |
+
thunderbird,thunderbirds
|
| 2990 |
+
face,face is,faces,face of
|
| 2991 |
+
pipe,pipes
|
| 2992 |
+
enclosed area,an enclosed area
|
| 2993 |
+
snapshot,snapshots
|
| 2994 |
+
mustache,mustaches
|
| 2995 |
+
collectable,collectables
|
| 2996 |
+
holstein,holsteins
|
| 2997 |
+
painting,paintings
|
| 2998 |
+
fact,facts
|
| 2999 |
+
son,sons
|
| 3000 |
+
impression,impressions
|
| 3001 |
+
backyard,backyards
|
| 3002 |
+
feline,felines
|
| 3003 |
+
white bus,of the white bus
|
| 3004 |
+
kite,kites,kite is,kites are,kite is a
|
| 3005 |
+
text,texts
|
| 3006 |
+
stove,stoves
|
| 3007 |
+
rosebush,rosebushes
|
| 3008 |
+
crate,crates
|
| 3009 |
+
violator,violators
|
| 3010 |
+
bookshelf,bookshelves,bookshelf is
|
| 3011 |
+
serving,servings
|
| 3012 |
+
seaweed,seaweeds
|
| 3013 |
+
bedroom,bedrooms
|
| 3014 |
+
ottoman,ottomen,an ottoman,ottomans
|
| 3015 |
+
floodlight,floodlights
|
| 3016 |
+
thicket,thickets
|
| 3017 |
+
supporter,supporters
|
| 3018 |
+
samosa,samosas
|
| 3019 |
+
ear,ears,ear of the,an ear,ear of
|
| 3020 |
+
planter,planters
|
| 3021 |
+
tire,tires,tire of
|
| 3022 |
+
outbuilding,outbuildings
|
| 3023 |
+
attractive girl,an attractive girl
|
| 3024 |
+
jaw,jaws
|
| 3025 |
+
jar,jars
|
| 3026 |
+
terminal,terminals
|
| 3027 |
+
jam,jams
|
| 3028 |
+
tape,tapes
|
| 3029 |
+
employee,employees
|
| 3030 |
+
riding,is riding
|
| 3031 |
+
local,locals
|
| 3032 |
+
sweetener,sweeteners
|
| 3033 |
+
cube,cubes
|
| 3034 |
+
handle,handles,handle of
|
| 3035 |
+
starch,starches
|
| 3036 |
+
beat,beats
|
| 3037 |
+
canyon,canyons
|
| 3038 |
+
overall,overalls
|
| 3039 |
+
yellow lines,yellow lines are
|
| 3040 |
+
bear,bears,bear is,the bears
|
| 3041 |
+
equid,equids
|
| 3042 |
+
joint,joints
|
| 3043 |
+
bean,beans
|
| 3044 |
+
occupant,occupants
|
| 3045 |
+
beak,beaks
|
| 3046 |
+
bead,beads
|
| 3047 |
+
cutout,cutouts
|
| 3048 |
+
gray,is gray
|
| 3049 |
+
graz,grazes
|
| 3050 |
+
designer on,designer on the
|
| 3051 |
+
organ,organs
|
| 3052 |
+
motorboat,motorboats
|
| 3053 |
+
eyebrow,eyebrows
|
| 3054 |
+
ire,ireses
|
| 3055 |
+
stuff,stuffs
|
| 3056 |
+
she,she is
|
| 3057 |
+
rein,reins
|
| 3058 |
+
graf,graves
|
| 3059 |
+
widow,widows
|
| 3060 |
+
buzzer,buzzers
|
| 3061 |
+
gravestone,gravestones
|
| 3062 |
+
shedding,sheddings
|
| 3063 |
+
official,officials
|
| 3064 |
+
bucket,buckets,the bucket
|
| 3065 |
+
puddle,puddles
|
| 3066 |
+
shake,shakes
|
| 3067 |
+
packet,packets
|
| 3068 |
+
freeze,freezes
|
| 3069 |
+
apple is on,an apple is on the
|
| 3070 |
+
computer,computers
|
| 3071 |
+
graph,graphs
|
| 3072 |
+
violet,violets
|
| 3073 |
+
racket,rackets
|
| 3074 |
+
afterburner,afterburners
|
| 3075 |
+
wire,wires
|
| 3076 |
+
closet,closets
|
| 3077 |
+
wisp,wisps
|
| 3078 |
+
pattern,patterns
|
| 3079 |
+
favor,favors
|
| 3080 |
+
state,states
|
| 3081 |
+
hammock,hammocks
|
| 3082 |
+
panty,panties
|
| 3083 |
+
tyre,tyres
|
| 3084 |
+
lug,lugs
|
| 3085 |
+
piston,pistons
|
| 3086 |
+
antler,antlers
|
| 3087 |
+
gemstone,gemstones
|
| 3088 |
+
email,emails
|
| 3089 |
+
tent,tents
|
| 3090 |
+
blinker,blinkers
|
| 3091 |
+
blue wench,blue wench is
|
| 3092 |
+
cauliflower,cauliflowers
|
| 3093 |
+
opening,an opening,openings
|
| 3094 |
+
keg,kegs
|
| 3095 |
+
standing up,are standing up
|
| 3096 |
+
key,keys
|
| 3097 |
+
blackbird,blackbirds
|
| 3098 |
+
group,groups,group of
|
| 3099 |
+
jeweller,jewellers
|
| 3100 |
+
mailbox,mailboxes
|
| 3101 |
+
sketch,sketches
|
| 3102 |
+
molehill in grass,a molehill in grass
|
| 3103 |
+
thumb,thumbs
|
| 3104 |
+
drum,drums
|
| 3105 |
+
barrette,barrettes
|
| 3106 |
+
lentil,lentils
|
| 3107 |
+
lifeboat,lifeboats
|
| 3108 |
+
shingle,shingles
|
| 3109 |
+
ramp,ramps
|
| 3110 |
+
aircraft,an aircraft,aircrafts
|
| 3111 |
+
white frisbee in,white frisbee in the
|
| 3112 |
+
doorway,doorways
|
| 3113 |
+
grain,grains
|
| 3114 |
+
puff,puffs
|
| 3115 |
+
canopy,canopies,canopys
|
| 3116 |
+
fry,fries,frys
|
| 3117 |
+
jersey,jerseys
|
| 3118 |
+
comment,comments
|
| 3119 |
+
vent,vents
|
| 3120 |
+
subtitle,subtitles
|
| 3121 |
+
author,authors
|
| 3122 |
+
saddlebag,saddlebags
|
| 3123 |
+
ca,cas
|
| 3124 |
+
cd,cds
|
| 3125 |
+
orange lifeboat,an orange lifeboat
|
| 3126 |
+
palate,palates
|
| 3127 |
+
crowsnest ,crowsnest is
|
| 3128 |
+
table,tables,of table,of the table,table is a
|
| 3129 |
+
cv,cvs
|
| 3130 |
+
sari,saris
|
| 3131 |
+
motorbike,motorbikes
|
| 3132 |
+
swimmer,swimmers
|
| 3133 |
+
addition,additions
|
| 3134 |
+
cent,cents
|
| 3135 |
+
yam,yams
|
| 3136 |
+
treat,treats
|
| 3137 |
+
eraser,erasers
|
| 3138 |
+
rump,rumps
|
| 3139 |
+
curtain,curtains,curtains are
|
| 3140 |
+
feather,feathers
|
| 3141 |
+
waste,wastes
|
| 3142 |
+
hyacinth,hyacinths
|
| 3143 |
+
emirate,emirates
|
| 3144 |
+
parker,parkers
|
| 3145 |
+
nickel,nickels
|
| 3146 |
+
turban,turbans
|
| 3147 |
+
commuter,commuters
|
| 3148 |
+
deer,deers
|
| 3149 |
+
headlamp,headlamps
|
| 3150 |
+
spaniel,spaniels
|
| 3151 |
+
controller,controllers
|
| 3152 |
+
crevice,crevices
|
| 3153 |
+
shuttlecock,shuttlecocks
|
| 3154 |
+
mannequin,mannequins
|
| 3155 |
+
axle,axles
|
| 3156 |
+
bull,bulls,bull is
|
| 3157 |
+
bulb,bulbs
|
| 3158 |
+
watcher,watchers
|
| 3159 |
+
present,presents
|
| 3160 |
+
volunteer,volunteers
|
| 3161 |
+
sibling,siblings
|
| 3162 |
+
plain,plains
|
| 3163 |
+
runway,of the runway,runways,of runway
|
| 3164 |
+
sawhorse,sawhorses
|
| 3165 |
+
value,values
|
| 3166 |
+
chalk,chalks
|
| 3167 |
+
fingertip,fingertips
|
| 3168 |
+
hole in,hole in the
|
| 3169 |
+
also yellow,is also yellow
|
| 3170 |
+
dad,dads
|
| 3171 |
+
layer,layers
|
| 3172 |
+
motif,motives,motifs
|
| 3173 |
+
resident,residents
|
| 3174 |
+
surface,surfaces
|
| 3175 |
+
rooster,roosters
|
| 3176 |
+
adornment,adornments
|
| 3177 |
+
whorl,whorls
|
| 3178 |
+
partner,partners
|
| 3179 |
+
orange light,the orange light,orange light of the,an orange light
|
| 3180 |
+
tattoo,tattoos
|
| 3181 |
+
grinder,grinders
|
| 3182 |
+
matchbook,matchbooks
|
| 3183 |
+
highlighter,highlighters
|
| 3184 |
+
tweezer,tweezers
|
| 3185 |
+
balloon,balloons
|
| 3186 |
+
headlight,headlights
|
| 3187 |
+
cross,crosses
|
| 3188 |
+
camp,camps
|
| 3189 |
+
member,members
|
| 3190 |
+
speaker,speakers
|
| 3191 |
+
tumbler,tumblers
|
| 3192 |
+
shuttle,shuttles
|
| 3193 |
+
powerboat,powerboats
|
| 3194 |
+
stamen,stamens
|
| 3195 |
+
succulent,succulents
|
| 3196 |
+
ball,balls
|
| 3197 |
+
joist,joists
|
| 3198 |
+
fireman,firemen
|
| 3199 |
+
bale,bales
|
| 3200 |
+
drink,drinks
|
| 3201 |
+
effect,effects
|
| 3202 |
+
beast,beasts
|
| 3203 |
+
grandstand,grandstands
|
| 3204 |
+
student,students
|
| 3205 |
+
pedal,pedals
|
| 3206 |
+
cornice,cornices
|
| 3207 |
+
collar,collars
|
| 3208 |
+
crosstie,crossties
|
| 3209 |
+
gutter,gutters
|
| 3210 |
+
reflection,reflections,reflection of the,reflection of
|
| 3211 |
+
weapon,weapons
|
| 3212 |
+
left side,left side of
|
| 3213 |
+
command,commands
|
| 3214 |
+
spectator,spectators
|
| 3215 |
+
awning,awnings
|
| 3216 |
+
position,positions
|
| 3217 |
+
breaker,breakers
|
| 3218 |
+
drawing,drawings
|
| 3219 |
+
lightbulb,lightbulbs
|
| 3220 |
+
coaster,coasters
|
| 3221 |
+
outrigger,an outrigger
|
| 3222 |
+
camel,camels
|
| 3223 |
+
half,halves,halfs
|
| 3224 |
+
old man,an old man
|
| 3225 |
+
bongo,bongos
|
| 3226 |
+
flier,fliers
|
| 3227 |
+
keypad,keypads
|
| 3228 |
+
skill,skills
|
| 3229 |
+
dais,daises
|
| 3230 |
+
white box,white box is
|
| 3231 |
+
clipper,clippers
|
| 3232 |
+
rapid,rapids
|
| 3233 |
+
wee,wees
|
| 3234 |
+
empty dish,an empty dish
|
| 3235 |
+
snicker,snickers
|
| 3236 |
+
supply,supplies
|
| 3237 |
+
sky,skies,skys,sky is
|
| 3238 |
+
lake,lake is,lakes
|
| 3239 |
+
bench,benches,of a bench,bench is
|
| 3240 |
+
backpacker,backpackers
|
| 3241 |
+
add,adds
|
| 3242 |
+
oat,oats
|
| 3243 |
+
poll,polls
|
| 3244 |
+
citizen,citizens
|
| 3245 |
+
crossroad,crossroads
|
| 3246 |
+
ski,skis,of skis
|
| 3247 |
+
persimmon,persimmons
|
| 3248 |
+
match,matches
|
| 3249 |
+
knob,knobs
|
| 3250 |
+
rafter,rafters
|
| 3251 |
+
railcar,railcars
|
| 3252 |
+
molding,moldings
|
| 3253 |
+
dryer,dryers
|
| 3254 |
+
five,fives
|
| 3255 |
+
know,knows
|
| 3256 |
+
knot,knots
|
| 3257 |
+
desk,desks,desk is,of the desk
|
| 3258 |
+
propeller,propellers
|
| 3259 |
+
doughnut,doughnuts
|
| 3260 |
+
intersection,intersections,an intersection
|
| 3261 |
+
pier,piers
|
| 3262 |
+
muscle,muscles
|
| 3263 |
+
insert,inserts
|
| 3264 |
+
flamingo,flamingos,flamingoes
|
| 3265 |
+
crisp,crisps
|
| 3266 |
+
onion,onions
|
| 3267 |
+
scallop,scallops
|
| 3268 |
+
sofa,sofas
|
| 3269 |
+
matte,mattess
|
| 3270 |
+
candy,candies
|
| 3271 |
+
garage,garages
|
| 3272 |
+
journalist,journalists
|
| 3273 |
+
bane,banes
|
| 3274 |
+
chick,chicks
|
| 3275 |
+
page,pages
|
| 3276 |
+
heel,heels
|
| 3277 |
+
shed,sheds
|
| 3278 |
+
because,because of
|
| 3279 |
+
glare,glares
|
| 3280 |
+
habitat,habitats
|
| 3281 |
+
tumble,tumbles
|
| 3282 |
+
hair,hairs
|
| 3283 |
+
husk,husks
|
| 3284 |
+
warmer,warmers
|
| 3285 |
+
sepal,sepals
|
| 3286 |
+
home,homes,home is
|
| 3287 |
+
drizzle,drizzles
|
| 3288 |
+
leaf,leaves,leafs,leaves are,leavess
|
| 3289 |
+
shrub,shrubs
|
| 3290 |
+
jalapeno,jalapenos
|
| 3291 |
+
leak,leaks
|
| 3292 |
+
bedding,beddings
|
| 3293 |
+
kettle,kettles
|
| 3294 |
+
lean,leans
|
| 3295 |
+
muff,muffs
|
| 3296 |
+
duckling,ducklings
|
| 3297 |
+
truffle,truffles
|
| 3298 |
+
leader,leaders
|
| 3299 |
+
stairway,stairways
|
| 3300 |
+
pepper,peppers
|
| 3301 |
+
hose,hoses
|
| 3302 |
+
pear,pears
|
| 3303 |
+
mitt,mitts
|
| 3304 |
+
crossing,crossings
|
| 3305 |
+
pasta,pastas
|
| 3306 |
+
topiary,topiaries
|
| 3307 |
+
crust,crusts
|
| 3308 |
+
panel,panels
|
| 3309 |
+
beaker,beakers
|
| 3310 |
+
iris,irises
|
| 3311 |
+
throng,throngs
|
| 3312 |
+
socket,sockets
|
| 3313 |
+
extension,extensions,an extension
|
| 3314 |
+
saddle,saddles
|
| 3315 |
+
column,columns,columnss
|
| 3316 |
+
biscuit,biscuits
|
| 3317 |
+
location,locations
|
| 3318 |
+
flake,flakes
|
| 3319 |
+
carrier,carriers
|
| 3320 |
+
sweat,sweats
|
| 3321 |
+
cranberry,cranberries,cranberrys
|
| 3322 |
+
udder,udders
|
| 3323 |
+
tomb,tombs
|
| 3324 |
+
good for you,are good for you
|
| 3325 |
+
owl,owls
|
| 3326 |
+
artefact,artefacts
|
| 3327 |
+
man wears,man wears a
|
| 3328 |
+
headphone,headphones
|
| 3329 |
+
chestnut,chestnuts
|
| 3330 |
+
guard,guards
|
| 3331 |
+
receptor,receptors
|
| 3332 |
+
brush,brushes,brushes are
|
| 3333 |
+
female,females
|
| 3334 |
+
eyelid,eyelids
|
| 3335 |
+
utility,utilities
|
| 3336 |
+
behind,behinds
|
| 3337 |
+
angler,anglers
|
| 3338 |
+
numbers on,numbers on the
|
| 3339 |
+
ridge,ridges
|
| 3340 |
+
chrysanthemum,chrysanthemums
|
| 3341 |
+
buckle,buckles
|
| 3342 |
+
firefighter,firefighters
|
| 3343 |
+
tine,tines
|
| 3344 |
+
poinsettia,poinsettias are,poinsettias
|
| 3345 |
+
watchman,watchmen
|
| 3346 |
+
drumstick,drumsticks
|
| 3347 |
+
gut,guts
|
| 3348 |
+
globe,globes
|
| 3349 |
+
vat,vats
|
| 3350 |
+
rocks in,rocks in the
|
| 3351 |
+
function,functions
|
| 3352 |
+
semicircle,semicircles
|
| 3353 |
+
tennis racket,a tennis racket
|
| 3354 |
+
storehouse,storehouses
|
| 3355 |
+
bus,buses,busses,of the bus,bus is,buss
|
| 3356 |
+
coke,cokes
|
| 3357 |
+
sweatband,sweatbands
|
| 3358 |
+
x on a sign,an x on a sign
|
| 3359 |
+
volume,volumes
|
| 3360 |
+
bun,buns
|
| 3361 |
+
liquor,liquors
|
| 3362 |
+
granny,grannys
|
| 3363 |
+
grate,grates
|
| 3364 |
+
sprinkling,sprinklings
|
| 3365 |
+
ha,has
|
| 3366 |
+
bug,bugs
|
| 3367 |
+
bud,buds
|
| 3368 |
+
he,hes,he is
|
| 3369 |
+
hitter,hitters
|
| 3370 |
+
grommet,grommets
|
| 3371 |
+
daffodil,daffodils
|
| 3372 |
+
particle,particles
|
| 3373 |
+
leaves on,leaves on the
|
| 3374 |
+
pansy,pansies
|
| 3375 |
+
record,records
|
| 3376 |
+
carriage,carriages
|
| 3377 |
+
limit,limits
|
| 3378 |
+
key on,key on a
|
| 3379 |
+
cake,cakes
|
| 3380 |
+
piece,pieces
|
| 3381 |
+
condiment,condiments
|
| 3382 |
+
display,displays
|
| 3383 |
+
sponsor,sponsors
|
| 3384 |
+
bearing,bearings
|
| 3385 |
+
coverall,coveralls
|
| 3386 |
+
orange vest,an orange vest
|
| 3387 |
+
pin,pins
|
| 3388 |
+
curve,curves
|
| 3389 |
+
penny,pence,pennies
|
| 3390 |
+
pie,pies
|
| 3391 |
+
pig,pigs
|
| 3392 |
+
twist,twists
|
| 3393 |
+
sky is visible,the sky is visible
|
| 3394 |
+
replica,replicas
|
| 3395 |
+
pip,pips
|
| 3396 |
+
pit,pits
|
| 3397 |
+
ew,ews
|
| 3398 |
+
balcony,balconies,of balcony,balconys
|
| 3399 |
+
planting,plantings
|
| 3400 |
+
diplomat,diplomats
|
| 3401 |
+
cashew,cashews
|
| 3402 |
+
boot,boots
|
| 3403 |
+
detail,details
|
| 3404 |
+
book,books,books are
|
| 3405 |
+
oar,oars,an oar
|
| 3406 |
+
branch,branches,branches of the
|
| 3407 |
+
boob,boobs
|
| 3408 |
+
ponytail,ponytails
|
| 3409 |
+
dresser,dressers
|
| 3410 |
+
tollbooth,tollbooths
|
| 3411 |
+
frisbee,frisbees
|
| 3412 |
+
star,stars
|
| 3413 |
+
plexiglas,plexiglass
|
| 3414 |
+
earplug,earplugs
|
| 3415 |
+
bundle,bundles
|
| 3416 |
+
building on,building on the
|
| 3417 |
+
breadcrumb,breadcrumbs
|
| 3418 |
+
grille,grilles
|
| 3419 |
+
vein,veins
|
| 3420 |
+
cliff,cliffs
|
| 3421 |
+
ghost,ghosts
|
| 3422 |
+
droplet,droplets
|
| 3423 |
+
this wall,this wall is
|
| 3424 |
+
baker,bakers,of the baker,baker is
|
| 3425 |
+
jewel,jewels
|
| 3426 |
+
rule,rules
|
| 3427 |
+
blog,blogs
|
| 3428 |
+
hiker,hikers
|
| 3429 |
+
portion,portions
|
| 3430 |
+
craft,crafts
|
| 3431 |
+
stirrer,stirrers
|
| 3432 |
+
pupil,pupils
|
| 3433 |
+
cookbook,cookbooks
|
| 3434 |
+
simpson,simpsons
|
| 3435 |
+
buoy,buoys
|
stanford_filtered/scene-graph-TF-release/data_tools/VG/object_list.txt
ADDED
|
@@ -0,0 +1,150 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
roof
|
| 2 |
+
kite
|
| 3 |
+
pant
|
| 4 |
+
bowl
|
| 5 |
+
laptop
|
| 6 |
+
paper
|
| 7 |
+
shoe
|
| 8 |
+
railing
|
| 9 |
+
chair
|
| 10 |
+
windshield
|
| 11 |
+
ear
|
| 12 |
+
tire
|
| 13 |
+
cup
|
| 14 |
+
bench
|
| 15 |
+
tail
|
| 16 |
+
bike
|
| 17 |
+
board
|
| 18 |
+
orange
|
| 19 |
+
hat
|
| 20 |
+
finger
|
| 21 |
+
plate
|
| 22 |
+
woman
|
| 23 |
+
handle
|
| 24 |
+
branch
|
| 25 |
+
food
|
| 26 |
+
elephant
|
| 27 |
+
bear
|
| 28 |
+
wave
|
| 29 |
+
tile
|
| 30 |
+
giraffe
|
| 31 |
+
desk
|
| 32 |
+
lady
|
| 33 |
+
towel
|
| 34 |
+
glove
|
| 35 |
+
bag
|
| 36 |
+
nose
|
| 37 |
+
rock
|
| 38 |
+
tower
|
| 39 |
+
motorcycle
|
| 40 |
+
sneaker
|
| 41 |
+
fence
|
| 42 |
+
people
|
| 43 |
+
house
|
| 44 |
+
sign
|
| 45 |
+
hair
|
| 46 |
+
street
|
| 47 |
+
zebra
|
| 48 |
+
racket
|
| 49 |
+
logo
|
| 50 |
+
girl
|
| 51 |
+
arm
|
| 52 |
+
wire
|
| 53 |
+
leaf
|
| 54 |
+
clock
|
| 55 |
+
hill
|
| 56 |
+
bird
|
| 57 |
+
umbrella
|
| 58 |
+
leg
|
| 59 |
+
screen
|
| 60 |
+
men
|
| 61 |
+
sink
|
| 62 |
+
trunk
|
| 63 |
+
post
|
| 64 |
+
sidewalk
|
| 65 |
+
box
|
| 66 |
+
boy
|
| 67 |
+
cow
|
| 68 |
+
skateboard
|
| 69 |
+
plane
|
| 70 |
+
stand
|
| 71 |
+
pillow
|
| 72 |
+
toilet
|
| 73 |
+
pot
|
| 74 |
+
number
|
| 75 |
+
pole
|
| 76 |
+
table
|
| 77 |
+
boat
|
| 78 |
+
sheep
|
| 79 |
+
horse
|
| 80 |
+
eye
|
| 81 |
+
sock
|
| 82 |
+
window
|
| 83 |
+
vehicle
|
| 84 |
+
curtain
|
| 85 |
+
man
|
| 86 |
+
banana
|
| 87 |
+
fork
|
| 88 |
+
head
|
| 89 |
+
door
|
| 90 |
+
shelf
|
| 91 |
+
cabinet
|
| 92 |
+
glass
|
| 93 |
+
flag
|
| 94 |
+
train
|
| 95 |
+
child
|
| 96 |
+
seat
|
| 97 |
+
neck
|
| 98 |
+
room
|
| 99 |
+
player
|
| 100 |
+
ski
|
| 101 |
+
cap
|
| 102 |
+
tree
|
| 103 |
+
bed
|
| 104 |
+
cat
|
| 105 |
+
light
|
| 106 |
+
skier
|
| 107 |
+
engine
|
| 108 |
+
drawer
|
| 109 |
+
guy
|
| 110 |
+
airplane
|
| 111 |
+
car
|
| 112 |
+
mountain
|
| 113 |
+
shirt
|
| 114 |
+
paw
|
| 115 |
+
boot
|
| 116 |
+
snow
|
| 117 |
+
lamp
|
| 118 |
+
book
|
| 119 |
+
flower
|
| 120 |
+
animal
|
| 121 |
+
bus
|
| 122 |
+
vegetable
|
| 123 |
+
tie
|
| 124 |
+
beach
|
| 125 |
+
pizza
|
| 126 |
+
wheel
|
| 127 |
+
plant
|
| 128 |
+
helmet
|
| 129 |
+
track
|
| 130 |
+
hand
|
| 131 |
+
fruit
|
| 132 |
+
mouth
|
| 133 |
+
letter
|
| 134 |
+
vase
|
| 135 |
+
kid
|
| 136 |
+
building
|
| 137 |
+
short
|
| 138 |
+
surfboard
|
| 139 |
+
phone
|
| 140 |
+
coat
|
| 141 |
+
counter
|
| 142 |
+
dog
|
| 143 |
+
face
|
| 144 |
+
jacket
|
| 145 |
+
person
|
| 146 |
+
truck
|
| 147 |
+
bottle
|
| 148 |
+
basket
|
| 149 |
+
jean
|
| 150 |
+
wing
|
stanford_filtered/scene-graph-TF-release/data_tools/VG/predicate_alias.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
stanford_filtered/scene-graph-TF-release/data_tools/VG/predicate_list.txt
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
and
|
| 2 |
+
says
|
| 3 |
+
belonging to
|
| 4 |
+
over
|
| 5 |
+
parked on
|
| 6 |
+
growing on
|
| 7 |
+
standing on
|
| 8 |
+
made of
|
| 9 |
+
attached to
|
| 10 |
+
at
|
| 11 |
+
in
|
| 12 |
+
hanging from
|
| 13 |
+
in front of
|
| 14 |
+
from
|
| 15 |
+
for
|
| 16 |
+
lying on
|
| 17 |
+
to
|
| 18 |
+
behind
|
| 19 |
+
flying in
|
| 20 |
+
looking at
|
| 21 |
+
on back of
|
| 22 |
+
holding
|
| 23 |
+
under
|
| 24 |
+
laying on
|
| 25 |
+
riding
|
| 26 |
+
has
|
| 27 |
+
across
|
| 28 |
+
wearing
|
| 29 |
+
walking on
|
| 30 |
+
eating
|
| 31 |
+
wears
|
| 32 |
+
watching
|
| 33 |
+
walking in
|
| 34 |
+
sitting on
|
| 35 |
+
between
|
| 36 |
+
covered in
|
| 37 |
+
carrying
|
| 38 |
+
using
|
| 39 |
+
along
|
| 40 |
+
on
|
| 41 |
+
with
|
| 42 |
+
above
|
| 43 |
+
part of
|
| 44 |
+
covering
|
| 45 |
+
of
|
| 46 |
+
against
|
| 47 |
+
playing
|
| 48 |
+
near
|
| 49 |
+
painted on
|
| 50 |
+
mounted on
|
stanford_filtered/scene-graph-TF-release/data_tools/create_imdb.sh
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
python vg_to_imdb.py \
|
| 4 |
+
--imh5_dir . \
|
| 5 |
+
--image_size 1024 \
|
stanford_filtered/scene-graph-TF-release/data_tools/create_roidb.sh
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
set -x
|
| 3 |
+
set -e
|
| 4 |
+
|
| 5 |
+
OUT_PATH="."
|
| 6 |
+
|
| 7 |
+
N_OBJ=150 # number of object categories
|
| 8 |
+
N_REL=50 # number of relationship categories
|
| 9 |
+
|
| 10 |
+
H5=VG-SGG.h5
|
| 11 |
+
JSON=VG-SGG-dicts.json
|
| 12 |
+
FRAC=1
|
| 13 |
+
IMDB=imdb_1024.h5
|
| 14 |
+
|
| 15 |
+
python vg_to_roidb.py \
|
| 16 |
+
--imdb $IMDB \
|
| 17 |
+
--json_file $OUT_PATH/$JSON \
|
| 18 |
+
--h5_file $OUT_PATH/$H5 \
|
| 19 |
+
--load_frac $FRAC \
|
| 20 |
+
--num_objects $N_OBJ \
|
| 21 |
+
--num_predicates $N_REL \
|
stanford_filtered/scene-graph-TF-release/data_tools/vg_to_imdb.py
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# coding=utf8
|
| 2 |
+
|
| 3 |
+
import argparse, os, json, string
|
| 4 |
+
from Queue import Queue
|
| 5 |
+
from threading import Thread, Lock
|
| 6 |
+
|
| 7 |
+
import h5py
|
| 8 |
+
import numpy as np
|
| 9 |
+
from scipy.misc import imread, imresize
|
| 10 |
+
|
| 11 |
+
def build_filename_dict(data):
|
| 12 |
+
# First make sure all basenames are unique
|
| 13 |
+
basenames_list = [os.path.basename(img['image_path']) for img in data]
|
| 14 |
+
assert len(basenames_list) == len(set(basenames_list))
|
| 15 |
+
|
| 16 |
+
next_idx = 1
|
| 17 |
+
filename_to_idx, idx_to_filename = {}, {}
|
| 18 |
+
for img in data:
|
| 19 |
+
filename = os.path.basename(img['image_path'])
|
| 20 |
+
filename_to_idx[filename] = next_idx
|
| 21 |
+
idx_to_filename[next_idx] = filename
|
| 22 |
+
next_idx += 1
|
| 23 |
+
return filename_to_idx, idx_to_filename
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
def encode_filenames(data, filename_to_idx):
|
| 27 |
+
filename_idxs = []
|
| 28 |
+
for img in data:
|
| 29 |
+
filename = os.path.basename(img['image_path'])
|
| 30 |
+
idx = filename_to_idx[filename]
|
| 31 |
+
filename_idxs.append(idx)
|
| 32 |
+
return np.asarray(filename_idxs, dtype=np.int32)
|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
def add_images(im_data, h5_file, args):
|
| 36 |
+
fns = []; ids = []; idx = []
|
| 37 |
+
corrupted_ims = ['1592.jpg', '1722.jpg', '4616.jpg', '4617.jpg']
|
| 38 |
+
for i, img in enumerate(im_data):
|
| 39 |
+
basename = str(img['image_id']) + '.jpg'
|
| 40 |
+
if basename in corrupted_ims:
|
| 41 |
+
continue
|
| 42 |
+
|
| 43 |
+
filename = os.path.join(args.image_dir, basename)
|
| 44 |
+
if os.path.exists(filename):
|
| 45 |
+
fns.append(filename)
|
| 46 |
+
ids.append(img['image_id'])
|
| 47 |
+
idx.append(i)
|
| 48 |
+
|
| 49 |
+
ids = np.array(ids, dtype=np.int32)
|
| 50 |
+
idx = np.array(idx, dtype=np.int32)
|
| 51 |
+
h5_file.create_dataset('image_ids', data=ids)
|
| 52 |
+
h5_file.create_dataset('valid_idx', data=idx)
|
| 53 |
+
|
| 54 |
+
num_images = len(fns)
|
| 55 |
+
|
| 56 |
+
shape = (num_images, 3, args.image_size, args.image_size)
|
| 57 |
+
image_dset = h5_file.create_dataset('images', shape, dtype=np.uint8)
|
| 58 |
+
original_heights = np.zeros(num_images, dtype=np.int32)
|
| 59 |
+
original_widths = np.zeros(num_images, dtype=np.int32)
|
| 60 |
+
image_heights = np.zeros(num_images, dtype=np.int32)
|
| 61 |
+
image_widths = np.zeros(num_images, dtype=np.int32)
|
| 62 |
+
|
| 63 |
+
lock = Lock()
|
| 64 |
+
q = Queue()
|
| 65 |
+
for i, fn in enumerate(fns):
|
| 66 |
+
q.put((i, fn))
|
| 67 |
+
|
| 68 |
+
def worker():
|
| 69 |
+
while True:
|
| 70 |
+
i, filename = q.get()
|
| 71 |
+
|
| 72 |
+
if i % 10000 == 0:
|
| 73 |
+
print('processing %i images...' % i)
|
| 74 |
+
img = imread(filename)
|
| 75 |
+
# handle grayscale
|
| 76 |
+
if img.ndim == 2:
|
| 77 |
+
img = img[:, :, None][:, :, [0, 0, 0]]
|
| 78 |
+
H0, W0 = img.shape[0], img.shape[1]
|
| 79 |
+
img = imresize(img, float(args.image_size) / max(H0, W0))
|
| 80 |
+
H, W = img.shape[0], img.shape[1]
|
| 81 |
+
# swap rgb to bgr. This can't be the best way right? #fail
|
| 82 |
+
r = img[:,:,0].copy()
|
| 83 |
+
img[:,:,0] = img[:,:,2]
|
| 84 |
+
img[:,:,2] = r
|
| 85 |
+
|
| 86 |
+
lock.acquire()
|
| 87 |
+
original_heights[i] = H0
|
| 88 |
+
original_widths[i] = W0
|
| 89 |
+
image_heights[i] = H
|
| 90 |
+
image_widths[i] = W
|
| 91 |
+
image_dset[i, :, :H, :W] = img.transpose(2, 0, 1)
|
| 92 |
+
lock.release()
|
| 93 |
+
q.task_done()
|
| 94 |
+
|
| 95 |
+
for i in range(args.num_workers):
|
| 96 |
+
t = Thread(target=worker)
|
| 97 |
+
t.daemon = True
|
| 98 |
+
t.start()
|
| 99 |
+
|
| 100 |
+
q.join()
|
| 101 |
+
|
| 102 |
+
h5_file.create_dataset('image_heights', data=image_heights)
|
| 103 |
+
h5_file.create_dataset('image_widths', data=image_widths)
|
| 104 |
+
h5_file.create_dataset('original_heights', data=original_heights)
|
| 105 |
+
h5_file.create_dataset('original_widths', data=original_widths)
|
| 106 |
+
|
| 107 |
+
return fns
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
def main(args):
|
| 111 |
+
im_metadata = json.load(open(args.metadata_input))
|
| 112 |
+
h5_fn = 'imdb_' + str(args.image_size) + '.h5'
|
| 113 |
+
# write the h5 file
|
| 114 |
+
h5_file = os.path.join(args.imh5_dir, h5_fn)
|
| 115 |
+
f = h5py.File(h5_file, 'w')
|
| 116 |
+
# load images
|
| 117 |
+
im_fns = add_images(im_metadata, f, args)
|
| 118 |
+
|
| 119 |
+
if __name__ == '__main__':
|
| 120 |
+
parser = argparse.ArgumentParser()
|
| 121 |
+
parser.add_argument('--image_dir', default='VG/images')
|
| 122 |
+
parser.add_argument('--image_size', default=1024, type=int)
|
| 123 |
+
parser.add_argument('--imh5_dir', default='.')
|
| 124 |
+
parser.add_argument('--num_workers', default=20, type=int)
|
| 125 |
+
parser.add_argument('--metadata_input', default='VG/image_data.json', type=str)
|
| 126 |
+
|
| 127 |
+
args = parser.parse_args()
|
| 128 |
+
main(args)
|
stanford_filtered/scene-graph-TF-release/data_tools/vg_to_roidb.py
ADDED
|
@@ -0,0 +1,639 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# coding=utf8
|
| 2 |
+
# --------------------------------------------------------
|
| 3 |
+
# Scene Graph Generation by Iterative Message Passing
|
| 4 |
+
# Licensed under The MIT License [see LICENSE for details]
|
| 5 |
+
# Written by Danfei Xu
|
| 6 |
+
# --------------------------------------------------------
|
| 7 |
+
|
| 8 |
+
import argparse, json, string
|
| 9 |
+
from collections import Counter
|
| 10 |
+
import math
|
| 11 |
+
|
| 12 |
+
from math import floor
|
| 13 |
+
import h5py as h5
|
| 14 |
+
import numpy as np
|
| 15 |
+
import pprint
|
| 16 |
+
|
| 17 |
+
"""
|
| 18 |
+
A script for generating an hdf5 ROIDB from the VisualGenome dataset
|
| 19 |
+
"""
|
| 20 |
+
|
| 21 |
+
def preprocess_object_labels(data, alias_dict={}):
|
| 22 |
+
for img in data:
|
| 23 |
+
for obj in img['objects']:
|
| 24 |
+
obj['ids'] = [obj['object_id']]
|
| 25 |
+
names = []
|
| 26 |
+
for name in obj['names']:
|
| 27 |
+
label = sentence_preprocess(name)
|
| 28 |
+
if label in alias_dict:
|
| 29 |
+
label = alias_dict[label]
|
| 30 |
+
names.append(label)
|
| 31 |
+
obj['names'] = names
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def preprocess_predicates(data, alias_dict={}):
|
| 35 |
+
for img in data:
|
| 36 |
+
for relation in img['relationships']:
|
| 37 |
+
predicate = sentence_preprocess(relation['predicate'])
|
| 38 |
+
if predicate in alias_dict:
|
| 39 |
+
predicate = alias_dict[predicate]
|
| 40 |
+
relation['predicate'] = predicate
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
def extract_object_token(data, num_tokens, obj_list=[], verbose=True):
|
| 44 |
+
""" Builds a set that contains the object names. Filters infrequent tokens. """
|
| 45 |
+
token_counter = Counter()
|
| 46 |
+
for img in data:
|
| 47 |
+
for region in img['objects']:
|
| 48 |
+
for name in region['names']:
|
| 49 |
+
if not obj_list or name in obj_list:
|
| 50 |
+
token_counter.update([name])
|
| 51 |
+
tokens = set()
|
| 52 |
+
# pick top N tokens
|
| 53 |
+
token_counter_return = {}
|
| 54 |
+
for token, count in token_counter.most_common():
|
| 55 |
+
tokens.add(token)
|
| 56 |
+
token_counter_return[token] = count
|
| 57 |
+
if len(tokens) == num_tokens:
|
| 58 |
+
break
|
| 59 |
+
if verbose:
|
| 60 |
+
print(('Keeping %d / %d objects'
|
| 61 |
+
% (len(tokens), len(token_counter))))
|
| 62 |
+
return tokens, token_counter_return
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
def extract_predicate_token(data, num_tokens, pred_list=[], verbose=True):
|
| 66 |
+
""" Builds a set that contains the relationship predicates. Filters infrequent tokens. """
|
| 67 |
+
token_counter = Counter()
|
| 68 |
+
total = 0
|
| 69 |
+
for img in data:
|
| 70 |
+
for relation in img['relationships']:
|
| 71 |
+
predicate = relation['predicate']
|
| 72 |
+
if not pred_list or predicate in pred_list:
|
| 73 |
+
token_counter.update([predicate])
|
| 74 |
+
total += 1
|
| 75 |
+
tokens = set()
|
| 76 |
+
token_counter_return = {}
|
| 77 |
+
for token, count in token_counter.most_common():
|
| 78 |
+
tokens.add(token)
|
| 79 |
+
token_counter_return[token] = count
|
| 80 |
+
if len(tokens) == num_tokens:
|
| 81 |
+
break
|
| 82 |
+
if verbose:
|
| 83 |
+
print(('Keeping %d / %d predicates with enough instances'
|
| 84 |
+
% (len(tokens), len(token_counter))))
|
| 85 |
+
return tokens, token_counter_return
|
| 86 |
+
|
| 87 |
+
|
| 88 |
+
def merge_duplicate_boxes(data):
|
| 89 |
+
def IoU(b1, b2):
|
| 90 |
+
if b1[2] <= b2[0] or \
|
| 91 |
+
b1[3] <= b2[1] or \
|
| 92 |
+
b1[0] >= b2[2] or \
|
| 93 |
+
b1[1] >= b2[3]:
|
| 94 |
+
return 0
|
| 95 |
+
|
| 96 |
+
b1b2 = np.vstack([b1,b2])
|
| 97 |
+
minc = np.min(b1b2, 0)
|
| 98 |
+
maxc = np.max(b1b2, 0)
|
| 99 |
+
union_area = (maxc[2]-minc[0])*(maxc[3]-minc[1])
|
| 100 |
+
int_area = (minc[2]-maxc[0])*(minc[3]-maxc[1])
|
| 101 |
+
return float(int_area)/float(union_area)
|
| 102 |
+
|
| 103 |
+
def to_x1y1x2y2(obj):
|
| 104 |
+
x1 = obj['x']
|
| 105 |
+
y1 = obj['y']
|
| 106 |
+
x2 = obj['x'] + obj['w']
|
| 107 |
+
y2 = obj['y'] + obj['h']
|
| 108 |
+
return np.array([x1, y1, x2, y2], dtype=np.int32)
|
| 109 |
+
|
| 110 |
+
def inside(b1, b2):
|
| 111 |
+
return b1[0] >= b2[0] and b1[1] >= b2[1] \
|
| 112 |
+
and b1[2] <= b2[2] and b1[3] <= b2[3]
|
| 113 |
+
|
| 114 |
+
def overlap(obj1, obj2):
|
| 115 |
+
b1 = to_x1y1x2y2(obj1)
|
| 116 |
+
b2 = to_x1y1x2y2(obj2)
|
| 117 |
+
iou = IoU(b1, b2)
|
| 118 |
+
if all(b1 == b2) or iou > 0.9: # consider as the same box
|
| 119 |
+
return 1
|
| 120 |
+
elif (inside(b1, b2) or inside(b2, b1))\
|
| 121 |
+
and obj1['names'][0] == obj2['names'][0]: # same object inside the other
|
| 122 |
+
return 2
|
| 123 |
+
elif iou > 0.6 and obj1['names'][0] == obj2['names'][0]: # multiple overlapping same object
|
| 124 |
+
return 3
|
| 125 |
+
else:
|
| 126 |
+
return 0 # no overlap
|
| 127 |
+
|
| 128 |
+
num_merged = {1:0, 2:0, 3:0}
|
| 129 |
+
print('merging boxes..')
|
| 130 |
+
for img in data:
|
| 131 |
+
# mark objects to be merged and save their ids
|
| 132 |
+
objs = img['objects']
|
| 133 |
+
num_obj = len(objs)
|
| 134 |
+
for i in range(num_obj):
|
| 135 |
+
if 'M_TYPE' in objs[i]: # has been merged
|
| 136 |
+
continue
|
| 137 |
+
merged_objs = [] # circular refs, but fine
|
| 138 |
+
for j in range(i+1, num_obj):
|
| 139 |
+
if 'M_TYPE' in objs[j]: # has been merged
|
| 140 |
+
continue
|
| 141 |
+
overlap_type = overlap(objs[i], objs[j])
|
| 142 |
+
if overlap_type > 0:
|
| 143 |
+
objs[j]['M_TYPE'] = overlap_type
|
| 144 |
+
merged_objs.append(objs[j])
|
| 145 |
+
objs[i]['mobjs'] = merged_objs
|
| 146 |
+
|
| 147 |
+
# merge boxes
|
| 148 |
+
filtered_objs = []
|
| 149 |
+
merged_num_obj = 0
|
| 150 |
+
for obj in objs:
|
| 151 |
+
if 'M_TYPE' not in obj:
|
| 152 |
+
ids = [obj['object_id']]
|
| 153 |
+
dims = [to_x1y1x2y2(obj)]
|
| 154 |
+
prominent_type = 1
|
| 155 |
+
for mo in obj['mobjs']:
|
| 156 |
+
ids.append(mo['object_id'])
|
| 157 |
+
obj['names'].extend(mo['names'])
|
| 158 |
+
dims.append(to_x1y1x2y2(mo))
|
| 159 |
+
if mo['M_TYPE'] > prominent_type:
|
| 160 |
+
prominent_type = mo['M_TYPE']
|
| 161 |
+
merged_num_obj += len(ids)
|
| 162 |
+
obj['ids'] = ids
|
| 163 |
+
mdims = np.zeros(4)
|
| 164 |
+
if prominent_type > 1: # use extreme
|
| 165 |
+
mdims[:2] = np.min(np.vstack(dims)[:,:2], 0)
|
| 166 |
+
mdims[2:] = np.max(np.vstack(dims)[:,2:], 0)
|
| 167 |
+
else: # use mean
|
| 168 |
+
mdims = np.mean(np.vstack(dims), 0)
|
| 169 |
+
obj['x'] = int(mdims[0])
|
| 170 |
+
obj['y'] = int(mdims[1])
|
| 171 |
+
obj['w'] = int(mdims[2] - mdims[0])
|
| 172 |
+
obj['h'] = int(mdims[3] - mdims[1])
|
| 173 |
+
|
| 174 |
+
num_merged[prominent_type] += len(obj['mobjs'])
|
| 175 |
+
|
| 176 |
+
obj['mobjs'] = None
|
| 177 |
+
obj['names'] = list(set(obj['names'])) # remove duplicates
|
| 178 |
+
|
| 179 |
+
filtered_objs.append(obj)
|
| 180 |
+
else:
|
| 181 |
+
assert 'mobjs' not in obj
|
| 182 |
+
|
| 183 |
+
img['objects'] = filtered_objs
|
| 184 |
+
assert(merged_num_obj == num_obj)
|
| 185 |
+
|
| 186 |
+
print('# merged boxes per merging type:')
|
| 187 |
+
print(num_merged)
|
| 188 |
+
|
| 189 |
+
|
| 190 |
+
def build_token_dict(vocab):
|
| 191 |
+
""" build bi-directional mapping between index and token"""
|
| 192 |
+
token_to_idx, idx_to_token = {}, {}
|
| 193 |
+
next_idx = 1
|
| 194 |
+
vocab_sorted = sorted(list(vocab)) # make sure it's the same order everytime
|
| 195 |
+
for token in vocab_sorted:
|
| 196 |
+
token_to_idx[token] = next_idx
|
| 197 |
+
idx_to_token[next_idx] = token
|
| 198 |
+
next_idx = next_idx + 1
|
| 199 |
+
|
| 200 |
+
return token_to_idx, idx_to_token
|
| 201 |
+
|
| 202 |
+
|
| 203 |
+
def encode_box(region, org_h, org_w, im_long_size):
|
| 204 |
+
x = region['x']
|
| 205 |
+
y = region['y']
|
| 206 |
+
w = region['w']
|
| 207 |
+
h = region['h']
|
| 208 |
+
scale = float(im_long_size) / max(org_h, org_w)
|
| 209 |
+
image_size = im_long_size
|
| 210 |
+
# recall: x,y are 1-indexed
|
| 211 |
+
x, y = math.floor(scale*(region['x']-1)), math.floor(scale*(region['y']-1))
|
| 212 |
+
w, h = math.ceil(scale*region['w']), math.ceil(scale*region['h'])
|
| 213 |
+
|
| 214 |
+
# clamp to image
|
| 215 |
+
if x < 0: x = 0
|
| 216 |
+
if y < 0: y = 0
|
| 217 |
+
|
| 218 |
+
# box should be at least 2 by 2
|
| 219 |
+
if x > image_size - 2:
|
| 220 |
+
x = image_size - 2
|
| 221 |
+
if y > image_size - 2:
|
| 222 |
+
y = image_size - 2
|
| 223 |
+
if x + w >= image_size:
|
| 224 |
+
w = image_size - x
|
| 225 |
+
if y + h >= image_size:
|
| 226 |
+
h = image_size - y
|
| 227 |
+
|
| 228 |
+
# also convert to center-coord oriented
|
| 229 |
+
box = np.asarray([x+floor(w/2), y+floor(h/2), w, h], dtype=np.int32)
|
| 230 |
+
assert box[2] > 0 # width height should be positive numbers
|
| 231 |
+
assert box[3] > 0
|
| 232 |
+
return box
|
| 233 |
+
|
| 234 |
+
|
| 235 |
+
def encode_objects(obj_data, token_to_idx, token_counter, org_h, org_w, im_long_sizes):
|
| 236 |
+
encoded_labels = []
|
| 237 |
+
encoded_boxes = {}
|
| 238 |
+
for size in im_long_sizes:
|
| 239 |
+
encoded_boxes[size] = []
|
| 240 |
+
im_to_first_obj = np.zeros(len(obj_data), dtype=np.int32)
|
| 241 |
+
im_to_last_obj = np.zeros(len(obj_data), dtype=np.int32)
|
| 242 |
+
obj_counter = 0
|
| 243 |
+
|
| 244 |
+
for i, img in enumerate(obj_data):
|
| 245 |
+
im_to_first_obj[i] = obj_counter
|
| 246 |
+
img['id_to_idx'] = {} # object id to region idx
|
| 247 |
+
for obj in img['objects']:
|
| 248 |
+
# pick a label for the object
|
| 249 |
+
max_occur = 0
|
| 250 |
+
obj_label = None
|
| 251 |
+
for name in obj['names']:
|
| 252 |
+
# pick the name that has maximum occurance
|
| 253 |
+
if name in token_to_idx and token_counter[name] > max_occur:
|
| 254 |
+
obj_label = name
|
| 255 |
+
max_occur = token_counter[obj_label]
|
| 256 |
+
|
| 257 |
+
if obj_label is not None:
|
| 258 |
+
# encode region
|
| 259 |
+
for size in im_long_sizes:
|
| 260 |
+
encoded_boxes[size].append(encode_box(obj, org_h[i], org_w[i], size))
|
| 261 |
+
|
| 262 |
+
encoded_labels.append(token_to_idx[obj_label])
|
| 263 |
+
|
| 264 |
+
for obj_id in obj['ids']: # assign same index for merged ids
|
| 265 |
+
img['id_to_idx'][obj_id] = obj_counter
|
| 266 |
+
|
| 267 |
+
obj_counter += 1
|
| 268 |
+
|
| 269 |
+
|
| 270 |
+
if im_to_first_obj[i] == obj_counter:
|
| 271 |
+
im_to_first_obj[i] = -1
|
| 272 |
+
im_to_last_obj[i] = -1
|
| 273 |
+
else:
|
| 274 |
+
im_to_last_obj[i] = obj_counter - 1
|
| 275 |
+
|
| 276 |
+
for k, boxes in encoded_boxes.items():
|
| 277 |
+
encoded_boxes[k] = np.vstack(boxes)
|
| 278 |
+
return np.vstack(encoded_labels), encoded_boxes, im_to_first_obj, im_to_last_obj
|
| 279 |
+
|
| 280 |
+
|
| 281 |
+
def encode_relationship(sub_id, obj_id, id_to_idx):
|
| 282 |
+
# builds a tuple of the index of object and subject in the object list
|
| 283 |
+
sub_idx = id_to_idx[sub_id]
|
| 284 |
+
obj_idx = id_to_idx[obj_id]
|
| 285 |
+
return np.asarray([sub_idx, obj_idx], dtype=np.int32)
|
| 286 |
+
|
| 287 |
+
|
| 288 |
+
def encode_relationships(rel_data, token_to_idx, obj_data):
|
| 289 |
+
"""MUST BE CALLED AFTER encode_objects!!!"""
|
| 290 |
+
encoded_pred = [] # encoded predicates
|
| 291 |
+
encoded_rel = [] # encoded relationship tuple
|
| 292 |
+
im_to_first_rel = np.zeros(len(rel_data), dtype=np.int32)
|
| 293 |
+
im_to_last_rel = np.zeros(len(rel_data), dtype=np.int32)
|
| 294 |
+
rel_idx_counter = 0
|
| 295 |
+
|
| 296 |
+
no_rel_counter = 0
|
| 297 |
+
obj_filtered = 0
|
| 298 |
+
predicate_filtered = 0
|
| 299 |
+
duplicate_filtered = 0
|
| 300 |
+
for i, img in enumerate(rel_data):
|
| 301 |
+
im_to_first_rel[i] = rel_idx_counter
|
| 302 |
+
id_to_idx = obj_data[i]['id_to_idx'] # object id to object list idx
|
| 303 |
+
for relation in img['relationships']:
|
| 304 |
+
subj = relation['subject']
|
| 305 |
+
obj = relation['object']
|
| 306 |
+
predicate = relation['predicate']
|
| 307 |
+
if subj['object_id'] not in id_to_idx or obj['object_id'] not in id_to_idx:
|
| 308 |
+
obj_filtered += 1
|
| 309 |
+
continue
|
| 310 |
+
elif predicate not in token_to_idx:
|
| 311 |
+
predicate_filtered += 1
|
| 312 |
+
continue
|
| 313 |
+
elif id_to_idx[subj['object_id']] == id_to_idx[obj['object_id']]: # sub and obj can't be the same box
|
| 314 |
+
duplicate_filtered += 1
|
| 315 |
+
continue
|
| 316 |
+
else:
|
| 317 |
+
encoded_pred.append(token_to_idx[predicate])
|
| 318 |
+
encoded_rel.append(
|
| 319 |
+
encode_relationship(subj['object_id'],
|
| 320 |
+
obj['object_id'],
|
| 321 |
+
id_to_idx
|
| 322 |
+
))
|
| 323 |
+
rel_idx_counter += 1 # accumulate counter
|
| 324 |
+
|
| 325 |
+
if im_to_first_rel[i] == rel_idx_counter:
|
| 326 |
+
# if no qualifying relationship
|
| 327 |
+
im_to_first_rel[i] = -1
|
| 328 |
+
im_to_last_rel[i] = -1
|
| 329 |
+
no_rel_counter += 1
|
| 330 |
+
else:
|
| 331 |
+
im_to_last_rel[i] = rel_idx_counter - 1
|
| 332 |
+
print('%i rel is filtered by object' % obj_filtered)
|
| 333 |
+
print('%i rel is filtered by predicate' % predicate_filtered)
|
| 334 |
+
print('%i rel is filtered by duplicate' % duplicate_filtered)
|
| 335 |
+
print('%i rel remains ' % len(encoded_pred))
|
| 336 |
+
|
| 337 |
+
print('%i out of %i valid images have relationships' % (len(rel_data)-no_rel_counter, len(rel_data)))
|
| 338 |
+
return np.vstack(encoded_pred), np.vstack(encoded_rel), im_to_first_rel, im_to_last_rel
|
| 339 |
+
|
| 340 |
+
|
| 341 |
+
def sentence_preprocess(phrase):
|
| 342 |
+
""" preprocess a sentence: lowercase, clean up weird chars, remove punctuation """
|
| 343 |
+
replacements = {
|
| 344 |
+
'½': 'half',
|
| 345 |
+
'—' : '-',
|
| 346 |
+
'™': '',
|
| 347 |
+
'¢': 'cent',
|
| 348 |
+
'ç': 'c',
|
| 349 |
+
'û': 'u',
|
| 350 |
+
'é': 'e',
|
| 351 |
+
'°': ' degree',
|
| 352 |
+
'è': 'e',
|
| 353 |
+
'…': '',
|
| 354 |
+
}
|
| 355 |
+
phrase = phrase.encode('utf-8')
|
| 356 |
+
phrase = phrase.lstrip(' ').rstrip(' ')
|
| 357 |
+
for k, v in replacements.iteritems():
|
| 358 |
+
phrase = phrase.replace(k, v)
|
| 359 |
+
return str(phrase).lower().translate(None, string.punctuation).decode('utf-8', 'ignore')
|
| 360 |
+
|
| 361 |
+
|
| 362 |
+
def encode_splits(obj_data, opt=None):
|
| 363 |
+
if opt is not None:
|
| 364 |
+
val_begin_idx = opt['val_begin_idx']
|
| 365 |
+
test_begin_idx = opt['test_begin_idx']
|
| 366 |
+
split = np.zeros(len(obj_data), dtype=np.int32)
|
| 367 |
+
for i, info in enumerate(obj_data):
|
| 368 |
+
splitix = 0
|
| 369 |
+
if opt is None: # use encode from input file
|
| 370 |
+
s = info['split']
|
| 371 |
+
if s == 'val': splitix = 1
|
| 372 |
+
if s == 'test': splitix = 2
|
| 373 |
+
else: # use portion split
|
| 374 |
+
if i >= val_begin_idx: splitix = 1
|
| 375 |
+
if i >= test_begin_idx: splitix = 2
|
| 376 |
+
split[i] = splitix
|
| 377 |
+
if opt is not None and opt['shuffle']:
|
| 378 |
+
np.random.shuffle(split)
|
| 379 |
+
|
| 380 |
+
print(('assigned %d/%d/%d to train/val/test split' % (np.sum(split==0), np.sum(split==1), np.sum(split==2))))
|
| 381 |
+
return split
|
| 382 |
+
|
| 383 |
+
|
| 384 |
+
def make_alias_dict(dict_file):
|
| 385 |
+
"""create an alias dictionary from a file"""
|
| 386 |
+
out_dict = {}
|
| 387 |
+
vocab = []
|
| 388 |
+
for line in open(dict_file, 'r'):
|
| 389 |
+
alias = line.strip('\n').strip('\r').split(',')
|
| 390 |
+
alias_target = alias[0] if alias[0] not in out_dict else out_dict[alias[0]]
|
| 391 |
+
for a in alias:
|
| 392 |
+
out_dict[a] = alias_target # use the first term as the aliasing target
|
| 393 |
+
vocab.append(alias_target)
|
| 394 |
+
return out_dict, vocab
|
| 395 |
+
|
| 396 |
+
|
| 397 |
+
def make_list(list_file):
|
| 398 |
+
"""create a blacklist list from a file"""
|
| 399 |
+
return [line.strip('\n').strip('\r') for line in open(list_file)]
|
| 400 |
+
|
| 401 |
+
|
| 402 |
+
def filter_object_boxes(data, heights, widths, area_frac_thresh):
|
| 403 |
+
"""
|
| 404 |
+
filter boxes by a box area-image area ratio threshold
|
| 405 |
+
"""
|
| 406 |
+
thresh_count = 0
|
| 407 |
+
all_count = 0
|
| 408 |
+
for i, img in enumerate(data):
|
| 409 |
+
filtered_obj = []
|
| 410 |
+
area = float(heights[i]*widths[i])
|
| 411 |
+
for obj in img['objects']:
|
| 412 |
+
if float(obj['h'] * obj['w']) > area * area_frac_thresh:
|
| 413 |
+
filtered_obj.append(obj)
|
| 414 |
+
thresh_count += 1
|
| 415 |
+
all_count += 1
|
| 416 |
+
img['objects'] = filtered_obj
|
| 417 |
+
print('box threshod: keeping %i/%i boxes' % (thresh_count, all_count))
|
| 418 |
+
|
| 419 |
+
|
| 420 |
+
def filter_by_idx(data, valid_list):
|
| 421 |
+
return [data[i] for i in valid_list]
|
| 422 |
+
|
| 423 |
+
|
| 424 |
+
def obj_rel_cross_check(obj_data, rel_data, verbose=False):
|
| 425 |
+
"""
|
| 426 |
+
make sure all objects that are in relationship dataset
|
| 427 |
+
are in object dataset
|
| 428 |
+
"""
|
| 429 |
+
num_img = len(obj_data)
|
| 430 |
+
num_correct = 0
|
| 431 |
+
total_rel = 0
|
| 432 |
+
for i in xrange(num_img):
|
| 433 |
+
assert(obj_data[i]['image_id'] == rel_data[i]['image_id'])
|
| 434 |
+
objs = obj_data[i]['objects']
|
| 435 |
+
rels = rel_data[i]['relationships']
|
| 436 |
+
ids = [obj['object_id'] for obj in objs]
|
| 437 |
+
for rel in rels:
|
| 438 |
+
if rel['subject']['object_id'] in ids \
|
| 439 |
+
and rel['object']['object_id'] in ids:
|
| 440 |
+
num_correct += 1
|
| 441 |
+
elif verbose:
|
| 442 |
+
if rel['subject']['object_id'] not in ids:
|
| 443 |
+
print(str(rel['subject']['object_id']) + 'cannot be found in ' + str(i))
|
| 444 |
+
if rel['object']['object_id'] not in ids:
|
| 445 |
+
print(str(rel['object']['object_id']) + 'cannot be found in ' + str(i))
|
| 446 |
+
total_rel += 1
|
| 447 |
+
print('cross check: %i/%i relationship are correct' % (num_correct, total_rel))
|
| 448 |
+
|
| 449 |
+
|
| 450 |
+
def sync_objects(obj_data, rel_data):
|
| 451 |
+
num_img = len(obj_data)
|
| 452 |
+
for i in xrange(num_img):
|
| 453 |
+
assert(obj_data[i]['image_id'] == rel_data[i]['image_id'])
|
| 454 |
+
objs = obj_data[i]['objects']
|
| 455 |
+
rels = rel_data[i]['relationships']
|
| 456 |
+
|
| 457 |
+
ids = [obj['object_id'] for obj in objs]
|
| 458 |
+
for rel in rels:
|
| 459 |
+
if rel['subject']['object_id'] not in ids:
|
| 460 |
+
rel_obj = rel['subject']
|
| 461 |
+
rel_obj['names'] = [rel_obj['name']]
|
| 462 |
+
objs.append(rel_obj)
|
| 463 |
+
if rel['object']['object_id'] not in ids:
|
| 464 |
+
rel_obj = rel['object']
|
| 465 |
+
rel_obj['names'] = [rel_obj['name']]
|
| 466 |
+
objs.append(rel_obj)
|
| 467 |
+
|
| 468 |
+
obj_data[i]['objects'] = objs
|
| 469 |
+
|
| 470 |
+
|
| 471 |
+
def main(args):
|
| 472 |
+
print('start')
|
| 473 |
+
pprint.pprint(args)
|
| 474 |
+
|
| 475 |
+
obj_alias_dict = {}
|
| 476 |
+
if len(args.object_alias) > 0:
|
| 477 |
+
print('using object alias from %s' % (args.object_alias))
|
| 478 |
+
obj_alias_dict, obj_vocab_list = make_alias_dict(args.object_alias)
|
| 479 |
+
|
| 480 |
+
pred_alias_dict = {}
|
| 481 |
+
if len(args.pred_alias) > 0:
|
| 482 |
+
print('using predicate alias from %s' % (args.pred_alias))
|
| 483 |
+
pred_alias_dict, pred_vocab_list = make_alias_dict(args.pred_alias)
|
| 484 |
+
|
| 485 |
+
obj_list = []
|
| 486 |
+
if len(args.object_list) > 0:
|
| 487 |
+
print('using object list from %s' % (args.object_list))
|
| 488 |
+
obj_list = make_list(args.object_list)
|
| 489 |
+
assert(len(obj_list) >= args.num_objects)
|
| 490 |
+
|
| 491 |
+
pred_list = []
|
| 492 |
+
if len(args.pred_list) > 0:
|
| 493 |
+
print('using predicate list from %s' % (args.pred_list))
|
| 494 |
+
pred_list = make_list(args.pred_list)
|
| 495 |
+
assert(len(obj_list) >= args.num_predicates)
|
| 496 |
+
|
| 497 |
+
# read in the annotation data
|
| 498 |
+
print('loading json files..')
|
| 499 |
+
obj_data = json.load(open(args.object_input))
|
| 500 |
+
rel_data = json.load(open(args.relationship_input))
|
| 501 |
+
img_data = json.load(open(args.metadata_input))
|
| 502 |
+
assert(len(rel_data) == len(obj_data) and
|
| 503 |
+
len(obj_data) == len(img_data))
|
| 504 |
+
|
| 505 |
+
print('read image db from %s' % args.imdb)
|
| 506 |
+
imdb = h5.File(args.imdb, 'r')
|
| 507 |
+
num_im, _, _, _ = imdb['images'].shape
|
| 508 |
+
img_long_sizes = [512, 1024]
|
| 509 |
+
valid_im_idx = imdb['valid_idx'][:] # valid image indices
|
| 510 |
+
img_ids = imdb['image_ids'][:]
|
| 511 |
+
obj_data = filter_by_idx(obj_data, valid_im_idx)
|
| 512 |
+
rel_data = filter_by_idx(rel_data, valid_im_idx)
|
| 513 |
+
img_data = filter_by_idx(img_data, valid_im_idx)
|
| 514 |
+
|
| 515 |
+
# sanity check
|
| 516 |
+
for i in xrange(num_im):
|
| 517 |
+
assert(obj_data[i]['image_id'] \
|
| 518 |
+
== rel_data[i]['image_id'] \
|
| 519 |
+
== img_data[i]['image_id'] \
|
| 520 |
+
== img_ids[i]
|
| 521 |
+
)
|
| 522 |
+
|
| 523 |
+
# may only load a fraction of the data
|
| 524 |
+
if args.load_frac < 1:
|
| 525 |
+
num_im = int(num_im*args.load_frac)
|
| 526 |
+
obj_data = obj_data[:num_im]
|
| 527 |
+
rel_data = rel_data[:num_im]
|
| 528 |
+
print('processing %i images' % num_im)
|
| 529 |
+
|
| 530 |
+
# sync objects from rel to obj_data
|
| 531 |
+
sync_objects(obj_data, rel_data)
|
| 532 |
+
|
| 533 |
+
obj_rel_cross_check(obj_data, rel_data)
|
| 534 |
+
|
| 535 |
+
# preprocess label data
|
| 536 |
+
preprocess_object_labels(obj_data, alias_dict=obj_alias_dict)
|
| 537 |
+
preprocess_predicates(rel_data, alias_dict=pred_alias_dict)
|
| 538 |
+
|
| 539 |
+
heights, widths = imdb['original_heights'][:], imdb['original_widths'][:]
|
| 540 |
+
if args.min_box_area_frac > 0:
|
| 541 |
+
# filter out invalid small boxes
|
| 542 |
+
print('threshold bounding box by %f area fraction' % args.min_box_area_frac)
|
| 543 |
+
filter_object_boxes(obj_data, heights, widths, args.min_box_area_frac) # filter by box dimensions
|
| 544 |
+
|
| 545 |
+
merge_duplicate_boxes(obj_data)
|
| 546 |
+
|
| 547 |
+
# build vocabulary
|
| 548 |
+
object_tokens, object_token_counter = extract_object_token(obj_data, args.num_objects,
|
| 549 |
+
obj_list)
|
| 550 |
+
|
| 551 |
+
label_to_idx, idx_to_label = build_token_dict(object_tokens)
|
| 552 |
+
|
| 553 |
+
predicate_tokens, predicate_token_counter = extract_predicate_token(rel_data,
|
| 554 |
+
args.num_predicates,
|
| 555 |
+
pred_list)
|
| 556 |
+
predicate_to_idx, idx_to_predicate = build_token_dict(predicate_tokens)
|
| 557 |
+
|
| 558 |
+
# print out vocabulary
|
| 559 |
+
print('objects: ')
|
| 560 |
+
print(object_token_counter)
|
| 561 |
+
print('relationships: ')
|
| 562 |
+
print(predicate_token_counter)
|
| 563 |
+
|
| 564 |
+
# write the h5 file
|
| 565 |
+
f = h5.File(args.h5_file, 'w')
|
| 566 |
+
|
| 567 |
+
# encode object
|
| 568 |
+
encoded_label, encoded_boxes, im_to_first_obj, im_to_last_obj = \
|
| 569 |
+
encode_objects(obj_data, label_to_idx, object_token_counter, \
|
| 570 |
+
heights, widths, img_long_sizes)
|
| 571 |
+
|
| 572 |
+
f.create_dataset('labels', data=encoded_label)
|
| 573 |
+
for k, boxes in encoded_boxes.items():
|
| 574 |
+
f.create_dataset('boxes_%i' % k, data=boxes)
|
| 575 |
+
f.create_dataset('img_to_first_box', data=im_to_first_obj)
|
| 576 |
+
f.create_dataset('img_to_last_box', data=im_to_last_obj)
|
| 577 |
+
|
| 578 |
+
encoded_predicate, encoded_rel, im_to_first_rel, im_to_last_rel = \
|
| 579 |
+
encode_relationships(rel_data, predicate_to_idx, obj_data)
|
| 580 |
+
|
| 581 |
+
f.create_dataset('predicates', data=encoded_predicate)
|
| 582 |
+
f.create_dataset('relationships', data=encoded_rel)
|
| 583 |
+
f.create_dataset('img_to_first_rel', data=im_to_first_rel)
|
| 584 |
+
f.create_dataset('img_to_last_rel', data=im_to_last_rel)
|
| 585 |
+
|
| 586 |
+
# build train/val/test splits
|
| 587 |
+
|
| 588 |
+
print('num objects = %i' % encoded_label.shape[0])
|
| 589 |
+
print('num relationships = %i' % encoded_predicate.shape[0])
|
| 590 |
+
|
| 591 |
+
|
| 592 |
+
opt = None
|
| 593 |
+
if not args.use_input_split:
|
| 594 |
+
opt = {}
|
| 595 |
+
opt['val_begin_idx'] = int(len(obj_data) * args.train_frac)
|
| 596 |
+
opt['test_begin_idx'] = int(len(obj_data) * args.val_frac)
|
| 597 |
+
opt['shuffle'] = args.shuffle
|
| 598 |
+
split = encode_splits(obj_data, opt)
|
| 599 |
+
|
| 600 |
+
if split is not None:
|
| 601 |
+
f.create_dataset('split', data=split) # 1 = test, 0 = train
|
| 602 |
+
|
| 603 |
+
# and write the additional json file
|
| 604 |
+
json_struct = {
|
| 605 |
+
'label_to_idx': label_to_idx,
|
| 606 |
+
'idx_to_label': idx_to_label,
|
| 607 |
+
'predicate_to_idx': predicate_to_idx,
|
| 608 |
+
'idx_to_predicate': idx_to_predicate,
|
| 609 |
+
'predicate_count': predicate_token_counter,
|
| 610 |
+
'object_count': object_token_counter
|
| 611 |
+
}
|
| 612 |
+
|
| 613 |
+
with open(args.json_file, 'w') as f:
|
| 614 |
+
json.dump(json_struct, f)
|
| 615 |
+
|
| 616 |
+
|
| 617 |
+
if __name__ == '__main__':
|
| 618 |
+
parser = argparse.ArgumentParser()
|
| 619 |
+
parser.add_argument('--imdb', default='VG/imdb_1024.h5', type=str)
|
| 620 |
+
parser.add_argument('--object_input', default='VG/objects.json', type=str)
|
| 621 |
+
parser.add_argument('--relationship_input', default='VG/relationships.json', type=str)
|
| 622 |
+
parser.add_argument('--metadata_input', default='VG/image_data.json', type=str)
|
| 623 |
+
parser.add_argument('--object_alias', default='VG/object_alias.txt', type=str)
|
| 624 |
+
parser.add_argument('--pred_alias', default='VG/predicate_alias.txt', type=str)
|
| 625 |
+
parser.add_argument('--object_list', default='VG/object_list.txt', type=str)
|
| 626 |
+
parser.add_argument('--pred_list', default='VG/predicate_list.txt', type=str)
|
| 627 |
+
parser.add_argument('--num_objects', default=150, type=int, help="set to 0 to disable filtering")
|
| 628 |
+
parser.add_argument('--num_predicates', default=50, type=int, help="set to 0 to disable filtering")
|
| 629 |
+
parser.add_argument('--min_box_area_frac', default=0.002, type=float)
|
| 630 |
+
parser.add_argument('--json_file', default='VG-dicts.json')
|
| 631 |
+
parser.add_argument('--h5_file', default='VG.h5')
|
| 632 |
+
parser.add_argument('--load_frac', default=1, type=float)
|
| 633 |
+
parser.add_argument('--use_input_split', default=False, type=bool)
|
| 634 |
+
parser.add_argument('--train_frac', default=0.7, type=float)
|
| 635 |
+
parser.add_argument('--val_frac', default=0.7, type=float)
|
| 636 |
+
parser.add_argument('--shuffle', default=False, type=bool)
|
| 637 |
+
|
| 638 |
+
args = parser.parse_args()
|
| 639 |
+
main(args)
|